Skip to content

Commit 6a872ff

Browse files
Merge pull request #657 from commercetools/release5.9.0
New Release 5.9.0
2 parents eb0f479 + 4f11cae commit 6a872ff

File tree

6 files changed

+34
-20
lines changed

6 files changed

+34
-20
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
.idea
33
*.iml
44

5+
.env
6+
57
# Gradle
68
.gradle/
79
build/
810
out/
11+
bin/
912

1013
# MACOS
1114
.DS_Store

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Example:
221221
##### Download
222222

223223
```bash
224-
docker pull commercetools/commercetools-project-sync:5.5.1
224+
docker pull commercetools/commercetools-project-sync:5.9.0
225225
```
226226
##### Run
227227

@@ -233,14 +233,14 @@ docker run \
233233
-e TARGET_PROJECT_KEY=xxxx \
234234
-e TARGET_CLIENT_ID=xxxx \
235235
-e TARGET_CLIENT_SECRET=xxxx \
236-
commercetools/commercetools-project-sync:5.5.1 -s all
236+
commercetools/commercetools-project-sync:5.9.0 -s all
237237
```
238238

239239

240240
### Examples
241241
- To run the all sync modules from a source project to a target project
242242
```bash
243-
docker run commercetools/commercetools-project-sync:5.5.1 -s all
243+
docker run commercetools/commercetools-project-sync:5.9.0 -s all
244244
```
245245
This will run the following sync modules in the given order:
246246
1. `Type` Sync and `ProductType` Sync and `States` Sync and `TaxCategory` Sync and `CustomObject` Sync in parallel.
@@ -250,70 +250,70 @@ commercetools/commercetools-project-sync:5.5.1 -s all
250250

251251
- To run the type sync
252252
```bash
253-
docker run commercetools/commercetools-project-sync:5.5.1 -s types
253+
docker run commercetools/commercetools-project-sync:5.9.0 -s types
254254
```
255255

256256
- To run the productType sync
257257
```bash
258-
docker run commercetools/commercetools-project-sync:5.5.1 -s productTypes
258+
docker run commercetools/commercetools-project-sync:5.9.0 -s productTypes
259259
```
260260

261261
- To run the states sync
262262
```bash
263-
docker run commercetools/commercetools-project-sync:5.5.1 -s states
263+
docker run commercetools/commercetools-project-sync:5.9.0 -s states
264264
```
265265
- To run the taxCategory sync
266266
```bash
267-
docker run commercetools/commercetools-project-sync:5.5.1 -s taxCategories
267+
docker run commercetools/commercetools-project-sync:5.9.0 -s taxCategories
268268
```
269269

270270
- To run the category sync
271271
```bash
272-
docker run commercetools/commercetools-project-sync:5.5.1 -s categories
272+
docker run commercetools/commercetools-project-sync:5.9.0 -s categories
273273
```
274274

275275
- To run the product sync
276276
```bash
277-
docker run commercetools/commercetools-project-sync:5.5.1 -s products
277+
docker run commercetools/commercetools-project-sync:5.9.0 -s products
278278
```
279279

280280
- To run the cartDiscount sync
281281
```bash
282-
docker run commercetools/commercetools-project-sync:5.5.1 -s cartDiscounts
282+
docker run commercetools/commercetools-project-sync:5.9.0 -s cartDiscounts
283283
```
284284

285285
- To run the inventoryEntry sync
286286
```bash
287-
docker run commercetools/commercetools-project-sync:5.5.1 -s inventoryEntries
287+
docker run commercetools/commercetools-project-sync:5.9.0 -s inventoryEntries
288288
```
289289

290290
- To run the customObject sync
291291
```bash
292-
docker run commercetools/commercetools-project-sync:5.5.1 -s customObjects
292+
docker run commercetools/commercetools-project-sync:5.9.0 -s customObjects
293293
```
294294

295295
- To run the customer sync
296296
```bash
297-
docker run commercetools/commercetools-project-sync:5.5.1 -s customers
297+
docker run commercetools/commercetools-project-sync:5.9.0 -s customers
298298
```
299299

300300
- To run the shoppingList sync
301301
```bash
302-
docker run commercetools/commercetools-project-sync:5.5.1 -s shoppingLists
302+
docker run commercetools/commercetools-project-sync:5.9.0 -s shoppingLists
303303
```
304304
- To run both products and shoppingList sync
305305
```bash
306-
docker run commercetools/commercetools-project-sync:5.5.1 -s products shoppingLists
306+
docker run commercetools/commercetools-project-sync:5.9.0 -s products shoppingLists
307307
```
308308

309309
- To run type, productType and shoppingList sync
310310
```bash
311-
docker run commercetools/commercetools-project-sync:5.5.1 -s types productTypes shoppingLists
311+
docker run commercetools/commercetools-project-sync:5.9.0 -s types productTypes shoppingLists
312312
```
313313

314314
- To run all sync modules using a runner name
315315
```bash
316-
docker run commercetools/commercetools-project-sync:5.5.1 -s all -r myRunnerName
316+
docker run commercetools/commercetools-project-sync:5.9.0 -s all -r myRunnerName
317317
```
318318

319319
## Scopes

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ext {
3434
assertjVersion = '3.27.6'
3535
pmdVersion = '7.19.0'
3636
jacocoVersion = '0.8.14'
37-
commercetoolsSyncJava = '10.4.0'
37+
commercetoolsSyncJava = '10.5.0'
3838
httpClientVersion = '18.3.0'
3939
apacheCliVersion = '1.11.0'
4040
jupiterApiVersion = '5.14.1'

docs/RELEASE_NOTES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,17 @@ All notable changes to the [commercetools-project-sync project](https://github.c
3333

3434
This project adheres to [Semantic Versioning](https://semver.org/).
3535

36+
### 5.9.0 - Jan 8, 2026
37+
[Commits](https://github.com/commercetools/commercetools-project-sync/compare/5.8.0...5.9.0)
38+
39+
- 🛠️ **Dependency Updates** (1)
40+
- `com.commercetools:commercetools-sync-java` `10.4.0` -> [`10.5.0`](https://github.com/commercetools/commercetools-sync-java/releases/tag/10.5.0)
41+
42+
- 🐞 **Bug Fixes** (1)
43+
- Fixed test configuration by removing `junit-vintage` engine from JUnit Platform configuration, as the project only uses JUnit 5 (Jupiter).
44+
45+
---
46+
3647
### 5.1.2 - April 6, 2022
3748
[Commits](https://github.com/commercetools/commercetools-project-sync/compare/5.1.1...5.1.2)
3849

gradle-scripts/integration-tests.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ configurations {
1717

1818
task integrationTest(type: Test) {
1919
useJUnitPlatform {
20-
includeEngines 'junit-jupiter', 'junit-vintage'
20+
includeEngines 'junit-jupiter'
2121
}
2222
testClassesDirs = sourceSets.integrationTest.output.classesDirs
2323
classpath = sourceSets.integrationTest.runtimeClasspath

gradle-scripts/test.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
test {
22
useJUnitPlatform {
3-
includeEngines 'junit-jupiter', 'junit-vintage'
3+
includeEngines 'junit-jupiter'
44
}
55
}
66

0 commit comments

Comments
 (0)