Skip to content

Commit 22842af

Browse files
committed
Merge tag '1.2.0' into develop
no message
2 parents 87162a0 + c1450bb commit 22842af

File tree

18 files changed

+641
-576
lines changed

18 files changed

+641
-576
lines changed

.github/workflows/build_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
APP_ENV: prod
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Composer install
2525
run: |

.github/workflows/changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 2
2424

.github/workflows/composer.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
strategy:
4242
fail-fast: false
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545

4646
- name: Create docker network
4747
run: |
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959

6060
- name: Create docker network
6161
run: |
@@ -70,7 +70,7 @@ jobs:
7070
strategy:
7171
fail-fast: false
7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474

7575
- name: Create docker network
7676
run: |

.github/workflows/markdown.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fail-fast: false
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: Create docker network
4040
run: |

.github/workflows/php.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
name: PHP - Check Coding Standards
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252

5353
- name: Create docker network
5454
run: |

.github/workflows/pr.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
name: Composer install
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
# https://taskfile.dev/installation/#github-actions
1717
- name: Install Task
18-
uses: arduino/setup-task@v2
18+
uses: go-task/setup-task@v1
1919
with:
2020
version: 3.x
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -37,10 +37,10 @@ jobs:
3737
name: Test suite
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141

4242
- name: Install Task
43-
uses: arduino/setup-task@v2
43+
uses: go-task/setup-task@v1
4444
with:
4545
version: 3.x
4646
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -59,7 +59,7 @@ jobs:
5959
task test
6060
6161
- name: Upload coverage to Codecov test
62-
uses: codecov/codecov-action@v4
62+
uses: codecov/codecov-action@v5
6363
with:
6464
files: ./coverage/unit.xml
6565
flags: unittests
@@ -70,10 +70,10 @@ jobs:
7070
name: PHPStan
7171
runs-on: ubuntu-latest
7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474

7575
- name: Install Task
76-
uses: arduino/setup-task@v2
76+
uses: go-task/setup-task@v1
7777
with:
7878
version: 3.x
7979
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -95,10 +95,10 @@ jobs:
9595
runs-on: ubuntu-latest
9696
name: Validate Doctrine Schema
9797
steps:
98-
- uses: actions/checkout@v4
98+
- uses: actions/checkout@v5
9999

100100
- name: Install Task
101-
uses: arduino/setup-task@v2
101+
uses: go-task/setup-task@v1
102102
with:
103103
version: 3.x
104104
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/twig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
fail-fast: false
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444

4545
- name: Create docker network
4646
run: |

.github/workflows/yaml.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
yaml-lint:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535

3636
- name: Create docker network
3737
run: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ node_modules/
2929
###> phpunit/phpunit ###
3030
/phpunit.xml
3131
/.phpunit.cache/
32+
/coverage
3233
###< phpunit/phpunit ###
3334

3435
###> liip/imagine-bundle ###

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ See [keep a changelog] for information about writing changes to this log.
88

99
## [Unreleased]
1010

11+
## [1.2.0] - 2025-09-02
12+
13+
- [PR-71](https://github.com/itk-dev/event-database-imports/pull/70)
14+
- Run schedule feed imports as separate async jobs to avoid failures in one feed blocking others
15+
- Update github actions to latest versions
16+
- [PR-70](https://github.com/itk-dev/event-database-imports/pull/70)
17+
Symfony 7.3 and PHP 8.4
1118
- [PR-69](https://github.com/itk-dev/event-database-imports/pull/69)
1219
Updated project template and cleaned up
1320

@@ -104,7 +111,8 @@ See [keep a changelog] for information about writing changes to this log.
104111
- Consolidate scheduled feed import and index populate in one command
105112

106113
[keep a changelog]: https://keepachangelog.com/en/1.1.0/
107-
[unreleased]: https://github.com/itk-dev/event-database-imports/compare/1.1.6...HEAD
114+
[Unreleased]: https://github.com/itk-dev/event-database-imports/compare/1.2.0...HEAD
115+
[1.2.0]: https://github.com/itk-dev/event-database-imports/compare/1.1.6...1.2.0
108116
[1.1.6]: https://github.com/itk-dev/event-database-imports/releases/tag/1.1.6
109117
[1.1.5]: https://github.com/itk-dev/event-database-imports/releases/tag/1.1.5
110118
[1.1.4]: https://github.com/itk-dev/event-database-imports/releases/tag/1.1.4

0 commit comments

Comments
 (0)