fix(deps): bump coenjacobs/mozart from 0.7.1 to v1 (main)#12628
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
fix(deps): bump coenjacobs/mozart from 0.7.1 to v1 (main)#12628renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
Contributor
Author
|
Contributor
|
/compile amend / |
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
c5ed497 to
9362d9e
Compare
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:
^0.7.1→^1.2.1Release Notes
coenjacobs/mozart (coenjacobs/mozart)
v1.2.1Compare Source
What's Changed
Full Changelog: coenjacobs/mozart@1.2.0...1.2.1
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.2.1- This releaselatest- Latest stable version (if this is the highest version)Links
v1.2.0Compare Source
Mozart 1.2.0 is a major feature release. 🎉 The headline: Mozart now works with zero configuration — just run
mozart composeand it handles the rest. This release also adds global-scope constant and function prefixing and automatic autoloader generation.New features
mozart composeis now the only opt-in required. All six settings have sensible defaults, inferred from your project'scomposer.json. Existingextra.mozartblocks continue to work unchanged. A newmozart configcommand lets you inspect the resolved configuration and where each value came from. #316generate_autoloader: true) and replaces the need to manually configure your project'scomposer.jsonautoload section. See usage docs. #315constordefine()at global scope are now prefixed withconstant_prefix(defaults to an uppercased version ofclassmap_prefix). References viaconstant(),defined(), and bare constant fetches are updated throughout the codebase. #308functions_prefix(defaults to a lowercased version ofclassmap_prefix). References viafunction_exists()and direct function calls are updated accordingly. #308symfony/polyfill-php80are no longer broken by having their declarations prefixed. #306Improvements
define()calls routed correctly —define()inside a namespace block is now handled by the namespace replacer instead of being incorrectly prefixed withconstant_prefix. #353$baseDir, and absolute classmap paths. #362delete_vendor_directories: falseandgenerate_autoloader: falseare now properly distinguished from "not set" when reporting config sources. #323replaceParentPackage()exiting after the first autoloader combination instead of processing all of them. #288replacePackages()to prevent processing the same package twice. #292MozartExceptionsubtypes; error output useswriteln()instead ofwrite(). #294FileOperationException. #296Forward ported bug fixes
These bug fixes have been released earlier today in versions 1.1.4 and 1.0.10 as well:
@param,@return,@var,@throws, etc.) logic reworked and are now properly rewritten to use the prefixed namespace. #360Infrastructure
Upgrade notes
composer.jsonfor Mozart-processed dependencies, have your code include the newly createdautoload.phpto benefit from this new feature. Or alternatively, setgenerate_autoloadertofalsein yourextra.mozartblock to keep your existing setup. See the configuration docs.constant_prefixandfunctions_prefixare derived fromclassmap_prefixby default. If your dependencies declare global-scope constants or functions, these will now be prefixed. Set either to an empty string inextra.mozartto disable.Documentation
Full documentation for all features is available in
docs/:Full Changelog: coenjacobs/mozart@1.1.4...1.2.0
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.2.0- This releaselatest- Latest stable version (if this is the highest version)Links
v1.1.6Compare Source
What's Changed
Full Changelog: coenjacobs/mozart@1.1.5...1.1.6
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.1.6- This releaselatest- Latest stable version (if this is the highest version)Links
v1.1.5Compare Source
What's Changed
Full Changelog: coenjacobs/mozart@1.1.4...1.1.5
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.1.5- This releaselatest- Latest stable version (if this is the highest version)Links
v1.1.4Compare Source
Maintenance release, containing:
Full Changelog: coenjacobs/mozart@1.1.3...1.1.4
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.1.4- This releaselatest- Latest stable version (if this is the highest version)Links
v1.1.3Compare Source
Full Changelog: coenjacobs/mozart@1.1.2...1.1.3
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.1.3- This releaselatest- Latest stable version (if this is the highest version)Links
v1.1.2Compare Source
Full Changelog: coenjacobs/mozart@1.1.1...1.1.2
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.1.2- This releaselatest- Latest stable version (if this is the highest version)Links
v1.1.1Compare Source
Maintenance release containing:
Full Changelog: coenjacobs/mozart@1.1.0...1.1.1
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.1.1- This releaselatest- Latest stable version (if this is the highest version)Links
v1.1.0Compare Source
nikic/php-parser. Eliminates regex fragility that corrupted nullable type hints, matched inside strings/comments, and missed edge cases.filesautoloader type, which was previously ignored entirely. Packages likephp-di/php-dinow work correctly.class_exists(),function_exists(),interface_exists(),trait_exists(), and related functions are now properly prefixed..gitattributes.Details and discussion of what changed and why can be found: Beta testing for Mozart 1.1.0 has begun!
Full Changelog: coenjacobs/mozart@1.0.6...1.1.0
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.1.0- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.10Compare Source
Maintenance release, containing:
Full Changelog: coenjacobs/mozart@1.0.9...1.0.10
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.10- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.9Compare Source
Maintenance release, containing:
Full Changelog: coenjacobs/mozart@1.0.8...1.0.9
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.9- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.8Compare Source
[Backport] Fix Windows directory separator breaking PSR-4 path flattening #312
Full Changelog: coenjacobs/mozart@1.0.7...1.0.8
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.8- This releaseLinks
v1.0.7Compare Source
Maintenance release containing backported fixes that were applicable from the 1.1.1 release:
Full Changelog: coenjacobs/mozart@1.0.6...1.0.7
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.7- This releaseLinks
v1.0.6Compare Source
Maintenance release, containing the following fixes:
Full set of changes: coenjacobs/mozart@1.0.5...1.0.6
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.6- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.5Compare Source
Maintenance release, containing the following fixes:
Full set of changes: coenjacobs/mozart@1.0.4...1.0.5
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.5- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.4Compare Source
Maintenance release, containing the following fixes:
Full set of changes: coenjacobs/mozart@1.0.3...1.0.4
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.4- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.3Compare Source
Maintenance release, containing the following fixes:
Full set of changes: coenjacobs/mozart@1.0.2...1.0.3
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.3- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.2Compare Source
Maintenance release, containing the following fixes:
Full set of changes: coenjacobs/mozart@1.0.1...1.0.2
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.2- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.1Compare Source
Maintenance release, containing the following fixes:
Thank you both for contributing. 😊
Full set of changes: coenjacobs/mozart@1.0.0...1.0.1
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.1- This releaselatest- Latest stable version (if this is the highest version)Links
v1.0.0Compare Source
This is the stable release of version 1.0.0 of the Mozart project. I'm proud to say that this release is finally here and this marks a significant milestone in the project. For details on everything that has changed, please refer to the beta testing and 1.0.0 feature set post in the discussions. Thanks everyone for their continued support, helpful comments and contributions. Thank you everyone!
I've written a bit about the whole process around this on my personal blog: Mozart 1.0: Five years in the making.
Full Changelog: coenjacobs/mozart@0.7.1...1.0.0
Docker Images
This release includes Docker images for multiple architectures (linux/amd64, linux/arm64, linux/arm/v7).
Pull from Docker Hub
Pull from GitHub Container Registry
Available Tags
1.0.0- This releaselatest- Latest stable version (if this is the highest version)Links
Configuration
📅 Schedule: Branch creation - "before 5am on wednesday" in timezone Europe/Vienna, 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.