Skip to content

Commit

Permalink
Add 2.1.0 docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fh-ms committed Dec 10, 2024
1 parent 227b43b commit 5ea4f43
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ nav:
asciidoc:
attributes:
product-name: 'EclipseStore'
display-version: '2.0.0'
display-version: '2.1.0'
api-version: '2'
maven-version: '2.0.0'
maven-version: '2.1.0'
13 changes: 13 additions & 0 deletions docs/modules/intro/pages/changelog.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
= Changelog


== 2.1.0

=== Features

* xref:misc:locking/index.adoc[Concurrency API] https://github.com/eclipse-serializer/serializer/pull/156[[156]]
* xref:storage:storing-data/best-practice.adoc#_get_objects_that_are_persisted_by_a_storer[Object registration listener for storer] https://github.com/eclipse-store/store/discussions/134[[134]] https://github.com/eclipse-serializer/serializer/pull/160[[160]]
* Spring custom initializer https://github.com/eclipse-store/store/pull/323[[323]]

=== Bugfixes
* Fixes for Android regressions https://github.com/eclipse-serializer/serializer/pull/154[[154]] https://github.com/eclipse-serializer/serializer/pull/155[[155]] https://github.com/eclipse-store/store/issues/325[[325]] https://github.com/eclipse-store/store/issues/326[[326]] https://github.com/eclipse-store/store/pull/329[[329]]


== 2.0.0

=== Features
Expand Down
2 changes: 1 addition & 1 deletion storage/embedded-tools/storage-converter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mvn -Pconverter-standalone clean package
To configure the input and output storage an [external configuration](https://docs.eclipsestore.io/manual/storage/configuration/index.html#external-configuration) file for each storage is required.

```console
java -jar storage-embedded-tools-storage-converter-2.0.0.jar sourceCongig.xml targetConfig.xml
java -jar storage-embedded-tools-storage-converter-2.1.0.jar sourceCongig.xml targetConfig.xml
```

### StorageConverter.java
Expand Down
6 changes: 3 additions & 3 deletions storage/embedded-tools/storage-migrator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ The type dictionary migration is only done when `typeDictionaryRelativePath` is
### Migration of both, source code and type dictionary:

````
mvn org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.activeRecipes=org.eclipse.store.storage.embedded.tools.storage.migrator.ConvertProject -Drewrite.recipeArtifactCoordinates=org.eclipse.store:storage-embedded-tools-storage-migrator:2.0.0 -DeclipseStoreVersion=2.0.0 -Drewrite.plainTextMasks=**/*.ptd -DtypeDictionaryRelativeFilePath=src/main/resources/PersistenceTypeDictionary.ptd
mvn org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.activeRecipes=org.eclipse.store.storage.embedded.tools.storage.migrator.ConvertProject -Drewrite.recipeArtifactCoordinates=org.eclipse.store:storage-embedded-tools-storage-migrator:2.1.0 -DeclipseStoreVersion=2.1.0 -Drewrite.plainTextMasks=**/*.ptd -DtypeDictionaryRelativeFilePath=src/main/resources/PersistenceTypeDictionary.ptd
````

### Migration of source code only:

````
mvn org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.activeRecipes=org.eclipse.store.storage.embedded.tools.storage.migrator.ConvertProject -Drewrite.recipeArtifactCoordinates=org.eclipse.store:storage-embedded-tools-storage-migrator:2.0.0 -DeclipseStoreVersion=2.0.0
mvn org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.activeRecipes=org.eclipse.store.storage.embedded.tools.storage.migrator.ConvertProject -Drewrite.recipeArtifactCoordinates=org.eclipse.store:storage-embedded-tools-storage-migrator:2.1.0 -DeclipseStoreVersion=2.1.0
````

### Migration of type dictionary only:

````
mvn org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.activeRecipes=org.eclipse.store.storage.embedded.tools.storage.migrator.ConvertProject -Drewrite.recipeArtifactCoordinates=org.eclipse.store:storage-embedded-tools-storage-migrator:2.0.0 -Drewrite.plainTextMasks=**/*.ptd -DtypeDictionaryRelativeFilePath=src/main/resources/PersistenceTypeDictionary.ptd
mvn org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.activeRecipes=org.eclipse.store.storage.embedded.tools.storage.migrator.ConvertProject -Drewrite.recipeArtifactCoordinates=org.eclipse.store:storage-embedded-tools-storage-migrator:2.1.0 -Drewrite.plainTextMasks=**/*.ptd -DtypeDictionaryRelativeFilePath=src/main/resources/PersistenceTypeDictionary.ptd
````

0 comments on commit 5ea4f43

Please sign in to comment.