From eef14ced59bd8a227b32a69cf3025aa1b6de2eee Mon Sep 17 00:00:00 2001
From: James Cole
Date: Sun, 18 Sep 2022 05:53:11 +0200
Subject: [PATCH 01/36] Add amount check. Not sure why rule doesn't fire.
---
app/Validation/AutoBudget/ValidatesAutoBudgetRequest.php | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/app/Validation/AutoBudget/ValidatesAutoBudgetRequest.php b/app/Validation/AutoBudget/ValidatesAutoBudgetRequest.php
index 166a997b76..03d6750604 100644
--- a/app/Validation/AutoBudget/ValidatesAutoBudgetRequest.php
+++ b/app/Validation/AutoBudget/ValidatesAutoBudgetRequest.php
@@ -66,5 +66,10 @@ trait ValidatesAutoBudgetRequest
if (null !== $currencyId && null !== $currencyCode && '' === $currencyCode && 0 === $currencyId) {
$validator->errors()->add('auto_budget_amount', (string) trans('validation.require_currency_info'));
}
+ // too big amount
+ if((int)$amount > 16777216) {
+ $validator->errors()->add('auto_budget_amount', (string) trans('validation.amount_required_for_auto_budget'));
+ return;
+ }
}
}
From 4ade02efc8596363d42f7637aff187ae996dda12 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Sep 2022 03:01:10 +0000
Subject: [PATCH 02/36] Bump laravel/framework from 9.29.0 to 9.30.1
Bumps [laravel/framework](https://github.com/laravel/framework) from 9.29.0 to 9.30.1.
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/9.x/CHANGELOG.md)
- [Commits](https://github.com/laravel/framework/compare/v9.29.0...v9.30.1)
---
updated-dependencies:
- dependency-name: laravel/framework
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
composer.lock | 84 ++++++++++++++++++++++++++++-----------------------
1 file changed, 46 insertions(+), 38 deletions(-)
diff --git a/composer.lock b/composer.lock
index e9309aaf70..1c85f4f495 100644
--- a/composer.lock
+++ b/composer.lock
@@ -1855,16 +1855,16 @@
},
{
"name": "laravel/framework",
- "version": "v9.29.0",
+ "version": "v9.30.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "585da0913e907fd54941260860ae3d7d4be8e8cb"
+ "reference": "9533f7926f31939f25a620fbbf545318c18c943f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/585da0913e907fd54941260860ae3d7d4be8e8cb",
- "reference": "585da0913e907fd54941260860ae3d7d4be8e8cb",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/9533f7926f31939f25a620fbbf545318c18c943f",
+ "reference": "9533f7926f31939f25a620fbbf545318c18c943f",
"shasum": ""
},
"require": {
@@ -1941,12 +1941,15 @@
"illuminate/view": "self.version"
},
"require-dev": {
+ "ably/ably-php": "^1.0",
"aws/aws-sdk-php": "^3.198.1",
"doctrine/dbal": "^2.13.3|^3.1.4",
"fakerphp/faker": "^1.9.2",
"guzzlehttp/guzzle": "^7.2",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-ftp": "^3.0",
+ "league/flysystem-path-prefixing": "^3.3",
+ "league/flysystem-read-only": "^3.3",
"league/flysystem-sftp-v3": "^3.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench-core": "^7.1",
@@ -1954,7 +1957,8 @@
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^9.5.8",
"predis/predis": "^1.1.9|^2.0",
- "symfony/cache": "^6.0"
+ "symfony/cache": "^6.0",
+ "symfony/uid": "^6.0"
},
"suggest": {
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
@@ -1974,6 +1978,8 @@
"laravel/tinker": "Required to use the tinker console command (^2.0).",
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
"league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
+ "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
+ "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
"league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
"mockery/mockery": "Required to use mocking (^1.4.4).",
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
@@ -1987,7 +1993,8 @@
"symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
"symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
"symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
- "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
+ "symfony/uid": "Required to generate ULIDs for Eloquent (^6.0)."
},
"type": "library",
"extra": {
@@ -2031,7 +2038,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-09T18:21:21+00:00"
+ "time": "2022-09-15T13:15:47+00:00"
},
{
"name": "laravel/passport",
@@ -2831,16 +2838,16 @@
},
{
"name": "league/flysystem",
- "version": "3.3.0",
+ "version": "3.5.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "d8295793b3e2f91aa39e1feb2d5bfce772891ae2"
+ "reference": "f14993c6e394450ac4649da35264df0544d0234e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/d8295793b3e2f91aa39e1feb2d5bfce772891ae2",
- "reference": "d8295793b3e2f91aa39e1feb2d5bfce772891ae2",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f14993c6e394450ac4649da35264df0544d0234e",
+ "reference": "f14993c6e394450ac4649da35264df0544d0234e",
"shasum": ""
},
"require": {
@@ -2902,7 +2909,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.3.0"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.5.1"
},
"funding": [
{
@@ -2918,7 +2925,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-09T11:11:42+00:00"
+ "time": "2022-09-18T18:23:19+00:00"
},
{
"name": "league/fractal",
@@ -3572,20 +3579,20 @@
},
{
"name": "nette/utils",
- "version": "v3.2.7",
+ "version": "v3.2.8",
"source": {
"type": "git",
"url": "https://github.com/nette/utils.git",
- "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
+ "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
- "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
+ "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
+ "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
"shasum": ""
},
"require": {
- "php": ">=7.2 <8.2"
+ "php": ">=7.2 <8.3"
},
"conflict": {
"nette/di": "<3.0.6"
@@ -3651,9 +3658,9 @@
],
"support": {
"issues": "https://github.com/nette/utils/issues",
- "source": "https://github.com/nette/utils/tree/v3.2.7"
+ "source": "https://github.com/nette/utils/tree/v3.2.8"
},
- "time": "2022-01-24T11:29:14+00:00"
+ "time": "2022-09-12T23:36:20+00:00"
},
{
"name": "nunomaduro/collision",
@@ -5052,20 +5059,20 @@
},
{
"name": "ramsey/uuid",
- "version": "4.4.0",
+ "version": "4.5.1",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a"
+ "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
- "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/a161a26d917604dc6d3aa25100fddf2556e9f35d",
+ "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d",
"shasum": ""
},
"require": {
- "brick/math": "^0.8 || ^0.9 || ^0.10",
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10",
"ext-ctype": "*",
"ext-json": "*",
"php": "^8.0",
@@ -5086,12 +5093,13 @@
"php-mock/php-mock-mockery": "^1.3",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpbench/phpbench": "^1.0",
- "phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^0.12",
- "phpstan/phpstan-mockery": "^0.12",
- "phpstan/phpstan-phpunit": "^0.12",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^8.5 || ^9",
- "slevomat/coding-standard": "^7.0",
+ "ramsey/composer-repl": "^1.4",
+ "slevomat/coding-standard": "^8.4",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.9"
},
@@ -5129,7 +5137,7 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.4.0"
+ "source": "https://github.com/ramsey/uuid/tree/4.5.1"
},
"funding": [
{
@@ -5141,7 +5149,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-05T17:58:37+00:00"
+ "time": "2022-09-16T03:22:46+00:00"
},
{
"name": "rcrowe/twigbridge",
@@ -8030,16 +8038,16 @@
},
{
"name": "tijsverkoyen/css-to-inline-styles",
- "version": "2.2.4",
+ "version": "2.2.5",
"source": {
"type": "git",
"url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
- "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
+ "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
- "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/4348a3a06651827a27d989ad1d13efec6bb49b19",
+ "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19",
"shasum": ""
},
"require": {
@@ -8077,9 +8085,9 @@
"homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
"support": {
"issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
- "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.5"
},
- "time": "2021-12-08T09:12:39+00:00"
+ "time": "2022-09-12T13:28:28+00:00"
},
{
"name": "twig/twig",
From 6bc73f4f551ca02e16f70af78e74d38c03d2ccd3 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Sep 2022 03:01:26 +0000
Subject: [PATCH 03/36] Bump ramsey/uuid from 4.4.0 to 4.5.1
Bumps [ramsey/uuid](https://github.com/ramsey/uuid) from 4.4.0 to 4.5.1.
- [Release notes](https://github.com/ramsey/uuid/releases)
- [Changelog](https://github.com/ramsey/uuid/blob/4.x/CHANGELOG.md)
- [Commits](https://github.com/ramsey/uuid/compare/4.4.0...4.5.1)
---
updated-dependencies:
- dependency-name: ramsey/uuid
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
composer.json | 2 +-
composer.lock | 27 ++++++++++++++-------------
2 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/composer.json b/composer.json
index 0166346ed5..e15de258b5 100644
--- a/composer.json
+++ b/composer.json
@@ -100,7 +100,7 @@
"pragmarx/google2fa": "^8.0",
"predis/predis": "^2.0",
"psr/log": "<4",
- "ramsey/uuid": "^4.4",
+ "ramsey/uuid": "^4.5",
"rcrowe/twigbridge": "^0.14",
"spatie/data-transfer-object": "^3.8",
"spatie/laravel-ignition": "^1.4",
diff --git a/composer.lock b/composer.lock
index e9309aaf70..b981ccc811 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "9f9d24b848eb536353b6ffd489b6411d",
+ "content-hash": "0d32a8600125294cf1b6b74e50343d9e",
"packages": [
{
"name": "bacon/bacon-qr-code",
@@ -5052,20 +5052,20 @@
},
{
"name": "ramsey/uuid",
- "version": "4.4.0",
+ "version": "4.5.1",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a"
+ "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
- "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/a161a26d917604dc6d3aa25100fddf2556e9f35d",
+ "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d",
"shasum": ""
},
"require": {
- "brick/math": "^0.8 || ^0.9 || ^0.10",
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10",
"ext-ctype": "*",
"ext-json": "*",
"php": "^8.0",
@@ -5086,12 +5086,13 @@
"php-mock/php-mock-mockery": "^1.3",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpbench/phpbench": "^1.0",
- "phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^0.12",
- "phpstan/phpstan-mockery": "^0.12",
- "phpstan/phpstan-phpunit": "^0.12",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^8.5 || ^9",
- "slevomat/coding-standard": "^7.0",
+ "ramsey/composer-repl": "^1.4",
+ "slevomat/coding-standard": "^8.4",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.9"
},
@@ -5129,7 +5130,7 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.4.0"
+ "source": "https://github.com/ramsey/uuid/tree/4.5.1"
},
"funding": [
{
@@ -5141,7 +5142,7 @@
"type": "tidelift"
}
],
- "time": "2022-08-05T17:58:37+00:00"
+ "time": "2022-09-16T03:22:46+00:00"
},
{
"name": "rcrowe/twigbridge",
From c8be9ceaf55bd9263c974b023ff6813f25271e6e Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Sep 2022 06:09:39 +0000
Subject: [PATCH 04/36] Bump spatie/data-transfer-object from 3.8.1 to 3.9.1
Bumps [spatie/data-transfer-object](https://github.com/spatie/data-transfer-object) from 3.8.1 to 3.9.1.
- [Release notes](https://github.com/spatie/data-transfer-object/releases)
- [Changelog](https://github.com/spatie/data-transfer-object/blob/main/CHANGELOG.md)
- [Commits](https://github.com/spatie/data-transfer-object/compare/3.8.1...3.9.1)
---
updated-dependencies:
- dependency-name: spatie/data-transfer-object
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
composer.json | 2 +-
composer.lock | 14 +++++++-------
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/composer.json b/composer.json
index e15de258b5..427468a4b5 100644
--- a/composer.json
+++ b/composer.json
@@ -102,7 +102,7 @@
"psr/log": "<4",
"ramsey/uuid": "^4.5",
"rcrowe/twigbridge": "^0.14",
- "spatie/data-transfer-object": "^3.8",
+ "spatie/data-transfer-object": "^3.9",
"spatie/laravel-ignition": "^1.4",
"symfony/http-client": "^6.0",
"symfony/mailgun-mailer": "^6.0"
diff --git a/composer.lock b/composer.lock
index b981ccc811..b1ad75b562 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "0d32a8600125294cf1b6b74e50343d9e",
+ "content-hash": "2f4412b4cef4ada83ff1393202a8115e",
"packages": [
{
"name": "bacon/bacon-qr-code",
@@ -5284,16 +5284,16 @@
},
{
"name": "spatie/data-transfer-object",
- "version": "3.8.1",
+ "version": "3.9.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/data-transfer-object.git",
- "reference": "83c04ce0bbcb2f143782d45b5b285022fc2f8721"
+ "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/83c04ce0bbcb2f143782d45b5b285022fc2f8721",
- "reference": "83c04ce0bbcb2f143782d45b5b285022fc2f8721",
+ "url": "https://api.github.com/repos/spatie/data-transfer-object/zipball/1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
+ "reference": "1df0906c4e9e3aebd6c0506fd82c8b7d5548c1c8",
"shasum": ""
},
"require": {
@@ -5331,7 +5331,7 @@
],
"support": {
"issues": "https://github.com/spatie/data-transfer-object/issues",
- "source": "https://github.com/spatie/data-transfer-object/tree/3.8.1"
+ "source": "https://github.com/spatie/data-transfer-object/tree/3.9.1"
},
"funding": [
{
@@ -5343,7 +5343,7 @@
"type": "github"
}
],
- "time": "2022-06-02T20:28:47+00:00"
+ "time": "2022-09-16T13:34:38+00:00"
},
{
"name": "spatie/flare-client-php",
From 3ca88adadefa06e9e46969c90b845dc981860d58 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Sep 2022 06:12:01 +0000
Subject: [PATCH 05/36] Bump laravel/ui from 4.0.1 to 4.0.2
Bumps [laravel/ui](https://github.com/laravel/ui) from 4.0.1 to 4.0.2.
- [Release notes](https://github.com/laravel/ui/releases)
- [Changelog](https://github.com/laravel/ui/blob/4.x/CHANGELOG.md)
- [Commits](https://github.com/laravel/ui/compare/v4.0.1...v4.0.2)
---
updated-dependencies:
- dependency-name: laravel/ui
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
composer.lock | 71 ++++++++++++++++++++++++++++-----------------------
1 file changed, 39 insertions(+), 32 deletions(-)
diff --git a/composer.lock b/composer.lock
index b981ccc811..1bd77ead37 100644
--- a/composer.lock
+++ b/composer.lock
@@ -1855,16 +1855,16 @@
},
{
"name": "laravel/framework",
- "version": "v9.29.0",
+ "version": "v9.30.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "585da0913e907fd54941260860ae3d7d4be8e8cb"
+ "reference": "9533f7926f31939f25a620fbbf545318c18c943f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/585da0913e907fd54941260860ae3d7d4be8e8cb",
- "reference": "585da0913e907fd54941260860ae3d7d4be8e8cb",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/9533f7926f31939f25a620fbbf545318c18c943f",
+ "reference": "9533f7926f31939f25a620fbbf545318c18c943f",
"shasum": ""
},
"require": {
@@ -1941,12 +1941,15 @@
"illuminate/view": "self.version"
},
"require-dev": {
+ "ably/ably-php": "^1.0",
"aws/aws-sdk-php": "^3.198.1",
"doctrine/dbal": "^2.13.3|^3.1.4",
"fakerphp/faker": "^1.9.2",
"guzzlehttp/guzzle": "^7.2",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-ftp": "^3.0",
+ "league/flysystem-path-prefixing": "^3.3",
+ "league/flysystem-read-only": "^3.3",
"league/flysystem-sftp-v3": "^3.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench-core": "^7.1",
@@ -1954,7 +1957,8 @@
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^9.5.8",
"predis/predis": "^1.1.9|^2.0",
- "symfony/cache": "^6.0"
+ "symfony/cache": "^6.0",
+ "symfony/uid": "^6.0"
},
"suggest": {
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
@@ -1974,6 +1978,8 @@
"laravel/tinker": "Required to use the tinker console command (^2.0).",
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
"league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
+ "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
+ "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
"league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
"mockery/mockery": "Required to use mocking (^1.4.4).",
"nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
@@ -1987,7 +1993,8 @@
"symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
"symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
"symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
- "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
+ "symfony/uid": "Required to generate ULIDs for Eloquent (^6.0)."
},
"type": "library",
"extra": {
@@ -2031,7 +2038,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-09T18:21:21+00:00"
+ "time": "2022-09-15T13:15:47+00:00"
},
{
"name": "laravel/passport",
@@ -2237,16 +2244,16 @@
},
{
"name": "laravel/ui",
- "version": "v4.0.1",
+ "version": "v4.0.2",
"source": {
"type": "git",
"url": "https://github.com/laravel/ui.git",
- "reference": "c43d29941ee8f41547572968123eadbd81392841"
+ "reference": "9aa6930c8ae98b2465594d7f14f4ac131bfd6a99"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/ui/zipball/c43d29941ee8f41547572968123eadbd81392841",
- "reference": "c43d29941ee8f41547572968123eadbd81392841",
+ "url": "https://api.github.com/repos/laravel/ui/zipball/9aa6930c8ae98b2465594d7f14f4ac131bfd6a99",
+ "reference": "9aa6930c8ae98b2465594d7f14f4ac131bfd6a99",
"shasum": ""
},
"require": {
@@ -2292,9 +2299,9 @@
"ui"
],
"support": {
- "source": "https://github.com/laravel/ui/tree/v4.0.1"
+ "source": "https://github.com/laravel/ui/tree/v4.0.2"
},
- "time": "2022-09-06T14:48:07+00:00"
+ "time": "2022-09-09T18:20:35+00:00"
},
{
"name": "laravelcollective/html",
@@ -2831,16 +2838,16 @@
},
{
"name": "league/flysystem",
- "version": "3.3.0",
+ "version": "3.5.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "d8295793b3e2f91aa39e1feb2d5bfce772891ae2"
+ "reference": "f14993c6e394450ac4649da35264df0544d0234e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/d8295793b3e2f91aa39e1feb2d5bfce772891ae2",
- "reference": "d8295793b3e2f91aa39e1feb2d5bfce772891ae2",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f14993c6e394450ac4649da35264df0544d0234e",
+ "reference": "f14993c6e394450ac4649da35264df0544d0234e",
"shasum": ""
},
"require": {
@@ -2902,7 +2909,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.3.0"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.5.1"
},
"funding": [
{
@@ -2918,7 +2925,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-09T11:11:42+00:00"
+ "time": "2022-09-18T18:23:19+00:00"
},
{
"name": "league/fractal",
@@ -3572,20 +3579,20 @@
},
{
"name": "nette/utils",
- "version": "v3.2.7",
+ "version": "v3.2.8",
"source": {
"type": "git",
"url": "https://github.com/nette/utils.git",
- "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
+ "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
- "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
+ "url": "https://api.github.com/repos/nette/utils/zipball/02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
+ "reference": "02a54c4c872b99e4ec05c4aec54b5a06eb0f6368",
"shasum": ""
},
"require": {
- "php": ">=7.2 <8.2"
+ "php": ">=7.2 <8.3"
},
"conflict": {
"nette/di": "<3.0.6"
@@ -3651,9 +3658,9 @@
],
"support": {
"issues": "https://github.com/nette/utils/issues",
- "source": "https://github.com/nette/utils/tree/v3.2.7"
+ "source": "https://github.com/nette/utils/tree/v3.2.8"
},
- "time": "2022-01-24T11:29:14+00:00"
+ "time": "2022-09-12T23:36:20+00:00"
},
{
"name": "nunomaduro/collision",
@@ -8031,16 +8038,16 @@
},
{
"name": "tijsverkoyen/css-to-inline-styles",
- "version": "2.2.4",
+ "version": "2.2.5",
"source": {
"type": "git",
"url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
- "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
+ "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
- "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/4348a3a06651827a27d989ad1d13efec6bb49b19",
+ "reference": "4348a3a06651827a27d989ad1d13efec6bb49b19",
"shasum": ""
},
"require": {
@@ -8078,9 +8085,9 @@
"homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
"support": {
"issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
- "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.5"
},
- "time": "2021-12-08T09:12:39+00:00"
+ "time": "2022-09-12T13:28:28+00:00"
},
{
"name": "twig/twig",
From 9e98c52c6416ea2101234710da0972af5607a99d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Sep 2022 06:14:38 +0000
Subject: [PATCH 06/36] Bump spatie/laravel-ignition from 1.4.1 to 1.5.0
Bumps [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition) from 1.4.1 to 1.5.0.
- [Release notes](https://github.com/spatie/laravel-ignition/releases)
- [Changelog](https://github.com/spatie/laravel-ignition/blob/main/CHANGELOG.md)
- [Commits](https://github.com/spatie/laravel-ignition/compare/1.4.1...1.5.0)
---
updated-dependencies:
- dependency-name: spatie/laravel-ignition
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
composer.json | 2 +-
composer.lock | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/composer.json b/composer.json
index 427468a4b5..6468244681 100644
--- a/composer.json
+++ b/composer.json
@@ -103,7 +103,7 @@
"ramsey/uuid": "^4.5",
"rcrowe/twigbridge": "^0.14",
"spatie/data-transfer-object": "^3.9",
- "spatie/laravel-ignition": "^1.4",
+ "spatie/laravel-ignition": "^1.5",
"symfony/http-client": "^6.0",
"symfony/mailgun-mailer": "^6.0"
},
diff --git a/composer.lock b/composer.lock
index 0de0bde82b..583edec01e 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "2f4412b4cef4ada83ff1393202a8115e",
+ "content-hash": "773f4b8dc111cdbdbdc38a66c6f3a3f9",
"packages": [
{
"name": "bacon/bacon-qr-code",
@@ -5498,27 +5498,27 @@
},
{
"name": "spatie/laravel-ignition",
- "version": "1.4.1",
+ "version": "1.5.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-ignition.git",
- "reference": "29deea5d9cf921590184be6956e657c4f4566440"
+ "reference": "192962f4d84526f6868c512530c00633e3165749"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/29deea5d9cf921590184be6956e657c4f4566440",
- "reference": "29deea5d9cf921590184be6956e657c4f4566440",
+ "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/192962f4d84526f6868c512530c00633e3165749",
+ "reference": "192962f4d84526f6868c512530c00633e3165749",
"shasum": ""
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
- "illuminate/support": "^8.77|^9.0",
+ "illuminate/support": "^8.77|^9.27",
"monolog/monolog": "^2.3",
"php": "^8.0",
"spatie/flare-client-php": "^1.0.1",
- "spatie/ignition": "^1.2.4",
+ "spatie/ignition": "^1.4.1",
"symfony/console": "^5.0|^6.0",
"symfony/var-dumper": "^5.0|^6.0"
},
@@ -5584,7 +5584,7 @@
"type": "github"
}
],
- "time": "2022-09-01T11:31:14+00:00"
+ "time": "2022-09-16T13:45:54+00:00"
},
{
"name": "stella-maris/clock",
From 7116c65bd70f6b84488193002aac10b9a54b409b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Sep 2022 06:14:40 +0000
Subject: [PATCH 07/36] Bump laravel/passport from 11.1.0 to 11.2.0
Bumps [laravel/passport](https://github.com/laravel/passport) from 11.1.0 to 11.2.0.
- [Release notes](https://github.com/laravel/passport/releases)
- [Changelog](https://github.com/laravel/passport/blob/11.x/CHANGELOG.md)
- [Commits](https://github.com/laravel/passport/compare/v11.1.0...v11.2.0)
---
updated-dependencies:
- dependency-name: laravel/passport
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
composer.lock | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/composer.lock b/composer.lock
index 0de0bde82b..694f16b350 100644
--- a/composer.lock
+++ b/composer.lock
@@ -2042,16 +2042,16 @@
},
{
"name": "laravel/passport",
- "version": "v11.1.0",
+ "version": "v11.2.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/passport.git",
- "reference": "89cc1976a25e2fa53ba8a3773e101189149852fa"
+ "reference": "fb2a4029c6cf4df1ce0cf79ddbb874508f7a73e9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/passport/zipball/89cc1976a25e2fa53ba8a3773e101189149852fa",
- "reference": "89cc1976a25e2fa53ba8a3773e101189149852fa",
+ "url": "https://api.github.com/repos/laravel/passport/zipball/fb2a4029c6cf4df1ce0cf79ddbb874508f7a73e9",
+ "reference": "fb2a4029c6cf4df1ce0cf79ddbb874508f7a73e9",
"shasum": ""
},
"require": {
@@ -2115,7 +2115,7 @@
"issues": "https://github.com/laravel/passport/issues",
"source": "https://github.com/laravel/passport"
},
- "time": "2022-09-05T14:35:34+00:00"
+ "time": "2022-09-07T13:14:45+00:00"
},
{
"name": "laravel/sanctum",
@@ -3143,16 +3143,16 @@
},
{
"name": "league/uri",
- "version": "6.7.1",
+ "version": "6.7.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/uri.git",
- "reference": "2d7c87a0860f3126a39f44a8a9bf2fed402dcfea"
+ "reference": "d3b50812dd51f3fbf176344cc2981db03d10fe06"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/uri/zipball/2d7c87a0860f3126a39f44a8a9bf2fed402dcfea",
- "reference": "2d7c87a0860f3126a39f44a8a9bf2fed402dcfea",
+ "url": "https://api.github.com/repos/thephpleague/uri/zipball/d3b50812dd51f3fbf176344cc2981db03d10fe06",
+ "reference": "d3b50812dd51f3fbf176344cc2981db03d10fe06",
"shasum": ""
},
"require": {
@@ -3230,7 +3230,7 @@
"docs": "https://uri.thephpleague.com",
"forum": "https://thephpleague.slack.com",
"issues": "https://github.com/thephpleague/uri/issues",
- "source": "https://github.com/thephpleague/uri/tree/6.7.1"
+ "source": "https://github.com/thephpleague/uri/tree/6.7.2"
},
"funding": [
{
@@ -3238,7 +3238,7 @@
"type": "github"
}
],
- "time": "2022-06-29T09:48:18+00:00"
+ "time": "2022-09-13T19:50:42+00:00"
},
{
"name": "league/uri-interfaces",
From fd7683c21226f4e65a0dedeb3b7dc265684286c9 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 26 Sep 2022 03:00:52 +0000
Subject: [PATCH 08/36] Bump phpunit/phpunit from 9.5.24 to 9.5.25
Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.5.24 to 9.5.25.
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/main/ChangeLog-9.5.md)
- [Commits](https://github.com/sebastianbergmann/phpunit/compare/9.5.24...9.5.25)
---
updated-dependencies:
- dependency-name: phpunit/phpunit
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
composer.lock | 60 +++++++++++++++++++++++++++------------------------
1 file changed, 32 insertions(+), 28 deletions(-)
diff --git a/composer.lock b/composer.lock
index 30245e2427..906b688f55 100644
--- a/composer.lock
+++ b/composer.lock
@@ -9505,16 +9505,16 @@
},
{
"name": "phpunit/phpunit",
- "version": "9.5.24",
+ "version": "9.5.25",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5"
+ "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
- "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
+ "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
"shasum": ""
},
"require": {
@@ -9536,14 +9536,14 @@
"phpunit/php-timer": "^5.0.2",
"sebastian/cli-parser": "^1.0.1",
"sebastian/code-unit": "^1.0.6",
- "sebastian/comparator": "^4.0.5",
+ "sebastian/comparator": "^4.0.8",
"sebastian/diff": "^4.0.3",
"sebastian/environment": "^5.1.3",
- "sebastian/exporter": "^4.0.3",
+ "sebastian/exporter": "^4.0.5",
"sebastian/global-state": "^5.0.1",
"sebastian/object-enumerator": "^4.0.3",
"sebastian/resource-operations": "^3.0.3",
- "sebastian/type": "^3.1",
+ "sebastian/type": "^3.2",
"sebastian/version": "^3.0.2"
},
"suggest": {
@@ -9587,7 +9587,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.24"
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
},
"funding": [
{
@@ -9597,9 +9597,13 @@
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
+ "type": "tidelift"
}
],
- "time": "2022-08-30T07:42:16+00:00"
+ "time": "2022-09-25T03:44:45+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -9770,16 +9774,16 @@
},
{
"name": "sebastian/comparator",
- "version": "4.0.6",
+ "version": "4.0.8",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
+ "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
+ "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
"shasum": ""
},
"require": {
@@ -9832,7 +9836,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/comparator/issues",
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
+ "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
},
"funding": [
{
@@ -9840,7 +9844,7 @@
"type": "github"
}
],
- "time": "2020-10-26T15:49:45+00:00"
+ "time": "2022-09-14T12:41:17+00:00"
},
{
"name": "sebastian/complexity",
@@ -10030,16 +10034,16 @@
},
{
"name": "sebastian/exporter",
- "version": "4.0.4",
+ "version": "4.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
+ "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
+ "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
"shasum": ""
},
"require": {
@@ -10095,7 +10099,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/exporter/issues",
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
+ "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
},
"funding": [
{
@@ -10103,7 +10107,7 @@
"type": "github"
}
],
- "time": "2021-11-11T14:18:36+00:00"
+ "time": "2022-09-14T06:03:37+00:00"
},
{
"name": "sebastian/global-state",
@@ -10458,16 +10462,16 @@
},
{
"name": "sebastian/type",
- "version": "3.1.0",
+ "version": "3.2.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
- "reference": "fb44e1cc6e557418387ad815780360057e40753e"
+ "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb44e1cc6e557418387ad815780360057e40753e",
- "reference": "fb44e1cc6e557418387ad815780360057e40753e",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
+ "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
"shasum": ""
},
"require": {
@@ -10479,7 +10483,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -10502,7 +10506,7 @@
"homepage": "https://github.com/sebastianbergmann/type",
"support": {
"issues": "https://github.com/sebastianbergmann/type/issues",
- "source": "https://github.com/sebastianbergmann/type/tree/3.1.0"
+ "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
},
"funding": [
{
@@ -10510,7 +10514,7 @@
"type": "github"
}
],
- "time": "2022-08-29T06:55:37+00:00"
+ "time": "2022-09-12T14:47:03+00:00"
},
{
"name": "sebastian/version",
From 8e4c772dcd5d280a9fe354456f65e6bf240d8fcd Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 26 Sep 2022 03:01:00 +0000
Subject: [PATCH 09/36] Bump laravel/framework from 9.30.1 to 9.31.0
Bumps [laravel/framework](https://github.com/laravel/framework) from 9.30.1 to 9.31.0.
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/9.x/CHANGELOG.md)
- [Commits](https://github.com/laravel/framework/compare/v9.30.1...v9.31.0)
---
updated-dependencies:
- dependency-name: laravel/framework
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
composer.lock | 185 ++++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 170 insertions(+), 15 deletions(-)
diff --git a/composer.lock b/composer.lock
index 30245e2427..1437aed118 100644
--- a/composer.lock
+++ b/composer.lock
@@ -1855,16 +1855,16 @@
},
{
"name": "laravel/framework",
- "version": "v9.30.1",
+ "version": "v9.31.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "9533f7926f31939f25a620fbbf545318c18c943f"
+ "reference": "75013d4fffe3b24748d313fbbea53206351214f7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/9533f7926f31939f25a620fbbf545318c18c943f",
- "reference": "9533f7926f31939f25a620fbbf545318c18c943f",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/75013d4fffe3b24748d313fbbea53206351214f7",
+ "reference": "75013d4fffe3b24748d313fbbea53206351214f7",
"shasum": ""
},
"require": {
@@ -1894,6 +1894,7 @@
"symfony/mime": "^6.0",
"symfony/process": "^6.0",
"symfony/routing": "^6.0",
+ "symfony/uid": "^6.0",
"symfony/var-dumper": "^6.0",
"tijsverkoyen/css-to-inline-styles": "^2.2.2",
"vlucas/phpdotenv": "^5.4.1",
@@ -1957,8 +1958,7 @@
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^9.5.8",
"predis/predis": "^1.1.9|^2.0",
- "symfony/cache": "^6.0",
- "symfony/uid": "^6.0"
+ "symfony/cache": "^6.0"
},
"suggest": {
"ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
@@ -1993,8 +1993,7 @@
"symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
"symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
"symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
- "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
- "symfony/uid": "Required to generate ULIDs for Eloquent (^6.0)."
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
},
"type": "library",
"extra": {
@@ -2038,7 +2037,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-15T13:15:47+00:00"
+ "time": "2022-09-20T13:32:50+00:00"
},
{
"name": "laravel/passport",
@@ -2838,16 +2837,16 @@
},
{
"name": "league/flysystem",
- "version": "3.5.1",
+ "version": "3.5.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "f14993c6e394450ac4649da35264df0544d0234e"
+ "reference": "c73c4eb31f2e883b3897ab5591aa2dbc48112433"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f14993c6e394450ac4649da35264df0544d0234e",
- "reference": "f14993c6e394450ac4649da35264df0544d0234e",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c73c4eb31f2e883b3897ab5591aa2dbc48112433",
+ "reference": "c73c4eb31f2e883b3897ab5591aa2dbc48112433",
"shasum": ""
},
"require": {
@@ -2909,7 +2908,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.5.1"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.5.2"
},
"funding": [
{
@@ -2925,7 +2924,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-18T18:23:19+00:00"
+ "time": "2022-09-23T18:59:16+00:00"
},
{
"name": "league/fractal",
@@ -7371,6 +7370,88 @@
],
"time": "2022-05-24T11:49:31+00:00"
},
+ {
+ "name": "symfony/polyfill-uuid",
+ "version": "v1.26.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-uuid.git",
+ "reference": "a41886c1c81dc075a09c71fe6db5b9d68c79de23"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/a41886c1c81dc075a09c71fe6db5b9d68c79de23",
+ "reference": "a41886c1c81dc075a09c71fe6db5b9d68c79de23",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-uuid": "*"
+ },
+ "suggest": {
+ "ext-uuid": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.26-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Uuid\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Grégoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for uuid functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "uuid"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-uuid/tree/v1.26.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-05-24T11:49:31+00:00"
+ },
{
"name": "symfony/process",
"version": "v6.0.11",
@@ -7948,6 +8029,80 @@
],
"time": "2022-06-27T17:10:44+00:00"
},
+ {
+ "name": "symfony/uid",
+ "version": "v6.0.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/uid.git",
+ "reference": "7ae9cb6ad0728f9a425499112929575c0b2cc09f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/7ae9cb6ad0728f9a425499112929575c0b2cc09f",
+ "reference": "7ae9cb6ad0728f9a425499112929575c0b2cc09f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.2",
+ "symfony/polyfill-uuid": "^1.15"
+ },
+ "require-dev": {
+ "symfony/console": "^5.4|^6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Uid\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Grégoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to generate and represent UIDs",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "UID",
+ "ulid",
+ "uuid"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/uid/tree/v6.0.11"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-07-20T13:45:53+00:00"
+ },
{
"name": "symfony/var-dumper",
"version": "v6.0.11",
From ff55b36f320d3beb5419db05a9cdfedf360f7a62 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 26 Sep 2022 03:01:06 +0000
Subject: [PATCH 10/36] Bump doctrine/dbal from 3.4.4 to 3.4.5
Bumps [doctrine/dbal](https://github.com/doctrine/dbal) from 3.4.4 to 3.4.5.
- [Release notes](https://github.com/doctrine/dbal/releases)
- [Commits](https://github.com/doctrine/dbal/compare/3.4.4...3.4.5)
---
updated-dependencies:
- dependency-name: doctrine/dbal
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
composer.lock | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/composer.lock b/composer.lock
index 30245e2427..5f0c870083 100644
--- a/composer.lock
+++ b/composer.lock
@@ -470,16 +470,16 @@
},
{
"name": "doctrine/dbal",
- "version": "3.4.4",
+ "version": "3.4.5",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "4cbbe6e4b9ef6c69d5f4c968c637476f47bb54f5"
+ "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/4cbbe6e4b9ef6c69d5f4c968c637476f47bb54f5",
- "reference": "4cbbe6e4b9ef6c69d5f4c968c637476f47bb54f5",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
+ "reference": "a5a58773109c0abb13e658c8ccd92aeec8d07f9e",
"shasum": ""
},
"require": {
@@ -561,7 +561,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
- "source": "https://github.com/doctrine/dbal/tree/3.4.4"
+ "source": "https://github.com/doctrine/dbal/tree/3.4.5"
},
"funding": [
{
@@ -577,7 +577,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-01T21:26:42+00:00"
+ "time": "2022-09-23T17:48:57+00:00"
},
{
"name": "doctrine/deprecations",
From 1558e87923ba73fcab92984d62c4c3c6ce046c8d Mon Sep 17 00:00:00 2001
From: James Cole
Date: Fri, 30 Sep 2022 19:56:24 +0200
Subject: [PATCH 11/36] Fix
https://github.com/firefly-iii/firefly-iii/issues/6461
---
index.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.php b/index.php
index dbdd8fed70..81e30f194c 100644
--- a/index.php
+++ b/index.php
@@ -48,7 +48,7 @@ echo '
Leaving your web server configured like this is a huge security risk.
-Please read more on the Github help pages.
+Please read more on the Github help pages.