Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Upgrade appengine-plugins-core 0.10.0 #462

Merged
merged 6 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [8, 11]
java: [8, 11, 17, 21]
env:
CLOUDSDK_CORE_DISABLE_USAGE_REPORTING: true
CLOUDSDK_CORE_DISABLE_PROMPTS: true
Expand All @@ -22,8 +22,9 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: zulu
java-version: ${{ matrix.java }}
- uses: actions/cache@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.

## 2.4.6-SNAPSHOT

* Update to appengine-plugins-core 0.10.0 that supports GAE Java21 runtime.
suztomo marked this conversation as resolved.
Show resolved Hide resolved

## 2.4.5
### Changed
* Update to appengine-plugins-core 0.9.9, for automatic Java 17 compatibility when running local devserver [appengine-plugins-core#894](https://github.com/GoogleCloudPlatform/appengine-plugins-core/pull/894).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ group = "com.google.cloud.tools"
dependencies {
implementation(localGroovy())
implementation(gradleApi())
api("com.google.cloud.tools:appengine-plugins-core:0.9.9")
api("com.google.cloud.tools:appengine-plugins-core:0.10.0")

testImplementation("commons-io:commons-io:2.11.0")
testImplementation("junit:junit:4.13.2")
Expand Down