Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs update #298

Merged
merged 5 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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].
Loading