packages feed

rollbar-yesod 1.0.0 → 1.1.0

raw patch · 4 files changed

+26/−10 lines, 4 filesnew-uploaderPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,3 +1,19 @@ # Changelog for rollbar-yesod -## Unreleased changes+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++## [1.0.0] - 2022-12-28++### Changed++- Updated dependency aeson version.+- Updated base version++### Removed++- Support for GHC 8.6.1
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-yesod.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: 2e5d6eb77f4bc9ff223f3a16bc8b92ced7f6ab18eedf7405d9978b8520be8de7+-- hash: 73910af7b84cf6d3325d9af612c5d29651317e6e29596c3660c64a32be67da87  name:           rollbar-yesod-version:        1.0.0+version:        1.1.0 synopsis:       Provides error reporting capabilities to Yesod 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@@ -66,11 +66,11 @@     , rollbar-yesod     , warp >=3.3 && <4     , yesod-core+  default-language: Haskell2010   if flag(example)     buildable: True   else     buildable: False-  default-language: Haskell2010  test-suite spec   type: exitcode-stdio-1.0
src/Rollbar/Yesod.hs view
@@ -3,7 +3,7 @@  -- | -- Module: Rollbar.Yesod--- Copyright: (c) 2020 Stack Builders Inc.+-- Copyright: (c) 2020-present Stack Builders Inc. -- License: MIT -- Maintainer: Sebastián Estrella <sestrella@stackbuilders.com> --