diff options
author | Valery Piashchynski <[email protected]> | 2022-03-13 13:09:04 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-13 13:09:04 +0100 |
commit | 934517ef3cf53ffd444b54dde123d6a69d1bbfd9 (patch) | |
tree | 02a3234d88f7228246b536a4eba0dde60e61a1dc | |
parent | d0a3e2e3ce863df0a1f89e8857410b337df358ae (diff) | |
parent | 43b7f8eb361e8c962b887e7759d3094bb725df86 (diff) |
[#1051]: release: `v2.8.3` v2.8.3
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_grpc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 10 | ||||
-rw-r--r-- | CHANGELOG.md | 25 |
4 files changed, 32 insertions, 7 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1484aa5a..559e0f9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.7 + go-version: 1.17.8 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml index 03d12ad2..6891de2f 100644 --- a/.github/workflows/release_grpc.yml +++ b/.github/workflows/release_grpc.yml @@ -36,7 +36,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.7 + go-version: 1.17.8 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 115c1c47..8960d5ec 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,11 +39,11 @@ jobs: steps: - name: Check out code uses: actions/checkout@v3 - - - name: Set up Go 1.17 + + - name: Set up Go uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.17.7 + go-version: 1.17.8 - name: Run linter uses: golangci/[email protected] # Action page: <https://github.com/golangci/golangci-lint-action> @@ -59,7 +59,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.7 + go-version: 1.17.8 - name: Check out code uses: actions/checkout@v3 @@ -97,7 +97,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.17.7 + go-version: 1.17.8 - name: Check out code uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 37e80d9b..b90200ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # CHANGELOG +## UNRELEASED + +## ๐ New: + +- โ๏ธ [**API**](https://github.com/roadrunner-server/api): add service proto api to manage services, [FR](https://github.com/roadrunner-server/roadrunner/issues/1009) (reporter @butschster) + + +## v2.8.3 (13.03.2022) + +## ๐ New: + +- โ๏ธ Better env variables parser. Now RR is able to parse the sentences like: `"mysql://${MYSQL_USER}:${MYSQL_PASSWORD}@${MYSQL_HOST}:${MYSQL_PORT}/${MYSQL_DATABASE}?serverVersion=5.7"` and get all environment variables. [FR](https://github.com/roadrunner-server/roadrunner/issues/1035), (reporter @Tony-Sol) + +## ๐งน Chore: + +- ๐งโ๐ญ Update all dependencies to the most recent versions. +- ๐งโ๐ญ Remove `configuration` plugin from the `root.go` and other files. Used only in the `serve` where it should be. + +## ๐ฉน Fixes: + +- ๐ Fix: call of the `kv.TTL` for the Redis drivers returns non RFC3339 time format [BUG](https://github.com/roadrunner-server/roadrunner/issues/1024), (reporter @antikirra) +- ๐ Fix: `rr workers` command doesn't work for the `service` plugin [BUG](https://github.com/roadrunner-server/roadrunner/issues/1033), (reporter @OO00O0O) + +--- + ## v2.8.2 (22.02.2022) ## ๐งน Chore: |