php: Update all major dependencies (major)#968
Open
ata-no-one wants to merge 1 commit into
Open
Conversation
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^3.2->^4.00-8.1-apache-bullseye->1-8.1-apache-bullseyeRelease Notes
amphp/file (amphp/file)
v4.0.0: 4.0.0Compare Source
Users of
3.xshould be able to update to4.xwithout code changes unless their application did one of the following:FileimplementationParallelFilesystemDriverwith a custom worker count.Breaking Changes
This release adds a
lock(),tryLock(), andunlock()to theFileinterface. These methods provide a non-blocking means of locking and unlocking a file.File::lock(): Non-blocking method to obtain a shared or exclusive lock on the file. This method must only return once the lock has been obtained.File::tryLock(): Makes a single non-blocking attempt to obtain a shared or exclusive lock on the file. Returns true if the lock was obtained, otherwise false.File::unlock(): Unlocks the file if the lock is currently held.In
3.x, the constructor ofParallelFilesystemDriveraccepted an optionalWorkerPooland a number of workers to use from that pool. In4.x, instead the constructor now requires only an optionalLimitedWorkerPool(a new pool is created if one is not provided). The number of workers used for opening files is determined by the value returned fromLimitedWorkerPool::getWorkerLimit(). Use aDelegateWorkerPoolif you wish to use an existing pool and limit the number of workers used from the pool to open files. In general, it is not necessary to customize the parallel filesystem driver.Full Changelog: amphp/file@v3.2.0...v4.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ 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.
This PR has been generated by Renovate Bot.