In the following, I create a separate glossary that I do not want to have hyperlinked (in my actual document, the glossary without links will not be displayed).
The following MWE generates an error:
Unknown option 'nohypertypes' for package 'glossaries'
\documentclass{report}
\usepackage{hyperref}
\usepackage[nohypertypes={common}]{glossaries}
\newglossary{common}{cacr}{cacn}{Common Acronyms}
\newglossaryentry{unlinkedtest}{
type={common},
name={test glossary entry},
description={should not be linked}}
\newglossaryentry{linkedtest}{
name={test glossary entry},
description={should be linked}}
\makeglossaries%
\begin{document}
This should be linked: \gls{linkedtest}\par%
This should not be linked: \gls{unlinkedtest}
\printglossary[type=common]%
\printglossary[type=main]%
\end{document}
The nohypertypes option is detailed as a new change in v3.04 and the log file shows glossaries v3.04 is being loaded. Without the nohypertypes option, the MWE works, except that both \gls are linked to their glossary entries.