Skip to content

Commit 6a1e11b

Browse files
committed
TASK: Updating version in README
1 parent 8031413 commit 6a1e11b

File tree

12 files changed

+70
-14
lines changed

12 files changed

+70
-14
lines changed

CHANGELOG.md

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,61 @@
11

2+
# 17.29.0 (2025-03-19)
3+
4+
## What's Changed
5+
* Update changelog by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/846
6+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/847
7+
* fix exception with invalid date deserialization by @jenschude in https://github.com/commercetools/commercetools-sdk-java-v2/pull/849
8+
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/850
9+
10+
**Api changes**
11+
12+
<details>
13+
<summary>Added QueryParameter(s)</summary>
14+
15+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/products`
16+
- added query parameter `priceCustomerGroupAssignments` to method `post /{projectKey}/products`
17+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/product-projections`
18+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/products/key={key}`
19+
- added query parameter `priceCustomerGroupAssignments` to method `post /{projectKey}/products/key={key}`
20+
- added query parameter `priceCustomerGroupAssignments` to method `delete /{projectKey}/products/key={key}`
21+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/products/{ID}`
22+
- added query parameter `priceCustomerGroupAssignments` to method `post /{projectKey}/products/{ID}`
23+
- added query parameter `priceCustomerGroupAssignments` to method `delete /{projectKey}/products/{ID}`
24+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/product-projections/search`
25+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/product-projections/key={key}`
26+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/product-projections/{ID}`
27+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/in-store/key={storeKey}/product-projections/key={key}`
28+
- added query parameter `priceCustomerGroupAssignments` to method `get /{projectKey}/in-store/key={storeKey}/product-projections/{ID}`
29+
</details>
30+
31+
32+
<details>
33+
<summary>Added Type(s)</summary>
34+
35+
- added type `CustomerGroupAssignment`
36+
- added type `CustomerGroupAssignmentDraft`
37+
- added type `CustomerAddCustomerGroupAssignmentAction`
38+
- added type `CustomerRemoveCustomerGroupAssignmentAction`
39+
- added type `CustomerSetCustomerGroupAssignmentsAction`
40+
- added type `CustomerGroupAssignmentAddedMessage`
41+
- added type `CustomerGroupAssignmentRemovedMessage`
42+
- added type `CustomerGroupAssignmentsSetMessage`
43+
- added type `CustomerGroupAssignmentAddedMessagePayload`
44+
- added type `CustomerGroupAssignmentRemovedMessagePayload`
45+
- added type `CustomerGroupAssignmentsSetMessagePayload`
46+
</details>
47+
48+
49+
<details>
50+
<summary>Added Property(s)</summary>
51+
52+
- added property `customerGroupAssignments` to type `Customer`
53+
- added property `customerGroupAssignments` to type `CustomerDraft`
54+
- added property `priceCustomerGroupAssignments` to type `ProductSearchProjectionParams`
55+
</details>
56+
57+
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/17.28.0...17.29.0
58+
259
# 17.28.0 (2025-03-19)
360

461
## What's Changed
@@ -15,7 +72,7 @@
1572
* feat: always deserialize to long for jsonutils by @lojzatran in https://github.com/commercetools/commercetools-sdk-java-v2/pull/845
1673

1774

18-
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/17.27.0...17.27.1
75+
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/17.27.0...17.28.0
1976

2077
# 17.27.0 (2025-02-19)
2178

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

4343
```maven
4444
<properties>
45-
<commercetools.version>17.28.0</commercetools.version>
45+
<commercetools.version>17.29.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.28.0</commercetools.version>
30+
<commercetools.version>17.29.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.28.0</commercetools.version>
30+
<commercetools.version>17.29.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.28.0",
23+
commercetools: "17.29.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.28.0",
24+
commercetools: "17.29.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.28.0",
23+
commercetools: "17.29.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.28.0",
24+
commercetools: "17.29.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.28.0",
24+
commercetools: "17.29.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.28.0"
34+
commercetools: "17.29.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 09:52:46 UTC 2025
1+
#Wed Mar 19 14:20:33 UTC 2025
22
kotlinVersion=1.5.30
33
org.gradle.jvmargs=-Xmx2048m
4-
version=17.29.0-SNAPSHOT
4+
version=17.30.0-SNAPSHOT

reference.txt

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

0 commit comments

Comments
 (0)