Skip to content

Commit 7557a97

Browse files
committed
release 1.7.0
1 parent 82b4e78 commit 7557a97

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
# v1.7.0
4+
5+
* Update to Rails 7.1.0
6+
* **Breaking change**:
7+
* The `SECRET_KEY_BASE` option is now mandatory.
8+
Please create a unique value with `openssl rand -hex 64`
9+
310
# v1.6.1
411

512
* Accept oci manifests and ignore attestations

config/initializers/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Rails.application.config.x.version = "1.6.1"
1+
Rails.application.config.x.version = "1.7.0"
22

33
# Docker Cloud will pass the git commit it is building the image from
44
# See: https://docs.docker.com/docker-hub/builds/advanced/

docs/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@ Please have a look at the examples about details.
4848

4949
Default: Not used
5050

51+
#### `SECRET_KEY_BASE`
52+
53+
This option must be set to a unique & random value as it is used for different encryption related functionality by the used framework.
54+
55+
A value can be generated with the following command:
56+
57+
```
58+
openssl rand -hex 64
59+
```
60+
61+
The application will check the option from version `>= 1.7.0` and refuse to startup when no proper value has been set.
62+
5163
### HTTPS & TLS/SSL
5264

5365
It is possible to use the built-in application server for the handling of encrypted HTTP requests.
@@ -333,7 +345,7 @@ services:
333345

334346
### Registry Request Logging
335347

336-
By default, basic information about requests to the registry, such as HTTP method and url, are
348+
By default, basic information about requests to the registry, such as HTTP method and url, are
337349
logged at the `:info` level.
338350

339351
For debugging, you can change two aspects via environment variables:

0 commit comments

Comments
 (0)