Skip to content

Commit cf2cb6e

Browse files
Prepare release v5.0.0 (#671)
## heroku/gradle ### Added - Support for the `arm64` architecture. ([#668](#668)) ### Changed - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) ## heroku/java ### Changed - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) - Updated `heroku/gradle` to `5.0.0`. - Updated `heroku/jvm` to `5.0.0`. - Updated `heroku/maven` to `5.0.0`. ## heroku/java-function ### Changed - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) - Updated `heroku/jvm-function-invoker` to `5.0.0`. - Updated `heroku/jvm` to `5.0.0`. - Updated `heroku/maven` to `5.0.0`. ## heroku/jvm ### Added - Support for the `arm64` architecture. ([#668](#668)) ### Changed - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) - This buildpack is no longer Heroku stack specific and can be used with most `amd64` or `arm64` Linux based CNB build and run images. ([#662](#662)) - Default OpenJDK distribution is now always Azul® Zulu®. ([#662](#662)) - Some error messages relating to OpenJDK installation changed. ([#665](#665)) - OpenJDK is now downloaded from `heroku-buildpacks-jvm.s3.us-east-1.amazonaws.com`. Users that use allow-listing for internet access during builds might need to add this new URL to their allow-list. ([#665](#665)) ### Removed - Support for Heroku's own OpenJDK build distribution. Users that explicitly request that distribution by prefixing their OpenJDK version with `heroku-` need to either remove the prefix or replace it with `zulu-`. Azul Zulu is a drop-in replacement for the Heroku OpenJDK distribution. ([#662](#662)) ## heroku/jvm-function-invoker ### Changed - Updated function runtime to 1.1.7. ([#664](#664)) - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) ## heroku/maven ### Added - Support for the `arm64` architecture. ([#668](#668)) ### Changed - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) ## heroku/sbt ### Removed - Support for sbt `<1.0`. This buildpack supported old and deprecated sbt versions on a best-effort basis before. Artifacts required by those older versions recently started to be unavailable upstream which caused us to drop support for those versions. If you're affected, please migrate your project to the latest stable sbt version `1.10.0`. ([#669](#669)) ### Added - Support for the `arm64` architecture. ([#668](#668)) ### Changed - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) ## heroku/scala ### Changed - Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](#662)) - Updated `heroku/jvm` to `5.0.0`. - Updated `heroku/sbt` to `5.0.0`. Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
1 parent 097a25d commit cf2cb6e

16 files changed

Lines changed: 57 additions & 25 deletions

File tree

buildpacks/gradle/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.0] - 2024-05-23
11+
1012
### Added
1113

1214
- Support for the `arm64` architecture. ([#668](https://github.com/heroku/buildpacks-jvm/pull/668))
@@ -55,7 +57,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5557

5658
* Initial release
5759

58-
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
60+
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
61+
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
5962
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
6063
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
6164
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2

buildpacks/gradle/buildpack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/gradle"
5-
version = "4.1.1"
5+
version = "5.0.0"
66
name = "Heroku Gradle"
77
homepage = "https://github.com/heroku/buildpacks-jvm"
88
description = "Heroku's Gradle buildpack. A component of the 'heroku/java' buildpack."

buildpacks/jvm-function-invoker/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.0] - 2024-05-23
11+
1012
### Changed
1113

1214
- Updated function runtime to 1.1.7. ([#664](https://github.com/heroku/buildpacks-jvm/pull/664))
@@ -247,7 +249,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
247249

248250
* Initial release.
249251

250-
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
252+
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
253+
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
251254
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
252255
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
253256
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2

buildpacks/jvm-function-invoker/buildpack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/jvm-function-invoker"
5-
version = "4.1.1"
5+
version = "5.0.0"
66
name = "Salesforce JVM Function Invoker"
77
homepage = "https://github.com/heroku/buildpacks-jvm"
88
description = "Salesforce's JVM function invoker buildpack. A component of the 'heroku/java-function' buildpack."

buildpacks/jvm/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.0] - 2024-05-23
11+
1012
### Added
1113

1214
- Support for the `arm64` architecture. ([#668](https://github.com/heroku/buildpacks-jvm/pull/668))
@@ -319,7 +321,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
319321

320322
* Initial release
321323

322-
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
324+
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
325+
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
323326
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
324327
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
325328
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2

buildpacks/jvm/buildpack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/jvm"
5-
version = "4.1.1"
5+
version = "5.0.0"
66
name = "Heroku OpenJDK"
77
homepage = "https://github.com/heroku/buildpacks-jvm"
88
description = "Heroku's OpenJDK buildpack. A component of the 'heroku/java' and 'heroku/scala' buildpacks."

buildpacks/maven/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.0] - 2024-05-23
11+
1012
### Added
1113

1214
- Support for the `arm64` architecture. ([#668](https://github.com/heroku/buildpacks-jvm/pull/668))
@@ -164,7 +166,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
164166

165167
* Initial release
166168

167-
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
169+
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
170+
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
168171
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
169172
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
170173
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2

buildpacks/maven/buildpack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/maven"
5-
version = "4.1.1"
5+
version = "5.0.0"
66
name = "Heroku Maven"
77
homepage = "https://github.com/heroku/buildpacks-jvm"
88
description = "Heroku's Maven buildpack. A component of the 'heroku/java' buildpack."

buildpacks/sbt/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.0] - 2024-05-23
11+
1012
### Removed
1113

1214
- Support for sbt `<1.0`. This buildpack supported old and deprecated sbt versions on a best-effort basis before. Artifacts required by those older versions recently started to be unavailable upstream which caused us to drop support for those versions. If you're affected, please migrate your project to the latest stable sbt version `1.10.0`. ([#669](https://github.com/heroku/buildpacks-jvm/pull/669))
@@ -77,7 +79,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7779

7880
* Initial release
7981

80-
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
82+
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
83+
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
8184
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
8285
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
8386
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2

buildpacks/sbt/buildpack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.10"
22

33
[buildpack]
44
id = "heroku/sbt"
5-
version = "4.1.1"
5+
version = "5.0.0"
66
name = "Heroku sbt"
77
homepage = "https://github.com/heroku/buildpacks-jvm"
88
description = "Heroku's sbt buildpack. A component of the 'heroku/scala' buildpack."

0 commit comments

Comments
 (0)