CHANGELOG.md 1.7 KB

Changelog

All notable changes to this project will be documented in this file, in reverse chronological order by release.

2.7.1 - 2018-12-04

Added

  • Nothing.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #37 adds the static method isSupported to the Zend\Math\Source\HashTiming class, to ensure it fulfills the RandomLib\Source interface from version 2.7 and up.

2.7.0 - 2016-04-07

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #16 updates Zend\Math\Rand to use PHP 7's random_bytes() and random_int() or mcrypt when detected, and fallback to ircmaxell/RandomLib otherwise, instead of using openssl. This provides more cryptographically secure pseudo-random generation.

2.6.0 - 2016-02-02

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • #5 removes Zend\Math\BigInteger\AdapterPluginManager, and thus the zend-servicemanager dependency. Essentially, no other possible plugins are likely to ever be needed outside of those shipped with the component, so using a plugin manager was overkill. The functionality for loading the two shipped adapters has been

Fixed

  • Nothing.

2.5.2 - 2015-12-17

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #7 fixes how base conversions are accomplished within the bcmath adapter, ensuring PHP's native base_convert() is used for base36 and below, while continuing to use the base62 alphabet for anything above.