Skip to content

Commit

Permalink
Update all dependencies to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
sawden committed Mar 20, 2024
1 parent 5e429a1 commit fd8b65f
Show file tree
Hide file tree
Showing 8 changed files with 1,464 additions and 1,250 deletions.
8 changes: 4 additions & 4 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
},
"prettier": "@turbostrapi/prettier-config",
"dependencies": {
"@strapi/plugin-i18n": "4.20.0",
"@strapi/plugin-users-permissions": "4.20.0",
"@strapi/strapi": "4.20.0",
"better-sqlite3": "9.4.0",
"@strapi/plugin-i18n": "4.20.5",
"@strapi/plugin-users-permissions": "4.20.5",
"@strapi/strapi": "4.20.5",
"better-sqlite3": "9.4.3",
"pg": "^8.11.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
Expand Down
Binary file modified apps/backend/seed-data.tar.gz
Binary file not shown.
5 changes: 4 additions & 1 deletion apps/backend/src/api/page/content-types/page/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@
}
},
"type": "dynamiczone",
"components": ["sections.link-cards", "sections.rich-text"]
"components": [
"sections.link-cards",
"sections.rich-text"
]
},
"seo": {
"displayName": "Seo",
Expand Down
4 changes: 3 additions & 1 deletion apps/backend/src/components/shared/seo.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": ["images"]
"allowedTypes": [
"images"
]
},
"metaSocial": {
"type": "component",
Expand Down
7 changes: 7 additions & 0 deletions apps/backend/types/generated/contentTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,12 @@ export interface PluginContentReleasesRelease extends Schema.CollectionType {
attributes: {
name: Attribute.String & Attribute.Required;
releasedAt: Attribute.DateTime;
scheduledAt: Attribute.DateTime;
timezone: Attribute.String;
status: Attribute.Enumeration<
["ready", "blocked", "failed", "done", "empty"]
> &
Attribute.Required;
actions: Attribute.Relation<
"plugin::content-releases.release",
"oneToMany",
Expand Down Expand Up @@ -566,6 +572,7 @@ export interface PluginContentReleasesReleaseAction
"manyToOne",
"plugin::content-releases.release"
>;
isEntryValid: Attribute.Boolean;
createdAt: Attribute.DateTime;
updatedAt: Attribute.DateTime;
createdBy: Attribute.Relation<
Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@turbostrapi/cva": "*",
"@turbostrapi/ui": "*",
"next": "^14.0.4",
"next-themes": "^0.2.1",
"next-themes": "^0.3.0",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand All @@ -44,6 +44,6 @@
"prettier": "^3.1.1",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.2",
"typescript": "5.3.3"
"typescript": "5.4.2"
}
}
4 changes: 2 additions & 2 deletions configs/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"dependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@types/eslint": "^8.44.8",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.11.1",
"eslint-plugin-import": "^2.28.1",
Expand Down
2,682 changes: 1,442 additions & 1,240 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit fd8b65f

Please sign in to comment.