From e9f90640d3906b0782684ff161faeb667e3169b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 1 Nov 2023 21:43:27 +0000 Subject: [PATCH] Integrate changie and create a workflow for publishing app --- .changes/header.tpl.md | 6 + .changes/unreleased/.gitkeep | 0 .changes/v0.1.0.md | 3 + .changie.yaml | 35 ++++ .../release/update-composer-lock.yaml | 56 +++++ CHANGELOG.md | 11 +- composer.lock | 196 +++++++++--------- 7 files changed, 203 insertions(+), 104 deletions(-) create mode 100644 .changes/header.tpl.md create mode 100644 .changes/unreleased/.gitkeep create mode 100644 .changes/v0.1.0.md create mode 100644 .changie.yaml create mode 100644 .gitea/workflows/release/update-composer-lock.yaml diff --git a/.changes/header.tpl.md b/.changes/header.tpl.md new file mode 100644 index 0000000..df8faa7 --- /dev/null +++ b/.changes/header.tpl.md @@ -0,0 +1,6 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), +and is generated by [Changie](https://github.com/miniscruff/changie). diff --git a/.changes/unreleased/.gitkeep b/.changes/unreleased/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.changes/v0.1.0.md b/.changes/v0.1.0.md new file mode 100644 index 0000000..1ce50ac --- /dev/null +++ b/.changes/v0.1.0.md @@ -0,0 +1,3 @@ +## v0.1.0 - 2023-11-02 +### Release +* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2 diff --git a/.changie.yaml b/.changie.yaml new file mode 100644 index 0000000..7029d75 --- /dev/null +++ b/.changie.yaml @@ -0,0 +1,35 @@ +changesDir: .changes +unreleasedDir: unreleased +headerPath: header.tpl.md +changelogPath: CHANGELOG.md +versionExt: md +versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}' +kindFormat: '### {{.Kind}}' +# Note: it is possible to add a `.custom.Long` text manually into the yaml file produced by `changie new`. This will add a long description. +changeFormat: >- + * {{ if and (ne .Custom.Issue "") (ne .Custom.Issue "0") }}([#{{ .Custom.Issue }}](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/{{ .Custom.Issue }})) {{ end }}{{.Body}} +custom: + - key: Issue + label: Issue number (on chill-bundles repository) (optional) + optional: true + type: int +kinds: + - label: Release + auto: minor + - label: Feature + auto: minor + - label: Deprecated + auto: minor + - label: Fixed + auto: patch + - label: Security + auto: patch + - label: DX + auto: patch + - label: UX + auto: patch +newlines: + afterChangelogHeader: 1 + beforeChangelogVersion: 1 + endOfVersion: 1 +envPrefix: CHANGIE_ diff --git a/.gitea/workflows/release/update-composer-lock.yaml b/.gitea/workflows/release/update-composer-lock.yaml new file mode 100644 index 0000000..804883f --- /dev/null +++ b/.gitea/workflows/release/update-composer-lock.yaml @@ -0,0 +1,56 @@ +name: Prepare release for chill app +run-name: Update composer.lock and dependencies for preparing a release + +on: + push: + branches: + - 'release/**' + +jobs: + update-deps: + runs-on: ubuntu-latest + steps: + - name: check out repository + uses: https://github.com/actions/checkout@v4 + - name: get the previous chill version + # parse the composer.lock file using jq to get the chill version before the upgrade + id: chill-before + uses: https://github.com/sergeysova/jq-action@v2 + with: + cmd: 'cat composer.lock | jq --raw-output ''.packages[] | select ( .name | contains ("chill-project/chill-bundles")) | .version''' + - name: run composer update to update composer.lock + uses: docker://gitea.champs-libres.be/chill-project/chill-skeleton-basic/base-image:latest + with: + # this is where we set the command to execute + args: composer update --no-install + - name: is composer.lock changed ? + id: composer-lock-changed + run: 'echo is_composer_lock_changed=$(git diff --name-only | grep "composer\.lock" | wc -l) >> $GITHUB_OUTPUT' + - name: get the new chill version + # parse the composer.lock file using jq to get the chill version after the upgrade + id: chill-after + uses: https://github.com/sergeysova/jq-action@v2 + with: + cmd: 'cat composer.lock | jq --raw-output ''.packages[] | select ( .name | contains ("chill-project/chill-bundles")) | .version''' + - name: add a changie file for the upgrade + uses: https://github.com/miniscruff/changie-action@v2 + if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }} + with: + version: latest + args: 'new --body "Update dependencies. Chill-bundles upgraded from ${{ steps.chill-before.outputs.value }} to ${{ steps.chill-after.outputs.value }}" --kind Release --custom "Issue=0"' + - name: changie batch + uses: https://github.com/miniscruff/changie-action@v2 + with: + version: latest + args: 'batch auto' + - name: changie merge + uses: https://github.com/miniscruff/changie-action@v2 + with: + version: latest + args: 'merge' + - name: commit changed files + uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "update composer.lock and file (automatic update)" + commit_user_name: Action Bot + commit_user_email: bot@chill.social diff --git a/CHANGELOG.md b/CHANGELOG.md index d3a94e0..efef314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,11 @@ # Changelog - All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to +adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), +and is generated by [Changie](https://github.com/miniscruff/changie). -* [Semantic Versioning](https://semver.org/spec/v2.0.0.html) for stable releases; -* date versioning for test releases - -## Unreleased +## v0.1.0 - 2023-11-02 +### Release +* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2 diff --git a/composer.lock b/composer.lock index 82b83a8..85a7d11 100644 --- a/composer.lock +++ b/composer.lock @@ -2119,16 +2119,16 @@ }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.13.23", + "version": "8.13.24", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "b2dff83693cb46eb4478b193e9d94e2ff6258480" + "reference": "746ca6a565b9d4167c94c80824f43fa6fb463fd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/b2dff83693cb46eb4478b193e9d94e2ff6258480", - "reference": "b2dff83693cb46eb4478b193e9d94e2ff6258480", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/746ca6a565b9d4167c94c80824f43fa6fb463fd1", + "reference": "746ca6a565b9d4167c94c80824f43fa6fb463fd1", "shasum": "" }, "require": { @@ -2187,20 +2187,20 @@ "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", "source": "https://github.com/giggsey/libphonenumber-for-php" }, - "time": "2023-10-11T07:12:56+00:00" + "time": "2023-10-31T08:12:54+00:00" }, { "name": "giggsey/locale", - "version": "2.4", + "version": "2.5", "source": { "type": "git", "url": "https://github.com/giggsey/Locale.git", - "reference": "a6b33dfc9e8949b7e28133c4628b29cd9f1850bb" + "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/Locale/zipball/a6b33dfc9e8949b7e28133c4628b29cd9f1850bb", - "reference": "a6b33dfc9e8949b7e28133c4628b29cd9f1850bb", + "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239", + "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239", "shasum": "" }, "require": { @@ -2239,9 +2239,9 @@ "description": "Locale functions required by libphonenumber-for-php", "support": { "issues": "https://github.com/giggsey/Locale/issues", - "source": "https://github.com/giggsey/Locale/tree/2.4" + "source": "https://github.com/giggsey/Locale/tree/2.5" }, - "time": "2023-04-13T07:40:58+00:00" + "time": "2023-11-01T17:19:48+00:00" }, { "name": "graylog2/gelf-php", @@ -2988,16 +2988,16 @@ }, { "name": "knpuniversity/oauth2-client-bundle", - "version": "v2.15.0", + "version": "v2.16.0", "source": { "type": "git", "url": "https://github.com/knpuniversity/oauth2-client-bundle.git", - "reference": "9df0736d02eb20b953ec8e9986743611747d9ed9" + "reference": "2d4aacdf4d32a869d785d20515adf0615d9da248" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/knpuniversity/oauth2-client-bundle/zipball/9df0736d02eb20b953ec8e9986743611747d9ed9", - "reference": "9df0736d02eb20b953ec8e9986743611747d9ed9", + "url": "https://api.github.com/repos/knpuniversity/oauth2-client-bundle/zipball/2d4aacdf4d32a869d785d20515adf0615d9da248", + "reference": "2d4aacdf4d32a869d785d20515adf0615d9da248", "shasum": "" }, "require": { @@ -3042,9 +3042,9 @@ ], "support": { "issues": "https://github.com/knpuniversity/oauth2-client-bundle/issues", - "source": "https://github.com/knpuniversity/oauth2-client-bundle/tree/v2.15.0" + "source": "https://github.com/knpuniversity/oauth2-client-bundle/tree/v2.16.0" }, - "time": "2023-05-03T16:44:38+00:00" + "time": "2023-10-24T15:57:05+00:00" }, { "name": "laminas/laminas-escaper", @@ -3174,16 +3174,16 @@ }, { "name": "lcobucci/jwt", - "version": "5.0.0", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "47bdb0e0b5d00c2f89ebe33e7e384c77e84e7c34" + "reference": "f0031c07b96db6a0ca649206e7eacddb7e9d5908" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/47bdb0e0b5d00c2f89ebe33e7e384c77e84e7c34", - "reference": "47bdb0e0b5d00c2f89ebe33e7e384c77e84e7c34", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/f0031c07b96db6a0ca649206e7eacddb7e9d5908", + "reference": "f0031c07b96db6a0ca649206e7eacddb7e9d5908", "shasum": "" }, "require": { @@ -3191,20 +3191,20 @@ "ext-json": "*", "ext-openssl": "*", "ext-sodium": "*", - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "psr/clock": "^1.0" }, "require-dev": { - "infection/infection": "^0.26.19", + "infection/infection": "^0.27.0", "lcobucci/clock": "^3.0", - "lcobucci/coding-standard": "^9.0", - "phpbench/phpbench": "^1.2.8", + "lcobucci/coding-standard": "^11.0", + "phpbench/phpbench": "^1.2.9", "phpstan/extension-installer": "^1.2", - "phpstan/phpstan": "^1.10.3", - "phpstan/phpstan-deprecation-rules": "^1.1.2", - "phpstan/phpstan-phpunit": "^1.3.8", + "phpstan/phpstan": "^1.10.7", + "phpstan/phpstan-deprecation-rules": "^1.1.3", + "phpstan/phpstan-phpunit": "^1.3.10", "phpstan/phpstan-strict-rules": "^1.5.0", - "phpunit/phpunit": "^10.0.12" + "phpunit/phpunit": "^10.2.6" }, "suggest": { "lcobucci/clock": ">= 3.0" @@ -3233,7 +3233,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/5.0.0" + "source": "https://github.com/lcobucci/jwt/tree/5.1.0" }, "funding": [ { @@ -3245,7 +3245,7 @@ "type": "patreon" } ], - "time": "2023-02-25T21:35:16+00:00" + "time": "2023-10-31T06:41:47+00:00" }, { "name": "league/csv", @@ -3850,16 +3850,16 @@ }, { "name": "monolog/monolog", - "version": "2.9.1", + "version": "2.9.2", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" + "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", - "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f", + "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f", "shasum": "" }, "require": { @@ -3936,7 +3936,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.9.1" + "source": "https://github.com/Seldaek/monolog/tree/2.9.2" }, "funding": [ { @@ -3948,7 +3948,7 @@ "type": "tidelift" } ], - "time": "2023-02-06T13:44:46+00:00" + "time": "2023-10-27T15:25:26+00:00" }, { "name": "myclabs/deep-copy", @@ -4325,16 +4325,16 @@ }, { "name": "ovh/ovh", - "version": "v3.2.0", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/ovh/php-ovh.git", - "reference": "9a29f720d03f0a8cae642ba5c97f51d100144c57" + "reference": "a5241f84111bc8c108ab78480a3141353389cc49" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ovh/php-ovh/zipball/9a29f720d03f0a8cae642ba5c97f51d100144c57", - "reference": "9a29f720d03f0a8cae642ba5c97f51d100144c57", + "url": "https://api.github.com/repos/ovh/php-ovh/zipball/a5241f84111bc8c108ab78480a3141353389cc49", + "reference": "a5241f84111bc8c108ab78480a3141353389cc49", "shasum": "" }, "require": { @@ -4369,9 +4369,9 @@ ], "support": { "issues": "https://github.com/ovh/php-ovh/issues", - "source": "https://github.com/ovh/php-ovh/tree/v3.2.0" + "source": "https://github.com/ovh/php-ovh/tree/v3.3.0" }, - "time": "2023-04-07T08:09:14+00:00" + "time": "2023-10-20T15:21:31+00:00" }, { "name": "paragonie/constant_time_encoding", @@ -4778,16 +4778,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "3.0.23", + "version": "3.0.33", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "866cc78fbd82462ffd880e3f65692afe928bed50" + "reference": "33fa69b2514a61138dd48e7a49f99445711e0ad0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/866cc78fbd82462ffd880e3f65692afe928bed50", - "reference": "866cc78fbd82462ffd880e3f65692afe928bed50", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/33fa69b2514a61138dd48e7a49f99445711e0ad0", + "reference": "33fa69b2514a61138dd48e7a49f99445711e0ad0", "shasum": "" }, "require": { @@ -4868,7 +4868,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.23" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.33" }, "funding": [ { @@ -4884,20 +4884,20 @@ "type": "tidelift" } ], - "time": "2023-09-18T17:22:01+00:00" + "time": "2023-10-21T14:00:39+00:00" }, { "name": "phpstan/phpstan", - "version": "1.10.39", + "version": "1.10.40", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "d9dedb0413f678b4d03cbc2279a48f91592c97c4" + "reference": "93c84b5bf7669920d823631e39904d69b9c7dc5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d9dedb0413f678b4d03cbc2279a48f91592c97c4", - "reference": "d9dedb0413f678b4d03cbc2279a48f91592c97c4", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/93c84b5bf7669920d823631e39904d69b9c7dc5d", + "reference": "93c84b5bf7669920d823631e39904d69b9c7dc5d", "shasum": "" }, "require": { @@ -4946,7 +4946,7 @@ "type": "tidelift" } ], - "time": "2023-10-17T15:46:26+00:00" + "time": "2023-10-30T14:48:31+00:00" }, { "name": "psr/cache", @@ -6335,16 +6335,16 @@ }, { "name": "symfony/cache", - "version": "v5.4.29", + "version": "v5.4.30", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151" + "reference": "2742d1b595927210546bb7a0887094cf1494de21" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151", - "reference": "e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151", + "url": "https://api.github.com/repos/symfony/cache/zipball/2742d1b595927210546bb7a0887094cf1494de21", + "reference": "2742d1b595927210546bb7a0887094cf1494de21", "shasum": "" }, "require": { @@ -6372,7 +6372,7 @@ "require-dev": { "cache/integration-tests": "dev-master", "doctrine/cache": "^1.6|^2.0", - "doctrine/dbal": "^2.13.1|^3.0", + "doctrine/dbal": "^2.13.1|^3|^4", "predis/predis": "^1.1", "psr/simple-cache": "^1.0|^2.0", "symfony/config": "^4.4|^5.0|^6.0", @@ -6412,7 +6412,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.4.29" + "source": "https://github.com/symfony/cache/tree/v5.4.30" }, "funding": [ { @@ -6428,7 +6428,7 @@ "type": "tidelift" } ], - "time": "2023-09-19T13:25:51+00:00" + "time": "2023-10-17T14:17:25+00:00" }, { "name": "symfony/cache-contracts", @@ -7154,20 +7154,20 @@ }, { "name": "symfony/doctrine-messenger", - "version": "v6.3.1", + "version": "v6.3.7", "source": { "type": "git", "url": "https://github.com/symfony/doctrine-messenger.git", - "reference": "f1c253e24ae6d2bc4939b1439e074e6d2e73ecdb" + "reference": "b8dab85f66ffd5e4275eaf7558f9db8f4586dd41" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/f1c253e24ae6d2bc4939b1439e074e6d2e73ecdb", - "reference": "f1c253e24ae6d2bc4939b1439e074e6d2e73ecdb", + "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/b8dab85f66ffd5e4275eaf7558f9db8f4586dd41", + "reference": "b8dab85f66ffd5e4275eaf7558f9db8f4586dd41", "shasum": "" }, "require": { - "doctrine/dbal": "^2.13|^3.0", + "doctrine/dbal": "^2.13|^3|^4", "php": ">=8.1", "symfony/messenger": "^5.4|^6.0", "symfony/service-contracts": "^2.5|^3" @@ -7206,7 +7206,7 @@ "description": "Symfony Doctrine Messenger Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/doctrine-messenger/tree/v6.3.1" + "source": "https://github.com/symfony/doctrine-messenger/tree/v6.3.7" }, "funding": [ { @@ -7222,7 +7222,7 @@ "type": "tidelift" } ], - "time": "2023-06-24T11:51:27+00:00" + "time": "2023-10-26T18:15:14+00:00" }, { "name": "symfony/dom-crawler", @@ -7722,16 +7722,16 @@ }, { "name": "symfony/flex", - "version": "v1.20.2", + "version": "v1.21.2", "source": { "type": "git", "url": "https://github.com/symfony/flex.git", - "reference": "a2554c7e1b669f5049c1b67bc56f13aa1c4bf7da" + "reference": "f1cf4014ffac79e0c031cc40d6d66354e7de5da5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/flex/zipball/a2554c7e1b669f5049c1b67bc56f13aa1c4bf7da", - "reference": "a2554c7e1b669f5049c1b67bc56f13aa1c4bf7da", + "url": "https://api.github.com/repos/symfony/flex/zipball/f1cf4014ffac79e0c031cc40d6d66354e7de5da5", + "reference": "f1cf4014ffac79e0c031cc40d6d66354e7de5da5", "shasum": "" }, "require": { @@ -7767,7 +7767,7 @@ "description": "Composer plugin for Symfony", "support": { "issues": "https://github.com/symfony/flex/issues", - "source": "https://github.com/symfony/flex/tree/v1.20.2" + "source": "https://github.com/symfony/flex/tree/v1.21.2" }, "funding": [ { @@ -7783,7 +7783,7 @@ "type": "tidelift" } ], - "time": "2023-08-04T09:02:01+00:00" + "time": "2023-10-30T18:34:59+00:00" }, { "name": "symfony/form", @@ -8536,16 +8536,16 @@ }, { "name": "symfony/messenger", - "version": "v5.4.29", + "version": "v5.4.30", "source": { "type": "git", "url": "https://github.com/symfony/messenger.git", - "reference": "ce5165859adc36595578d684e77fc721fa53e387" + "reference": "f6c4ec041891b92e81dc422eba0ff88dafb57487" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/messenger/zipball/ce5165859adc36595578d684e77fc721fa53e387", - "reference": "ce5165859adc36595578d684e77fc721fa53e387", + "url": "https://api.github.com/repos/symfony/messenger/zipball/f6c4ec041891b92e81dc422eba0ff88dafb57487", + "reference": "f6c4ec041891b92e81dc422eba0ff88dafb57487", "shasum": "" }, "require": { @@ -8606,7 +8606,7 @@ "description": "Helps applications send and receive messages to/from other applications or via message queues", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/messenger/tree/v5.4.29" + "source": "https://github.com/symfony/messenger/tree/v5.4.30" }, "funding": [ { @@ -8622,7 +8622,7 @@ "type": "tidelift" } ], - "time": "2023-09-20T14:19:32+00:00" + "time": "2023-10-26T16:43:35+00:00" }, { "name": "symfony/mime", @@ -10639,16 +10639,16 @@ }, { "name": "symfony/serializer", - "version": "v5.4.29", + "version": "v5.4.30", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "b893175000155839170d589f3a3593f2ce601829" + "reference": "ceadb4e08830e69738d313b667cfb426269f67f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/b893175000155839170d589f3a3593f2ce601829", - "reference": "b893175000155839170d589f3a3593f2ce601829", + "url": "https://api.github.com/repos/symfony/serializer/zipball/ceadb4e08830e69738d313b667cfb426269f67f6", + "reference": "ceadb4e08830e69738d313b667cfb426269f67f6", "shasum": "" }, "require": { @@ -10722,7 +10722,7 @@ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v5.4.29" + "source": "https://github.com/symfony/serializer/tree/v5.4.30" }, "funding": [ { @@ -10738,7 +10738,7 @@ "type": "tidelift" } ], - "time": "2023-09-20T07:40:46+00:00" + "time": "2023-10-25T18:53:19+00:00" }, { "name": "symfony/service-contracts", @@ -11540,16 +11540,16 @@ }, { "name": "symfony/var-exporter", - "version": "v6.3.4", + "version": "v6.3.6", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691" + "reference": "374d289c13cb989027274c86206ddc63b16a2441" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df1f8aac5751871b83d30bf3e2c355770f8f0691", - "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441", + "reference": "374d289c13cb989027274c86206ddc63b16a2441", "shasum": "" }, "require": { @@ -11594,7 +11594,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.3.4" + "source": "https://github.com/symfony/var-exporter/tree/v6.3.6" }, "funding": [ { @@ -11610,7 +11610,7 @@ "type": "tidelift" } ], - "time": "2023-08-16T18:14:47+00:00" + "time": "2023-10-13T09:16:49+00:00" }, { "name": "symfony/webpack-encore-bundle", @@ -13764,16 +13764,16 @@ }, { "name": "symfony/dotenv", - "version": "v5.4.22", + "version": "v5.4.30", "source": { "type": "git", "url": "https://github.com/symfony/dotenv.git", - "reference": "77b7660bfcb85e8f28287d557d7af0046bcd2ca3" + "reference": "ceed2cd28442adcf3679a9a82dacd45baeefc458" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dotenv/zipball/77b7660bfcb85e8f28287d557d7af0046bcd2ca3", - "reference": "77b7660bfcb85e8f28287d557d7af0046bcd2ca3", + "url": "https://api.github.com/repos/symfony/dotenv/zipball/ceed2cd28442adcf3679a9a82dacd45baeefc458", + "reference": "ceed2cd28442adcf3679a9a82dacd45baeefc458", "shasum": "" }, "require": { @@ -13815,7 +13815,7 @@ "environment" ], "support": { - "source": "https://github.com/symfony/dotenv/tree/v5.4.22" + "source": "https://github.com/symfony/dotenv/tree/v5.4.30" }, "funding": [ { @@ -13831,7 +13831,7 @@ "type": "tidelift" } ], - "time": "2023-03-09T20:36:58+00:00" + "time": "2023-10-26T16:37:39+00:00" }, { "name": "symfony/maker-bundle",