Skip to content

Commit 4593ec4

Browse files
committed
TASK: Updating version in README
1 parent 4dc0544 commit 4593ec4

File tree

11 files changed

+51
-12
lines changed

11 files changed

+51
-12
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,44 @@
11

2+
# 17.12.0 (2024-06-07)
3+
4+
## Important information
5+
6+
This release will be the last compatible with JDK version 8. The next release will be a major release and will have JDK version 11 as minimum requirement. The references to Java EE like bean validation will be updated to Jakarta EE.
7+
8+
## What's Changed
9+
* Update datadog example app to include traces and add to cart by @lojzatran in https://github.com/commercetools/commercetools-sdk-java-v2/pull/617
10+
* Update changelog by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/634
11+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/635
12+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/638
13+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/639
14+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/640
15+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/643
16+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/644
17+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/645
18+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/646
19+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/647
20+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/648
21+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/650
22+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/651
23+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/652
24+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/653
25+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/654
26+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/655
27+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/656
28+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/657
29+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/658
30+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/660
31+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/661
32+
* update SLF4J to 2.0 by @jenschude in https://github.com/commercetools/commercetools-sdk-java-v2/pull/662
33+
* chore(deps): update github/codeql-action digest to 2e230e8 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/641
34+
* chore(deps): update all dependencies by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/637
35+
* chore(deps): update actions/checkout digest to a5ac7e5 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/636
36+
* chore(deps): update actions/setup-java digest to 99b8673 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/612
37+
* chore(deps): lock file maintenance by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/642
38+
* chore(deps): update plugin org.jetbrains.kotlin.jvm to v2 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/649
39+
40+
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/17.11.0...17.12.0
41+
242
# 17.11.0 (2024-05-03)
343

444
## What's Changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The latest stable SDK release can be retrieved from [Maven Central](https://sear
2121
```gradle
2222
ext {
2323
versions = [
24-
commercetools: "17.11.0"
24+
commercetools: "17.12.0"
2525
]
2626
}
2727
@@ -42,7 +42,7 @@ dependencies {
4242

4343
```maven
4444
<properties>
45-
<commercetools.version>17.11.0</commercetools.version>
45+
<commercetools.version>17.12.0</commercetools.version>
4646
</properties>
4747
<dependencies>
4848
<dependency>

examples/maven-okhttp3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</plugins>
2828
</build>
2929
<properties>
30-
<commercetools.version>17.11.0</commercetools.version>
30+
<commercetools.version>17.12.0</commercetools.version>
3131
</properties>
3232
<dependencies>
3333
<dependency>

examples/maven-okhttp4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</plugins>
2828
</build>
2929
<properties>
30-
<commercetools.version>17.11.0</commercetools.version>
30+
<commercetools.version>17.12.0</commercetools.version>
3131
</properties>
3232
<dependencies>
3333
<dependency>

examples/spring-datadog-statsd/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020

2121
ext {
2222
versions = [
23-
commercetools: "17.11.0",
23+
commercetools: "17.12.0",
2424
]
2525
}
2626

examples/spring-datadog/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repositories {
2121

2222
ext {
2323
versions = [
24-
commercetools: "17.11.0",
24+
commercetools: "17.12.0",
2525
]
2626
}
2727

examples/spring-newrelic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repositories {
2121

2222
ext {
2323
versions = [
24-
commercetools: "17.11.0",
24+
commercetools: "17.12.0",
2525
newrelic: "8.0.1"
2626
]
2727
}

examples/spring-otel/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repositories {
2121

2222
ext {
2323
versions = [
24-
commercetools: "17.11.0",
24+
commercetools: "17.12.0",
2525
]
2626
}
2727

examples/spring/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spotless {
3131

3232
ext {
3333
versions = [
34-
commercetools: "17.11.0",
34+
commercetools: "17.12.0",
3535
newrelic: "7.7.0"
3636
]
3737
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Fri May 03 10:40:35 UTC 2024
1+
#Fri Jun 07 21:04:53 UTC 2024
22
kotlinVersion=1.5.30
33
org.gradle.jvmargs=-Xmx2048m
4-
version=17.12.0-SNAPSHOT
4+
version=17.13.0-SNAPSHOT

reference.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)