From cbd278685bba9d313f9ab45b49954f64c3c26f1e Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Fri, 10 Mar 2023 12:21:30 +1300 Subject: [PATCH 1/6] MNT Update development dependencies --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index e3554cf..687f9df 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^7.4 || ^8.0", - "silverstripe/cms": "^4.0" + "silverstripe/cms": "4.13.x-dev" }, "require-dev": { "phpunit/phpunit": "^9.5", @@ -42,4 +42,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} +} \ No newline at end of file From 7698371ebf5855214fd3ec48a3eeb98e408cc82f Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Fri, 10 Mar 2023 16:34:25 +1300 Subject: [PATCH 2/6] MNT Update release dependencies --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 687f9df..1b78ae6 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^7.4 || ^8.0", - "silverstripe/cms": "4.13.x-dev" + "silverstripe/cms": "4.13.0-beta1" }, "require-dev": { "phpunit/phpunit": "^9.5", From 6ea69fabb28930416bc86e45b964d1155968f5c1 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Fri, 10 Mar 2023 16:34:29 +1300 Subject: [PATCH 3/6] MNT Update development dependencies --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1b78ae6..687f9df 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^7.4 || ^8.0", - "silverstripe/cms": "4.13.0-beta1" + "silverstripe/cms": "4.13.x-dev" }, "require-dev": { "phpunit/phpunit": "^9.5", From 8b273144907d6f6a5c5af10d1f7044461935344f Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Tue, 21 Mar 2023 12:25:06 +1300 Subject: [PATCH 4/6] MNT Use gha-dispatch-ci --- .github/workflows/ci.yml | 5 ----- .github/workflows/dispatch-ci.yml | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/dispatch-ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2704d44..bf02210 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,13 +4,8 @@ on: push: pull_request: workflow_dispatch: - # Every Wednesday at 2:00pm UTC - schedule: - - cron: '0 14 * * 3' jobs: ci: name: CI - # Only run cron on the silverstripe account - if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1 diff --git a/.github/workflows/dispatch-ci.yml b/.github/workflows/dispatch-ci.yml new file mode 100644 index 0000000..ad58d2c --- /dev/null +++ b/.github/workflows/dispatch-ci.yml @@ -0,0 +1,16 @@ +name: Dispatch CI + +on: + # At 2:00 PM UTC, only on Wednesday and Thursday + schedule: + - cron: '0 14 * * 3,4' + +jobs: + dispatch-ci: + name: Dispatch CI + # Only run cron on the silverstripe account + if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') + runs-on: ubuntu-latest + steps: + - name: Dispatch CI + uses: silverstripe/gha-dispatch-ci@v1 From 4d67a327fe146fa0d083c78b35553bc1af06576f Mon Sep 17 00:00:00 2001 From: Sabina Talipova Date: Fri, 24 Mar 2023 12:59:39 +1300 Subject: [PATCH 5/6] FIX Create button is disabled if server returns error --- client/javascript/BrokenExternalLinksReport.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/javascript/BrokenExternalLinksReport.js b/client/javascript/BrokenExternalLinksReport.js index 562c5db..de33077 100644 --- a/client/javascript/BrokenExternalLinksReport.js +++ b/client/javascript/BrokenExternalLinksReport.js @@ -129,6 +129,7 @@ if (typeof console !== 'undefined') { console.log(e); } + self.buttonReset(); } }); } From 4f5309163b9ca679e62d125e47b6f6bc1832b5b6 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Tue, 28 Mar 2023 17:08:50 +1300 Subject: [PATCH 6/6] MNT Revert erroneous dependency changes (#98) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 687f9df..5e3f582 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^7.4 || ^8.0", - "silverstripe/cms": "4.13.x-dev" + "silverstripe/cms": "^4.0" }, "require-dev": { "phpunit/phpunit": "^9.5",