webdriver 0.11.0.0 → 0.12.0.0
raw patch · 3 files changed
+11/−2 lines, 3 filesdep +attoparsec-aesondep ~aeson
Dependencies added: attoparsec-aeson
Dependency ranges changed: aeson
Files
- CHANGELOG.md +3/−0
- src/Test/WebDriver/JSON.hs +5/−0
- webdriver.cabal +3/−2
CHANGELOG.md view
@@ -1,5 +1,8 @@ # Change Log +## 0.12.0.0+* Support aeson-2.2.0+ ## 0.11.0.0 * Support GHC 9.6 * Fix a link to the wrong GitHub branch in package description
src/Test/WebDriver/JSON.hs view
@@ -51,6 +51,11 @@ import Prelude -- hides some "unused import" warnings +#if MIN_VERSION_aeson(2,2,0)+-- This comes from the attoparsec-aeson package+import Data.Aeson.Parser (json)+#endif+ #if MIN_VERSION_aeson(2,0,0) import qualified Data.Aeson.Key as A import qualified Data.Aeson.KeyMap as HM
webdriver.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.35.2.+-- This file has been generated from package.yaml by hpack version 0.36.0. -- -- see: https://github.com/sol/hpack name: webdriver-version: 0.11.0.0+version: 0.12.0.0 synopsis: a Haskell client for the Selenium WebDriver protocol description: A Selenium WebDriver client for Haskell. You can use it to automate browser sessions@@ -78,6 +78,7 @@ build-depends: aeson >=0.6.2.0 , attoparsec >=0.10+ , attoparsec-aeson >=2 , base ==4.* , base64-bytestring >=1.0 , bytestring >=0.9