Skip to content

Commit 89cf6a6

Browse files
committed
TASK: Updating version in README
1 parent 63362cb commit 89cf6a6

File tree

12 files changed

+85
-23
lines changed

12 files changed

+85
-23
lines changed

CHANGELOG.md

Lines changed: 72 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,80 @@
11

2-
# 19.2.0 (2025-08-21)
2+
# 19.3.0 (2025-08-22)
33

44
## What's Changed
5-
* Update changelog by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/962
6-
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/963
7-
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/965
8-
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/966
9-
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/967
10-
* Fix product Mixin Product level attributes by @ShipilA in https://github.com/commercetools/commercetools-sdk-java-v2/pull/971
5+
* Update changelog by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/972
6+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/968
7+
* updating dependency by @ShipilA in https://github.com/commercetools/commercetools-sdk-java-v2/pull/973
8+
9+
**Api changes**
10+
11+
<details>
12+
<summary>Added Type(s)</summary>
13+
14+
- added type `CustomerDefaultBillingAddressSetMessage`
15+
- added type `CustomerDefaultShippingAddressSetMessage`
16+
- added type `CustomerStoresSetMessage`
17+
- added type `CustomerDefaultBillingAddressSetMessagePayload`
18+
- added type `CustomerDefaultShippingAddressSetMessagePayload`
19+
- added type `CustomerStoresSetMessagePayload`
20+
</details>
21+
22+
23+
<details>
24+
<summary>Added Method(s)</summary>
25+
26+
- added method `apiRoot.withProjectKey().recurrencePolicies().withKey().delete()`
27+
- added method `apiRoot.withProjectKey().recurrencePolicies().withId().delete()`
28+
</details>
29+
30+
**Import changes**
31+
32+
<details>
33+
<summary>Added Type(s)</summary>
34+
35+
- added type `AssociateRoleKeyReference`
36+
- added type `BusinessUnitKeyReference`
37+
- added type `BusinessUnitImportRequest`
38+
- added type `AssociateRoleInheritanceMode`
39+
- added type `BusinessUnitStatus`
40+
- added type `BusinessUnitAssociateMode`
41+
- added type `BusinessUnitApprovalRuleMode`
42+
- added type `BusinessUnitStoreMode`
43+
- added type `BusinessUnitType`
44+
- added type `AssociateRoleAssignmentDraft`
45+
- added type `AssociateDraft`
46+
- added type `BusinessUnitImport`
47+
- added type `CompanyBusinessUnitImport`
48+
- added type `DivisionBusinessUnitImport`
49+
</details>
50+
51+
52+
<details>
53+
<summary>Added Method(s)</summary>
54+
55+
- added method `apiRoot.withProjectKeyValue().businessUnits().importContainers().withImportContainerKeyValue().post()`
56+
</details>
1157

12-
## New Contributors
13-
* @ShipilA made their first contribution in https://github.com/commercetools/commercetools-sdk-java-v2/pull/971
1458

15-
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/19.1.0...19.2.0
59+
<details>
60+
<summary>Added Resource(s)</summary>
61+
62+
- added resource `/{projectKey}/business-units`
63+
- added resource `/{projectKey}/business-units/import-containers`
64+
- added resource `/{projectKey}/business-units/import-containers/{importContainerKey}`
65+
</details>
66+
67+
68+
<details>
69+
<summary>Added Enum(s)</summary>
70+
71+
- added enum `business-unit` to type `ImportResourceType`
72+
- added enum `associate-role` to type `ReferenceType`
73+
- added enum `business-unit` to type `ReferenceType`
74+
</details>
75+
76+
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/19.2.0...19.3.0
77+
1678

1779
# 19.1.0 (2025-08-05)
1880

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

4343
```maven
4444
<properties>
45-
<commercetools.version>19.2.0</commercetools.version>
45+
<commercetools.version>19.3.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
@@ -28,7 +28,7 @@
2828
</plugins>
2929
</build>
3030
<properties>
31-
<commercetools.version>19.2.0</commercetools.version>
31+
<commercetools.version>19.3.0</commercetools.version>
3232
</properties>
3333
<dependencies>
3434
<dependency>

examples/maven-okhttp4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</plugins>
2929
</build>
3030
<properties>
31-
<commercetools.version>19.2.0</commercetools.version>
31+
<commercetools.version>19.3.0</commercetools.version>
3232
</properties>
3333
<dependencies>
3434
<dependency>

examples/split-packages/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</plugins>
2929
</build>
3030
<properties>
31-
<commercetools.version>19.2.0</commercetools.version>
31+
<commercetools.version>19.3.0</commercetools.version>
3232
</properties>
3333
<dependencies>
3434
<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: "19.2.0",
23+
commercetools: "19.3.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: "19.2.0",
24+
commercetools: "19.3.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: "19.2.0",
23+
commercetools: "19.3.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: "19.2.0",
24+
commercetools: "19.3.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: "19.2.0",
24+
commercetools: "19.3.0",
2525
]
2626
}
2727

0 commit comments

Comments
 (0)