From 1dae6251c20f5bbf67766ea73c2c985555f50c48 Mon Sep 17 00:00:00 2001
From: Vadim Voitenko <74241416+wwoytenko@users.noreply.github.com>
Date: Tue, 12 Nov 2024 21:18:18 +0200
Subject: [PATCH] Docs: Added v0.2.3 release notes (#243)
---
docs/overrides/main.html | 2 +-
docs/release_notes/greenmask_0_2_3.md | 31 +++++++++++++++++++++++++++
mkdocs.yml | 1 +
3 files changed, 33 insertions(+), 1 deletion(-)
create mode 100644 docs/release_notes/greenmask_0_2_3.md
diff --git a/docs/overrides/main.html b/docs/overrides/main.html
index 1ef4abac..ab4160fe 100644
--- a/docs/overrides/main.html
+++ b/docs/overrides/main.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block announce %}
- A new version 0.2.2 (2024.11.09) is released
+ A new version 0.2.3 (2024.11.12) is released
{% endblock %}
{% block outdated %}
diff --git a/docs/release_notes/greenmask_0_2_3.md b/docs/release_notes/greenmask_0_2_3.md
new file mode 100644
index 00000000..c18c4e45
--- /dev/null
+++ b/docs/release_notes/greenmask_0_2_3.md
@@ -0,0 +1,31 @@
+# Greenmask 0.2.3
+
+This release introduces bug fixes.
+
+## Changes
+
+* Fixed an issue where the partitioned table itself was executed in the restore worker, resulting in a "file not found"
+ error in storage. Closes bug: restoring partitioned tables
+ fails [#238](https://github.com/GreenmaskIO/greenmask/pull/238) [#242](https://github.com/GreenmaskIO/greenmask/pull/242).
+* Fixed template function availability [#239](https://github.com/GreenmaskIO/greenmask/issues/239). Renamed methods
+ according to the documentation: GetColumnRawValue is now GetRawColumnValue, and SetColumnRawValue is now
+ SetRawColumnValue [#242](https://github.com/GreenmaskIO/greenmask/pull/242)
+* Resolved an issue where Dump.createTocEntries processed partitioned tables as if they were physical entities, despite
+ being logical [#241](https://github.com/GreenmaskIO/greenmask/pull/241)
+* Corrected merging in the pre-data, data, and post-data sections, which previously caused a panic in dump command when
+ the post-data section was excluded [#241](https://github.com/GreenmaskIO/greenmask/pull/241)
+* Fixed an issue where dumps created with --load-via-partition-root did not use the root partition table in --inserts
+ generation during restoration [#241](https://github.com/GreenmaskIO/greenmask/pull/241)
+
+#### Full Changelog: [v0.2.2...v0.2.3](https://github.com/GreenmaskIO/greenmask/compare/v0.2.2...v0.2.3)
+
+## Links
+
+Feel free to reach out to us if you have any questions or need assistance:
+
+* [Greenmask Roadmap](https://github.com/orgs/GreenmaskIO/projects/6)
+* [Email](mailto:support@greenmask.io)
+* [Twitter](https://twitter.com/GreenmaskIO)
+* [Telegram](https://t.me/greenmask_community)
+* [Discord](https://discord.gg/tAJegUKSTB)
+* [DockerHub](https://hub.docker.com/r/greenmask/greenmask)
diff --git a/mkdocs.yml b/mkdocs.yml
index 734c8450..36a6e1ee 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -126,6 +126,7 @@ nav:
- Faker function: built_in_transformers/advanced_transformers/custom_functions/faker_function.md
- About: index.md
- Release notes:
+ - Greenmask 0.2.3: release_notes/greenmask_0_2_3.md
- Greenmask 0.2.2: release_notes/greenmask_0_2_2.md
- Greenmask 0.2.1: release_notes/greenmask_0_2_1.md
- Greenmask 0.2.0: release_notes/greenmask_0_2_0.md