rollbar-wai 1.0.0 → 1.1.0
raw patch · 4 files changed
+18/−10 lines, 4 filesdep ~textnew-uploaderPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: text
API changes (from Hackage documentation)
Files
- ChangeLog.md +8/−0
- LICENSE +1/−1
- rollbar-wai.cabal +8/−8
- src/Rollbar/Wai.hs +1/−1
ChangeLog.md view
@@ -1,3 +1,11 @@ # Changelog for rollbar-wai +All notable changes to this project will be documented in this file.++## [1.1.0] - 2024-05-28++### Changed+- Added support for GHC 9.4+- Changed `text` dependency upper bound: we now support `text-2.0.X.X`.+ ## Unreleased changes
LICENSE view
@@ -1,4 +1,4 @@-Copyright 2020 Stack Builders Inc.+Copyright 2020-present Stack Builders Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in
rollbar-wai.cabal view
@@ -1,13 +1,13 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.7.+-- This file has been generated from package.yaml by hpack version 0.36.0. -- -- see: https://github.com/sol/hpack ----- hash: ac188cecfff7139de33d798a8f28d9b0f071045ece47e95a25890f89a77b00c4+-- hash: ec084557ab6ac4fa78cda03d7566582d95296b617cdf5f55ec5d6a8ab9bad8c8 name: rollbar-wai-version: 1.0.0+version: 1.1.0 synopsis: Provides error reporting capabilities to WAI based applications through Rollbar API. description: Please see the README on GitHub at@@ -16,12 +16,12 @@ homepage: https://github.com/stackbuilders/rollbar-haskell#readme bug-reports: https://github.com/stackbuilders/rollbar-haskell/issues author: Stack Builders Inc.-maintainer: Sebastián Estrella <sestrella@stackbuilders.com>-copyright: 2020 Stack Builders Inc.+maintainer: David Mazarro <dmunuera@stackbuilders.com>+copyright: 2020-present Stack Builders Inc. license: MIT license-file: LICENSE tested-with:- GHC ==8.8.4, GHC ==8.10.2+ GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7 build-type: Simple extra-source-files: README.md@@ -51,7 +51,7 @@ , case-insensitive >=1.2 && <2 , http-types >=0.12 && <1 , rollbar-client >=1.0 && <2- , text >=1.2 && <2+ , text >=1.2 && <2.1 , unordered-containers >=0.2 && <1 , wai >=3.2 && <4 , wai-extra >=3.0 && <4@@ -70,11 +70,11 @@ , rollbar-wai , wai , warp+ default-language: Haskell2010 if flag(example) buildable: True else buildable: False- default-language: Haskell2010 test-suite spec type: exitcode-stdio-1.0
src/Rollbar/Wai.hs view
@@ -2,7 +2,7 @@ -- | -- Module: Rollbar.Wai--- Copyright: (c) 2020 Stack Builders Inc.+-- Copyright: (c) 2020-present Stack Builders Inc. -- License: MIT -- Maintainer: Sebastián Estrella <sestrella@stackbuilders.com> --