From f905294c807d7439e8f27fbf9cf5278936d745ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 11:58:41 +0000 Subject: [PATCH 01/14] Bump php from 8.2.20-cli-alpine3.19 to 8.2.21-cli-alpine3.19 in /.devcontainer/workspace (#248) --- .devcontainer/workspace/dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/workspace/dockerfile b/.devcontainer/workspace/dockerfile index d38090fc..0aa17327 100644 --- a/.devcontainer/workspace/dockerfile +++ b/.devcontainer/workspace/dockerfile @@ -1,5 +1,5 @@ FROM composer:2.7.7 AS composer -FROM php:8.2.20-cli-alpine3.19 +FROM php:8.2.21-cli-alpine3.19 RUN apk add --update --no-cache --virtual .build-deps $PHPIZE_DEPS linux-headers \ && pecl install xdebug \ From 06826cae991d342a30b8fa8533f846772e9a4880 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:00:38 +0000 Subject: [PATCH 02/14] Bump docker/setup-buildx-action from 3.3.0 to 3.6.1 (#240) --- .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 258a06e8..20957a2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 + uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 - name: Log in to the Container registry uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 From b8b61ce481a2f3922beb777d77714e65d8770286 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:01:05 +0000 Subject: [PATCH 03/14] Bump actions/upload-artifact from 4.3.3 to 4.3.4 (#244) --- .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 20957a2e..39f78f4a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,7 +72,7 @@ jobs: run: bash ./build/build-dist.sh - name: Upload artifact - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 with: name: vigilant-${{ github.REF_NAME }} path: dist/ From d876e119904a4f77fd816d70dc09138b2e669026 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:01:24 +0000 Subject: [PATCH 04/14] Bump docker/build-push-action from 6.2.0 to 6.5.0 (#242) --- .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 39f78f4a..a16a6f3d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,7 @@ jobs: type=semver,pattern={{version}} - name: Build and push Docker image - uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0 + uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 # v6.5.0 with: context: . platforms: linux/amd64,linux/arm64 From ce96055cce6b9fd465bd923e741703e10cfd4b49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:02:09 +0000 Subject: [PATCH 05/14] Bump shivammathur/setup-php from 2.31.0 to 2.31.1 (#241) --- .github/workflows/build.yml | 2 +- .github/workflows/code-quality.yml | 4 ++-- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a16a6f3d..2c1e3cda 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup PHP - uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b # v2.31.0 + uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 with: php-version: '8.2' coverage: none diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 72535c14..1d040c30 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup PHP - uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b # v2.31.0 + uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 with: php-version: '8.2' coverage: none @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup PHP - uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b # v2.31.0 + uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 with: php-version: '8.2' coverage: none diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67f0e249..5552cc68 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Setup PHP - uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b # v2.31.0 + uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 with: php-version: '8.2' coverage: xdebug From 8e26a591cbf983a025a2687ed0d01d218232d875 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:04:11 +0000 Subject: [PATCH 06/14] Bump docker/setup-qemu-action from 3.0.0 to 3.2.0 (#243) --- .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 2c1e3cda..be4134f8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Set up QEMU - uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 + uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 From 0136d7ac2b6c11c2edacadfa97a5b7ad79b30cac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:05:18 +0000 Subject: [PATCH 07/14] Bump phpunit/phpunit from 11.2.8 to 11.2.9 (#247) --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index 6f9ef8cf..98fa4585 100644 --- a/composer.lock +++ b/composer.lock @@ -1914,16 +1914,16 @@ }, { "name": "phpunit/phpunit", - "version": "11.2.8", + "version": "11.2.9", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "a7a29e8d3113806f18f99d670f580a30e8ffff39" + "reference": "c197bbaaca360efda351369bf1fd9cc1ca6bcbf7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a7a29e8d3113806f18f99d670f580a30e8ffff39", - "reference": "a7a29e8d3113806f18f99d670f580a30e8ffff39", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c197bbaaca360efda351369bf1fd9cc1ca6bcbf7", + "reference": "c197bbaaca360efda351369bf1fd9cc1ca6bcbf7", "shasum": "" }, "require": { @@ -1994,7 +1994,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/11.2.8" + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.2.9" }, "funding": [ { @@ -2010,7 +2010,7 @@ "type": "tidelift" } ], - "time": "2024-07-18T14:56:37+00:00" + "time": "2024-07-30T11:09:23+00:00" }, { "name": "sebastian/cli-parser", From 409993704265ef4445de75203a8920a7f87dc535 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:05:34 +0000 Subject: [PATCH 08/14] Bump phpstan/phpstan from 1.11.7 to 1.11.8 (#246) --- composer.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.lock b/composer.lock index 98fa4585..cf3b869c 100644 --- a/composer.lock +++ b/composer.lock @@ -1533,16 +1533,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.11.7", + "version": "1.11.8", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "52d2bbfdcae7f895915629e4694e9497d0f8e28d" + "reference": "6adbd118e6c0515dd2f36b06cde1d6da40f1b8ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/52d2bbfdcae7f895915629e4694e9497d0f8e28d", - "reference": "52d2bbfdcae7f895915629e4694e9497d0f8e28d", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/6adbd118e6c0515dd2f36b06cde1d6da40f1b8ec", + "reference": "6adbd118e6c0515dd2f36b06cde1d6da40f1b8ec", "shasum": "" }, "require": { @@ -1587,7 +1587,7 @@ "type": "github" } ], - "time": "2024-07-06T11:17:41+00:00" + "time": "2024-07-24T07:01:22+00:00" }, { "name": "phpunit/php-code-coverage", From 91d531e68882e7875f9540fdd376d366635bacd8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:05:53 +0000 Subject: [PATCH 09/14] Bump guzzlehttp/guzzle from 7.9.1 to 7.9.2 (#245) --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index cf3b869c..1e17a469 100644 --- a/composer.lock +++ b/composer.lock @@ -80,16 +80,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.9.1", + "version": "7.9.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "a629e5b69db96eb4939c1b34114130077dd4c6fc" + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a629e5b69db96eb4939c1b34114130077dd4c6fc", - "reference": "a629e5b69db96eb4939c1b34114130077dd4c6fc", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", "shasum": "" }, "require": { @@ -186,7 +186,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.1" + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" }, "funding": [ { @@ -202,7 +202,7 @@ "type": "tidelift" } ], - "time": "2024-07-19T16:19:57+00:00" + "time": "2024-07-24T11:22:20+00:00" }, { "name": "guzzlehttp/promises", From c01b6dd5828291a622443e49e2384cdc8e33910d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:43:58 +0000 Subject: [PATCH 10/14] Bump docker/login-action from 3.2.0 to 3.3.0 (#249) --- .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 be4134f8..feb4f420 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 - name: Log in to the Container registry - uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 + uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} From 41d739c72a9bcf975c81867ed0f79cb7d9180e93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:44:45 +0000 Subject: [PATCH 11/14] Bump phpstan/phpstan from 1.11.8 to 1.11.9 (#250) --- composer.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.lock b/composer.lock index 1e17a469..65d9f5ad 100644 --- a/composer.lock +++ b/composer.lock @@ -1533,16 +1533,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.11.8", + "version": "1.11.9", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "6adbd118e6c0515dd2f36b06cde1d6da40f1b8ec" + "reference": "e370bcddadaede0c1716338b262346f40d296f82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/6adbd118e6c0515dd2f36b06cde1d6da40f1b8ec", - "reference": "6adbd118e6c0515dd2f36b06cde1d6da40f1b8ec", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e370bcddadaede0c1716338b262346f40d296f82", + "reference": "e370bcddadaede0c1716338b262346f40d296f82", "shasum": "" }, "require": { @@ -1587,7 +1587,7 @@ "type": "github" } ], - "time": "2024-07-24T07:01:22+00:00" + "time": "2024-08-01T16:25:18+00:00" }, { "name": "phpunit/php-code-coverage", From 2ceb62f5d1b2263d3a0febd77d5d73d9d9474dc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:46:19 +0000 Subject: [PATCH 12/14] Bump verifiedjoseph/gotify-api-php from 1.8.4 to 1.9.0 (#251) --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index 65d9f5ad..c480550a 100644 --- a/composer.lock +++ b/composer.lock @@ -1142,16 +1142,16 @@ }, { "name": "verifiedjoseph/gotify-api-php", - "version": "v1.8.4", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/VerifiedJoseph/gotify-api-php.git", - "reference": "d761e6af9a7df0368bbc49be79e9e81779b2ef0a" + "reference": "4295dc71bdca2c5e1d549b002b96e6daa9255d56" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/VerifiedJoseph/gotify-api-php/zipball/d761e6af9a7df0368bbc49be79e9e81779b2ef0a", - "reference": "d761e6af9a7df0368bbc49be79e9e81779b2ef0a", + "url": "https://api.github.com/repos/VerifiedJoseph/gotify-api-php/zipball/4295dc71bdca2c5e1d549b002b96e6daa9255d56", + "reference": "4295dc71bdca2c5e1d549b002b96e6daa9255d56", "shasum": "" }, "require": { @@ -1188,9 +1188,9 @@ ], "support": { "issues": "https://github.com/VerifiedJoseph/gotify-api-php/issues", - "source": "https://github.com/VerifiedJoseph/gotify-api-php/tree/v1.8.4" + "source": "https://github.com/VerifiedJoseph/gotify-api-php/tree/v1.9.0" }, - "time": "2024-07-20T14:32:17+00:00" + "time": "2024-08-01T16:21:35+00:00" }, { "name": "verifiedjoseph/ntfy-php-library", From 224f341c59e8cd98aea23b11f7736a4a800df39f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:46:37 +0000 Subject: [PATCH 13/14] Bump verifiedjoseph/ntfy-php-library from 4.6.1 to 4.6.2 (#252) --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index c480550a..1cee6edc 100644 --- a/composer.lock +++ b/composer.lock @@ -1194,16 +1194,16 @@ }, { "name": "verifiedjoseph/ntfy-php-library", - "version": "v4.6.1", + "version": "v4.6.2", "source": { "type": "git", "url": "https://github.com/VerifiedJoseph/ntfy-php-library.git", - "reference": "5f7ab9fe510bfe9b856bdb468874d094a7ea2df6" + "reference": "0e5c22be5e1633534e41a5835a8975bec5ff4cef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/VerifiedJoseph/ntfy-php-library/zipball/5f7ab9fe510bfe9b856bdb468874d094a7ea2df6", - "reference": "5f7ab9fe510bfe9b856bdb468874d094a7ea2df6", + "url": "https://api.github.com/repos/VerifiedJoseph/ntfy-php-library/zipball/0e5c22be5e1633534e41a5835a8975bec5ff4cef", + "reference": "0e5c22be5e1633534e41a5835a8975bec5ff4cef", "shasum": "" }, "require": { @@ -1240,9 +1240,9 @@ ], "support": { "issues": "https://github.com/VerifiedJoseph/ntfy-php-library/issues", - "source": "https://github.com/VerifiedJoseph/ntfy-php-library/tree/v4.6.1" + "source": "https://github.com/VerifiedJoseph/ntfy-php-library/tree/v4.6.2" }, - "time": "2024-07-20T14:51:43+00:00" + "time": "2024-08-01T12:43:09+00:00" } ], "packages-dev": [ From 4e74af050528ff39abf3460a9ee86871247e95db Mon Sep 17 00:00:00 2001 From: Joseph Date: Thu, 1 Aug 2024 17:12:21 +0000 Subject: [PATCH 14/14] Version 1.4.2 (#253) --- CHANGELOG.md | 8 +++++++- docker-compose.yml | 2 +- docs/install.md | 2 +- src/Version.php | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51416ff6..c51c51a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,13 @@ All notable changes to this project are documented in this file. -## [1.4.1](https://github.com/VerifiedJoseph/vigilant/releases/tag/v1.4.0) - 2024-07-23 +## [1.4.2](https://github.com/VerifiedJoseph/vigilant/releases/tag/v1.4.2) - 2024-08-01 + +- Updated guzzlehttp/guzzle from 7.9.1 to 7.9.2 ([#245](https://github.com/VerifiedJoseph/vigilant/pull/245), [`91d531e`](https://github.com/VerifiedJoseph/vigilant/commit/91d531e68882e7875f9540fdd376d366635bacd8)) +- Updated verifiedjoseph/ntfy-php-library from 4.6.1 to 4.6.2 ([#252](https://github.com/VerifiedJoseph/vigilant/pull/252), [`224f341`](https://github.com/VerifiedJoseph/vigilant/commit/224f341c59e8cd98aea23b11f7736a4a800df39f)) +- Updated verifiedjoseph/gotify-api-php from 1.8.4 to 1.9.0 ([#251](https://github.com/VerifiedJoseph/vigilant/pull/251), [`2ceb62f`](https://github.com/VerifiedJoseph/vigilant/commit/2ceb62f5d1b2263d3a0febd77d5d73d9d9474dc7)) + +## [1.4.1](https://github.com/VerifiedJoseph/vigilant/releases/tag/v1.4.1) - 2024-07-23 - Updated guzzlehttp/guzzle from 7.9.0 to 7.9.1 ([#237](https://github.com/VerifiedJoseph/vigilant/pull/237), [`3a0ce77`](https://github.com/VerifiedJoseph/vigilant/commit/3a0ce77ee0440dac46a34e18a01add71cdbac642)) - Updated verifiedjoseph/ntfy-php-library from 4.6.0 to 4.6.1 ([#236](https://github.com/VerifiedJoseph/vigilant/pull/236), [`3215c6f`](https://github.com/VerifiedJoseph/vigilant/commit/3215c6f81be2cf02df7e5f2e01615797c01b1614)) diff --git a/docker-compose.yml b/docker-compose.yml index 5f9c9556..94977d9b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: vigilant: - image: ghcr.io/verifiedjoseph/vigilant:1.4.1 + image: ghcr.io/verifiedjoseph/vigilant:1.4.2 environment: - VIGILANT_TIMEZONE=Europe/London - VIGILANT_NOTIFICATION_SERVICE=ntfy diff --git a/docs/install.md b/docs/install.md index fcb11517..e3aadd4b 100644 --- a/docs/install.md +++ b/docs/install.md @@ -6,7 +6,7 @@ version: '3' services: vigilant: - image: ghcr.io/verifiedjoseph/vigilant:1.4.1 + image: ghcr.io/verifiedjoseph/vigilant:1.4.2 environment: - VIGILANT_NOTIFICATION_SERVICE=ntfy - VIGILANT_NOTIFICATION_NTFY_URL=https://ntfy.sh/ diff --git a/src/Version.php b/src/Version.php index 9622950b..dd7967ec 100644 --- a/src/Version.php +++ b/src/Version.php @@ -7,7 +7,7 @@ class Version /** * @var string $version Vigilant version */ - private static string $version = '1.4.1'; + private static string $version = '1.4.2'; /** * @var int $cacheFormatVersion Cache format version