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

Upgrade v5 #359

Merged
merged 24 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
abd1e36
chore(populate-deep): replace by strapi-v5-plugin-populate-deep
chohner Nov 15, 2024
426d0a5
chore: remove strapi-plugin-site-publisher
chohner Nov 15, 2024
1479d73
Chore: upgrade to strapi 5.4.0
chohner Nov 15, 2024
e8fef0b
chore(deps): upgrade strapi 5.4.1
chohner Nov 25, 2024
5962729
chore(deps): pins to fix npm audit
chohner Nov 25, 2024
c692857
chore(deps): bump transitive deps
chohner Nov 25, 2024
0793966
chore(strapi): upgrade to 5.5.1
chohner Dec 12, 2024
87bc494
chore(middleware): update CSP for dev
chohner Dec 12, 2024
d2a9df8
feat(workflow-trigger): add own v5 plugin
chohner Dec 12, 2024
6328595
fix(plugin): remove test return
chohner Dec 13, 2024
7f05aa2
chore: update generated types
chohner Dec 13, 2024
dc51b5d
doc(plugin): add npm run cmds
chohner Dec 13, 2024
4608eab
Merge branch 'main' into upgradeV5
chohner Dec 13, 2024
672b70c
chore: generated types
chohner Dec 13, 2024
9a4e9f6
Merge branch 'main' into upgradeV5
chohner Dec 16, 2024
ed9c5dc
fix(build): build plugin before admin panel
chohner Dec 16, 2024
4bbd0c7
chore(deps): upgrade transitive
chohner Dec 16, 2024
534e97e
chore(test): ignore plugin
chohner Dec 16, 2024
b9d09f4
test: update to documents API
chohner Dec 16, 2024
5a0859c
feat(plugin): update logo
chohner Dec 16, 2024
5e2d69c
refactor(plugin): order hooks
chohner Dec 16, 2024
c3eb4d4
remove plugin lock file
chohner Dec 16, 2024
77492d5
chore: fix dependency lock
chohner Dec 16, 2024
54dd250
fix(test): thank you locale
chohner Dec 16, 2024
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
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ Icon
.Trashes
._*


############################
# Linux
############################

*~


############################
# Windows
############################
Expand All @@ -31,7 +29,6 @@ $RECYCLE.BIN/
*.msm
*.msp


############################
# Packages
############################
Expand Down Expand Up @@ -60,7 +57,6 @@ $RECYCLE.BIN/
*.out
*.pid


############################
# Logs and databases
############################
Expand All @@ -71,7 +67,6 @@ $RECYCLE.BIN/
*.sqlite
*.sqlite3


############################
# Misc.
############################
Expand Down Expand Up @@ -116,3 +111,5 @@ build
data/*
!data/.gitkeep
.strapi/client/*

plugins/*/dist
7 changes: 6 additions & 1 deletion config/middlewares.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ module.exports = ({ env }) => {
contentSecurityPolicy: {
useDefaults: true,
directives: {
'connect-src': ["'self'", 'https:'],
'connect-src': [
"'self'",
'https:',
'ws://localhost:5173/',
'http://localhost:5173/',
],
'img-src': [
"'self'",
'data:',
Expand Down
2 changes: 1 addition & 1 deletion config/plugins.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = ({ env }) => {
const config = {
"site-publisher": {
"gh-workflow-trigger-v5": {
config: {
owner: "digitalservicebund",
repo: "a2j-rechtsantragstelle",
Expand Down
Loading
Loading