Skip to content

Update Composer runtime dependencies#272

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/composer-runtime
Open

Update Composer runtime dependencies#272
renovate[bot] wants to merge 1 commit intomainfrom
renovate/composer-runtime

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 10, 2024

This PR contains the following updates:

Package Change Age Confidence
amphp/byte-stream (source) 2.1.12.1.2 age confidence
amphp/file 3.0.23.2.0 age confidence
amphp/mysql 3.0.0-beta.93.0.1 age confidence
amphp/parallel 2.2.62.3.3 age confidence
amphp/socket 2.2.42.3.1 age confidence
amphp/sync 2.1.02.3.0 age confidence
azjezz/psl 2.9.02.9.1 age confidence
psr/log 3.0.03.0.2 age confidence
ramsey/uuid 4.7.54.9.2 age confidence
symfony/finder (source) 6.4.06.4.33 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

amphp/byte-stream (amphp/byte-stream)

v2.1.2: 2.1.2

Compare Source

  • Fixed the exception type thrown if ReadableIterableStream is closed (Amp\Pipeline\DisposedException was leaked, now an Amp\ByteStream\ClosedException is thrown).

Full Changelog: amphp/byte-stream@v2.1.1...v2.1.2

amphp/file (amphp/file)

v3.2.0: 3.2.0

Compare Source

What's Changed

  • The parallel driver no longer reuses the global worker pool if a specific instance is not provided to the constructor. Instead, a new worker pool is created.
  • The $workerLimit parameter to the constructor of ParallelFilesystemDriver is now deprecated. Pass an instance of LimitedWorkerPool instead.

Full Changelog: amphp/file@v3.1.1...v3.2.0

v3.1.1: 3.1.1

Compare Source

What's Changed

  • Dropped support for ext-uv < 0.3.0.
  • Changed the version check for ext-uv to avoid an ext-opcache bug (see amphp/http-client#365).

Full Changelog: amphp/file@v3.1.0...v3.1.1

v3.1.0: 3.1.0

Compare Source

What's Changed

  • Add FileCache class by @​Nadyita in #​83
  • Add KeyedFileMutex by @​bwoebi in #​62
  • Made implicit nullable types explicit to avoid deprecation notice in PHP 8.4

New Contributors

Full Changelog: amphp/file@v3.0.2...v3.1.0

amphp/mysql (amphp/mysql)

v3.0.1: 3.0.1

Compare Source

  • Fixed PHP 8.5 deprecations.

Full Changelog: amphp/mysql@v3.0.0...v3.0.1

v3.0.0: 3.0.0

Compare Source

Stable release compatible with AMPHP v3 and fibers! 🎉

As with other libraries compatible with AMPHP v3, most cases of parameters or returns of Promise<ResolutionType> have been replaced with ResolutionType.

  • Classes and interfaces now are prefixed with Mysql to avoid collisions with similar names from other libraries.
  • Marked most classes as internal, leaving only interfaces and concrete implementations required to use the API or create a custom connector.
  • MysqlTransaction now extends MysqlLink instead of MysqlExecutor to support nested transactions.
  • MysqlDataType is now an enum of MySQL data type codes and methods to decode data based on type.
  • Result set field data is now available from MysqlResult::getColumnDefinitions() which returns an array of MysqlColumnDefinition objects corresponding to the result set rows.
  • The second param of MysqlStatement::bind() now requires a string. Binding only makes sense with long strings anyway.
  • MysqlConnection is now an interface extending SqlConnection, with SocketMysqlConnection being the implementation.
  • Removed MysqlConnector since the interface was replaced by template types on SqlConnector, i.e. SqlConnector<MysqlConfig, MysqlConnection>
amphp/parallel (amphp/parallel)

v2.3.3: 2.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: amphp/parallel@v2.3.2...v2.3.3

v2.3.2: 2.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: amphp/parallel@v2.3.1...v2.3.2

v2.3.1: 2.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: amphp/parallel@v2.3.0...v2.3.1

v2.3.0: 2.3.0

Compare Source

What's Changed

  • Added LimitedWorkerPool extending WorkerPool in #​205.
  • Added DelegatingWorkerPool implementing LimitedWorkerPool, which will only allow a limited number of workers to be pulled from a delegate WorkerPool instance.
  • ContextWorkerPool also now implements LimitedWorkerPool, as this pool implementation was already spawned a limited number of workers.

Full Changelog: amphp/parallel@v2.2.9...v2.3.0

v2.2.9: 2.2.9

Compare Source

What's Changed

  • Fixed a race condition if outstanding accept calls were pending when closing SocketIpcHub.
  • Removed use of error-suppression operator to avoid warnings from mis-configured error handlers (#​200).

Full Changelog: amphp/parallel@v2.2.8...v2.2.9

v2.2.8: 2.2.8

Compare Source

What's Changed

  • Fixed race condition on concurrent IPC connect calls (#​199)
    Thank you @​Nadyita for reporting and debugging this issue.

v2.2.7: 2.2.7

Compare Source

What's Changed

  • Fixed cancelled tasks still being submitted to task workers.
  • Marked result and receive template types on Context as covariant.
  • Small improvements on examples by @​thgs in #​194

Full Changelog: amphp/parallel@v2.2.6...v2.2.7

amphp/socket (amphp/socket)

v2.3.1: 2.3.1

Compare Source

What's Changed

  • Make implicit nullable types explicit to avoid deprecation notice in PHP 8.4.

Full Changelog: amphp/socket@v2.3.0...v2.3.1

v2.3.0: 2.3.0

Compare Source

  • Added Socks5SocketConnector to connect to hosts via SOCKS5 proxies. A similar implementation was previously present in amphp/http-tunnel.
amphp/sync (amphp/sync)

v2.3.0: 2.3.0

Compare Source

What's Changed

  • Fixed posix semaphore blocking thread when there is no space left on device by @​azjezz in #​29
  • Added a buffer size parameter to createChannelPair() to specify a number of items which may be buffered in memory before back pressure is applied.

New Contributors

Full Changelog: amphp/sync@v2.2.0...v2.3.0

v2.2.0: 2.2.0

Compare Source

What's Changed

Full Changelog: amphp/sync@v2.1.0...v2.2.0

azjezz/psl (azjezz/psl)

v2.9.1: Lenalee - 2.9.1

Compare Source

What's Changed

Full Changelog: azjezz/psl@2.9.0...2.9.1

php-fig/log (psr/log)

v3.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: php-fig/log@3.0.1...3.0.2

v3.0.1

Compare Source

What's Changed

Full Changelog: php-fig/log@3.0.0...3.0.1

ramsey/uuid (ramsey/uuid)

v4.9.2

Compare Source

Fixed
  • Remove explicit (int) cast to avoid float-string cast warnings in PHP 8.5.
  • Bump the lowest supported version of brick/math to ^0.8.16 from ^0.8.8. ramsey/uuid had been using BigInteger::toBytes() in UnixTimeGenerator (for version 7 UUIDs) since v4.6.0, but it wasn't added to brick/math until v0.8.16.

v4.9.1

Compare Source

Fixed
  • Allow brick/math version ^0.14; fixed in #​617.
  • Default to microtime() instead of DateTimeImmutable in Ramsey\Uuid\Generator\UnixTimeGenerator.

v4.9.0

Compare Source

Added
  • Add new @pure annotations to the following (#​605):
    • Ramsey\Uuid\Codec\CodecInterface::encode()
    • Ramsey\Uuid\Codec\CodecInterface::encodeBinary()
    • Ramsey\Uuid\Codec\CodecInterface::decode()
    • Ramsey\Uuid\Codec\CodecInterface::decodeBytes()
    • Ramsey\Uuid\Fields\FieldsInterface::getBytes()
    • Ramsey\Uuid\Math\CalculatorInterface::add()
    • Ramsey\Uuid\Math\CalculatorInterface::subtract()
    • Ramsey\Uuid\Math\CalculatorInterface::multiply()
    • Ramsey\Uuid\Math\CalculatorInterface::divide()
    • Ramsey\Uuid\Math\CalculatorInterface::fromBase()
    • Ramsey\Uuid\Math\CalculatorInterface::toBase()
    • Ramsey\Uuid\Math\CalculatorInterface::toHexadecimal()
    • Ramsey\Uuid\Math\CalculatorInterface::toInteger()
    • Ramsey\Uuid\Nonstandard\Uuid
    • Ramsey\Uuid\Rfc4122\Fields::isMax()
    • Ramsey\Uuid\Rfc4122\FieldsInterface::getVersion()
    • Ramsey\Uuid\Rfc4122\FieldsInterface::isNil()
    • Ramsey\Uuid\Type\Time::getSeconds()
    • Ramsey\Uuid\Type\Time::getMicroseconds()
    • Ramsey\Uuid\Type\TypeInterface::toString()
    • Ramsey\Uuid\UuidInterface::getBytes()
    • Ramsey\Uuid\UuidInterface::toString()
    • Ramsey\Uuid\Validator\ValidatorInterface::validate()
Fixed
  • Restore the @pure annotations that were removed in 4.8.0 (#​603).

v4.8.1

Compare Source

Fixed
  • This tagged release ensures the stable documentation build matches the current stable release.

v4.8.0

Compare Source

Added
  • Add new @pure annotations to the following (#​605):
    • Ramsey\Uuid\Codec\CodecInterface::encode()
    • Ramsey\Uuid\Codec\CodecInterface::encodeBinary()
    • Ramsey\Uuid\Codec\CodecInterface::decode()
    • Ramsey\Uuid\Codec\CodecInterface::decodeBytes()
    • Ramsey\Uuid\Fields\FieldsInterface::getBytes()
    • Ramsey\Uuid\Math\CalculatorInterface::add()
    • Ramsey\Uuid\Math\CalculatorInterface::subtract()
    • Ramsey\Uuid\Math\CalculatorInterface::multiply()
    • Ramsey\Uuid\Math\CalculatorInterface::divide()
    • Ramsey\Uuid\Math\CalculatorInterface::fromBase()
    • Ramsey\Uuid\Math\CalculatorInterface::toBase()
    • Ramsey\Uuid\Math\CalculatorInterface::toHexadecimal()
    • Ramsey\Uuid\Math\CalculatorInterface::toInteger()
    • Ramsey\Uuid\Nonstandard\Uuid
    • Ramsey\Uuid\Rfc4122\Fields::isMax()
    • Ramsey\Uuid\Rfc4122\FieldsInterface::getVersion()
    • Ramsey\Uuid\Rfc4122\FieldsInterface::isNil()
    • Ramsey\Uuid\Type\Time::getSeconds()
    • Ramsey\Uuid\Type\Time::getMicroseconds()
    • Ramsey\Uuid\Type\TypeInterface::toString()
    • Ramsey\Uuid\UuidInterface::getBytes()
    • Ramsey\Uuid\UuidInterface::toString()
    • Ramsey\Uuid\Validator\ValidatorInterface::validate()
Fixed
  • Restore the @pure annotations that were removed in 4.8.0 (#​603).

v4.7.6

Compare Source

Fixed
  • Allow brick/math version ^0.12.
symfony/finder (symfony/finder)

v6.4.33

Compare Source

Changelog (symfony/finder@v6.4.32...v6.4.33)

v6.4.32

Compare Source

v6.4.31

Compare Source

v6.4.27

Compare Source

v6.4.24

Compare Source

Changelog (symfony/finder@v6.4.23...v6.4.24)

  • no significant changes

v6.4.17

Compare Source

Changelog (symfony/finder@v6.4.16...v6.4.17)

v6.4.13

Compare Source

Changelog (symfony/finder@v6.4.12...v6.4.13)

  • no significant changes

v6.4.11

Compare Source

Changelog (symfony/finder@v6.4.10...v6.4.11)

v6.4.10

Compare Source

Changelog (symfony/finder@v6.4.9...v6.4.10)

  • no significant changes

v6.4.8

Compare Source

Changelog (symfony/finder@v6.4.7...v6.4.8)

  • no significant changes

v6.4.7

Compare Source

Changelog (symfony/finder@v6.4.6...v6.4.7)


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) March 10, 2024 18:35
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 7b4bd97 to 07945a9 Compare March 16, 2024 20:00
@renovate renovate bot changed the title Update dependency amphp/mysql to v3.0.0 Update Composer runtime dependencies Mar 16, 2024
@renovate renovate bot force-pushed the renovate/composer-runtime branch 2 times, most recently from 56f7f64 to 43a7917 Compare March 24, 2024 19:47
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 43a7917 to baf6d66 Compare April 5, 2024 05:27
@renovate renovate bot force-pushed the renovate/composer-runtime branch 2 times, most recently from 3a95e59 to 89ea1ff Compare April 27, 2024 22:49
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 89ea1ff to 90e0e87 Compare April 29, 2024 12:56
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 90e0e87 to a6a8165 Compare June 2, 2024 18:07
@renovate renovate bot force-pushed the renovate/composer-runtime branch from a6a8165 to 881a37b Compare July 26, 2024 16:13
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 881a37b to 483d586 Compare August 4, 2024 19:38
@renovate renovate bot force-pushed the renovate/composer-runtime branch 2 times, most recently from 49093c4 to 1b0ef8c Compare August 21, 2024 14:19
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 1b0ef8c to ee11087 Compare August 30, 2024 19:53
@renovate renovate bot force-pushed the renovate/composer-runtime branch from ee11087 to c27d165 Compare September 11, 2024 13:55
@renovate renovate bot force-pushed the renovate/composer-runtime branch from c27d165 to 01cbf4c Compare October 11, 2024 03:36
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 01cbf4c to 54dada4 Compare October 27, 2024 16:36
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 54dada4 to a05b06a Compare December 10, 2024 06:52
@renovate renovate bot force-pushed the renovate/composer-runtime branch from a05b06a to 5cfd22f Compare December 21, 2024 04:22
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 5cfd22f to 96cd3a3 Compare December 31, 2024 17:20
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 96cd3a3 to c81570f Compare March 16, 2025 18:38
@renovate renovate bot force-pushed the renovate/composer-runtime branch 2 times, most recently from 8445abc to 755f91e Compare June 1, 2025 09:04
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 755f91e to 414cb03 Compare June 25, 2025 23:49
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 414cb03 to 5b89007 Compare July 31, 2025 11:32
@renovate renovate bot force-pushed the renovate/composer-runtime branch 2 times, most recently from 54df259 to 92b1b98 Compare September 5, 2025 01:10
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 92b1b98 to f4374e1 Compare October 28, 2025 13:51
@renovate renovate bot force-pushed the renovate/composer-runtime branch from f4374e1 to 0b8049a Compare December 3, 2025 04:07
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 0b8049a to 4e1ce43 Compare December 14, 2025 04:58
@renovate renovate bot force-pushed the renovate/composer-runtime branch from 4e1ce43 to f1acf94 Compare December 31, 2025 08:41
@renovate renovate bot force-pushed the renovate/composer-runtime branch 2 times, most recently from bb3ba67 to f1454d9 Compare January 28, 2026 10:08
@renovate renovate bot force-pushed the renovate/composer-runtime branch from f1454d9 to 69ee10b Compare February 12, 2026 21:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants