Skip to content

Commit 4284773

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

File tree

5 files changed

+98
-189
lines changed

5 files changed

+98
-189
lines changed

.github/workflows/ci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
php-versions: ['8.1']
26-
dependencies: ['current', 'latest', 'oldest']
26+
dependencies: ['current', 'oldest']
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v2
@@ -51,9 +51,6 @@ jobs:
5151
- name: Install the latest dependencies
5252
run: composer update --with-dependencies --prefer-stable --prefer-dist
5353
if: ${{ matrix.dependencies }} == "current"
54-
- name: Install the lowest dependencies
55-
run: composer update --with-dependencies --prefer-stable --prefer-dist --prefer-lowest
56-
if: ${{ matrix.dependencies }} == "latest"
5754
- name: Install current dependencies from composer.lock
5855
run: composer install
5956
if: ${{ matrix.dependencies }} == "oldest"

CHANGELOG.md

+6
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

+3-25
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/",
@@ -54,7 +31,8 @@
5431
"php": "^8.1",
5532
"phplist/core": "dev-ISSUE-337",
5633
"phplist/rest-api": "dev-ISSUE-337",
57-
"phplist/web-frontend": "dev-ISSUE-337"
34+
"phplist/web-frontend": "dev-ISSUE-337",
35+
"doctrine/orm": "^3.3"
5836
},
5937
"require-dev": {
6038
"phpunit/phpunit": "^9.5.2",
@@ -109,7 +87,7 @@
10987
},
11088
"extra": {
11189
"branch-alias": {
112-
"dev-ISSUE-337": "v5.0.x-dev"
90+
"dev-ISSUE-337": "5.0.x-dev"
11391
},
11492
"symfony-app-dir": "bin",
11593
"symfony-bin-dir": "bin",

0 commit comments

Comments
 (0)