Skip to content

Commit

Permalink
Prepare release v5.0.0 (#671)
Browse files Browse the repository at this point in the history
## 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>
  • Loading branch information
heroku-linguist[bot] authored May 23, 2024
1 parent 097a25d commit cf2cb6e
Show file tree
Hide file tree
Showing 16 changed files with 57 additions and 25 deletions.
5 changes: 4 additions & 1 deletion buildpacks/gradle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### Added

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

* Initial release

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/gradle/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/gradle"
version = "4.1.1"
version = "5.0.0"
name = "Heroku Gradle"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Heroku's Gradle buildpack. A component of the 'heroku/java' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/jvm-function-invoker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### Changed

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

* Initial release.

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/jvm-function-invoker/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/jvm-function-invoker"
version = "4.1.1"
version = "5.0.0"
name = "Salesforce JVM Function Invoker"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Salesforce's JVM function invoker buildpack. A component of the 'heroku/java-function' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/jvm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### Added

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

* Initial release

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/jvm/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/jvm"
version = "4.1.1"
version = "5.0.0"
name = "Heroku OpenJDK"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Heroku's OpenJDK buildpack. A component of the 'heroku/java' and 'heroku/scala' buildpacks."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/maven/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### Added

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

* Initial release

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/maven/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/maven"
version = "4.1.1"
version = "5.0.0"
name = "Heroku Maven"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Heroku's Maven buildpack. A component of the 'heroku/java' buildpack."
Expand Down
5 changes: 4 additions & 1 deletion buildpacks/sbt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### 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](https://github.com/heroku/buildpacks-jvm/pull/669))
Expand Down Expand Up @@ -77,7 +79,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Initial release

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/sbt/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/sbt"
version = "4.1.1"
version = "5.0.0"
name = "Heroku sbt"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Heroku's sbt buildpack. A component of the 'heroku/scala' buildpack."
Expand Down
8 changes: 7 additions & 1 deletion meta-buildpacks/java-function/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### Changed

- Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](https://github.com/heroku/buildpacks-jvm/pull/662))
- Updated `heroku/jvm-function-invoker` to `5.0.0`.
- Updated `heroku/jvm` to `5.0.0`.
- Updated `heroku/maven` to `5.0.0`.

## [4.1.1] - 2024-05-01

Expand Down Expand Up @@ -333,7 +338,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Initial release

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
8 changes: 4 additions & 4 deletions meta-buildpacks/java-function/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/java-function"
version = "4.1.1"
version = "5.0.0"
name = "Salesforce Java Function"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Salesforce's buildpack for Java Functions."
Expand All @@ -14,15 +14,15 @@ type = "BSD-3-Clause"

[[order.group]]
id = "heroku/jvm"
version = "4.1.1"
version = "5.0.0"

[[order.group]]
id = "heroku/maven"
version = "4.1.1"
version = "5.0.0"

[[order.group]]
id = "heroku/jvm-function-invoker"
version = "4.1.1"
version = "5.0.0"

[metadata.release]
image = { repository = "docker.io/heroku/buildpack-java-function" }
8 changes: 7 additions & 1 deletion meta-buildpacks/java/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### Changed

- Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](https://github.com/heroku/buildpacks-jvm/pull/662))
- Updated `heroku/gradle` to `5.0.0`.
- Updated `heroku/jvm` to `5.0.0`.
- Updated `heroku/maven` to `5.0.0`.

## [4.1.1] - 2024-05-01

Expand Down Expand Up @@ -269,7 +274,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Initial release

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
10 changes: 5 additions & 5 deletions meta-buildpacks/java/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/java"
version = "4.1.1"
version = "5.0.0"
name = "Heroku Java"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Heroku's buildpack for Java applications."
Expand All @@ -15,21 +15,21 @@ type = "BSD-3-Clause"

[[order.group]]
id = "heroku/jvm"
version = "4.1.1"
version = "5.0.0"

[[order.group]]
id = "heroku/maven"
version = "4.1.1"
version = "5.0.0"

[[order]]

[[order.group]]
id = "heroku/jvm"
version = "4.1.1"
version = "5.0.0"

[[order.group]]
id = "heroku/gradle"
version = "4.1.1"
version = "5.0.0"

[metadata.release]
image = { repository = "docker.io/heroku/buildpack-java" }
Expand Down
7 changes: 6 additions & 1 deletion meta-buildpacks/scala/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.0] - 2024-05-23

### Changed

- Buildpack API version changed from `0.9` to `0.10`, and so requires `lifecycle` `0.17.x` or newer. ([#662](https://github.com/heroku/buildpacks-jvm/pull/662))
- Updated `heroku/jvm` to `5.0.0`.
- Updated `heroku/sbt` to `5.0.0`.

## [4.1.1] - 2024-05-01

Expand Down Expand Up @@ -100,7 +104,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Initial release

[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...HEAD
[unreleased]: https://github.com/heroku/buildpacks-jvm/compare/v5.0.0...HEAD
[5.0.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.1...v5.0.0
[4.1.1]: https://github.com/heroku/buildpacks-jvm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.2...v4.1.0
[4.0.2]: https://github.com/heroku/buildpacks-jvm/compare/v4.0.1...v4.0.2
Expand Down
6 changes: 3 additions & 3 deletions meta-buildpacks/scala/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/scala"
version = "4.1.1"
version = "5.0.0"
name = "Heroku Scala"
homepage = "https://github.com/heroku/buildpacks-jvm"
description = "Heroku's buildpack for Scala applications."
Expand All @@ -15,11 +15,11 @@ type = "BSD-3-Clause"

[[order.group]]
id = "heroku/jvm"
version = "4.1.1"
version = "5.0.0"

[[order.group]]
id = "heroku/sbt"
version = "4.1.1"
version = "5.0.0"

[metadata.release]
image = { repository = "docker.io/heroku/buildpack-scala" }
Expand Down

0 comments on commit cf2cb6e

Please sign in to comment.