Skip to content

Update dependency pl.allegro.tech.build:axion-release-plugin to v1.21.1#136

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/axionreleasepluginversion
Open

Update dependency pl.allegro.tech.build:axion-release-plugin to v1.21.1#136
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/axionreleasepluginversion

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Aug 3, 2022

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
pl.allegro.tech.build:axion-release-plugin 1.13.141.21.1 age confidence

Release Notes

allegro/axion-release-plugin (pl.allegro.tech.build:axion-release-plugin)

v1.21.1

What's Changed

Changed
Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.21.0...v1.21.1

v1.21.0

What's Changed

New Contributors

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.20.1...v1.20.2

v1.20.1

What's Changed

Changed

Full Changelog: allegro/axion-release-plugin@v1.20.0...v1.20.1

v1.20.0

What's Changed

Changed
Dependency updates

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.19.1...v1.20.0

v1.19.1

What's Changed

Dependency updates
Changed

Full Changelog: allegro/axion-release-plugin@v1.19.0...v1.19.1

v1.19.0

What's Changed

Changed
Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.18...v1.19.0

v1.18.18

What's Changed

Dependency updates
Changed
  • Defaulting to root's build directory when used from includedBuilds by @​gmazzo in #​904

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.18.17...v1.18.18

v1.18.17

What's Changed

Dependency updates
Changed

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.18.16...v1.18.17

v1.18.16

What's Changed

Changed
Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.15...v1.18.16

v1.18.15

What's Changed

Changed

Full Changelog: allegro/axion-release-plugin@v1.18.14...v1.18.15

v1.18.14

What's Changed

Changed
Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.13...v1.18.14

v1.18.13

What's Changed

Changed

New Contributors

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.12...v1.18.13

v1.18.12

What's Changed

Changed
  • Snapshot dependencies checker ignores gradle Project and ProjectDependencyConstraint by @​bgalek in #​831

Full Changelog: allegro/axion-release-plugin@v1.18.11...v1.18.12

v1.18.11

What's Changed

Changed

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.18.10...v1.18.11

v1.18.10

What's Changed

Changed

Fix #​819 was not tested in the multimodule project setup, but it broke some multimodule builds, this release should fix the problem.

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.9...v1.18.10

v1.18.9

What's Changed

Changed
  • Fix ConcurrentModificationException in SnapshotDependenciesChecker by @​imvs in #​819

New Contributors

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.8...v1.18.9

v1.18.8

What's Changed

Changed

When using releaseOnlyOnReleaseBranches verifyRelease tasks were not skipped.
From now, gradle release task and it's dependants will be skipped if releaseOnlyOnReleaseBranches is active and the plugin decides to skip the release.

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.7...v1.18.8

v1.18.7

What's Changed

Bugfix

With releaseOnlyOnReleaseBranches property set,
when a release is skipped, GITHUB_OUTPUT is not written anymore.

Full Changelog: allegro/axion-release-plugin@v1.18.6...v1.18.7

v1.18.6

What's Changed

Changed

🎉 Achieving a workflow with one-liner gradle step: ./gradew build release publish is now possible!

Setting releaseOnlyOnReleaseBranches option

scmVersion {
    releaseOnlyOnReleaseBranches = true
}

Will make release task no-operation, if run on feature branches (not main/master).

You can further customize release branch name list, using releaseBranchNames property:

scmVersion {
    releaseOnlyOnReleaseBranches = true
    releaseBranchNames = ['main', 'master']
}

Based on users feedback it may be set to default in future releases :)

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.5...v1.18.6

v1.18.5

What's Changed

Changed

Introducing fallbackPrefixes that can be used to migrate from one tag prefix to another.

Usage:

scmVersion {
    tag {
        prefix.set("new-prefix-")
        fallbackPrefixes.set(listOf("old-prefix-"))
    }
}

Implement support for fallback tag prefixes by @​radoslaw-panuszewski in #​793

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.4...v1.18.5

v1.18.4

What's Changed

Changed

We continue streamlining GitHub Workflows (and CI runtimes in general).

This release is introducing unshallowRepoOnCI incubating option,
that will unshallow the git repository, so the axion-release-plugin can successfully read tags history despite your CI clone strategy.

Usage:

scmVersion {
    unshallowRepoOnCI.set(true)
}

Now, you can simplify your GitHub Actions config:

steps:
  - uses: actions/checkout@v4
-   with:
-     fetch-depth: 0

After more testing with other CI pipelines, this option will probably be enabled by default.

Dependency updates

Full Changelog: allegro/axion-release-plugin@v1.18.3...v1.18.4

v1.18.3

What's Changed

Dependencies

Full Changelog: allegro/axion-release-plugin@v1.18.2...v1.18.3

v1.18.2

What's Changed

Full Changelog: allegro/axion-release-plugin@v1.18.1...v1.18.2

v1.18.1

New behavior

From now on, on GitHub Workflows, you don't need to check out ref for axion-release-plugin to know what branch your build is being run on—it will be read from the GitHub workflow environment variable (GITHUB_HEAD_REF).

steps:
  - uses: actions/checkout@v4
    with:
      fetch-depth: 0
-     ref: ${{ github.head_ref }}

What's Changed

Dependencies

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.18.0...v1.18.1

v1.18.0

What's Changed

#​772

This release addresses a common issue with code collaboration using this plugin, particularly when multiple feature branches are being developed simultaneously from the same HEAD.

Problem

Until now, the plugin used a SIMPLE version creator by default, which did not decorate version in any way.

This default setting led to the following issues:

  • Both feature branches would generate the same version (e.g., v0.0.1-SNAPSHOT).
  • During publication, this resulted in overridden snapshots, as Maven allows overwriting SNAPSHOT versions.
Solution

This release changes the default versionCreator to VERSION_WITH_BRANCH.

The new behavior includes:

  • Appending the branch name to the version (e.g., v0.0.1-my-branch-name-SNAPSHOT).
  • Falling back to the SIMPLE version creator for detached HEAD checkouts, maintaining the old behavior in such cases.
Breaking change
  • Versions will now include the branch name, preventing the override of snapshots across different branches.
Migration Guide

To continue using the SIMPLE version creator, update your plugin configuration as follows:

scmVersion {
    versionCreator('simple')
}

Additional changes

Dependencies

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.17.2...v1.18.0

v1.17.2

What's Changed

Dependencies

Full Changelog: allegro/axion-release-plugin@v1.17.1...v1.17.2

v1.17.1

What's Changed

Introducing overridenIsClean flag.

New Contributors

Dependabot

Full Changelog: allegro/axion-release-plugin@v1.17.0...v1.17.1

v1.17.0

Breaking change

axion-release-plugin now requires a minimum Gardle 7

What's Changed

This release drops Gradle 6 support since it was a blocker to allow this plugin to handle the newer encryptions for SSH like elliptic curves and other recent cipher suites. From now on, many connection issues should be resolved thank you @​mc1arke!

New Contributors

Dependencies

Full Changelog: allegro/axion-release-plugin@v1.16.1...v1.17.0

v1.16.1

What's Changed

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.16.0...v1.16.1

v1.16.0

Major release

To fix gradle configuration cache problems @​SmialyKot changed the default SystemReader behavior - and from now on, we won't use system config by default. We tested it in multiple cases and should mostly work, but this can break things, so please file an issue if this occurs.

What's Changed

Dependencies:

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.15.5...v1.16.0

v1.15.5

What's Changed

Dependabot

Full Changelog: allegro/axion-release-plugin@v1.15.4...v1.15.5

v1.15.4

Breaking change

@​ralfhergert pointed out that this release is breaking one of the API's.
Sorry for that mistake - this should be reflected in semver versioning.

scmVersion.repository.directory now accepts String instead of File.

If you're getting Cannot set the value of property 'directory' of type java.lang.String using an instance of type java.io.File. remember to update your directory plugin property.

i.e. directory.set(project.rootProject.absolutePath)

What's Changed

New Contributors

Full Changelog: allegro/axion-release-plugin@v1.15.3...v1.15.4

v1.15.3

What's Changed

Full Changelog: allegro/axion-release-plugin@v1.15.2...v1.15.3

v1.15.2

What's Changed


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 force-pushed the renovate/axionreleasepluginversion branch from ec4d167 to e95e525 Compare August 5, 2022 21:01
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch 4 times, most recently from d421f1a to 86af62a Compare September 4, 2022 10:58
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch 2 times, most recently from a77f84f to 0afa140 Compare September 11, 2022 04:21
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 0afa140 to 4e5935c Compare September 15, 2022 14:59
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.0 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.1 Sep 15, 2022
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 4e5935c to 8e00cd7 Compare October 2, 2022 23:11
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.1 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.2 Oct 2, 2022
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 8e00cd7 to 72791a6 Compare October 16, 2022 09:33
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 72791a6 to 942f959 Compare October 28, 2022 01:24
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch 5 times, most recently from bc80955 to 069fd49 Compare November 6, 2022 04:39
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch 3 times, most recently from df391fd to 8290188 Compare November 28, 2022 16:25
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.2 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.3 Nov 28, 2022
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 8290188 to 71317de Compare December 10, 2022 10:39
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 71317de to 7a8ddf3 Compare December 24, 2022 09:36
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 7a8ddf3 to b314938 Compare February 9, 2023 12:43
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.3 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.4 Feb 9, 2023
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from b314938 to 80f03b9 Compare March 21, 2023 21:46
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.14.4 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.15.0 Mar 21, 2023
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.17.0 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.17.1 Apr 23, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from d3b0d7d to 01b8a9d Compare April 30, 2024 10:23
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.17.1 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.17.2 Apr 30, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 01b8a9d to 4f01558 Compare July 9, 2024 18:25
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.17.2 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.0 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 4f01558 to bab1bd3 Compare July 16, 2024 22:32
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.0 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.1 Jul 16, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from bab1bd3 to cfde44b Compare July 17, 2024 15:15
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.1 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.2 Jul 17, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from cfde44b to ebff483 Compare August 5, 2024 17:19
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.2 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.3 Aug 5, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from ebff483 to ca68244 Compare August 8, 2024 14:28
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.3 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.4 Aug 8, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from ca68244 to 2775ab4 Compare August 19, 2024 11:23
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.4 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.5 Aug 19, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 2775ab4 to 296cc34 Compare August 27, 2024 11:27
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.5 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.6 Aug 27, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 296cc34 to 6ba46f6 Compare August 27, 2024 16:15
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.6 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.7 Aug 27, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 6ba46f6 to b167694 Compare September 5, 2024 11:25
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.7 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.8 Sep 5, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from b167694 to 2c83ddb Compare September 23, 2024 10:53
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.8 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.9 Sep 23, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 2c83ddb to 1ae763a Compare October 1, 2024 21:39
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.9 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.10 Oct 1, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from 1ae763a to f89f767 Compare October 3, 2024 09:51
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.10 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.11 Oct 3, 2024
@renovate renovate bot force-pushed the renovate/axionreleasepluginversion branch from f89f767 to b6e5caf Compare October 4, 2024 16:16
@renovate renovate bot changed the title Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.11 Update dependency pl.allegro.tech.build:axion-release-plugin to v1.18.12 Oct 4, 2024
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