fix(deps): update dependency net.kyori:blossom to v2 #29
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:
1.3.1->2.2.0Release Notes
KyoriPowered/blossom (net.kyori:blossom)
v2.2.0: 🌼 blossom 2.2.0This is a small feature release, adding an option to configure newline trimming.
This release is also tested against Gradle 9.
At some point in the future, new versions of Blossom will begin requiring Java 17 at runtime. This matches the baseline for newer Gradle versions, and lets us take advantage of new language features where it makes sense for the project. Realistically it'll probably be a while since Blossom doesn't tend to need much updating, but it will happen eventually.
What's Changed
✨ Features
Other
Full Changelog: KyoriPowered/blossom@v2.1.0...v2.2.0
v2.1.0: 🌼 blossom 2.1.0blossom 2.1.0 is a feature release introducing some minor QOL features, and fixing handling of included files. It should be a straightforward upgrade for existing users of Blossom 2.0.1.
✨ Features
varianttemplate property when using variants by @jpenilla in #37🐛 Fixes
Full Changelog: KyoriPowered/blossom@v2.0.1...v2.1.0
v2.0.1: 🌼 blossom 2.0.1A hotfix release for blossom 2.0.0. See its release notes for information about the major changes in that release.
🐛 Fixes
Full Changelog: KyoriPowered/blossom@v2.0.0...v2.0.1
v2.0.0: 🌼 blossom 2.0.0NOTE 2.0.1 has been released as a hotfix to this version, resolving an issue with applying headers. See its release notes for details about those changes. We recommend using 2.0.1 instead, but the following release notes still provide helpful migration advice.
Blossom 2.0.0 is a complete redesign of the Blossom plugin to provide a fully featured solution for source and resource templating. It is based on the template engine used to build Sponge's
mathlibrary. See the README for an introduction to Blossom v2's features.Migrating from Blossom v1
The key difference in functionality with v2 is that only source files within the specific templates root will be processed as templates -- all other source files will have no other change.
This allows more efficient execution since templates only need to be regenerated when there are actual changes, and means that any compile errors in non-templated files will be linked correctly in IDE logs. Template output will also be exposed correctly to any IDE run configurations, since templates are processed at project import time.
The quickest migration from v1 starts with a buildscript like:
sourceSets { main { blossom { javaSources { // template values here property("token", value) } } } }Then place files that should be processed as templates in
src/main/java-templates. These are Pebble templates, so the variable syntax is{{ token }}. See their documentation for more of the language's features.Substitute
javawithgroovy,kotlin, orscalaas desired.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.
🔕 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.