Skip to content

Commit

Permalink
TASK: Updating version in README
Browse files Browse the repository at this point in the history
  • Loading branch information
ct-sdks[bot] committed Apr 18, 2024
1 parent 5cada20 commit d246619
Show file tree
Hide file tree
Showing 11 changed files with 101 additions and 12 deletions.
90 changes: 90 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,94 @@

# 17.10.0 (2024-04-18)

## What's Changed
* Update changelog by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/616
* deserialize product search facets by @jenschude in https://github.com/commercetools/commercetools-sdk-java-v2/pull/624
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/610
* Update generated SDKs by @ct-sdks in https://github.com/commercetools/commercetools-sdk-java-v2/pull/625

**Api changes**

<details>
<summary>Changed Property(s)</summary>

- :warning: changed property `custom` of type `MyBusinessUnitDraft` from type `CustomFields` to `CustomFieldsDraft`
- :warning: changed property `custom` of type `MyCompanyDraft` from type `CustomFields` to `CustomFieldsDraft`
- :warning: changed property `custom` of type `MyDivisionDraft` from type `CustomFields` to `CustomFieldsDraft`
</details>


<details>
<summary>Added Property(s)</summary>

- added property `attributedTo` to type `CreatedBy`
- added property `attributedTo` to type `LastModifiedBy`
- added property `postFilter` to type `ProductSearchRequest`
</details>


<details>
<summary>Required Property(s)</summary>

- :warning: changed property `stores` of type `BusinessUnit` to be required
- :warning: changed property `stores` of type `Company` to be required
- :warning: changed property `stores` of type `Division` to be required
- :warning: changed property `stores` of type `BusinessUnitSetStoresAction` to be required
- :warning: changed property `stores` of type `CartDiscountSetStoresAction` to be required
- :warning: changed property `stores` of type `Customer` to be required
- :warning: changed property `stores` of type `CustomerSetStoresAction` to be required
</details>


<details>
<summary>Added Type(s)</summary>

- added type `Attribution`
- added type `AttributionSource`
</details>


<details>
<summary>Removed Method(s)</summary>

- :warning: removed method `apiRoot.withProjectKey().products().search().head()`
</details>

**Import changes**

<details>
<summary>Added Resource(s)</summary>

- added resource `/{projectKey}/discount-codes`
- added resource `/{projectKey}/discount-codes/import-containers`
- added resource `/{projectKey}/discount-codes/import-containers/{importContainerKey}`
</details>


<details>
<summary>Added Method(s)</summary>

- added method `apiRoot.withProjectKeyValue().discountCodes().importContainers().withImportContainerKeyValue().post()`
</details>


<details>
<summary>Added Type(s)</summary>

- added type `DiscountCodeImportRequest`
- added type `DiscountCodeImport`
</details>


<details>
<summary>Added Enum(s)</summary>

- added enum `discount-code` to type `ImportResourceType`
</details>


**Full Changelog**: https://github.com/commercetools/commercetools-sdk-java-v2/compare/17.9.0...17.10.0

# 17.9.0 (2024-04-08)

## What's Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The latest stable SDK release can be retrieved from [Maven Central](https://sear
```gradle
ext {
versions = [
commercetools: "17.9.0"
commercetools: "17.10.0"
]
}
Expand All @@ -42,7 +42,7 @@ dependencies {

```maven
<properties>
<commercetools.version>17.9.0</commercetools.version>
<commercetools.version>17.10.0</commercetools.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion examples/maven-okhttp3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</plugins>
</build>
<properties>
<commercetools.version>17.9.0</commercetools.version>
<commercetools.version>17.10.0</commercetools.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion examples/maven-okhttp4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</plugins>
</build>
<properties>
<commercetools.version>17.9.0</commercetools.version>
<commercetools.version>17.10.0</commercetools.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-datadog-statsd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {

ext {
versions = [
commercetools: "17.9.0",
commercetools: "17.10.0",
]
}

Expand Down
2 changes: 1 addition & 1 deletion examples/spring-datadog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {

ext {
versions = [
commercetools: "17.9.0",
commercetools: "17.10.0",
]
}

Expand Down
2 changes: 1 addition & 1 deletion examples/spring-newrelic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {

ext {
versions = [
commercetools: "17.9.0",
commercetools: "17.10.0",
newrelic: "8.0.1"
]
}
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-otel/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {

ext {
versions = [
commercetools: "17.9.0",
commercetools: "17.10.0",
]
}

Expand Down
2 changes: 1 addition & 1 deletion examples/spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spotless {

ext {
versions = [
commercetools: "17.9.0",
commercetools: "17.10.0",
newrelic: "7.7.0"
]
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Mon Apr 08 16:25:42 UTC 2024
#Thu Apr 18 14:13:02 UTC 2024
kotlinVersion=1.5.30
org.gradle.jvmargs=-Xmx2048m
version=17.10.0-SNAPSHOT
version=17.11.0-SNAPSHOT
1 change: 0 additions & 1 deletion reference.txt

This file was deleted.

0 comments on commit d246619

Please sign in to comment.