From 528e2d0d1c8663a2f46b05a0bf4876a9a58b9f86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Tue, 24 Sep 2024 22:46:45 +0200 Subject: [PATCH 1/3] Add missing blank line Not having it messes up the rendering, both with doctrine/rst-parser and phpDocumentor/guides. --- docs/en/reference/object-change-tracking.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/reference/object-change-tracking.rst b/docs/en/reference/object-change-tracking.rst index b2cacfde..27aade80 100644 --- a/docs/en/reference/object-change-tracking.rst +++ b/docs/en/reference/object-change-tracking.rst @@ -9,6 +9,7 @@ the persistence backend. This approach is based on `the observer pattern `_ and consists of the following two interfaces: + * ``Doctrine\Persistence\NotifyPropertyChanged`` that is implemented by the object whose changes can be tracked, * ``Doctrine\Persistence\PropertyChangedListener`` that is implemented by subscribers From 94a831089a9f7325707c35bf4f5978e8af05c0aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 22:31:03 +0200 Subject: [PATCH 2/3] Bump doctrine/.github from 5.0.1 to 5.1.0 (#384) --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/continuous-integration.yml | 2 +- .github/workflows/release-on-milestone-closed.yml | 2 +- .github/workflows/static-analysis.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 1a2f6ee8..117b5c1c 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -12,6 +12,6 @@ on: jobs: coding-standards: name: "Coding Standards" - uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.0.1" + uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.1.0" with: composer-root-version: "3.0" diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 6da2ec72..c2352540 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -12,7 +12,7 @@ on: jobs: phpunit: name: "PHPUnit" - uses: "doctrine/.github/.github/workflows/continuous-integration.yml@5.0.1" + uses: "doctrine/.github/.github/workflows/continuous-integration.yml@5.1.0" with: composer-root-version: "3.0" php-versions: '["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]' diff --git a/.github/workflows/release-on-milestone-closed.yml b/.github/workflows/release-on-milestone-closed.yml index 3cac620a..e193d87b 100644 --- a/.github/workflows/release-on-milestone-closed.yml +++ b/.github/workflows/release-on-milestone-closed.yml @@ -8,7 +8,7 @@ on: jobs: release: name: "Git tag, release & create merge-up PR" - uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@5.0.1" + uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@5.1.0" secrets: GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 54801f51..be7e1eea 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -12,6 +12,6 @@ on: jobs: static-analysis: name: "Static Analysis" - uses: "doctrine/.github/.github/workflows/static-analysis.yml@5.0.1" + uses: "doctrine/.github/.github/workflows/static-analysis.yml@5.1.0" with: composer-root-version: "3.0" From 9916d0bbaa17ec2d53b0c2cb2b45f781f89e004d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Tue, 15 Oct 2024 08:46:50 +0200 Subject: [PATCH 3/3] Acknowledge the existence of 4.0 --- .doctrine-project.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.doctrine-project.json b/.doctrine-project.json index 19205c35..4c7d9c85 100644 --- a/.doctrine-project.json +++ b/.doctrine-project.json @@ -4,10 +4,16 @@ "slug": "persistence", "docsSlug": "doctrine-persistence", "versions": [ + { + "name": "4.0", + "branchName": "4.0.x", + "slug": "latest", + "upcoming": true + }, { "name": "3.4", "branchName": "3.4.x", - "slug": "latest", + "slug": "3.4", "upcoming": true }, {