Skip to content

Commit f9363b2

Browse files
authored
Merge branch 'main' into DEVX-640-helper-method-from-Coco-product-to-import-API-product
2 parents 187b414 + 136be4d commit f9363b2

File tree

150 files changed

+6267
-333
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+6267
-333
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ de95c481329aa8b821e6e71ac35c1b8bc67e3e86
1010
03665b75a1e1c3a3cf28df1dec52e91b308e4368
1111
7e25c796da25ae080a952936de535a1228fed448
1212
a0945d605699e8e7aca9448767ba1286b7ebb2c1
13+
7ceb871552e5d9cb0379fbba014690aa067061eb
14+
af9205fa592e4ae32ceca951c560a48b512b7744

CHANGELOG.md

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

2+
# 19.5.0 (2025-09-22)
3+
4+
## What's Changed
5+
6+
**Api changes**
7+
8+
<details>
9+
<summary>Required Property(s)</summary>
10+
11+
- changed property `variantSelection` of type `ProductSelectionProductAddedMessage` to be optional
12+
- changed property `variantExclusion` of type `ProductSelectionProductExcludedMessage` to be optional
13+
- changed property `oldVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessage` to be optional
14+
- changed property `newVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessage` to be optional
15+
- changed property `oldVariantSelection` of type `ProductSelectionVariantSelectionChangedMessage` to be optional
16+
- changed property `newVariantSelection` of type `ProductSelectionVariantSelectionChangedMessage` to be optional
17+
- changed property `variantSelection` of type `ProductSelectionProductAddedMessagePayload` to be optional
18+
- changed property `variantExclusion` of type `ProductSelectionProductExcludedMessagePayload` to be optional
19+
- changed property `oldVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessagePayload` to be optional
20+
- changed property `newVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessagePayload` to be optional
21+
- changed property `oldVariantSelection` of type `ProductSelectionVariantSelectionChangedMessagePayload` to be optional
22+
- changed property `newVariantSelection` of type `ProductSelectionVariantSelectionChangedMessagePayload` to be optional
23+
</details>
24+
25+
26+
<details>
27+
<summary>Added Property(s)</summary>
28+
29+
- added property `interfaceId` to type `MyTransactionDraft`
30+
- added property `interfaceId` to type `Transaction`
31+
- added property `interfaceId` to type `TransactionDraft`
32+
</details>
33+
34+
35+
<details>
36+
<summary>Added Type(s)</summary>
37+
38+
- added type `PaymentTransactionInterfaceIdSetMessage`
39+
- added type `PaymentTransactionInterfaceIdSetMessagePayload`
40+
- added type `PaymentSetTransactionInterfaceIdAction`
41+
</details>
42+
43+
44+
* Update changelog by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/980
45+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/981
46+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/982
47+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/984
48+
* Checkout sdk by @ShipilA in https://github.com/commercetools/commercetools-sdk-java-v2/pull/983
49+
* Bump io.projectreactor.netty:reactor-netty-http from 1.2.7 to 1.2.8 by @dependabot[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/948
50+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/986
51+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/987
52+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/988
53+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/989
54+
* Update generated SDKs by @ct-sdks[bot] in https://github.com/commercetools/commercetools-sdk-java-v2/pull/990
55+
* SUPPORT-35419: making custom field not required by @ShipilA in https://github.com/commercetools/commercetools-sdk-java-v2/pull/991
56+
57+
**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/19.4.0...19.5.0
58+
259
# 19.4.0 (2025-09-01)
360

461
**Api changes**

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

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

changes.md

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
**Api changes**
22

33
<details>
4-
<summary>Required Property(s)</summary>
5-
6-
- changed property `variantSelection` of type `ProductSelectionProductAddedMessage` to be optional
7-
- changed property `variantExclusion` of type `ProductSelectionProductExcludedMessage` to be optional
8-
- changed property `oldVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessage` to be optional
9-
- changed property `newVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessage` to be optional
10-
- changed property `oldVariantSelection` of type `ProductSelectionVariantSelectionChangedMessage` to be optional
11-
- changed property `newVariantSelection` of type `ProductSelectionVariantSelectionChangedMessage` to be optional
12-
- changed property `variantSelection` of type `ProductSelectionProductAddedMessagePayload` to be optional
13-
- changed property `variantExclusion` of type `ProductSelectionProductExcludedMessagePayload` to be optional
14-
- changed property `oldVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessagePayload` to be optional
15-
- changed property `newVariantExclusion` of type `ProductSelectionVariantExclusionChangedMessagePayload` to be optional
16-
- changed property `oldVariantSelection` of type `ProductSelectionVariantSelectionChangedMessagePayload` to be optional
17-
- changed property `newVariantSelection` of type `ProductSelectionVariantSelectionChangedMessagePayload` to be optional
4+
<summary>Added Type(s)</summary>
5+
6+
- added type `DiscountCombinationMode`
7+
- added type `DiscountsConfiguration`
8+
- added type `ProjectSetDiscountsConfigurationAction`
9+
</details>
10+
11+
12+
<details>
13+
<summary>Removed Property(s)</summary>
14+
15+
- :warning: removed property `skipConfiguration` from type `RecurringOrderSetOrderSkipConfigurationAction`
16+
</details>
17+
18+
19+
<details>
20+
<summary>Added Property(s)</summary>
21+
22+
- added property `discounts` to type `Project`
23+
- added property `skipConfigurationInputDraft` to type `RecurringOrderSetOrderSkipConfigurationAction`
1824
</details>
1925

commercetools/commercetools-graphql-api/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@ generateJava {
4747
"Time": "String",
4848
"BigDecimal": "Double",
4949
"YearMonth": "String",
50+
"SearchValueType": "Object"
5051
]
5152
}

0 commit comments

Comments
 (0)