Package Release Info

ghc-retry-0.9.1.0-bp154.1.11

Update Info: Base Release
Available in Package Hub : 15 SP4

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

ghc-retry
ghc-retry-devel

Change Logs

* Tue Jan 25 2022 Peter Simons <psimons@suse.com>
- Update retry to version 0.9.1.0.
  0.9.1.0
  * Add resumable retry/recover variants:
  * `resumeRetrying`
  * `resumeRetryingDynamic`
  * `resumeRecovering`
  * `resumeRecoveringDynamic`
  * `resumeRecoverAll`
* Sat Jul 10 2021 psimons@suse.com
- Update retry to version 0.9.0.0.
  0.9.0.0
  * Replace several uses of RetryPolicy type alias with RetryPolicyM m for better
    GHC 9 compat.
* Thu Dec 17 2020 Ond?ej SĂșkup <mimi.vx@gmail.com>
- disable %{ix86} build
* Tue Oct 13 2020 psimons@suse.com
- Add retry at version 0.8.1.2.
Version: 0.8.0.0-bp151.1.9
* Thu Jan 31 2019 psimons@suse.com
- Update retry to version 0.8.0.0.
  0.8.0.0
  * Remove dependency on data-default-class
* Sat Oct 20 2018 Peter Simons <psimons@suse.com>
- Use https URL to refer to bugs.opensuse.org.
* Thu Aug 30 2018 psimons@suse.com
- Update retry to version 0.7.7.0.
  0.7.7.0
  * Add `natTransformRetryPolicy`
* Fri Aug 17 2018 psimons@suse.com
- Update retry to version 0.7.6.3.
  0.7.6.3
  * Documentation fix on `recoverAll`
* Wed Jul 18 2018 psimons@suse.com
- Cosmetic: replace tabs with blanks, strip trailing white space,
  and update copyright headers with spec-cleaner.
* Mon May 14 2018 psimons@suse.com
- Update retry to version 0.7.6.2.
  * Clarify the semantics of `limitRetriesByDelay`.
  * Add `limitRetriesByCumulativeDelay`
  * Improve haddocks for fullJitterBackoff.
  * Add Semigroup instance when the Semigroup class is available through base.
  * Loosen dependency upper bounds.
  * Add skipAsyncExceptions helper function
Version: 0.7.4.2-bp150.2.4
* Thu Aug 03 2017 psimons@suse.com
- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
* Tue Nov 29 2016 psimons@suse.com
- Update to version 0.7.4.2 with cabal2obs.
Version: 0.7.4.1-2.2
* Fri Jul 22 2016 psimons@suse.com
- Update to version 0.7.4.1 revision 0 with cabal2obs.
* Sun Jul 10 2016 psimons@suse.com
- Update to version 0.7.4 revision 0 with cabal2obs.
* Thu Jun 02 2016 mimi.vx@gmail.com
- update to 0.7.4
  * Widen transformers dependency
* Mon May 30 2016 mimi.vx@gmail.com
- update to 0.7.3
  * Widen ghc-prim dependency for GHC 8
* Wed May 04 2016 mimi.vx@gmail.com
- update to 0.7.2
  * Fix premature integer overflow
* Fri Jan 15 2016 mimi.vx@gmail.com
- update to 0.7.1
  * Various documentation updates.
  * Add stepping combinator for manual retries.
  * Add applyPolicy and applyAndDelay
  * Add Read instance for RetryStatus
  * Fix logic bug in rsPreviousDelay in first retry
* Wed Dec 23 2015 mimi.vx@gmail.com
- update to 0.7.0.1
  * RetryPolicy has become RetryPolicyM, allowing for policy logic to consult the
    monad context.
  * RetryPolicyM now takes a RetryStatus value. Use the function rsIterNum to
    preserve existing behavior of RetryPolicy only receiving the number.
  * The monadic action now gets the RetryStatus on each try. Use const if you
    don't need it.
  * recoverAll explicitly does not handle the standard async exceptions. Users are
    encouraged to do the same when using recovering, as catching async exceptions
    can be hazardous.
  * We no longer re-export (<>) from Monoid.
  * Utility functions simulatePolicy and simulatePolicyPP have been added which help
    predict how a policy will behave on each iteration.
* Thu Nov 19 2015 mimi.vx@gmail.com
- initial commit