diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,8 @@
 # bugzilla-redhat version history
 
+## 1.0.1 (2022-11-16)
+- Red Hat bugzilla no longer has a 'see_also' field (#18)
+
 ## 1.0.0 (2022-02-20)
 - rename Web.Bugzilla.RedHat to Web.RedHatBugzilla
 - use Network.HTTP.Simple global session Manager
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@
 ## Contributing
 Bug reports, feedback, and fixes are welcome.
 
-Thanks to the contributors!
+Thanks to the original author and contributors!
 
 <a href="https://github.com/juhp/hsbugzilla/graphs/contributors">
   <img src="https://contributors-img.web.app/image?repo=juhp/hsbugzilla" />
diff --git a/bugzilla-redhat.cabal b/bugzilla-redhat.cabal
--- a/bugzilla-redhat.cabal
+++ b/bugzilla-redhat.cabal
@@ -1,5 +1,5 @@
 name:                bugzilla-redhat
-version:             1.0.0
+version:             1.0.1
 synopsis:            A Haskell interface to the Bugzilla native REST API
 description:         This package is designed to provide an easy-to-use,
                      type-safe interface to querying Bugzilla from Haskell.
@@ -37,17 +37,17 @@
                        Web.RedHatBugzilla.Internal.Search,
                        Web.RedHatBugzilla.Internal.Types
   build-depends:       base >=4.6 && <5,
-                       aeson >=0.7 && <2.1,
+                       aeson >=0.7 && <2.2,
                        blaze-builder >=0.3 && <0.5,
-                       bytestring >=0.10 && <0.11,
+                       bytestring >=0.10,
                        connection >=0.2 && <0.4,
                        containers >=0.5 && <0.7,
                        http-conduit >=2.1.11 && <2.4,
                        http-types >=0.8 && <0.13,
                        iso8601-time >=0.1 && <1.6,
-                       resourcet >=0.4 && <1.3,
-                       text >=0.11 && <1.3,
-                       time >=1.4 && <1.10,
+                       resourcet >=0.4,
+                       text >=0.11,
+                       time >=1.4 && <1.13,
                        transformers >=0.3 && <0.6,
                        unordered-containers >=0.2 && <0.3,
                        vector >= 0.10 && <0.13
@@ -65,8 +65,8 @@
   build-depends:       base >=4.6 && <5,
                        bugzilla-redhat,
                        containers >=0.5 && <0.7,
-                       text >=0.11 && <1.3,
-                       time >=1.4 && <1.10
+                       text >=0.11,
+                       time >=1.4 && <1.13
   hs-source-dirs:      demo
   default-language:    Haskell2010
 
@@ -75,9 +75,9 @@
   hs-source-dirs:      test
   main-is:             Spec.hs
   build-depends:       base >=4.6 && <5,
-                       aeson >=0.7 && <2.1,
+                       aeson >=0.7 && <2.2,
                        bugzilla-redhat,
                        hspec >=2.0 && <3.0,
-                       time >=1.4 && <1.10
+                       time >=1.4 && <1.13
   ghc-options:         -Wall
   default-language:    Haskell2010
diff --git a/src/Web/RedHatBugzilla.hs b/src/Web/RedHatBugzilla.hs
--- a/src/Web/RedHatBugzilla.hs
+++ b/src/Web/RedHatBugzilla.hs
@@ -95,7 +95,7 @@
 intAsText = T.pack . show
 
 -- | Searches Bugzilla and returns a list of 'Bug's. The 'SearchExpression'
--- can be constructed conveniently using the operators in "Web.Bugzilla.Search".
+-- can be constructed using the operators in "Web.Bugzilla.Search".
 searchBugs :: BugzillaSession -> SearchExpression -> IO [Bug]
 searchBugs session search = do
   BugList bugs <- doSearchBugs session search Nothing Nothing
diff --git a/src/Web/RedHatBugzilla/Internal/Types.hs b/src/Web/RedHatBugzilla/Internal/Types.hs
--- a/src/Web/RedHatBugzilla/Internal/Types.hs
+++ b/src/Web/RedHatBugzilla/Internal/Types.hs
@@ -415,7 +415,6 @@
   , bugProduct             :: T.Text
   , bugQaContact           :: UserEmail
   , bugResolution          :: T.Text
-  , bugSeeAlso             :: [T.Text]
   , bugSeverity            :: T.Text
   , bugStatus              :: T.Text
   , bugSummary             :: T.Text
@@ -462,7 +461,6 @@
           <*> v .: "product"
           <*> v .: "qa_contact"
           <*> v .: "resolution"
-          <*> v .: "see_also"
           <*> v .: "severity"
           <*> v .: "status"
           <*> v .: "summary"
