Skip to content

Commit

Permalink
Docs update (#298)
Browse files Browse the repository at this point in the history
* Add storage converter to faqs

* Remove snapshot repo

* Update changelog
  • Loading branch information
fh-ms authored Oct 10, 2024
1 parent c996970 commit abfadef
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 20 deletions.
20 changes: 20 additions & 0 deletions docs/modules/intro/pages/changelog.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
= 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]]
* 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

* 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]]
* 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

=== Features
Expand Down
25 changes: 5 additions & 20 deletions docs/modules/intro/pages/installation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,11 @@ You can find the {product-name} libraries in the Maven Central repository.

[source, xml, subs=attributes+, title="Maven [pom.xml]"]
----
<repositories>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.eclipse.store</groupId>
<artifactId>storage-embedded</artifactId>
<version>{maven-version}</version>
</dependency>
</dependencies>
<dependency>
<groupId>org.eclipse.store</groupId>
<artifactId>storage-embedded</artifactId>
<version>{maven-version}</version>
</dependency>
----

[source, groovy, subs=attributes+, title="Gradle (Groovy) [build.gradle]"]
Expand Down
5 changes: 5 additions & 0 deletions docs/modules/storage/pages/faq/file-storage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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].

0 comments on commit abfadef

Please sign in to comment.