Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump paragonie/random_compat from 1.0.10 to 1.4.3 in the composer group across 1 directory #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 11, 2024

Bumps the composer group with 1 update in the / directory: paragonie/random_compat.

Updates paragonie/random_compat from 1.0.10 to 1.4.3

Release notes

Sourced from paragonie/random_compat's releases.

Version 1.4.3

  • Fix version number in constant in lib/random.php
  • Upgrade your dependency from ^1 to ^1|^2 if you want other changes (i.e. better compatibility with type-safety), because the v2 branch is where most of the development effort is focused. Continued support for v1.x is considered "only for emergencies".

Version 1.4.2

Backported changes from version 2:

  • Version 2.0.10 - 2017-03-13
    • Mcrypt can now be used on PHP < 5.3.7 if you're not on Windows.
  • Version 2.0.9 - 2017-03-03
    • More Psalm integration fixes.
  • Version 2.0.8 - 2017-03-03
    • Prevent function already declared error for random_int() caused by misusing the library (really you should only ever include lib/random.php and never any of the other files). See #125.
  • Version 2.0.6, 2.0.7 - 2017-02-27
    • Just updates to psalm.xml to silence false positives.
  • Version 2.0.5 - 2017-02-27
    • Run random_compat through the static analysis tool, psalm, as part of our continuous integration process.
    • Minor readability enhancements (#122 and several docblock changes).
  • Version 2.0.4 - 2016-11-07
    • Don't unnecessarily prevent mcrypt_create_iv() from being used. See #111.
  • Version 2.0.3 - 2016-10-17
  • Version 2.0.2 - 2016-04-03
    • Added a consistency check (discovered by Taylor Hornby in his PHP encryption library). It wasn't likely causing any trouble for us.

Version 1.4.1

Update comment in random.php

Version 1.4.0

Restored OpenSSL in the version 1 branch in preparation to remove OpenSSL in version 2.

Version 1.3.1

  • Add more possible values to open_baseir check. Thanks @​narfbg

Version 1.3.0

Removed openssl_random_pseudo_bytes() entirely. If you are using random_compat in PHP on a Unix-like OS but cannot access /dev/urandom, version 1.3+ will throw an Exception. If you want to trust OpenSSL, feel free to write your own fallback code. e.g.

try {
    $bytes = random_bytes(32);
} catch (Exception $ex) {
    $strong = false;
    $bytes = openssl_random_pseudo_bytes(32, $strong);
</tr></table> 

... (truncated)

Changelog

Sourced from paragonie/random_compat's changelog.

Version 1.4.3 - 2018-04-04

  • Fix version number in constant in lib/random.php
  • Upgrade your dependency from ^1 to ^1|^2 if you want other changes (i.e. better compatibility with type-safety), because the v2 branch is where most of the development effort is focused. Continued support for v1.x is considered "only for emergencies".

Version 1.4.2 - 2017-03-13

  • Backport changes from version 2:
    • Version 2.0.9 - 2017-03-03
      • More Psalm integration fixes.
    • Version 2.0.8 - 2017-03-03
      • Prevent function already declared error for random_int() caused by misusing the library (really you should only ever include lib/random.php and never any of the other files). See #125.
    • Version 2.0.6, 2.0.7 - 2017-02-27
      • Just updates to psalm.xml to silence false positives.
    • Version 2.0.5 - 2017-02-27
      • Run random_compat through the static analysis tool, psalm, as part of our continuous integration process.
      • Minor readability enhancements (#122 and several docblock changes).
    • Version 2.0.4 - 2016-11-07
      • Don't unnecessarily prevent mcrypt_create_iv() from being used. See #111.
    • Version 2.0.3 - 2016-10-17
    • Version 2.0.2 - 2016-04-03
      • Added a consistency check (discovered by Taylor Hornby in his PHP encryption library). It wasn't likely causing any trouble for us.

Version 1.4.1 - 2016-03-18

Update comment in random.php

Version 1.4.0 - 2016-03-18

Restored OpenSSL in the version 1 branch in preparation to remove OpenSSL in version 2.

Version 1.3.1/1.2.3 - 2016-03-18

  • Add more possible values to open_baseir check.

Version 1.3.0 - 2016-03-17

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the composer group with 1 update in the / directory: [paragonie/random_compat](https://github.com/paragonie/random_compat).


Updates `paragonie/random_compat` from 1.0.10 to 1.4.3
- [Release notes](https://github.com/paragonie/random_compat/releases)
- [Changelog](https://github.com/paragonie/random_compat/blob/v1.4.3/CHANGELOG.md)
- [Commits](paragonie/random_compat@1.0.10...v1.4.3)

---
updated-dependencies:
- dependency-name: paragonie/random_compat
  dependency-type: indirect
  dependency-group: composer
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants