Skip to content

Commit 41f274d

Browse files
committed
Merge branch 'release/8.11.1'
2 parents 3e72b74 + 53b3e60 commit 41f274d

11 files changed

Lines changed: 7944 additions & 4779 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Added
9+
### Changed
10+
### Fixed
11+
### Removed
12+
13+
## [8.11.0] - 2023-06-06
814

9-
## Added
10-
## Changed
1115
## Fixed
12-
## Removed
16+
- Make sure slug uses proper widget (@ludwi)
17+
- Upgrade wagtail-meta-preview to 2.0.1
18+
- Upgrade django to 4.2.2
19+
- Upgrade wagtail to 5.0.1
20+
- Upgrade sentry_sdk to 1.25.0
21+
- Upgrade django-stubs to 4.2.1
22+
- Upgrade djangorestframework-stubs to 3.14.1
23+
- Upgrade storybook and related packages to 7.0.18
24+
- Upgrade eslint to 8.42.0
25+
- Upgrade eslint-config-next to 13.4.4
26+
- Upgrade @sentry/nextjs to 7.54.0
27+
- Upgrade next.js to 13.4.4
28+
- Upgrade next-i18next to 13.3.0
29+
- Upgrade css-loader to 6.8.1
30+
- Upgrade @types/react to 18.2.8
31+
- Upgrade @swc/core to 1.3.62
1332

1433
## [8.11.0] - 2023-05-19
1534

Company-Project/frontend/package-lock.json

Lines changed: 3937 additions & 2365 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Company-Project/frontend/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"test:ci": "npx jest --ci --runInBand --reporters=default --reporters=jest-junit"
1818
},
1919
"dependencies": {
20-
"@sentry/nextjs": "^7.51.1",
21-
"@types/react": "^18.2.6",
20+
"@sentry/nextjs": "^7.54.0",
21+
"@types/react": "^18.2.8",
2222
"classnames": "^2.3.2",
2323
"i18next": "^22.5.0",
24-
"next": "13.4.3",
25-
"next-i18next": "^13.2.2",
24+
"next": "13.4.4",
25+
"next-i18next": "^13.3.0",
2626
"prop-types": "^15.8.1",
2727
"react": "^18.2.0",
2828
"react-dom": "18.2.0",
@@ -47,22 +47,22 @@
4747
}
4848
},
4949
"devDependencies": {
50-
"@storybook/addon-a11y": "^7.0.12",
51-
"@storybook/addon-actions": "^7.0.12",
52-
"@storybook/addon-backgrounds": "^7.0.12",
53-
"@storybook/addon-viewport": "^7.0.12",
54-
"@storybook/addons": "^7.0.12",
55-
"@storybook/nextjs": "^7.0.12",
56-
"@storybook/react": "^7.0.12",
57-
"@swc/core": "^1.3.59",
50+
"@storybook/addon-a11y": "^7.0.18",
51+
"@storybook/addon-actions": "^7.0.18",
52+
"@storybook/addon-backgrounds": "^7.0.18",
53+
"@storybook/addon-viewport": "^7.0.18",
54+
"@storybook/addons": "^7.0.18",
55+
"@storybook/nextjs": "^7.0.18",
56+
"@storybook/react": "^7.0.18",
57+
"@swc/core": "^1.3.62",
5858
"@swc/jest": "^0.2.26",
5959
"@testing-library/jest-dom": "^5.16.5",
6060
"@testing-library/react": "^14.0.0",
6161
"@testing-library/user-event": "^14.4.3",
6262
"cross-env": "^7.0.3",
63-
"css-loader": "^6.7.4",
64-
"eslint": "8.40.0",
65-
"eslint-config-next": "13.4.3",
63+
"css-loader": "^6.8.1",
64+
"eslint": "8.42.0",
65+
"eslint-config-next": "13.4.4",
6666
"eslint-config-prettier": "^8.8.0",
6767
"husky": "^8.0.3",
6868
"jest": "^29.5.0",
@@ -71,7 +71,7 @@
7171
"prettier": "^2.8.8",
7272
"pretty-quick": "^3.1.3",
7373
"react-test-renderer": "^18.2.0",
74-
"storybook": "^7.0.12",
74+
"storybook": "^7.0.18",
7575
"style-loader": "^3.3.3"
7676
}
7777
}

Company-Project/src/main/mixins.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
TabbedInterface,
1717
WagtailAdminPageForm,
1818
)
19+
from wagtail.admin.widgets.slug import SlugInput
1920
from wagtail.models import Page
2021
from wagtail.utils.decorators import cached_classmethod
2122
from wagtail_meta_preview.panels import (
@@ -118,7 +119,7 @@ class SeoMixin(Page):
118119
)
119120

120121
promote_panels = [
121-
FieldPanel("slug"),
122+
FieldPanel("slug", widget=SlugInput),
122123
GoogleFieldPreviewPanel(
123124
[
124125
FieldPanel("seo_title"),
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Django==4.2.1
1+
Django==4.2.2
22
psycopg2==2.9.6
3-
sentry_sdk==1.23.1
3+
sentry_sdk==1.25.0
44
python-dotenv==1.0.0
5-
wagtail==5.0
6-
wagtail-meta-preview==2.0.0
5+
wagtail==5.0.1
6+
wagtail-meta-preview==2.0.1
77
wagtail_headless_preview==0.5.0

Company-Project/src/requirements/local.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Add local extra requirements here (django-debug etc)
55
black
66
django-debug-toolbar
7-
django-stubs==1.15.0
8-
djangorestframework-stubs==3.14.0
7+
django-stubs==4.2.1
8+
djangorestframework-stubs==3.14.1
99
isort
1010
pipdeptree
1111
ptvsd

0 commit comments

Comments
 (0)