-
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.
- Loading branch information
Showing
30 changed files
with
434 additions
and
165 deletions.
There are no files selected for viewing
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
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
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.7 is <a href="https://github.com/GreenmaskIO/greenmask/releases/tag/v0.1.7">released</a> | ||
Version 0.1.10 is <a href="https://github.com/GreenmaskIO/greenmask/releases/tag/v0.1.10">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,16 @@ | ||
# Greenmask 0.1.10 | ||
|
||
This release introduces improvements and bug fixes | ||
|
||
## Changes | ||
|
||
* Fixed panic caused in `RandomString` transformer | ||
* Fixed wrong table size calculation. Now the table size includes TOAST table size | ||
* Added custom transformer interaction API defaults if not set | ||
* Changed docker workdir to greenmask home | ||
* Removed bucket name from object path prefix | ||
|
||
## 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.10). |
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,20 @@ | ||
# Greenmask 0.1.8 | ||
|
||
This release introduces improvements and bug fixes | ||
|
||
## Improvements | ||
|
||
* Implemented `--exit-on-error` parameter for `pg_restore` run. But it does not play for "data" section restoration now. If any error is caused in `data` section greenmask exits with the error whether `--exit-on-error` was provided or not. This might be fixed later | ||
|
||
## Fixes | ||
|
||
* Fixed dependent objects dropping when running with the `restore` command with the `--clean` parameter. Useful when restoring and overriding only required tables | ||
* Fixed `show-dump` command output in text mode | ||
* Disabled CGO. Fixes problem when downloaded binary from repo cannot run | ||
* Fixed `delete` dump operation | ||
|
||
|
||
## 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.8). |
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,34 @@ | ||
# Greenmask 0.1.9 | ||
|
||
This release introduces improvements and bug fixes | ||
|
||
## Improvements | ||
|
||
* Implemented tables scoring according to the table size and transformation costs. This correctly spread the tables | ||
dumping between the requested workers pool and reduces the execution time. Now greenmask introspects the table size, | ||
adds the transformation scoring using the formula | ||
`score = tableSizeInBytes + (tableSizeInBytes * 0.03 * tableTransformationsCount)`, and uses the strategy "Largest | ||
First". The problem is described [here](https://github.com/GreenmaskIO/greenmask/discussions/50) | ||
* Introduced `no_verify_ssl` parameter for S3 storage | ||
* Adjusted Dockerfile | ||
* Changed entrypoint to `greenmask` binary | ||
* The `greenmask` container now runs under `greenmask` user and groups | ||
* Refactored storage config structure. Now it contains the `type` that is used for the storage type determination | ||
* Most of the attributes may be overridden with environment variables where the letters are capitalized and the dots | ||
are replaced with underscores. For instance, the setting `storage.type` might be represented with the environment | ||
variable `STORAGE_TYPE` | ||
* Parameter `--config` is not required anymore. This simplifies the greenmask utility user experience | ||
* Directory storage set as the default | ||
* Set the default temporary directory as `/tmp` | ||
* Added environment variable section to the configuration docs | ||
|
||
## Fixes | ||
|
||
* Fixed `S3_REGION` environment variable usage. Tested cases where the S3 storage is set up using `S3` variables that | ||
uses by `github.com/aws/aws-sdk-go` | ||
* Updated project dependencies to the latest version | ||
|
||
## 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.9). |
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
Oops, something went wrong.