Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-hspec for openSUSE:Factory checked in at 2021-06-01 10:38:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-hspec (Old) and /work/SRC/openSUSE:Factory/.ghc-hspec.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-hspec" Tue Jun 1 10:38:51 2021 rev:17 rq:896192 version:2.8.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-hspec/ghc-hspec.changes 2021-04-24 23:10:08.795479097 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-hspec.new.1898/ghc-hspec.changes 2021-06-01 10:40:29.593122715 +0200 @@ -1,0 +2,34 @@ +Sat May 15 15:57:09 UTC 2021 - [email protected] + +- Update hspec to version 2.8.2. + ## Changes in 2.8.2 + - Add `mapSubject` and `ignoreSubject` + +------------------------------------------------------------------- +Wed May 12 17:28:01 UTC 2021 - [email protected] + +- Update hspec to version 2.8.1. + ## Changes in 2.8.1 + - Take the environment variable `NO_COLOR` into account + +------------------------------------------------------------------- +Tue May 11 17:19:21 UTC 2021 - [email protected] + +- Update hspec to version 2.8.0. + ## Changes in 2.8.0 + - Add `--times` to print times for individual spec items + - Add `--print-slow-items` + - Use `-XNoImplicitPrelude` and do not rely on `base` for `hspec-discover` + generated test drivers. This ensures full compatibility with custom + preludes. + - Add new APIs for formatters `Test.Hspec.Core.Format` and + `Test.Hspec.Core.Formatters.V2` + - Add `getItemCount` to `Formatter` API + - Add `--qc-max-shrinks` (see #380) + - Add location information for failing `afterAll`-hooks + - hspec-discover: Deprecate `--no-main` and `--formatter` (use + `--module-name` instead) (#196) + - Remove `--verbose` option (this has been a noop since at least 2013) + - Remove `--out` option (use shell output redirection instead) + +------------------------------------------------------------------- Old: ---- hspec-2.7.10.tar.gz New: ---- hspec-2.8.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-hspec.spec ++++++ --- /var/tmp/diff_new_pack.4zciUP/_old 2021-06-01 10:40:30.057123505 +0200 +++ /var/tmp/diff_new_pack.4zciUP/_new 2021-06-01 10:40:30.061123511 +0200 @@ -18,7 +18,7 @@ %global pkg_name hspec Name: ghc-%{pkg_name} -Version: 2.7.10 +Version: 2.8.2 Release: 0 Summary: A Testing Framework for Haskell License: MIT ++++++ hspec-2.7.10.tar.gz -> hspec-2.8.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.10/CHANGES.markdown new/hspec-2.8.2/CHANGES.markdown --- old/hspec-2.7.10/CHANGES.markdown 2001-09-09 03:46:40.000000000 +0200 +++ new/hspec-2.8.2/CHANGES.markdown 2001-09-09 03:46:40.000000000 +0200 @@ -1,3 +1,25 @@ +## Changes in 2.8.2 + - Add `mapSubject` and `ignoreSubject` + +## Changes in 2.8.1 + - Take the environment variable `NO_COLOR` into account + +## Changes in 2.8.0 + - Add `--times` to print times for individual spec items + - Add `--print-slow-items` + - Use `-XNoImplicitPrelude` and do not rely on `base` for `hspec-discover` + generated test drivers. This ensures full compatibility with custom + preludes. + - Add new APIs for formatters `Test.Hspec.Core.Format` and + `Test.Hspec.Core.Formatters.V2` + - Add `getItemCount` to `Formatter` API + - Add `--qc-max-shrinks` (see #380) + - Add location information for failing `afterAll`-hooks + - hspec-discover: Deprecate `--no-main` and `--formatter` (use + `--module-name` instead) (#196) + - Remove `--verbose` option (this has been a noop since at least 2013) + - Remove `--out` option (use shell output redirection instead) + ## Changes in 2.7.10 - Add a new formatter (can be used with `--format checks`) - Add `exampleStarted` to `Formatter` API diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.10/hspec.cabal new/hspec-2.8.2/hspec.cabal --- old/hspec-2.7.10/hspec.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/hspec-2.8.2/hspec.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: hspec -version: 2.7.10 +version: 2.8.2 license: MIT license-file: LICENSE copyright: (c) 2011-2021 Simon Hengel, @@ -45,8 +45,8 @@ build-depends: QuickCheck >=2.12 , base ==4.* - , hspec-core ==2.7.10 - , hspec-discover ==2.7.10 + , hspec-core ==2.8.2 + , hspec-discover ==2.8.2 , hspec-expectations ==0.8.2.* exposed-modules: Test.Hspec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.10/src/Test/Hspec/Discover.hs new/hspec-2.8.2/src/Test/Hspec/Discover.hs --- old/hspec-2.7.10/src/Test/Hspec/Discover.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/hspec-2.8.2/src/Test/Hspec/Discover.hs 2001-09-09 03:46:40.000000000 +0200 @@ -11,8 +11,6 @@ , module Prelude ) where -import Prelude hiding (mapM) - import Test.Hspec.Core.Spec import Test.Hspec.Core.Runner import Test.Hspec.Formatters diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.10/src/Test/Hspec.hs new/hspec-2.8.2/src/Test/Hspec.hs --- old/hspec-2.7.10/src/Test/Hspec.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/hspec-2.8.2/src/Test/Hspec.hs 2001-09-09 03:46:40.000000000 +0200 @@ -66,6 +66,8 @@ , aroundWith , aroundAll , aroundAllWith +, mapSubject +, ignoreSubject -- * Running a spec , hspec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hspec-2.7.10/version.yaml new/hspec-2.8.2/version.yaml --- old/hspec-2.7.10/version.yaml 2001-09-09 03:46:40.000000000 +0200 +++ new/hspec-2.8.2/version.yaml 2001-09-09 03:46:40.000000000 +0200 @@ -1 +1 @@ -&version 2.7.10 +&version 2.8.2
