@kitconcept/website 2.0.0-beta.8 → 2.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.changelog.draft +9 -4
- package/CHANGELOG.md +17 -1
- package/package.json +17 -14
package/.changelog.draft
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
## 2.0.0-beta.
|
|
1
|
+
## 2.0.0-beta.9 (2026-09-04)
|
|
2
2
|
|
|
3
3
|
### Feature
|
|
4
4
|
|
|
5
|
-
- Add
|
|
6
|
-
- Add tracker, tracker options and privacy URL fields to the DSGVO control panel. @iFlameing
|
|
5
|
+
- Add a Playwright-based acceptance test setup with backend reset, cookie consent, login, content, and accessibility helpers, smoke tests, Makefile targets, and CI integration. @sneridagh
|
|
7
6
|
|
|
8
7
|
### Internal
|
|
9
8
|
|
|
10
|
-
- Upgrade
|
|
9
|
+
- Upgrade @plone/volto to version 19.3.1. @ericof [#87](https://gitlab.kitconcept.io/kitconcept/distribution-kitconcept-website/-/work_items/87)
|
|
10
|
+
- Upgrade @kitconcept/volto-contact-block to version 1.0.0-alpha.6. @ericof
|
|
11
|
+
- Upgrade @kitconcept/volto-iframe-block to version 2.4.1. @ericof
|
|
12
|
+
|
|
13
|
+
### Test
|
|
14
|
+
|
|
15
|
+
- Run block accessibility checks against the retained ``/qa/block`` fixtures and remove checks for fixtures that no longer exist. @sneridagh
|
|
11
16
|
|
|
12
17
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 2.0.0-beta.9 (2026-09-04)
|
|
2
|
+
|
|
3
|
+
### Feature
|
|
4
|
+
|
|
5
|
+
- Add a Playwright-based acceptance test setup with backend reset, cookie consent, login, content, and accessibility helpers, smoke tests, Makefile targets, and CI integration. @sneridagh
|
|
6
|
+
|
|
7
|
+
### Internal
|
|
8
|
+
|
|
9
|
+
- Upgrade @plone/volto to version 19.3.1. @ericof [#87](https://gitlab.kitconcept.io/kitconcept/distribution-kitconcept-website/-/work_items/87)
|
|
10
|
+
- Upgrade @kitconcept/volto-contact-block to version 1.0.0-alpha.6. @ericof
|
|
11
|
+
- Upgrade @kitconcept/volto-iframe-block to version 2.4.1. @ericof
|
|
12
|
+
|
|
13
|
+
### Test
|
|
14
|
+
|
|
15
|
+
- Run block accessibility checks against the retained ``/qa/block`` fixtures and remove checks for fixtures that no longer exist. @sneridagh
|
|
16
|
+
|
|
1
17
|
# Changelog
|
|
2
18
|
|
|
3
19
|
<!-- You should *NOT* be adding new change log entries to this file.
|
|
@@ -6,7 +22,7 @@
|
|
|
6
22
|
https://6.docs.plone.org/volto/developer-guidelines/contributing.html#create-a-pull-request
|
|
7
23
|
-->
|
|
8
24
|
|
|
9
|
-
<!-- towncrier release notes start -->
|
|
25
|
+
<!-- towncrier release notes start -->
|
|
10
26
|
|
|
11
27
|
## 2.0.0-beta.8 (2026-07-28)
|
|
12
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/website",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.9",
|
|
4
4
|
"description": "A CMS solution for public websites. Created by kitconcept.",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,14 +26,17 @@
|
|
|
26
26
|
"react-redux": "^8.1.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
+
"@axe-core/playwright": "^4.12.1",
|
|
30
|
+
"@playwright/test": "^1.60.0",
|
|
29
31
|
"@types/node": "^24",
|
|
30
32
|
"@types/react": "^18.3.12",
|
|
31
33
|
"@types/react-dom": "^18.3.1",
|
|
34
|
+
"playwright": "^1.60.0",
|
|
32
35
|
"release-it": "^19.0.5",
|
|
33
36
|
"typescript": "^5.7.3",
|
|
34
37
|
"vitest": "^3.1.2",
|
|
35
|
-
"@plone/
|
|
36
|
-
"@plone/
|
|
38
|
+
"@plone/types": "2.0.0",
|
|
39
|
+
"@plone/scripts": "4.0.1"
|
|
37
40
|
},
|
|
38
41
|
"addons": [
|
|
39
42
|
"@eeacms/volto-accordion-block",
|
|
@@ -61,23 +64,23 @@
|
|
|
61
64
|
"@plonegovbr/volto-social-media": "^3.0.0-alpha.0",
|
|
62
65
|
"@plone/volto-form-block": "^1.0.0-alpha.3",
|
|
63
66
|
"@plone-collective/volto-image-editor": "1.0.1",
|
|
67
|
+
"@kitconcept/volto-light-theme": "8.0.0-alpha.31",
|
|
64
68
|
"@kitconcept/volto-bm3-compat": "1.0.0-alpha.1",
|
|
65
|
-
"@kitconcept/volto-
|
|
66
|
-
"@kitconcept/volto-contact-block": "1.0.0-alpha.5",
|
|
69
|
+
"@kitconcept/volto-button-block": "5.0.0-alpha.2",
|
|
67
70
|
"@kitconcept/core": "2.0.0-beta.7",
|
|
68
|
-
"@kitconcept/volto-heading-block": "2.5.0",
|
|
69
|
-
"@kitconcept/volto-calendar-block": "1.0.0-alpha.9",
|
|
70
71
|
"@kitconcept/volto-carousel-block": "3.0.0-alpha.1",
|
|
71
|
-
"@kitconcept/volto-
|
|
72
|
-
"@kitconcept/volto-light-theme": "8.0.0-alpha.31",
|
|
73
|
-
"@kitconcept/volto-highlight-block": "5.0.0-alpha.2",
|
|
72
|
+
"@kitconcept/volto-contact-block": "1.0.0-alpha.5",
|
|
74
73
|
"@kitconcept/volto-dsgvo-banner": "4.0.0-alpha.2",
|
|
75
|
-
"@kitconcept/volto-introduction-block": "1.4.1",
|
|
76
74
|
"@kitconcept/volto-logos-block": "4.0.0-alpha.1",
|
|
77
|
-
"@kitconcept/volto-
|
|
78
|
-
"@kitconcept/volto-
|
|
75
|
+
"@kitconcept/volto-calendar-block": "1.0.0-alpha.9",
|
|
76
|
+
"@kitconcept/volto-banner-block": "1.2.0",
|
|
77
|
+
"@kitconcept/volto-highlight-block": "5.0.0-alpha.2",
|
|
78
|
+
"@kitconcept/volto-heading-block": "2.5.0",
|
|
79
|
+
"@kitconcept/volto-slider-block": "7.0.0-alpha.1",
|
|
80
|
+
"@kitconcept/volto-introduction-block": "1.4.1",
|
|
81
|
+
"@kitconcept/volto-separator-block": "5.0.0-alpha.0"
|
|
79
82
|
},
|
|
80
|
-
"volto_version": "19.1
|
|
83
|
+
"volto_version": "19.3.1",
|
|
81
84
|
"scripts": {
|
|
82
85
|
"i18n": "rm -rf build/messages && NODE_ENV=production i18n --addon",
|
|
83
86
|
"dry-release": "release-it --dry-run",
|