-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from GreenmaskIO/changelog_in_doc_v0.1.7
Changelog in doc v0.1.7
- Loading branch information
Showing
9 changed files
with
398 additions
and
167 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block announce %} | ||
Version 0.1.5 is released | ||
Version 0.1.7 is <a href="https://github.com/GreenmaskIO/greenmask/releases/tag/v0.1.7">released</a> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Greenmask 0.1.6 | ||
|
||
This is a minor release that introduces a bug hotfix | ||
|
||
## Fixes | ||
|
||
- Fixed uncontrolled buffer growth in the restore command | ||
|
||
## Assets | ||
|
||
To download the Greenmask binary compatible with your system, see the [release's assets list](https://github.com/GreenmaskIO/greenmask/releases/tag/v0.1.6). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Greenmask 0.1.7 | ||
|
||
This release introduces a new Greenmask command, improvements, bug fixes, and documentation update. | ||
|
||
## New features | ||
|
||
* Added restoration filtering by `--table`, `--schema` and `--exclude-schema` parameters | ||
* Validate parameters without parameters validates only configuration file | ||
* Added the `--schema` parameter, which allows to make a schema diff between the previous dump and the current. This | ||
is useful when you want to check if the schema has changed after the migration. By controlling it we can exclude | ||
data leakage after migration | ||
* Validate command divided by many stages that can be controlled using parameters | ||
* Configuration validation | ||
* Transformer validation | ||
* Constraint violation check | ||
* Data difference check | ||
|
||
|
||
## Improvements | ||
|
||
* Improved Hash transformer | ||
* Added salt parameter that can be set via config or via `GREENMASK_GLOBAL_SALT` | ||
* Added sha3 functions support in different modes (sha3-224, sha3-256, sha3-384, sha3-512) | ||
* Refactored `Cmd` transformer logic | ||
* Json API: Now it allows to use of column names instead of column indexes in JSON format | ||
* Csv API: Now it can use the column order from config via column remapping | ||
* The `validate` command was rewritten almost from scratch. | ||
* New option `--transformed-only` - displays only columns that are transformed with primary key (if exists). This | ||
allows to reduce the output data and make it more readable | ||
* Implemented `json` format for output | ||
* Added the `--table-format` parameter which is responsible for the `vertical` and `horizontal` table orientation. | ||
This works only when `--format=text` | ||
* Added the `--warnings` parameter, if it is specified then not only fatal-warnings will be displayed, but also | ||
those with a lower severity | ||
|
||
## Fixes | ||
|
||
* Fixed `--use-list` option - now it applies toc entries according to the order in list file | ||
* Fixed `--use-list` option behaviour together with `--list-format` option (`json` or `text`). Now it | ||
generates temporal list file in text format for providing it to the pg_restore call | ||
* Updated documentation according to the latest changes | ||
|
||
|
||
|
||
## Assets | ||
|
||
To download the Greenmask binary compatible with your system, see | ||
the [release's assets list](https://github.com/GreenmaskIO/greenmask/releases/tag/v0.1.7). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters