Skip to content

Commit 38b9e46

Browse files
authored
chore: release V17 (#70)
* update dependencies * bump gradlew * correct sha256 * unique production artifacts * Update CHANGELOG.md --------- Co-authored-by: Dr. Ernie Prabhakar <19791+drernie@users.noreply.github.com>
1 parent c9e55df commit 38b9e46

4 files changed

Lines changed: 15 additions & 9 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/upload-artifact@v4
6060
if: always()
6161
with:
62-
name: quiltcore-java-test-reports
62+
name: quiltcore-java-test-reports-${{ matrix.os }}-${{ matrix.java_version }}
6363
path: |
6464
/home/runner/work/quiltcore-java/quiltcore-java/lib/build/reports/tests/test/
6565
overwrite: true

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# CHANGELOG.md
22

3-
## [0.1.6] - UNRELEASED
3+
## [0.1.7] - 2024-12-23
4+
5+
- Update gradle and dependencies
6+
- Fix test failures
7+
- Fix CHANGELOG
8+
9+
## [0.1.6] - 2024-12-12
410

511
- Fix failing CI tests
612
- Add convenience methods:

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=1541fa36599e12857140465f3c91a97409b4512501c26f9631fb113e392c5bd1
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
3+
distributionSha256Sum=7a00d51fb93147819aab76024feece20b6b84e420694101f276be952e08bef03
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

lib/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ repositories {
2121

2222
dependencies {
2323
// AWS SDK
24-
implementation 'software.amazon.awssdk:s3:2.27.24'
25-
implementation 'software.amazon.awssdk:s3-transfer-manager:2.27.24'
26-
implementation 'software.amazon.awssdk.crt:aws-crt:0.30.9'
24+
implementation 'software.amazon.awssdk:s3:2.29.40'
25+
implementation 'software.amazon.awssdk:s3-transfer-manager:2.29.40'
26+
implementation 'software.amazon.awssdk.crt:aws-crt:0.33.7'
2727

2828
// JSON and YAML parsing.
2929
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
3030
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.2'
3131

3232
// JSON Schema validator.
33-
implementation 'io.vertx:vertx-json-schema:4.5.11'
33+
implementation 'io.vertx:vertx-json-schema:5.0.0.CR3'
3434

3535
// Workarounds for Java's checked exceptions.
3636
implementation 'com.pivovarit:throwing-function:1.6.1'
@@ -39,7 +39,7 @@ dependencies {
3939
testImplementation('org.junit.jupiter:junit-jupiter:5.11.4')
4040

4141
// Add Log4j dependency
42-
implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta2'
42+
implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta3'
4343
implementation 'org.apache.logging.log4j:log4j-api:3.0.0-beta2'
4444
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:3.0.0-beta2'
4545
}

0 commit comments

Comments
 (0)