diff options
author | Valery Piashchynski <[email protected]> | 2021-03-20 10:17:39 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-03-20 11:02:31 +0300 |
commit | eb171dce0b01e8a76a936e8c72dbb9bb77d4f09f (patch) | |
tree | 8b03de55b184d8a648269659249804cae53224b0 | |
parent | 12ac0f3063dbcc22f098f5ac92081d2be52a1e56 (diff) |
- Update CHANGELOG
- Fix linters CI
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | .github/workflows/linters.yml | 10 | ||||
-rw-r--r-- | CHANGELOG.md | 12 |
2 files changed, 10 insertions, 12 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index a2294ed9..79e00f9b 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -1,14 +1,6 @@ name: Linters -on: - push: - pull_request: - branches: - # Branches from forks have the form 'user:branch-name' so we only run - # this job on pull_request events for branches that look like fork - # branches. Without this we would end up running this job twice for non - # forked PRs, once for the push and then once for opening the PR. - - "**:**" +on: [push, pull_request] jobs: golangci-lint: diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dd60a4d..8ff15b19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,15 @@ CHANGELOG ========= v2.0.2 (06.04.2021) -- 🐛 Fix: Bug with required Root CA certificate for the SSL, not it's optional. -- 🆕 New: HTTP/FCGI/HTTPS internal logs instead of going to the raw stdout will be displayed in the RR logger at the `Info` log level. - +------------------- +- 🐛 Fix: Bug with required Root CA certificate for the SSL, now it's optional. +- 🐛 Fix: Bug with incorrectly consuming metrics collector from the RPC calls. +- 🆕 New: HTTP/FCGI/HTTPS internal logs instead of going to the raw stdout will be displayed in the RR logger at + the `Info` log level. +- ⚡ New: Builds for the Mac with the M1 processor (arm64). +- 👷 Rework ServeHTTP handler logic. Use http.Error instead of writing code directly to the response writer. Other small + improvements. + v2.0.1 (09.03.2021) ------------------- - 🐛 Fix: incorrect PHP command validation |