From df77bc14b7f09eba6d603669cc7bbd8f527ff664 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Mon, 21 Dec 2020 23:20:45 +0300 Subject: Release 1.9.1 --- CHANGELOG.md | 7 +++++-- composer.json | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 030b8c06..303aba40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ CHANGELOG ========= -UNRELEASED +v1.9.1 (21.12.2020) ---------- -- Add `rr --version` flag support +- Add `rr --version` flag support (thanks @tarampampam) +- Update `reload` plugin, remove unnecessary goroutines and locks. +- Add objectives to the metrics summary. +- Automated releases builds. v1.9.0 (02.12.2020) ------------------- diff --git a/composer.json b/composer.json index 3d6b3d22..f64a9263 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": "^7.3 || ^8.0", + "php": "^7.2 || ^8.0", "ext-json": "*", "ext-curl": "*", "spiral/goridge": "^2.4.2", -- cgit v1.2.3 From f9a3b67ca11d332fcb22a25ae663438876f84424 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Mon, 21 Dec 2020 23:22:14 +0300 Subject: typo fix --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 303aba40..28063ba5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ v1.9.1 (21.12.2020) - Add `rr --version` flag support (thanks @tarampampam) - Update `reload` plugin, remove unnecessary goroutines and locks. - Add objectives to the metrics summary. -- Automated releases builds. +- Automated releases build. v1.9.0 (02.12.2020) ------------------- -- cgit v1.2.3 From 8ab1321e692887ec35189d9b00aa27cdeab04fd8 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Mon, 21 Dec 2020 23:25:48 +0300 Subject: Add 7.2 to the CI --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5bcbd657..c82f904e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,11 +14,11 @@ jobs: php: name: Build (PHP ${{ matrix.php }}, ${{ matrix.setup }} setup) runs-on: ubuntu-20.04 - timeout-minutes: 6 + timeout-minutes: 10 strategy: fail-fast: false matrix: - php: [ '7.3', '7.4', '8.0' ] + php: [ '7.2', '7.3', '7.4', '8.0' ] setup: [ basic, lowest ] steps: - name: Set up PHP ${{ matrix.php }} @@ -65,7 +65,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.3', '7.4', '8.0' ] + php: [ '7.2', '7.3', '7.4', '8.0' ] go: [ '1.14', '1.15' ] steps: - name: Set up Go ${{ matrix.go }} -- cgit v1.2.3 From 0bd922da886181a777e069baac6da1cbe19b5456 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Mon, 21 Dec 2020 23:44:40 +0300 Subject: Add some time to the tests --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c82f904e..04208eeb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,7 +61,7 @@ jobs: golang: name: Build (Go ${{ matrix.go }}, PHP ${{ matrix.php }}) runs-on: ubuntu-20.04 - timeout-minutes: 10 + timeout-minutes: 20 strategy: fail-fast: false matrix: -- cgit v1.2.3 From 5a9507bdc62f0ec62c6a59888257b17806634719 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Tue, 22 Dec 2020 10:50:01 +0300 Subject: Update BORS --- bors.toml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/bors.toml b/bors.toml index e56a268a..9d409023 100644 --- a/bors.toml +++ b/bors.toml @@ -1,16 +1,20 @@ status = [ -'Build (PHP 7.3, basic setup)', -'Build (PHP 7.3, lowest setup)', -'Build (PHP 8.0, basic setup)', -'Build (PHP 8.0, lowest setup)', -'Build (Go 1.14, PHP 7.3)', -'Build (Go 1.15, PHP 7.3)', -'Build (Go 1.14, PHP 7.4)', -'Build (Go 1.15, PHP 7.4)', -'Build (Go 1.14, PHP 8.0)', -'Build (Go 1.15, PHP 8.0)', -'Golang-CI (lint)', -'Build docker image', + 'Build (PHP 7.2, basic setup)', + 'Build (PHP 7.2, lowest setup)', + 'Build (PHP 7.3, basic setup)', + 'Build (PHP 7.3, lowest setup)', + 'Build (PHP 8.0, basic setup)', + 'Build (PHP 8.0, lowest setup)', + 'Build (Go 1.14, PHP 7.2)', + 'Build (Go 1.15, PHP 7.2)', + 'Build (Go 1.14, PHP 7.3)', + 'Build (Go 1.15, PHP 7.3)', + 'Build (Go 1.14, PHP 7.4)', + 'Build (Go 1.15, PHP 7.4)', + 'Build (Go 1.14, PHP 8.0)', + 'Build (Go 1.15, PHP 8.0)', + 'Golang-CI (lint)', + 'Build docker image', ] required_approvals = 1 -- cgit v1.2.3