Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-lens for openSUSE:Factory checked in at 2023-09-04 22:53:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-lens (Old) and /work/SRC/openSUSE:Factory/.ghc-lens.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-lens" Mon Sep 4 22:53:47 2023 rev:24 rq:1108868 version:5.2.3 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-lens/ghc-lens.changes 2023-07-18 21:54:37.430460543 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-lens.new.1766/ghc-lens.changes 2023-09-04 22:54:34.685879663 +0200 @@ -1,0 +2,25 @@ +Sun Aug 27 15:30:05 UTC 2023 - Peter Simons <psim...@suse.com> + +- Update lens to version 5.2.3 revision 1. + 5.2.3 [2023.08.24] + ------------------ + * Allow building with GHC 9.8. + * Add new `Prism`s to `Language.Haskell.TH.Lens` to reflect recent additions to + `template-haskell`: + * `_GetFieldE` and `_ProjectionE` `Prism`s for the `Exp` data type, whose + corresponding data constructors were introduced in + `template-haskell-2.18.*`. + * `_TypedBracketE` and `_TypedSpliceE` `Prism`s for the `Exp` data type, whose + corresponding data constructors were introduced in + `template-haskell-2.21.*`. + * `_BndrReq` and `_BndrInvis` `Prism`s for the `BndrVis` data type, which was + added in `template-haskell-2.21.*`. + * Add a `generateRecordSyntax` option to `Control.Lens.TH`, which controls + whether to generate lenses using record update syntax or not. By default, this + option is disabled. + * Fix a bug in which the `declare*` Template Haskell functions would fail if a + data type's field has a type that is defined in the same Template Haskell + quotation. + * Add `altOf`, which collects targets into any `Alternative`. + +------------------------------------------------------------------- Old: ---- lens-5.2.2.tar.gz New: ---- lens-5.2.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-lens.spec ++++++ --- /var/tmp/diff_new_pack.OFspWc/_old 2023-09-04 22:54:36.041927596 +0200 +++ /var/tmp/diff_new_pack.OFspWc/_new 2023-09-04 22:54:36.045927738 +0200 @@ -20,7 +20,7 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 5.2.2 +Version: 5.2.3 Release: 0 Summary: Lenses, Folds and Traversals License: BSD-2-Clause ++++++ lens-5.2.2.tar.gz -> lens-5.2.3.tar.gz ++++++ ++++ 70481 lines of diff (skipped) ++++++ lens.cabal ++++++ --- /var/tmp/diff_new_pack.OFspWc/_old 2023-09-04 22:54:36.209933534 +0200 +++ /var/tmp/diff_new_pack.OFspWc/_new 2023-09-04 22:54:36.213933676 +0200 @@ -1,6 +1,6 @@ name: lens category: Data, Lenses, Generics -version: 5.2.2 +version: 5.2.3 x-revision: 1 license: BSD2 cabal-version: 1.18 @@ -20,9 +20,10 @@ , GHC == 8.8.4 , GHC == 8.10.7 , GHC == 9.0.2 - , GHC == 9.2.6 - , GHC == 9.4.4 - , GHC == 9.6.1 + , GHC == 9.2.8 + , GHC == 9.4.5 + , GHC == 9.6.2 + , GHC == 9.8.1 synopsis: Lenses, Folds and Traversals description: This package comes \"Batteries Included\" with many useful lenses for the types @@ -199,9 +200,9 @@ semigroupoids >= 5.0.1 && < 7, strict >= 0.4 && < 0.6, tagged >= 0.8.6 && < 1, - template-haskell >= 2.11.1.0 && < 2.21, - text >= 1.2.3.0 && < 2.1, - th-abstraction >= 0.4.1 && < 0.6, + template-haskell >= 2.11.1.0 && < 2.22, + text >= 1.2.3.0 && < 2.2, + th-abstraction >= 0.4.1 && < 0.7, these >= 1.1.1.1 && < 1.3, transformers >= 0.5.0.0 && < 0.7, transformers-compat >= 0.5.0.4 && < 1, @@ -230,6 +231,7 @@ Control.Lens.Internal.Context Control.Lens.Internal.CTypes Control.Lens.Internal.Deque + Control.Lens.Internal.Doctest Control.Lens.Internal.Exception Control.Lens.Internal.FieldTH Control.Lens.Internal.PrismTH @@ -327,6 +329,7 @@ type: exitcode-stdio-1.0 main-is: templates.hs other-modules: + BigRecord T799 T917 T972