Skip to content

Commit d7e41a6

Browse files
committed
Merge branch 'release/3.0.0' into feature/update-infrastructure-for-mono-repo
2 parents 6901548 + 9ec77fb commit d7e41a6

File tree

292 files changed

+4721
-2370
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

292 files changed

+4721
-2370
lines changed

.github/workflows/playwright.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
run: |
2323
docker compose run --rm phpfpm composer install
2424
25+
- name: Copy fixture assets to public/fixtures
26+
run: |
27+
docker compose run --rm phpfpm cp -r fixtures/public/fixtures public/fixtures
28+
2529
- name: Build assets
2630
run: |
2731
docker compose run --rm node npm install

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Ignore custom templates folder.
22
/assets/shared/custom-templates/*
33

4+
# Ignore custom screen layouts folder.
5+
/assets/shared/custom-screen-layouts/*
6+
7+
# Ignore the public/fixtures folder.
8+
/public/fixtures
9+
410
# Ignore release json file.
511
/public/release.json
612

CHANGELOG.md

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,34 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7-
* Gathered all repositories in one Symfony application.
8-
* Changed to vite 7 and rolldown.
9-
* Added ADRs 008 and 009.
10-
* Cleaned up Github Actions workflows.
11-
* Updated PHP dependencies.
12-
* Added Playwright github action.
13-
* Changed how templates are imported.
14-
* Removed propTypes.
15-
* Upgraded redux-toolkit and how api slices are generated.
16-
* Fixed redux-toolkit cache handling.
17-
* Added Taskfile
18-
* Added update command.
19-
* Added (Client) online-check to public.
20-
* Updated developer documentation.
7+
- Gathered all repositories in one Symfony application.
8+
- Changed to vite 7 and rolldown.
9+
- Added ADRs 008 and 009.
10+
- Cleaned up Github Actions workflows.
11+
- Updated PHP dependencies.
12+
- Added Playwright github action.
13+
- Changed how templates are imported.
14+
- Removed propTypes.
15+
- Upgraded redux-toolkit and how api slices are generated.
16+
- Fixed redux-toolkit cache handling.
17+
- Added Taskfile
18+
- Added update command.
19+
- Added (Client) online-check to public.
20+
- Updated developer documentation.
21+
- Removed admin/access-config.json fetch
22+
- Aligned with v. 2.5.2.
23+
- Removed themes.
24+
- Added command to migrate config.json files.
25+
- Fix data fetching bug
26+
- Refactored screen layout commands.
27+
- Moved list components (search and checkboxes) around
2128

2229
### NB! Prior to 3.x the project was split into separate repositories
2330

2431
Therefore, changelogs were maintained for each repo. The v2 changelogs have been moved to the `docs/v2-changelogs/`
2532
folder.
2633

27-
* API: [docs/v2-changelogs/api.md](docs/v2-changelogs/api.md)
28-
* Admin: [docs/v2-changelogs/admin.md](docs/v2-changelogs/admin.md)
29-
* Template: [docs/v2-changelogs/template.md](docs/v2-changelogs/template.md)
30-
* Client: [docs/v2-changelogs/client.md](docs/v2-changelogs/client.md)
34+
- API: [docs/v2-changelogs/api.md](docs/v2-changelogs/api.md)
35+
- Admin: [docs/v2-changelogs/admin.md](docs/v2-changelogs/admin.md)
36+
- Template: [docs/v2-changelogs/template.md](docs/v2-changelogs/template.md)
37+
- Client: [docs/v2-changelogs/client.md](docs/v2-changelogs/client.md)

0 commit comments

Comments
 (0)