From de179c47667a27b4d0b4ff2be97f15bcdf0f4e37 Mon Sep 17 00:00:00 2001 From: fh-ms Date: Wed, 9 Oct 2024 09:36:29 +0200 Subject: [PATCH 1/5] Add storage converter to faqs --- docs/modules/storage/pages/faq/file-storage.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/modules/storage/pages/faq/file-storage.adoc b/docs/modules/storage/pages/faq/file-storage.adoc index 9c70784b..5edad239 100644 --- a/docs/modules/storage/pages/faq/file-storage.adoc +++ b/docs/modules/storage/pages/faq/file-storage.adoc @@ -23,3 +23,8 @@ the process that currently runs the application. Allowing another process to bypass these rules would eventually result in catastrophic consistency errors. + The requirement to distribute an application over multiple processes must be solved by a clustering approach (e.g. by distributing logic AND persistent data over multiple processes or by having one process to serve as the data master for multiple worker processes). + +== Is it possible to change the channel count of an existing storage? + +Yes. +This can be done with the xref:addendum/tools.adoc#_storage_converter[converter tool]. From 08ca34bb89caf1946844b316b9ca7001aa1efe8b Mon Sep 17 00:00:00 2001 From: fh-ms Date: Wed, 9 Oct 2024 09:36:46 +0200 Subject: [PATCH 2/5] Remove snapshot repo --- docs/modules/intro/pages/installation.adoc | 25 +++++----------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/docs/modules/intro/pages/installation.adoc b/docs/modules/intro/pages/installation.adoc index b6eb5c6c..69c59bb0 100644 --- a/docs/modules/intro/pages/installation.adoc +++ b/docs/modules/intro/pages/installation.adoc @@ -6,26 +6,11 @@ You can find the {product-name} libraries in the Maven Central repository. [source, xml, subs=attributes+, title="Maven [pom.xml]"] ---- - - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - false - - - true - - - - - - - org.eclipse.store - storage-embedded - {maven-version} - - + + org.eclipse.store + storage-embedded + {maven-version} + ---- [source, groovy, subs=attributes+, title="Gradle (Groovy) [build.gradle]"] From 06dbe3995f69e0ae48d1d834ae4fdbbc0d38b94a Mon Sep 17 00:00:00 2001 From: fh-ms Date: Wed, 9 Oct 2024 09:37:05 +0200 Subject: [PATCH 3/5] Update changelog --- docs/modules/intro/pages/changelog.adoc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/modules/intro/pages/changelog.adoc b/docs/modules/intro/pages/changelog.adoc index c63cf731..1bbc801f 100644 --- a/docs/modules/intro/pages/changelog.adoc +++ b/docs/modules/intro/pages/changelog.adoc @@ -1,5 +1,21 @@ = Changelog +== 2.0.0 + +=== Features + +* Additional Type Handlers https://github.com/eclipse-serializer/serializer/issues/72[[72]] +* Enhanced Reloader https://github.com/eclipse-serializer/serializer/issues/135[[135]] https://github.com/eclipse-serializer/serializer/pull/136[[136]] +* Various Storer Enhancements https://github.com/eclipse-serializer/serializer/pull/143[[143]] + +=== Bugfixes + +* Adaptive Housekeeping Idle GC Fix https://github.com/eclipse-store/store/pull/293[[293]] +* Lock File Manager Fixes https://github.com/eclipse-store/store/issues/281[[281]] https://github.com/eclipse-store/store/pull/282[[282]] +* LazyHashMap Fix https://github.com/eclipse-serializer/serializer/issues/117[[117]] https://github.com/eclipse-serializer/serializer/pull/139[[139]] +* Add Missing Constructor Methods for CSV Converter https://github.com/eclipse-store/store/pull/283[[283]] + + == 1.4.0 === Features From 9cf7d0804ccca9181bfa5a60dc81af1e42a01d24 Mon Sep 17 00:00:00 2001 From: fh-ms Date: Wed, 9 Oct 2024 10:27:00 +0200 Subject: [PATCH 4/5] Update changelog --- docs/modules/intro/pages/changelog.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/modules/intro/pages/changelog.adoc b/docs/modules/intro/pages/changelog.adoc index 1bbc801f..1d89dc2c 100644 --- a/docs/modules/intro/pages/changelog.adoc +++ b/docs/modules/intro/pages/changelog.adoc @@ -7,6 +7,7 @@ * Additional Type Handlers https://github.com/eclipse-serializer/serializer/issues/72[[72]] * Enhanced Reloader https://github.com/eclipse-serializer/serializer/issues/135[[135]] https://github.com/eclipse-serializer/serializer/pull/136[[136]] * Various Storer Enhancements https://github.com/eclipse-serializer/serializer/pull/143[[143]] +* Ensure Correct Inventorisation of S3 Directories https://github.com/eclipse-store/store/issues/250[[250]] https://github.com/eclipse-store/store/pull/270[[270]] === Bugfixes @@ -14,6 +15,7 @@ * Lock File Manager Fixes https://github.com/eclipse-store/store/issues/281[[281]] https://github.com/eclipse-store/store/pull/282[[282]] * LazyHashMap Fix https://github.com/eclipse-serializer/serializer/issues/117[[117]] https://github.com/eclipse-serializer/serializer/pull/139[[139]] * Add Missing Constructor Methods for CSV Converter https://github.com/eclipse-store/store/pull/283[[283]] +* Fix Intermittent Problem When Opening Database https://github.com/eclipse-store/store/issues/264[[264]] == 1.4.0 From 9e7622b81a92b79333134e2fff6c65c277202533 Mon Sep 17 00:00:00 2001 From: fh-ms Date: Wed, 9 Oct 2024 10:55:31 +0200 Subject: [PATCH 5/5] Update changelog --- docs/modules/intro/pages/changelog.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/modules/intro/pages/changelog.adoc b/docs/modules/intro/pages/changelog.adoc index 1d89dc2c..ad138ec3 100644 --- a/docs/modules/intro/pages/changelog.adoc +++ b/docs/modules/intro/pages/changelog.adoc @@ -16,6 +16,8 @@ * LazyHashMap Fix https://github.com/eclipse-serializer/serializer/issues/117[[117]] https://github.com/eclipse-serializer/serializer/pull/139[[139]] * Add Missing Constructor Methods for CSV Converter https://github.com/eclipse-store/store/pull/283[[283]] * Fix Intermittent Problem When Opening Database https://github.com/eclipse-store/store/issues/264[[264]] +* Fix Type Handler Foundation Registration Order Necessity https://github.com/eclipse-serializer/serializer/pull/142[[142]] https://github.com/eclipse-store/store/issues/204[[204]] +* Fix for Allocation of LazyArgs During Cleanup https://github.com/eclipse-serializer/serializer/issues/132[[132]] https://github.com/eclipse-serializer/serializer/pull/133[[133]] == 1.4.0