Skip to content

Commit 2e50e20

Browse files
committed
ISSUE-337: changelog + test
1 parent bb9d7d7 commit 2e50e20

File tree

5 files changed

+96
-186
lines changed

5 files changed

+96
-186
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ jobs:
3939
run: mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -u${{ env.DB_USERNAME }} -p${{ env.DB_PASSWORD }} -e "SHOW DATABASES"
4040
- name: Get composer cache directory
4141
id: composer-cache
42-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
43-
- name: Cache composer dependencies
42+
run: |
43+
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_ENV
44+
- name: Cache composer dependencies`
4445
uses: actions/cache@v2
4546
with:
4647
path: ${{ steps.composer-cache.outputs.dir }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1616
### Fixed
1717
- Security update for symfony/symfony and symfony/dependency-injection (#86)
1818

19+
20+
## 5.0.0-alpha1
21+
22+
### Changed
23+
- php version 8.1
24+
1925
## 4.0.0-alpha2
2026

2127
### Added

composer.json

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,29 +22,6 @@
2222
"role": "Former developer"
2323
}
2424
],
25-
"repositories": [
26-
{
27-
"type": "path",
28-
"url": "../core",
29-
"options": {
30-
"symlink": true
31-
}
32-
},
33-
{
34-
"type": "path",
35-
"url": "../rest-api",
36-
"options": {
37-
"symlink": true
38-
}
39-
},
40-
{
41-
"type": "path",
42-
"url": "../web-frontend",
43-
"options": {
44-
"symlink": true
45-
}
46-
}
47-
],
4825
"support": {
4926
"issues": "https://github.com/phpList/base-distribution/issues",
5027
"forum": "https://discuss.phplist.org/",
@@ -109,7 +86,7 @@
10986
},
11087
"extra": {
11188
"branch-alias": {
112-
"dev-ISSUE-337": "v5.0.x-dev"
89+
"dev-ISSUE-337": "5.0.x-dev"
11390
},
11491
"symfony-app-dir": "bin",
11592
"symfony-bin-dir": "bin",

0 commit comments

Comments
 (0)