Skip to content

Commit

Permalink
Up version, update Changelog.md (#474)
Browse files Browse the repository at this point in the history
* up version, update Changelog.md
* deprecate transport key types for acra-keys
  • Loading branch information
Lagovas committed Dec 15, 2021
1 parent 6356b96 commit 89d96b3
Show file tree
Hide file tree
Showing 15 changed files with 65 additions and 18 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,51 @@
# Acra ChangeLog

## [0.91.0](https://github.com/cossacklabs/acra/releases/tag/0.91.0), December 16th 2021

_Core_:
- **AcraWebConfig, AcraAuthManager**:
- Have been deprecated and not supported anymore [#456](https://github.com/cossacklabs/acra/pull/456). The following changes have been made:
- removed `docker/acra-authmanager.dockerfile`, `docker/acra-webconfig.dockerfile` files.
- removed `acra-webconfig` and `acra-authmanager` from `docker/acra-build.dockerfile` file that is base image for all
other service's images.
- removed `acra-webconfig` and `acra-authmanager` from all `docker/docker-compose.*.yml` files.
- reserved [event codes](https://github.com/cossacklabs/acra/blob/0.90.0/logging/event_codes.go#L64) for log entries in range [550, 558] related to AcraWebConfig.
- **AcraConnector**:
- Has been deprecated and will be removed in the next releases. AcraServer and AcraTranslator will accept only direct TLS. See [Transport security/TLS](https://docs.cossacklabs.com/acra/security-controls/transport-security/tls/).
connections from applications.
- Removed mentions and usage from [acra-engineering-demo](https://github.com/cossacklabs/acra-engineering-demo/tree/0.90.0)s.
- **AcraKeymaker**:
- Some keys can be configured without ClientID [#454](https://github.com/cossacklabs/acra/pull/454).
- Removed `--generate_acrawebconfig_keys` flag according to AcraWebConfig/AcraAuthManager deprecation [#456](https://github.com/cossacklabs/acra/pull/456).
- **AcraKeys**:
- `read` command supports symmetric encryption keys with ClientID and ZoneID [#472](https://github.com/cossacklabs/acra/pull/472/files).
- `generate` command:
- supports rotation for symmetric encryption keys with ZoneID [#472](https://github.com/cossacklabs/acra/pull/472/files).
- deprecates next flags: `--acraconnector_transport_key`, `--acraserver_transport_key`, `--acratranslator_transport_key`.
- removed `--acrawebconfig_symmetric_key` flag according to AcraWebConfig/AcraAuthManager deprecation [#456](https://github.com/cossacklabs/acra/pull/456).
- Improved handling CLI parameters related to Redis [#459](https://github.com/cossacklabs/acra/pull/459).
- **AcraServer**:
- Removed `--auth_keys` parameter according to AcraWebConfig/AcraAuthManager deprecation [#456](https://github.com/cossacklabs/acra/pull/456).
- Removed `/loadAuthData`, `/getConfig`, `/setConfig` endpoints from HTTP API according to AcraWebConfig/AcraAuthManager deprecation [#456](https://github.com/cossacklabs/acra/pull/456).
- **AcraTranslator**:
- Accepts `POST` HTTP request method additionally to `GET` for v2 API. Method `GET` marked as deprecated and warns with log message.
`Deprecated HTTP GET method was used. Please use HTTP POST method instead.` if was used [#466](https://github.com/cossacklabs/acra/pull/466).

_Infrastructure_:
- Build binaries with `-tags netgo` flag, that forces usage of Go resolver to solve issues related to resolving hostnames.
between Docker containers. Updated `acra-build.dockerfile` used as base image for all `cossacklabs/acra-*` images ([#452](https://github.com/cossacklabs/acra/pull/452)).
- Added missing parameter `--keystore=v1` for existing docker-compose files that caused errors ([#452](https://github.com/cossacklabs/acra/pull/452)).

_Documentation_:
- Has been updated :)
- Improved guide about [integration AcraTranslator](https://docs.cossacklabs.com/acra/guides/integrating-acra-translator-into-new-infrastructure/) into infrastructure.
- Extended description for AcraTranslator's [HTTP API](https://docs.cossacklabs.com/acra/guides/integrating-acra-translator-into-new-infrastructure/http_api/).

_Example projects and demos_:
- [Python examples](https://github.com/cossacklabs/acra/tree/0.90.0/examples/python): now work with TLS connections to
AcraServer/Database. Also has been updated sqlalchemy version and binary column type from `Binary` to `LargeBinary` [#463](https://github.com/cossacklabs/acra/pull/463).
- [acra-engineering-demo](https://github.com/cossacklabs/acra-engineering-demo/tree/0.90.0)s don't illustrate AcraConnector usage anymore. All applications and services connect to AcraServer directly.

## [0.90.0](https://github.com/cossacklabs/acra/releases/tag/0.90.0), November 05th 2021

_New_:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG_DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- `acra-server` CLI parameters: `--securesession_id`, `--acraconnector_tls_transport_enable`, `--acraconnector_transport_encryption_disable`
- `acra-keymaker` CLI parameters: `--generate_acraconnector_keys`, `--generate_acraserver_keys`, `--generate_acratranslator_keys`
- `acra-translator` CLI parameters: `--securesession_id`, `--acraconnector_transport_encryption_disable`, `--acratranslator_tls_transport_enable`
- `acra-keys` CLI parameters for `generate` command: `--acraconnector_transport_key`, `--acraserver_transport_key`, `--acratranslator_transport_key`

## 0.91.0 - 2021-12-13
### Changed
Expand Down
6 changes: 3 additions & 3 deletions cmd/acra-keys/keys/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ func (g *GenerateKeySubcommand) RegisterFlags() {
g.flagSet.StringVar(&g.clientID, "client_id", "", "Client ID")
g.flagSet.StringVar(&g.zoneID, "zone_id", "", "Zone ID")
g.flagSet.StringVar(&g.masterKeyFile, "master_key_path", "", "Generate new random master key and save to file")
g.flagSet.BoolVar(&g.acraConnector, "acraconnector_transport_key", false, "Generate transport keypair for AcraConnector")
g.flagSet.BoolVar(&g.acraServer, "acraserver_transport_key", false, "Generate transport keypair for AcraServer")
g.flagSet.BoolVar(&g.acraTranslator, "acratranslator_transport_key", false, "Generate transport keypair for AcraTranslator")
g.flagSet.BoolVar(&g.acraConnector, "acraconnector_transport_key", false, "Generate transport keypair for AcraConnector (deprecated since 0.91.0, will be removed soon)")
g.flagSet.BoolVar(&g.acraServer, "acraserver_transport_key", false, "Generate transport keypair for AcraServer (deprecated since 0.91.0, will be removed soon)")
g.flagSet.BoolVar(&g.acraTranslator, "acratranslator_transport_key", false, "Generate transport keypair for AcraTranslator (deprecated since 0.91.0, will be removed soon)")
g.flagSet.BoolVar(&g.acraWriter, "client_storage_key", false, "Generate keypair for data encryption/decryption (for a client)")
g.flagSet.BoolVar(&g.newZone, "zone", false, "Generate new Acra storage zone")
g.flagSet.BoolVar(&g.rotateZone, "zone_storage_key", false, "Rotate existing Acra zone storage keypair")
Expand Down
2 changes: 1 addition & 1 deletion configs/acra-addzone.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# path to config
config_file:

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-backup.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# import|export values are accepted
action:

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-connector.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# Port of Acra HTTP API
acraserver_api_connection_port: 9090

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-keymaker.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# Client ID
client_id: client

Expand Down
8 changes: 4 additions & 4 deletions configs/acra-keys.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# path to config
config_file:

Expand Down Expand Up @@ -140,13 +140,13 @@ private: false
# read public key of the keypair
public: false

# Generate transport keypair for AcraConnector
# Generate transport keypair for AcraConnector (deprecated since 0.91.0, will be removed soon)
acraconnector_transport_key: false

# Generate transport keypair for AcraServer
# Generate transport keypair for AcraServer (deprecated since 0.91.0, will be removed soon)
acraserver_transport_key: false

# Generate transport keypair for AcraTranslator
# Generate transport keypair for AcraTranslator (deprecated since 0.91.0, will be removed soon)
acratranslator_transport_key: false

# Generate symmetric key for log integrity checks
Expand Down
2 changes: 1 addition & 1 deletion configs/acra-poisonrecordmaker.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# path to config
config_file:

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-rollback.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# Client ID should be name of file with private key
client_id:

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-rotate.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# path to config
config_file:

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-server.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# Path to AcraCensor configuration file
acracensor_config_file:

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-tokens.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# path to config
config_file:

Expand Down
2 changes: 1 addition & 1 deletion configs/acra-translator.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.90.0
version: 0.91.0
# Use raw transport (tcp/unix socket) between AcraTranslator and client app. It turns off reading trace from client app's side which usually sent by AcraConnector (deprecated since 0.91.0, will be removed soon).
acraconnector_transport_encryption_disable: false

Expand Down
2 changes: 1 addition & 1 deletion utils/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
// VERSION is current Acra suite version
// store it as string instead initialized struct value to easy change/grep/sed/replace value via scripts or with
// -ldflags "-X github.com/cossacklabs/acra/utils.VERSION=X.X.X"
var VERSION = "0.90.0"
var VERSION = "0.91.0"

// Version store version info
type Version struct {
Expand Down

0 comments on commit 89d96b3

Please sign in to comment.