Improve CompilingMatcher by caching the result too#131
Merged
Seldaek merged 1 commit intoMar 14, 2022
Conversation
Member
|
Thanks |
Seldaek
added a commit
that referenced
this pull request
Mar 15, 2022
This was referenced Mar 15, 2022
This was referenced Apr 26, 2022
This was referenced May 16, 2022
Closed
This was referenced May 26, 2022
This was referenced Jun 6, 2022
This was referenced Jun 14, 2022
This was referenced Jun 22, 2022
msk
pushed a commit
to msk/pkgsrc
that referenced
this pull request
May 11, 2026
Upstream release notes: 2.2.12 - Security: Fixed command injection vulnerability in HgDriver/GitDriver (GHSA-x7cr-6qr6-2hh6 / CVE-2022-24828) - Fixed curl downloader not retrying when a DNS resolution failure occurs (#10716) - Fixed composer.lock file still being used/read when the lock config option is disabled (#10726) - Fixed validate command checking the lock file even if the lock option is disabled (#10723) 2.2.11 - Added missing config.bitbucket-oauth in composer-schema.json - Added --2.2 flag to self-update to pin the Composer version to the 2.2 LTS range (#10682) - Updated semver, jsonlint deps for minor fixes - Fixed generation of autoload crashing if a package has a broken path (#10688) - Removed dev-master=>dev-main alias from #10372 as it does not work when reloading from lock file and extracting dev deps (#10651) 2.2.10 - Fixed Bitbucket authorization detection due to API changes (#10657) - Fixed validate command warning about dist/source keys if defined (#10655) - Fixed deletion/handling of corrupted 0-bytes zip archives (#10666) 2.2.9 - Fixed regression with plugins that modify install path of packages, see docs if you are authoring such a plugin (#10621) 2.2.8 - Fixed files autoloading sort order to be fully deterministic (#10617) - Fixed pool optimization pass edge cases (#10579) - Fixed require command failing when self.version is used as constraint (#10593) - Fixed --no-ansi / undecorated output still showing color in repo warnings (#10601) - Performance improvement in pool optimization step (composer/semver#131) 2.2.7 - Allow installation together with composer/xdebug-handler ^3 (#10528) - Fixed support for packages with no licenses in licenses command output (#10537) - Fixed handling of allow-plugins: false which kept warning (#10530) - Fixed enum parsing in classmap generation when the enum keyword is not lowercased (#10521) - Fixed author parsing in init command requiring an email whereas the schema allows a name only (#10538) - Fixed issues in require command when requiring packages which do not exist (but are provided by something else you require) (#10541) - Performance improvement in pool optimization step (#10546)
jperkin
pushed a commit
to TritonDataCenter/pkgsrc
that referenced
this pull request
May 14, 2026
Upstream release notes: 2.2.12 - Security: Fixed command injection vulnerability in HgDriver/GitDriver (GHSA-x7cr-6qr6-2hh6 / CVE-2022-24828) - Fixed curl downloader not retrying when a DNS resolution failure occurs (#10716) - Fixed composer.lock file still being used/read when the lock config option is disabled (#10726) - Fixed validate command checking the lock file even if the lock option is disabled (#10723) 2.2.11 - Added missing config.bitbucket-oauth in composer-schema.json - Added --2.2 flag to self-update to pin the Composer version to the 2.2 LTS range (#10682) - Updated semver, jsonlint deps for minor fixes - Fixed generation of autoload crashing if a package has a broken path (#10688) - Removed dev-master=>dev-main alias from #10372 as it does not work when reloading from lock file and extracting dev deps (#10651) 2.2.10 - Fixed Bitbucket authorization detection due to API changes (#10657) - Fixed validate command warning about dist/source keys if defined (#10655) - Fixed deletion/handling of corrupted 0-bytes zip archives (#10666) 2.2.9 - Fixed regression with plugins that modify install path of packages, see docs if you are authoring such a plugin (#10621) 2.2.8 - Fixed files autoloading sort order to be fully deterministic (#10617) - Fixed pool optimization pass edge cases (#10579) - Fixed require command failing when self.version is used as constraint (#10593) - Fixed --no-ansi / undecorated output still showing color in repo warnings (#10601) - Performance improvement in pool optimization step (composer/semver#131) 2.2.7 - Allow installation together with composer/xdebug-handler ^3 (#10528) - Fixed support for packages with no licenses in licenses command output (#10537) - Fixed handling of allow-plugins: false which kept warning (#10530) - Fixed enum parsing in classmap generation when the enum keyword is not lowercased (#10521) - Fixed author parsing in init command requiring an email whereas the schema allows a name only (#10538) - Fixed issues in require command when requiring packages which do not exist (but are provided by something else you require) (#10541) - Performance improvement in pool optimization step (#10546)
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 reduces the function calls in the
PoolOptimizerby a few hundred thousand and again, we can save a second or two or even more depending on the complexity of the dependencies ;-)