Skip to content

Commit 8689975

Browse files
committed
TASK: Updating version in README
1 parent a2e4426 commit 8689975

File tree

12 files changed

+54
-13
lines changed

12 files changed

+54
-13
lines changed

CHANGELOG.md

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

2+
# 17.30.0 (2025-03-31)
3+
4+
## Important information
5+
6+
This will be the last release for Java 8. The next released version will be built with Java 11.
7+
8+
## What's Changed
9+
* Update changelog by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/851
10+
* fix(deps): update all dependencies by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/836
11+
* Delete .github/workflows/scorecard.yml by @jenschude in https://github.com/commercetools/commercetools-sdk-java-v2/pull/852
12+
* update logback by @jenschude in https://github.com/commercetools/commercetools-sdk-java-v2/pull/854
13+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/853
14+
* chore(deps): update actions/setup-java digest to 3a4f6e1 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/831
15+
* chore(deps): update actions/create-github-app-token digest to af35eda by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/830
16+
* chore(deps): update plugin com.github.johnrengelman.shadow to v8 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/800
17+
* add semgrep workflow by @jenschude in https://github.com/commercetools/commercetools-sdk-java-v2/pull/855
18+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/856
19+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/859
20+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/860
21+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/861
22+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/862
23+
* chore(deps): update gradle/actions digest to 06832c7 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/864
24+
* chore(deps): update actions/create-github-app-token digest to d72941d by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/863
25+
* chore(deps): update github/codeql-action digest to 9f45e74 by @renovate in https://github.com/commercetools/commercetools-sdk-java-v2/pull/857
26+
27+
**Api changes**
28+
29+
<details>
30+
<summary>Required Property(s)</summary>
31+
32+
- changed property `facets` of type `ProductProjectionPagedSearchResponse` to be optional
33+
</details>
34+
35+
36+
<details>
37+
<summary>Removed QueryParameter(s)</summary>
38+
39+
- :warning: removed query parameter `withTotal` from method `get /{projectKey}/product-projections/search`
40+
</details>
41+
42+
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/17.29.0...17.30.0
43+
244
# 17.29.0 (2025-03-19)
345

446
## 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.29.0"
24+
commercetools: "17.30.0"
2525
]
2626
}
2727
@@ -42,7 +42,7 @@ dependencies {
4242

4343
```maven
4444
<properties>
45-
<commercetools.version>17.29.0</commercetools.version>
45+
<commercetools.version>17.30.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.29.0</commercetools.version>
30+
<commercetools.version>17.30.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.29.0</commercetools.version>
30+
<commercetools.version>17.30.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.29.0",
23+
commercetools: "17.30.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.29.0",
24+
commercetools: "17.30.0",
2525
]
2626
}
2727

examples/spring-dynatrace-oneagent/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.29.0",
23+
commercetools: "17.30.0",
2424
]
2525
}
2626

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.29.0",
24+
commercetools: "17.30.0",
2525
newrelic: "8.16.0"
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.29.0",
24+
commercetools: "17.30.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.29.0"
34+
commercetools: "17.30.0"
3535
]
3636
}
3737

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Wed Mar 19 14:20:33 UTC 2025
1+
#Mon Mar 31 12:53:19 UTC 2025
22
kotlinVersion=1.5.30
33
org.gradle.jvmargs=-Xmx2048m
4-
version=17.30.0-SNAPSHOT
4+
version=17.31.0-SNAPSHOT

reference.txt

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

0 commit comments

Comments
 (0)