Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare release of 3.1.0 #321

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
# add a specific job to test mysqldump from MariaDB
mysql-client: "mariadb-client"
- php-version: 8.2
symfony-version: "^7.0"
symfony-version: "^7.1"
- php-version: 8.3
symfony-version: "^7.0"
symfony-version: "^7.1"

services:
mariadb:
Expand Down
8 changes: 7 additions & 1 deletion UPGRADE-3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ This is the list of actions that you need to take when upgrading this bundle fro
### Upgrade the bundle

```shell
composer require --dev liip/test-fixtures-bundle:^3.0.0
composer require --dev liip/test-fixtures-bundle:^3.1.0
```

### Remove `liip_test_fixtures.cache_db`

> [!TIP]
> Only for `3.0`, this feature has been restored in `3.1`.

```diff
# app/config/config_test.yml
-liip_test_fixtures:
Expand All @@ -22,6 +25,9 @@ composer require --dev liip/test-fixtures-bundle:^3.0.0

### Remove subscriptions to these events

> [!TIP]
> Only for `3.0`, these events have been restored in `3.1`.

- `LiipTestFixturesEvents::PRE_FIXTURE_BACKUP_RESTORE`
- `LiipTestFixturesEvents::POST_FIXTURE_BACKUP_RESTORE`
- `LiipTestFixturesEvents::PRE_REFERENCE_SAVE`
Expand Down