Skip to content

Latest commit

 

History

History
141 lines (96 loc) · 9.83 KB

CHANGELOG.md

File metadata and controls

141 lines (96 loc) · 9.83 KB

gradle-nexus-staging-plugin changelog

0.30.0 - 2021-02-26

  • Replace from old unsupported HTTP Builder to OkHttp 4 - #188 - PR by anuraaga
  • Switch project development to maintenance mode - see below
  • Switch build to Gradle 6.8.3
  • Remove deprecated since 0.8.0 promoteRepository and closeAndPromoteRepository tasks

Backward compatibility note. Due to the internal HTTP client library change, the plugin might start behaving slightly different in certain situations.

PROJECT DEVELOPMENT SWITCHED TO THE MAINTENANCE MODE. To make releasing to Maven Central even easier, I and Marc Phillip (the author of nexus-publish-plugin) combined forces to create a next generation, unified 2-in-1 plugin - gradle-nexus-publish-plugin. It is a recommended solution, as our development effort will be put in that new plugin. See my blog post and the official migration guide.

Thank you for over 5 years of releasing with my plugin!

0.22.0 - 2020-08-17

  • Change default retrying time to 5 minutes - a value recommended by Sonatype (suggestion by Mikhail Yakushin)
  • Switch build to Gradle 6.6
  • Bump some dependencies
  • Check basic compatibility with Gradle up to 6.6
  • CI server sanity check for Java 14 compatibility

0.21.2 - 2019-12-23

0.21.1 - 2019-09-05

  • Fix incompatibility of unsupported releasing with legacy upload task with Gradle 5
  • Precise minimal supported Gradle version to 4.9
  • Improve error message when applying on root project - #122 - PR by Patrik Greco

0.21.0 - 2019-05-19

  • Restore ability to override ban on applying plugin on subprojects - #116
  • Workaround Gradle limitations with precompiled script plugin accessors in Kotlin - #117 - contribution by @Vampire
  • Decrease retrying messages verbosity - #82
  • Execute e2e tests on Travis also for Java 11 - #74
  • Automatically upgrade dependencies with Dependabot - #79
  • CI server sanity check for Java 12 compatibility
  • CI server sanity check for OpenJ9 11 compatibility

0.20.0 - 2019-01-05

  • Reuse explicitly created staging repository ID if provided by external plugin - #77
  • Fix releasing from Travis - workaround Gradle limitation with Nexus stating repositories with external plugin - nexus-publish-plugin #76
  • Raise minimal required Gradle version to 4.8 due to internals modernisation
  • Runtime compatibility with Gradle 5.0 and 5.1

Deprecation note. Support for implicitly created staging repositories is deprecated. It has been always problematic, slow and error prone to find a proper staging repository and the recent changes in Travis just emphasised that. Thanks to the new nexus-publish-plugin plugin by Marc Philipp which seamlessly integrates with the gradle-nexus-staging plugin it should straightforward to use explicitly created staging repositories in Nexus. At least in a case of using maven-publish (publish... tasks). If you still use the old maven plugin (the uploadArchives task) please refer to that issue.

The original code has not been removed and should still work for the time being (if you don't use Travis), but it is no longer officially supported (e.g. the E2E tests has been switched to the new approach).

0.12.0 - 2018-09-29

  • Java 11 compatibility (basic path verified by e2e tests) - #73
  • Fix crash on non-upload task named 'uploadArchives' - #67
  • Drop support for Java 7
  • Drop Gradle 2.x support (not supported by used plugins)
  • Upgrade project dependencies
  • Upgrade Gradle to 4.10.2

0.11.0 - 2017-08-18

  • Fail when applied on non-root project - #47
  • Less confusing log output without "info" logging enabled - #60
  • Upgrade project dependencies
  • Upgrade Gradle to 4.1 (compatibility with Gradle 2.0+ should be still maintained)

0.10.0 - 2017-08-18

  • Configurable repository description in close/release operation - #63 - contribution by akomakom

0.9.0 - 2017-06-05

This release provides no new features or bugfixes. It is focused on acceptance E2E testing and Continuous Delivery with CDeliveryBoy.

  • Acceptance tests at Gradle level run before release against real Nexus - #40
  • Automatic CHANGELOG.md synchronization with GitHub releases - #52
  • Switch releasing to Continuous Delivery with CDeliveryBoy - #54

0.8.0 - 2017-04-08

  • Auto drop repository after release - #37
  • Rename "promote" operation to "release" - #50
  • Upgrade project dependencies to 2017 - #43
  • Separate functional tests from unit tests - #48
  • Make functional tests work also on Windows - #39

Deprecation note. The promoteRepository and closeAndPromoteRepository tasks are marked as deprecated and will be removed in one of the future versions. releaseRepository and closeAndReleaseRepository can be used as drop-in replacements.

0.7.0 - 2017-03-27

  • Verify that repository has been really closed - #21
  • Re-enable sharing stagingRepositoryId between close and promote - #46
  • Basic functional tests with different Gradle versions - #41
  • Suggest longer timeout if failed on time related operations even without --info enabled - #34
  • Longer default retry period - #12

0.6.1 - 2017-03-20

  • Reusing stagingRepositoryId from close task bypasses retry mechanism and fails - #44 - reusing stagingRepositoryId is temporary disabled

0.6.0 - 2017-03-19

  • Consider state trying to find just one repository in given state - #36 - contribution by strelok1
  • Better error message in case of HTTP request failure - #5 - contribution by deanhiller
  • Add EditorConfig configuration to better deal with spaces vs tabs - #33

0.5.3 - 2015-06-13

  • packageGroup should be taken from project.group by default - #11

0.5.2 - 2015-06-09

  • Provide single task to close and promote repository - #9
  • getStagingProfile task should display output without --info switch - #8

0.5.1 - 2015-03-08

  • Credentials should be automatically fetched from configured deployer - #7
  • Credentials should be automatically fetched from Gradle properties (when available) - #6

0.5.0 - 2015-03-02

  • Wait given time period when repositories are not yet available - #3
  • Use configured stagingProfileId when available - #2
  • nexusUrl by default should use Sonatype OSSRH - #1

0.4.0 - 2015-02-27

  • Initial release