From 8565bc18c29a30dbf0d3f023c32455702324dd5c Mon Sep 17 00:00:00 2001 From: Philipp Bauer Date: Thu, 26 Oct 2023 07:00:24 +0200 Subject: [PATCH 01/43] fix(documentation): use correct localization schema --- .../server/services/helpers/utils/clean-schema-attributes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js b/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js index 13de56fbac9..73df6068108 100644 --- a/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js +++ b/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js @@ -202,7 +202,7 @@ const cleanSchemaAttributes = ( properties: { data: { type: 'array', - items: componentSchemaRefName.length ? { $ref: componentSchemaRefName } : {}, + items: componentSchemaRefName.length ? { $ref: componentSchemaRefName + "ListResponseDataItemLocalized"} : {}, }, }, }; From c481fd20fa695019f2c823f4cc99828f341cbf9e Mon Sep 17 00:00:00 2001 From: Philipp Bauer Date: Wed, 8 Nov 2023 19:14:21 +0100 Subject: [PATCH 02/43] Use correct string concatenation Co-authored-by: markkaylor --- .../server/services/helpers/utils/clean-schema-attributes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js b/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js index 73df6068108..4cdd161df5b 100644 --- a/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js +++ b/packages/plugins/documentation/server/services/helpers/utils/clean-schema-attributes.js @@ -202,7 +202,7 @@ const cleanSchemaAttributes = ( properties: { data: { type: 'array', - items: componentSchemaRefName.length ? { $ref: componentSchemaRefName + "ListResponseDataItemLocalized"} : {}, + items: componentSchemaRefName.length ? { $ref: `${componentSchemaRefName}ListResponseDataItemLocalized`} : {}, }, }, }; From 2f026ea9b3bab55c8085a65d4f1a37c9a163f8ef Mon Sep 17 00:00:00 2001 From: Josh <37798644+joshuaellis@users.noreply.github.com> Date: Mon, 13 Nov 2023 12:07:27 +0000 Subject: [PATCH 03/43] fix(admin): admin build errors (#18764) (#18770) * fix(admin): import & pass user customisations for admin panel * fix(admin): modules should be resolved with module paths not system paths * fix(admin): ensure webpack config is a type of function before calling, warn otherwise * fix: convert the pluginPath to a system path before trying to resolve relative * chore: update documentation --- .../01-core/admin/06-commands/01-build.md | 10 ++- .../01-core/admin/06-commands/02-develop.md | 6 +- examples/getstarted/src/admin/app.example.js | 9 --- examples/getstarted/src/admin/app.js | 11 +++ .../node/core/admin-customisations.ts | 32 ++++++++ .../core/admin/_internal/node/core/plugins.ts | 79 ++++++++++++++++++- .../_internal/node/createBuildContext.ts | 76 +++--------------- .../core/admin/_internal/node/staticFiles.ts | 22 ++++-- .../admin/_internal/node/webpack/config.ts | 15 +++- packages/core/admin/admin/src/render.ts | 8 +- packages/core/strapi/src/admin.ts | 3 +- 11 files changed, 176 insertions(+), 95 deletions(-) delete mode 100644 examples/getstarted/src/admin/app.example.js create mode 100644 examples/getstarted/src/admin/app.js create mode 100644 packages/core/admin/_internal/node/core/admin-customisations.ts diff --git a/docs/docs/docs/01-core/admin/06-commands/01-build.md b/docs/docs/docs/01-core/admin/06-commands/01-build.md index 3bcdf6d44cc..350fe79bab0 100644 --- a/docs/docs/docs/01-core/admin/06-commands/01-build.md +++ b/docs/docs/docs/01-core/admin/06-commands/01-build.md @@ -44,6 +44,10 @@ interface BuildContext { * this path so all asset paths will be rewritten accordingly */ basePath: string; + /** + * The customisations defined by the user in their app.js file + */ + customisations?: AppFile; /** * The current working directory */ @@ -64,9 +68,9 @@ interface BuildContext { * The environment variables to be included in the JS bundle */ env: Record; - logger: Logger; + logger: CLIContext['logger']; /** - * The build or develop options + * The build options */ options: Pick & Pick; /** @@ -90,7 +94,7 @@ interface BuildContext { * The browserslist target either loaded from the user's workspace or falling back to the default */ target: string[]; - tsconfig?: TSConfig; + tsconfig?: CLIContext['tsconfig']; } ``` diff --git a/docs/docs/docs/01-core/admin/06-commands/02-develop.md b/docs/docs/docs/01-core/admin/06-commands/02-develop.md index e42ade3b274..f5d50cd1652 100644 --- a/docs/docs/docs/01-core/admin/06-commands/02-develop.md +++ b/docs/docs/docs/01-core/admin/06-commands/02-develop.md @@ -24,7 +24,7 @@ Start your Strapi application in development mode Options: --polling Watch for file changes (default: false) – Whether to use fs.watchFile (backed by polling), or fs.watch, this is passed directly to chokidar --no-build [deprecated]: there is middleware for the server, it is no longer a separate process - --watch-admin [deprecated]: there is now middleware for watching, it is no longer a separate process + --watch-admin Watch the admin for changes (default: false) --browser [deprecated]: use open instead --open Open the admin in your browser (default: true) -h, --help Display help for command @@ -66,6 +66,10 @@ interface DevelopOptions extends CLIContext { * The tsconfig to use for the build. If undefined, this is not a TS project. */ tsconfig?: TsConfig; + /** + * Watch the admin for changes + */ + watchAdmin?: boolean; } interface Logger { diff --git a/examples/getstarted/src/admin/app.example.js b/examples/getstarted/src/admin/app.example.js deleted file mode 100644 index 0ea34bef7a5..00000000000 --- a/examples/getstarted/src/admin/app.example.js +++ /dev/null @@ -1,9 +0,0 @@ -const config = { - locales: ['fr'], -}; -const bootstrap = () => {}; - -export default { - config, - bootstrap, -}; diff --git a/examples/getstarted/src/admin/app.js b/examples/getstarted/src/admin/app.js new file mode 100644 index 00000000000..3acc1c2c166 --- /dev/null +++ b/examples/getstarted/src/admin/app.js @@ -0,0 +1,11 @@ +const config = { + locales: ['it', 'es', 'en'], +}; +const bootstrap = () => { + console.log('I AM BOOTSTRAPPED'); +}; + +export default { + config, + bootstrap, +}; diff --git a/packages/core/admin/_internal/node/core/admin-customisations.ts b/packages/core/admin/_internal/node/core/admin-customisations.ts new file mode 100644 index 00000000000..6e8612c6b1d --- /dev/null +++ b/packages/core/admin/_internal/node/core/admin-customisations.ts @@ -0,0 +1,32 @@ +import path from 'node:path'; +import { loadFile } from './files'; + +const ADMIN_APP_FILES = ['app.js', 'app.mjs', 'app.ts', 'app.jsx', 'app.tsx']; + +interface AdminCustomisations { + config?: { + locales?: string[]; + }; + bootstrap?: Function; +} + +interface AppFile { + path: string; + config: AdminCustomisations['config']; +} + +const loadUserAppFile = async (appDir: string): Promise => { + for (const file of ADMIN_APP_FILES) { + const filePath = path.join(appDir, 'src', 'admin', file); + const configFile = await loadFile(filePath); + + if (configFile) { + return { path: filePath, config: configFile }; + } + } + + return undefined; +}; + +export { loadUserAppFile }; +export type { AdminCustomisations, AppFile }; diff --git a/packages/core/admin/_internal/node/core/plugins.ts b/packages/core/admin/_internal/node/core/plugins.ts index f3f5003b759..f71459df2fb 100644 --- a/packages/core/admin/_internal/node/core/plugins.ts +++ b/packages/core/admin/_internal/node/core/plugins.ts @@ -1,9 +1,12 @@ import os from 'node:os'; import path from 'node:path'; +import fs from 'node:fs'; +import camelCase from 'lodash/camelCase'; import { env } from '@strapi/utils'; import { getModule, PackageJson } from './dependencies'; import { loadFile } from './files'; -import { BuildContext, CreateBuildContextArgs } from '../createBuildContext'; +import { BuildContext } from '../createBuildContext'; +import { isError } from './errors'; interface PluginMeta { name: string; @@ -32,11 +35,11 @@ const validatePackageHasStrapi = ( const validatePackageIsPlugin = (pkg: PackageJson): pkg is StrapiPlugin => validatePackageHasStrapi(pkg) && pkg.strapi.kind === 'plugin'; -export const getEnabledPlugins = async ({ +const getEnabledPlugins = async ({ strapi, cwd, logger, -}: Pick) => { +}: Pick): Promise> => { const plugins: Record = {}; /** @@ -110,3 +113,73 @@ const loadUserPluginsFile = async (root: string): Promise return {}; }; + +const getMapOfPluginsWithAdmin = ( + plugins: Record, + { runtimeDir }: { runtimeDir: string } +) => + Object.values(plugins) + .filter((plugin) => { + if (!plugin) { + return false; + } + + /** + * There are two ways a plugin should be imported, either it's local to the strapi app, + * or it's an actual npm module that's installed and resolved via node_modules. + * + * We first check if the plugin is local to the strapi app, using a regular `resolve` because + * the pathToPlugin will be relative i.e. `/Users/my-name/strapi-app/src/plugins/my-plugin`. + * + * If the file doesn't exist well then it's probably a node_module, so instead we use `require.resolve` + * which will resolve the path to the module in node_modules. If it fails with the specific code `MODULE_NOT_FOUND` + * then it doesn't have an admin part to the package. + */ + try { + const isLocalPluginWithLegacyAdminFile = fs.existsSync( + //@ts-ignore + path.resolve(`${plugin.pathToPlugin}/strapi-admin.js`) + ); + + if (!isLocalPluginWithLegacyAdminFile) { + //@ts-ignore + let pathToPlugin = plugin.pathToPlugin; + + if (process.platform === 'win32') { + pathToPlugin = pathToPlugin.split(path.sep).join(path.posix.sep); + } + + const isModuleWithFE = require.resolve(`${pathToPlugin}/strapi-admin`); + + return isModuleWithFE; + } + + return isLocalPluginWithLegacyAdminFile; + } catch (err) { + if (isError(err) && 'code' in err && err.code === 'MODULE_NOT_FOUND') { + /** + * the plugin does not contain FE code, so we + * don't want to import it anyway + */ + return false; + } + + throw err; + } + }) + .map((plugin) => { + const systemPath = plugin.isLocal + ? path.relative(runtimeDir, plugin.pathToPlugin.split('/').join(path.sep)) + : undefined; + const modulePath = systemPath ? systemPath.split(path.sep).join('/') : undefined; + + return { + path: !plugin.isLocal + ? `${plugin.pathToPlugin}/strapi-admin` + : `${modulePath}/strapi-admin`, + name: plugin.name, + importName: camelCase(plugin.name), + }; + }); + +export { getEnabledPlugins, getMapOfPluginsWithAdmin }; diff --git a/packages/core/admin/_internal/node/createBuildContext.ts b/packages/core/admin/_internal/node/createBuildContext.ts index 959caedb1c0..cc6130d59fc 100644 --- a/packages/core/admin/_internal/node/createBuildContext.ts +++ b/packages/core/admin/_internal/node/createBuildContext.ts @@ -1,19 +1,17 @@ import os from 'node:os'; import path from 'node:path'; import fs from 'node:fs/promises'; -import syncFs from 'node:fs'; -import camelCase from 'lodash/camelCase'; import browserslist from 'browserslist'; import strapiFactory, { CLIContext } from '@strapi/strapi'; import { getConfigUrls } from '@strapi/utils'; import { getStrapiAdminEnvVars, loadEnv } from './core/env'; -import { isError } from './core/errors'; import type { BuildOptions } from './build'; import { DevelopOptions } from './develop'; -import { getEnabledPlugins } from './core/plugins'; +import { getEnabledPlugins, getMapOfPluginsWithAdmin } from './core/plugins'; import { Strapi } from '@strapi/types'; +import { AppFile, loadUserAppFile } from './core/admin-customisations'; interface BuildContext { /** @@ -25,6 +23,10 @@ interface BuildContext { * this path so all asset paths will be rewritten accordingly */ basePath: string; + /** + * The customisations defined by the user in their app.js file + */ + customisations?: AppFile; /** * The current working directory */ @@ -152,23 +154,18 @@ const createBuildContext = async ({ logger.debug('Enabled plugins', os.EOL, plugins); - const pluginsWithFront = Object.values(plugins) - .filter(filterPluginsByAdminEntry) - .map((plugin) => ({ - path: !plugin.isLocal - ? `${plugin.pathToPlugin}/strapi-admin` - : `${path.relative(runtimeDir, plugin.pathToPlugin)}/strapi-admin`, - name: plugin.name, - importName: camelCase(plugin.name), - })); + const pluginsWithFront = getMapOfPluginsWithAdmin(plugins, { runtimeDir }); logger.debug('Enabled plugins with FE', os.EOL, plugins); const target = browserslist.loadConfig({ path: cwd }) ?? DEFAULT_BROWSERSLIST; + const customisations = await loadUserAppFile(strapiInstance.dirs.app.root); + const buildContext = { appDir: strapiInstance.dirs.app.root, basePath: `${adminPath}/`, + customisations, cwd, distDir, distPath, @@ -186,58 +183,5 @@ const createBuildContext = async ({ return buildContext; }; -interface Plugin extends Required<{}> { - name: string; -} - -const filterPluginsByAdminEntry = (plugin: Plugin) => { - if (!plugin) { - return false; - } - - /** - * There are two ways a plugin should be imported, either it's local to the strapi app, - * or it's an actual npm module that's installed and resolved via node_modules. - * - * We first check if the plugin is local to the strapi app, using a regular `resolve` because - * the pathToPlugin will be relative i.e. `/Users/my-name/strapi-app/src/plugins/my-plugin`. - * - * If the file doesn't exist well then it's probably a node_module, so instead we use `require.resolve` - * which will resolve the path to the module in node_modules. If it fails with the specific code `MODULE_NOT_FOUND` - * then it doesn't have an admin part to the package. - */ - try { - const isLocalPluginWithLegacyAdminFile = syncFs.existsSync( - //@ts-ignore - path.resolve(`${plugin.pathToPlugin}/strapi-admin.js`) - ); - - if (!isLocalPluginWithLegacyAdminFile) { - //@ts-ignore - let pathToPlugin = plugin.pathToPlugin; - - if (process.platform === 'win32') { - pathToPlugin = pathToPlugin.split(path.sep).join(path.posix.sep); - } - - const isModuleWithFE = require.resolve(`${pathToPlugin}/strapi-admin`); - - return isModuleWithFE; - } - - return isLocalPluginWithLegacyAdminFile; - } catch (err) { - if (isError(err) && 'code' in err && err.code === 'MODULE_NOT_FOUND') { - /** - * the plugin does not contain FE code, so we - * don't want to import it anyway - */ - return false; - } - - throw err; - } -}; - export { createBuildContext }; export type { BuildContext, CreateBuildContextArgs }; diff --git a/packages/core/admin/_internal/node/staticFiles.ts b/packages/core/admin/_internal/node/staticFiles.ts index 5ae9545c243..914e7725bf8 100644 --- a/packages/core/admin/_internal/node/staticFiles.ts +++ b/packages/core/admin/_internal/node/staticFiles.ts @@ -8,16 +8,12 @@ import { DefaultDocument as Document } from '../../admin/src/components/DefaultD import type { BuildContext } from './createBuildContext'; -interface EntryModuleArgs { - plugins: BuildContext['plugins']; -} - -const getEntryModule = ({ plugins }: EntryModuleArgs): string => { - const pluginsObject = plugins +const getEntryModule = (ctx: BuildContext): string => { + const pluginsObject = ctx.plugins .map(({ name, importName }) => `'${name}': ${importName}`) .join(',\n'); - const pluginsImport = plugins + const pluginsImport = ctx.plugins .map(({ importName, path }) => `import ${importName} from '${path}';`) .join('\n'); @@ -29,9 +25,19 @@ const getEntryModule = ({ plugins }: EntryModuleArgs): string => { ${pluginsImport} import { renderAdmin } from "@strapi/strapi/admin" + ${ + ctx.customisations?.path + ? `import customisations from '${path.relative( + ctx.runtimeDir, + ctx.customisations.path + )}'` + : '' + } + renderAdmin( document.getElementById("strapi"), { + ${ctx.customisations?.path ? 'customisations,' : ''} plugins: { ${pluginsObject} } @@ -88,7 +94,7 @@ const writeStaticClientFiles = async (ctx: BuildContext) => { ctx.logger.debug('Wrote the index.html file'); await fs.writeFile( path.join(ctx.runtimeDir, 'app.js'), - format(getEntryModule({ plugins: ctx.plugins }), { + format(getEntryModule(ctx), { parser: 'babel', }) ); diff --git a/packages/core/admin/_internal/node/webpack/config.ts b/packages/core/admin/_internal/node/webpack/config.ts index 8cf2ad9ab2f..35a55acda5a 100644 --- a/packages/core/admin/_internal/node/webpack/config.ts +++ b/packages/core/admin/_internal/node/webpack/config.ts @@ -218,8 +218,19 @@ const mergeConfigWithUserConfig = async (config: Configuration, ctx: BuildContex const userConfig = await getUserConfig(ctx); if (userConfig) { - const webpack = await import('webpack'); - return userConfig(config, webpack); + if (typeof userConfig === 'function') { + const webpack = await import('webpack'); + return userConfig(config, webpack); + } else { + ctx.logger.warn( + `You've exported something other than a function from ${path.join( + ctx.appDir, + 'src', + 'admin', + 'webpack.config' + )}, this will ignored.` + ); + } } return config; diff --git a/packages/core/admin/admin/src/render.ts b/packages/core/admin/admin/src/render.ts index dd4a104c990..21f6265d8f3 100644 --- a/packages/core/admin/admin/src/render.ts +++ b/packages/core/admin/admin/src/render.ts @@ -5,10 +5,14 @@ import { createRoot } from 'react-dom/client'; import { StrapiApp, StrapiAppConstructorArgs } from './StrapiApp'; interface RenderAdminArgs { + customisations: StrapiAppConstructorArgs['adminConfig']; plugins: StrapiAppConstructorArgs['appPlugins']; } -const renderAdmin = async (mountNode: HTMLElement | null, { plugins }: RenderAdminArgs) => { +const renderAdmin = async ( + mountNode: HTMLElement | null, + { plugins, customisations }: RenderAdminArgs +) => { if (!mountNode) { throw new Error('[@strapi/admin]: Could not find the root element to mount the admin app'); } @@ -73,7 +77,7 @@ const renderAdmin = async (mountNode: HTMLElement | null, { plugins }: RenderAdm } const app = new StrapiApp({ - adminConfig: {}, + adminConfig: customisations, appPlugins: plugins, }); diff --git a/packages/core/strapi/src/admin.ts b/packages/core/strapi/src/admin.ts index 0502ebd0b81..10bba0ac905 100644 --- a/packages/core/strapi/src/admin.ts +++ b/packages/core/strapi/src/admin.ts @@ -5,8 +5,9 @@ import email from '@strapi/plugin-email/strapi-admin'; // @ts-expect-error – No types, yet. import upload from '@strapi/plugin-upload/strapi-admin'; -const render = (mountNode: HTMLElement | null, { plugins }: RenderAdminArgs) => { +const render = (mountNode: HTMLElement | null, { plugins, ...restArgs }: RenderAdminArgs) => { return renderAdmin(mountNode, { + ...restArgs, plugins: { 'content-type-builder': contentTypeBuilder, // @ts-expect-error – TODO: fix this From ecfbf5ede664b0e56f8dd828fd26bd63903b3d14 Mon Sep 17 00:00:00 2001 From: Josh <37798644+joshuaellis@users.noreply.github.com> Date: Mon, 13 Nov 2023 12:07:42 +0000 Subject: [PATCH 04/43] chore(deps): update axios to 1.6.0 (#18768) (#18769) due to https://github.com/advisories/GHSA-wf5p-g6vw-rhxx --- packages/core/admin/package.json | 2 +- packages/core/helper-plugin/package.json | 2 +- packages/core/upload/package.json | 2 +- yarn.lock | 17 ++++++++++++++--- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index e155d99306a..7c171ccb6a3 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -84,7 +84,7 @@ "@strapi/types": "4.15.4", "@strapi/typescript-utils": "4.15.4", "@strapi/utils": "4.15.4", - "axios": "1.5.0", + "axios": "1.6.0", "bcryptjs": "2.4.3", "boxen": "5.1.2", "browserslist": "^4.22.1", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index d69f8f19946..042ac1ab47c 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -51,7 +51,7 @@ "watch": "pack-up watch" }, "dependencies": { - "axios": "1.5.0", + "axios": "1.6.0", "date-fns": "2.30.0", "formik": "2.4.0", "immer": "9.0.19", diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index d3e28b24df0..053eb735640 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -48,7 +48,7 @@ "@strapi/icons": "1.13.0", "@strapi/provider-upload-local": "4.15.4", "@strapi/utils": "4.15.4", - "axios": "1.5.0", + "axios": "1.6.0", "byte-size": "7.0.1", "cropperjs": "1.6.0", "date-fns": "2.30.0", diff --git a/yarn.lock b/yarn.lock index 064ee9a6787..726d2c10529 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8776,7 +8776,7 @@ __metadata: "@types/pluralize": "npm:0.0.32" "@types/webpack-bundle-analyzer": "npm:4.6.2" "@types/webpack-hot-middleware": "npm:2.25.8" - axios: "npm:1.5.0" + axios: "npm:1.6.0" bcryptjs: "npm:2.4.3" boxen: "npm:5.1.2" browserslist: "npm:^4.22.1" @@ -9159,7 +9159,7 @@ __metadata: "@types/react-helmet": "npm:6.1.6" "@types/react-router-dom": "npm:5.3.3" "@types/styled-components": "npm:5.1.26" - axios: "npm:1.5.0" + axios: "npm:1.6.0" cross-env: "npm:^7.0.3" date-fns: "npm:2.30.0" eslint-config-custom: "npm:4.15.4" @@ -9725,7 +9725,7 @@ __metadata: "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" - axios: "npm:1.5.0" + axios: "npm:1.6.0" byte-size: "npm:7.0.1" cropperjs: "npm:1.6.0" date-fns: "npm:2.30.0" @@ -13468,6 +13468,17 @@ __metadata: languageName: node linkType: hard +"axios@npm:1.6.0": + version: 1.6.0 + resolution: "axios@npm:1.6.0" + dependencies: + follow-redirects: "npm:^1.15.0" + form-data: "npm:^4.0.0" + proxy-from-env: "npm:^1.1.0" + checksum: f069d938a05d2293e27c7cd6f0c08a1cb764f7cc43a1e637572f8d5928837ecd735890ad67a867d696094ee4b8b4dfdb3727a57aae600845e4c295581cb32f9a + languageName: node + linkType: hard + "axios@npm:^0.26.0": version: 0.26.1 resolution: "axios@npm:0.26.1" From ef68047284f29b8584f30fd05efa6931c12b9cdb Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Mon, 13 Nov 2023 18:07:39 +0100 Subject: [PATCH 05/43] fix: clean and build without diagnostics --- packages/core/admin/_internal/node/build.ts | 17 ++- packages/core/admin/_internal/node/develop.ts | 113 +++++++++++++----- packages/core/admin/_internal/node/utils.ts | 3 + 3 files changed, 91 insertions(+), 42 deletions(-) create mode 100644 packages/core/admin/_internal/node/utils.ts diff --git a/packages/core/admin/_internal/node/build.ts b/packages/core/admin/_internal/node/build.ts index 3396dbeb429..dcda53ef856 100644 --- a/packages/core/admin/_internal/node/build.ts +++ b/packages/core/admin/_internal/node/build.ts @@ -1,13 +1,12 @@ +import type { CLIContext } from '@strapi/strapi'; +import EE from '@strapi/strapi/dist/utils/ee'; import * as tsUtils from '@strapi/typescript-utils'; import { checkRequiredDependencies } from './core/dependencies'; +import { getTimer } from './core/timer'; +import { createBuildContext } from './createBuildContext'; import { writeStaticClientFiles } from './staticFiles'; +import { prettyTime } from './utils'; import { build as buildWebpack } from './webpack/build'; -import { createBuildContext } from './createBuildContext'; - -import EE from '@strapi/strapi/dist/utils/ee'; -import { getTimer } from './core/timer'; - -import type { CLIContext } from '@strapi/strapi'; interface BuildOptions extends CLIContext { /** @@ -56,7 +55,7 @@ const build = async ({ logger, cwd, tsconfig, ignorePrompts, ...options }: Build tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); const compilingDuration = timer.end('compilingTS'); - compilingTsSpinner.text = `Compiling TS (${compilingDuration}ms)`; + compilingTsSpinner.text = `Compiling TS (${prettyTime(compilingDuration)})`; compilingTsSpinner.succeed(); } @@ -71,7 +70,7 @@ const build = async ({ logger, cwd, tsconfig, ignorePrompts, ...options }: Build options, }); const contextDuration = timer.end('createBuildContext'); - contextSpinner.text = `Building build context (${contextDuration}ms)`; + contextSpinner.text = `Building build context (${prettyTime(contextDuration)})`; contextSpinner.succeed(); timer.start('buildAdmin'); @@ -85,7 +84,7 @@ const build = async ({ logger, cwd, tsconfig, ignorePrompts, ...options }: Build await buildWebpack(ctx); const buildDuration = timer.end('buildAdmin'); - buildingSpinner.text = `Building admin panel (${buildDuration}ms)`; + buildingSpinner.text = `Building admin panel (${prettyTime(buildDuration)})`; buildingSpinner.succeed(); } catch (err) { buildingSpinner.fail(); diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index 3d274790819..4b8e9f48003 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -2,17 +2,21 @@ import type { CLIContext } from '@strapi/strapi'; import * as tsUtils from '@strapi/typescript-utils'; import { joinBy } from '@strapi/utils'; import chokidar from 'chokidar'; +import * as fs from 'fs-extra'; +import path from 'path'; + import cluster from 'node:cluster'; -import { getTimer } from './core/timer'; import { checkRequiredDependencies } from './core/dependencies'; +import { getTimer, type TimeMeasurer } from './core/timer'; import { createBuildContext } from './createBuildContext'; -import { WebpackWatcher, watch as watchWebpack } from './webpack/watch'; import { build as buildWebpack } from './webpack/build'; +import { watch as watchWebpack, WebpackWatcher } from './webpack/watch'; +import strapiFactory from '@strapi/strapi'; import EE from '@strapi/strapi/dist/utils/ee'; import { writeStaticClientFiles } from './staticFiles'; -import strapiFactory from '@strapi/strapi'; +import { prettyTime } from './utils'; interface DevelopOptions extends CLIContext { /** @@ -24,6 +28,33 @@ interface DevelopOptions extends CLIContext { watchAdmin?: boolean; } +const cleanupDistDirectory = async ({ + tsconfig, + logger, + timer, +}: Pick & { timer: TimeMeasurer }) => { + const distDir = tsconfig?.config?.options?.outDir; + + if (!distDir || !(await fs.pathExists(distDir))) { + return; + } + const timerName = 'cleaningDist' + Date.now(); + timer.start(timerName); + const cleaningSpinner = logger.spinner(`Cleaning dist dir ${distDir}`).start(); + + const dirContent = await fs.readdir(distDir); + const validFilenames = dirContent + // Ignore the admin build folder + .filter((filename) => filename !== 'build'); + for (const filename of validFilenames) { + await fs.remove(path.resolve(distDir, filename)); + } + + const generatingDuration = timer.end(timerName); + cleaningSpinner.text = `Cleaning dist dir (${prettyTime(generatingDuration)})`; + cleaningSpinner?.succeed(); +}; + const develop = async ({ cwd, polling, @@ -35,6 +66,8 @@ const develop = async ({ }: DevelopOptions) => { const timer = getTimer(); + const distDir = tsconfig?.config?.options?.outDir; + if (cluster.isPrimary) { const { didInstall } = await checkRequiredDependencies({ cwd, logger, ignorePrompts }).catch( (err) => { @@ -47,6 +80,12 @@ const develop = async ({ return; } + // Build without diagnostics in case schemas have changed + if (distDir) { + await cleanupDistDirectory({ tsconfig, logger, timer }); + await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: true } }); + } + /** * IF we're not watching the admin we're going to build it, this makes * sure that at least the admin is built for users & they can interact @@ -64,7 +103,7 @@ const develop = async ({ options, }); const contextDuration = timer.end('createBuildContext'); - contextSpinner.text = `Building build context (${contextDuration}ms)`; + contextSpinner.text = `Building build context (${prettyTime(contextDuration)})`; contextSpinner.succeed(); timer.start('creatingAdmin'); @@ -75,13 +114,18 @@ const develop = async ({ await buildWebpack(ctx); const adminDuration = timer.end('creatingAdmin'); - adminSpinner.text = `Creating admin (${adminDuration}ms)`; + adminSpinner.text = `Creating admin (${prettyTime(adminDuration)})`; adminSpinner.succeed(); } cluster.on('message', async (worker, message) => { switch (message) { case 'reload': { + if (distDir) { + // Build without diagnostics in case schemas have changed + await cleanupDistDirectory({ tsconfig, logger, timer }); + await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: true } }); + } logger.debug('cluster has the reload message, sending the worker kill message'); worker.send('kill'); break; @@ -104,24 +148,44 @@ const develop = async ({ } if (cluster.isWorker) { + const strapi = strapiFactory({ + appDir: cwd, + distDir: tsconfig?.config.options.outDir ?? '', + autoReload: true, + serveAdminPanel: !watchAdmin, + }); + + const strapiInstance = await strapi.load(); + + timer.start('generatingTS'); + const generatingTsSpinner = logger.spinner(`Generating types`).start(); + + await tsUtils.generators.generate({ + strapi: strapiInstance, + pwd: cwd, + rootDir: undefined, + logger: { silent: true, debug: false }, + artifacts: { contentTypes: true, components: true }, + }); + + const generatingDuration = timer.end('generatingTS'); + generatingTsSpinner.text = `Generating types (${prettyTime(generatingDuration)})`; + generatingTsSpinner.succeed(); + if (tsconfig?.config) { timer.start('compilingTS'); const compilingTsSpinner = logger.spinner(`Compiling TS`).start(); - tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); + if (distDir) { + await cleanupDistDirectory({ tsconfig, logger, timer }); + await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); + } const compilingDuration = timer.end('compilingTS'); - compilingTsSpinner.text = `Compiling TS (${compilingDuration}ms)`; + compilingTsSpinner.text = `Compiling TS (${prettyTime(compilingDuration)})`; compilingTsSpinner.succeed(); } - const strapi = strapiFactory({ - appDir: cwd, - distDir: tsconfig?.config.options.outDir ?? '', - autoReload: true, - serveAdminPanel: !watchAdmin, - }); - let webpackWatcher: WebpackWatcher | undefined; /** @@ -141,7 +205,7 @@ const develop = async ({ options, }); const contextDuration = timer.end('createBuildContext'); - contextSpinner.text = `Building build context (${contextDuration}ms)`; + contextSpinner.text = `Building build context (${prettyTime(contextDuration)})`; contextSpinner.succeed(); timer.start('creatingAdmin'); @@ -152,27 +216,10 @@ const develop = async ({ webpackWatcher = await watchWebpack(ctx); const adminDuration = timer.end('creatingAdmin'); - adminSpinner.text = `Creating admin (${adminDuration}ms)`; + adminSpinner.text = `Creating admin (${prettyTime(adminDuration)})`; adminSpinner.succeed(); } - const strapiInstance = await strapi.load(); - - timer.start('generatingTS'); - const generatingTsSpinner = logger.spinner(`Generating types`).start(); - - await tsUtils.generators.generate({ - strapi: strapiInstance, - pwd: cwd, - rootDir: undefined, - logger: { silent: true, debug: false }, - artifacts: { contentTypes: true, components: true }, - }); - - const generatingDuration = timer.end('generatingTS'); - generatingTsSpinner.text = `Generating types (${generatingDuration}ms)`; - generatingTsSpinner.succeed(); - const restart = async () => { if (strapiInstance.reload.isWatching && !strapiInstance.reload.isReloading) { strapiInstance.reload.isReloading = true; diff --git a/packages/core/admin/_internal/node/utils.ts b/packages/core/admin/_internal/node/utils.ts new file mode 100644 index 00000000000..9b7c0c2b9a8 --- /dev/null +++ b/packages/core/admin/_internal/node/utils.ts @@ -0,0 +1,3 @@ +export const prettyTime = (timeInMs: number): string => { + return Math.ceil(timeInMs) + 'ms'; +}; From 8ac0ef5c4238a4f0f9d9451aa6b9fd77173fef70 Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Mon, 13 Nov 2023 19:21:11 +0100 Subject: [PATCH 06/43] fix(admin): load app custom with jsx and allow more extensions --- examples/getstarted/jsconfig.json | 1 + examples/getstarted/src/admin/app.js | 12 +++++++++++- packages/core/admin/_internal/node/core/files.ts | 6 +++++- packages/core/admin/_internal/node/staticFiles.ts | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/examples/getstarted/jsconfig.json b/examples/getstarted/jsconfig.json index 4ebd9272cf4..43e55dec515 100644 --- a/examples/getstarted/jsconfig.json +++ b/examples/getstarted/jsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "jsx": "react", "moduleResolution": "nodenext", "target": "ES2021", "checkJs": true, diff --git a/examples/getstarted/src/admin/app.js b/examples/getstarted/src/admin/app.js index 3acc1c2c166..78994130c70 100644 --- a/examples/getstarted/src/admin/app.js +++ b/examples/getstarted/src/admin/app.js @@ -1,8 +1,18 @@ +import React from 'react'; +import { Button } from '@strapi/design-system'; + const config = { locales: ['it', 'es', 'en'], }; -const bootstrap = () => { +const bootstrap = (app) => { console.log('I AM BOOTSTRAPPED'); + + app.injectContentManagerComponent('editView', 'right-links', { + name: 'PreviewButton', + Component: () => ( + + ), + }); }; export default { diff --git a/packages/core/admin/_internal/node/core/files.ts b/packages/core/admin/_internal/node/core/files.ts index 644f1afd7e8..f9fd9a52b01 100644 --- a/packages/core/admin/_internal/node/core/files.ts +++ b/packages/core/admin/_internal/node/core/files.ts @@ -18,7 +18,11 @@ const pathExists = async (path: string) => { */ const loadFile = async (path: string): Promise => { if (await pathExists(path)) { - const esbuildOptions = { extensions: ['.js', '.mjs', '.ts'] }; + const esbuildOptions: Parameters[0] = { + extensions: ['.js', '.mjs', '.ts', '.jsx', '.tsx'], + jsx: 'automatic', + loader: 'jsx', + }; const { unregister } = register(esbuildOptions); diff --git a/packages/core/admin/_internal/node/staticFiles.ts b/packages/core/admin/_internal/node/staticFiles.ts index 914e7725bf8..79cf23e113a 100644 --- a/packages/core/admin/_internal/node/staticFiles.ts +++ b/packages/core/admin/_internal/node/staticFiles.ts @@ -24,7 +24,7 @@ const getEntryModule = (ctx: BuildContext): string => { */ ${pluginsImport} import { renderAdmin } from "@strapi/strapi/admin" - + ${ ctx.customisations?.path ? `import customisations from '${path.relative( @@ -33,7 +33,7 @@ const getEntryModule = (ctx: BuildContext): string => { )}'` : '' } - + renderAdmin( document.getElementById("strapi"), { From 2333e3d8ce26ad6331b6219d1c5d7bfcbe288884 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 09:04:09 +0100 Subject: [PATCH 07/43] fix: packup externals --- packages/core/admin/_internal/node/develop.ts | 2 +- packages/utils/pack-up/package.json | 1 + packages/utils/pack-up/packup.config.ts | 2 +- yarn.lock | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index 4b8e9f48003..7b5d687bf76 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -3,7 +3,7 @@ import * as tsUtils from '@strapi/typescript-utils'; import { joinBy } from '@strapi/utils'; import chokidar from 'chokidar'; import * as fs from 'fs-extra'; -import path from 'path'; +import path from 'node:path'; import cluster from 'node:cluster'; diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index ce016e589b0..709a89cb3ef 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -69,6 +69,7 @@ "commander": "8.3.0", "esbuild": "0.19.2", "esbuild-register": "3.5.0", + "fs-extra": "10.0.0", "get-latest-version": "5.1.0", "git-url-parse": "13.1.0", "ini": "4.1.1", diff --git a/packages/utils/pack-up/packup.config.ts b/packages/utils/pack-up/packup.config.ts index 9fbcf654d00..daff5ba5510 100644 --- a/packages/utils/pack-up/packup.config.ts +++ b/packages/utils/pack-up/packup.config.ts @@ -10,7 +10,7 @@ export default defineConfig({ require: './dist/cli.js', }, ], - externals: ['node:module'], + externals: ['node:module', 'node:path', 'fs-extra'], runtime: 'node', minify: false, sourcemap: true, diff --git a/yarn.lock b/yarn.lock index 064ee9a6787..38917f7956e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9282,6 +9282,7 @@ __metadata: esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" eslint-config-custom: "npm:4.15.4" + fs-extra: "npm:10.0.0" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" From ecc6fe5413300487c1dae802dfc76049d4c8af54 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 10:11:32 +0100 Subject: [PATCH 08/43] chore: move prettyTime next to timer --- packages/core/admin/_internal/node/build.ts | 3 +-- packages/core/admin/_internal/node/core/timer.ts | 4 ++++ packages/core/admin/_internal/node/develop.ts | 3 +-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/core/admin/_internal/node/build.ts b/packages/core/admin/_internal/node/build.ts index dcda53ef856..7432a529353 100644 --- a/packages/core/admin/_internal/node/build.ts +++ b/packages/core/admin/_internal/node/build.ts @@ -2,10 +2,9 @@ import type { CLIContext } from '@strapi/strapi'; import EE from '@strapi/strapi/dist/utils/ee'; import * as tsUtils from '@strapi/typescript-utils'; import { checkRequiredDependencies } from './core/dependencies'; -import { getTimer } from './core/timer'; +import { getTimer, prettyTime } from './core/timer'; import { createBuildContext } from './createBuildContext'; import { writeStaticClientFiles } from './staticFiles'; -import { prettyTime } from './utils'; import { build as buildWebpack } from './webpack/build'; interface BuildOptions extends CLIContext { diff --git a/packages/core/admin/_internal/node/core/timer.ts b/packages/core/admin/_internal/node/core/timer.ts index 51218db607f..c55a2b5148a 100644 --- a/packages/core/admin/_internal/node/core/timer.ts +++ b/packages/core/admin/_internal/node/core/timer.ts @@ -29,3 +29,7 @@ export function getTimer(): TimeMeasurer { return { start, end, getTimings: () => timings }; } + +export const prettyTime = (timeInMs: number): string => { + return Math.ceil(timeInMs) + 'ms'; +}; diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index 7b5d687bf76..27208b915d2 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -8,7 +8,7 @@ import path from 'node:path'; import cluster from 'node:cluster'; import { checkRequiredDependencies } from './core/dependencies'; -import { getTimer, type TimeMeasurer } from './core/timer'; +import { getTimer, prettyTime, type TimeMeasurer } from './core/timer'; import { createBuildContext } from './createBuildContext'; import { build as buildWebpack } from './webpack/build'; import { watch as watchWebpack, WebpackWatcher } from './webpack/watch'; @@ -16,7 +16,6 @@ import { watch as watchWebpack, WebpackWatcher } from './webpack/watch'; import strapiFactory from '@strapi/strapi'; import EE from '@strapi/strapi/dist/utils/ee'; import { writeStaticClientFiles } from './staticFiles'; -import { prettyTime } from './utils'; interface DevelopOptions extends CLIContext { /** From c9ec5ee0e4191faafba1cee3276a6d59015f4e51 Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Tue, 14 Nov 2023 10:40:51 +0100 Subject: [PATCH 09/43] chore(admin): simplify user customisation loading --- .../admin/_internal/node/core/admin-customisations.ts | 8 +++----- packages/core/admin/_internal/node/core/files.ts | 4 +--- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/packages/core/admin/_internal/node/core/admin-customisations.ts b/packages/core/admin/_internal/node/core/admin-customisations.ts index 6e8612c6b1d..e6dabbdac0c 100644 --- a/packages/core/admin/_internal/node/core/admin-customisations.ts +++ b/packages/core/admin/_internal/node/core/admin-customisations.ts @@ -1,5 +1,5 @@ import path from 'node:path'; -import { loadFile } from './files'; +import fs from 'node:fs'; const ADMIN_APP_FILES = ['app.js', 'app.mjs', 'app.ts', 'app.jsx', 'app.tsx']; @@ -12,16 +12,14 @@ interface AdminCustomisations { interface AppFile { path: string; - config: AdminCustomisations['config']; } const loadUserAppFile = async (appDir: string): Promise => { for (const file of ADMIN_APP_FILES) { const filePath = path.join(appDir, 'src', 'admin', file); - const configFile = await loadFile(filePath); - if (configFile) { - return { path: filePath, config: configFile }; + if (fs.existsSync(filePath)) { + return { path: filePath }; } } diff --git a/packages/core/admin/_internal/node/core/files.ts b/packages/core/admin/_internal/node/core/files.ts index f9fd9a52b01..3771a1f5bc2 100644 --- a/packages/core/admin/_internal/node/core/files.ts +++ b/packages/core/admin/_internal/node/core/files.ts @@ -19,9 +19,7 @@ const pathExists = async (path: string) => { const loadFile = async (path: string): Promise => { if (await pathExists(path)) { const esbuildOptions: Parameters[0] = { - extensions: ['.js', '.mjs', '.ts', '.jsx', '.tsx'], - jsx: 'automatic', - loader: 'jsx', + extensions: ['.js', '.mjs', '.ts'], }; const { unregister } = register(esbuildOptions); From 476368c2f51ec8f6d6d44047298d7e08f149d73f Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 10:19:11 +0100 Subject: [PATCH 10/43] fix: remove incorrect dep --- packages/core/admin/_internal/node/utils.ts | 3 --- packages/utils/pack-up/package.json | 1 - 2 files changed, 4 deletions(-) delete mode 100644 packages/core/admin/_internal/node/utils.ts diff --git a/packages/core/admin/_internal/node/utils.ts b/packages/core/admin/_internal/node/utils.ts deleted file mode 100644 index 9b7c0c2b9a8..00000000000 --- a/packages/core/admin/_internal/node/utils.ts +++ /dev/null @@ -1,3 +0,0 @@ -export const prettyTime = (timeInMs: number): string => { - return Math.ceil(timeInMs) + 'ms'; -}; diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index 709a89cb3ef..ce016e589b0 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -69,7 +69,6 @@ "commander": "8.3.0", "esbuild": "0.19.2", "esbuild-register": "3.5.0", - "fs-extra": "10.0.0", "get-latest-version": "5.1.0", "git-url-parse": "13.1.0", "ini": "4.1.1", From 6e9b1a3a29fab260a9f9c82893ca6406241dec66 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 11:35:47 +0100 Subject: [PATCH 11/43] fix: check tsconfig instead of distdir --- packages/core/admin/_internal/node/develop.ts | 28 +++++++++++-------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index 27208b915d2..5bd0b3dd558 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -41,12 +41,20 @@ const cleanupDistDirectory = async ({ timer.start(timerName); const cleaningSpinner = logger.spinner(`Cleaning dist dir ${distDir}`).start(); - const dirContent = await fs.readdir(distDir); - const validFilenames = dirContent - // Ignore the admin build folder - .filter((filename) => filename !== 'build'); - for (const filename of validFilenames) { - await fs.remove(path.resolve(distDir, filename)); + try { + const dirContent = await fs.readdir(distDir); + const validFilenames = dirContent + // Ignore the admin build folder + .filter((filename) => filename !== 'build'); + for (const filename of validFilenames) { + await fs.remove(path.resolve(distDir, filename)); + } + throw new Error('asdf'); + } catch (err: unknown) { + const generatingDuration = timer.end(timerName); + cleaningSpinner.text = `Error cleaning dist dir: ${err} (${prettyTime(generatingDuration)})`; + cleaningSpinner?.fail(); + return; } const generatingDuration = timer.end(timerName); @@ -65,8 +73,6 @@ const develop = async ({ }: DevelopOptions) => { const timer = getTimer(); - const distDir = tsconfig?.config?.options?.outDir; - if (cluster.isPrimary) { const { didInstall } = await checkRequiredDependencies({ cwd, logger, ignorePrompts }).catch( (err) => { @@ -80,7 +86,7 @@ const develop = async ({ } // Build without diagnostics in case schemas have changed - if (distDir) { + if (tsconfig) { await cleanupDistDirectory({ tsconfig, logger, timer }); await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: true } }); } @@ -120,7 +126,7 @@ const develop = async ({ cluster.on('message', async (worker, message) => { switch (message) { case 'reload': { - if (distDir) { + if (tsconfig) { // Build without diagnostics in case schemas have changed await cleanupDistDirectory({ tsconfig, logger, timer }); await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: true } }); @@ -175,7 +181,7 @@ const develop = async ({ timer.start('compilingTS'); const compilingTsSpinner = logger.spinner(`Compiling TS`).start(); - if (distDir) { + if (tsconfig) { await cleanupDistDirectory({ tsconfig, logger, timer }); await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); } From 33ca1358ccf4890a9208bb00648af8306c7c3e0d Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 11:39:32 +0100 Subject: [PATCH 12/43] feat: add timer for strapi load --- packages/core/admin/_internal/node/develop.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index 5bd0b3dd558..8a8f551ee41 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -153,6 +153,9 @@ const develop = async ({ } if (cluster.isWorker) { + timer.start('loadStrapi'); + const loadStrapiSpinner = logger.spinner(`Loading Strapi`).start(); + const strapi = strapiFactory({ appDir: cwd, distDir: tsconfig?.config.options.outDir ?? '', @@ -162,6 +165,10 @@ const develop = async ({ const strapiInstance = await strapi.load(); + const loadStrapiDuration = timer.end('loadStrapi'); + loadStrapiSpinner.text = `Loaded Strapi (${prettyTime(loadStrapiDuration)})`; + loadStrapiSpinner.succeed(); + timer.start('generatingTS'); const generatingTsSpinner = logger.spinner(`Generating types`).start(); From 25ae5d28f48108dacbf5cf795ea5fe1aa9bc12e0 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 11:39:44 +0100 Subject: [PATCH 13/43] fix: remove leftover testing --- packages/core/admin/_internal/node/develop.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index 8a8f551ee41..d9bb3b68b03 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -49,7 +49,6 @@ const cleanupDistDirectory = async ({ for (const filename of validFilenames) { await fs.remove(path.resolve(distDir, filename)); } - throw new Error('asdf'); } catch (err: unknown) { const generatingDuration = timer.end(timerName); cleaningSpinner.text = `Error cleaning dist dir: ${err} (${prettyTime(generatingDuration)})`; @@ -188,10 +187,8 @@ const develop = async ({ timer.start('compilingTS'); const compilingTsSpinner = logger.spinner(`Compiling TS`).start(); - if (tsconfig) { - await cleanupDistDirectory({ tsconfig, logger, timer }); - await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); - } + await cleanupDistDirectory({ tsconfig, logger, timer }); + await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); const compilingDuration = timer.end('compilingTS'); compilingTsSpinner.text = `Compiling TS (${prettyTime(compilingDuration)})`; From 9eb632e5393075d9978be736cea2698f5f613c2c Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 11:43:02 +0100 Subject: [PATCH 14/43] chore: yarn.lock --- yarn.lock | 1 - 1 file changed, 1 deletion(-) diff --git a/yarn.lock b/yarn.lock index 38917f7956e..064ee9a6787 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9282,7 +9282,6 @@ __metadata: esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" eslint-config-custom: "npm:4.15.4" - fs-extra: "npm:10.0.0" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" From e421d78a55566481174c0f8e7922afff0d74d0b4 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 11:51:26 +0100 Subject: [PATCH 15/43] chore: revert externals --- packages/utils/pack-up/packup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/utils/pack-up/packup.config.ts b/packages/utils/pack-up/packup.config.ts index daff5ba5510..9fbcf654d00 100644 --- a/packages/utils/pack-up/packup.config.ts +++ b/packages/utils/pack-up/packup.config.ts @@ -10,7 +10,7 @@ export default defineConfig({ require: './dist/cli.js', }, ], - externals: ['node:module', 'node:path', 'fs-extra'], + externals: ['node:module'], runtime: 'node', minify: false, sourcemap: true, From b3d58260fde628822ed5205983b9cbe3888d70eb Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 11:56:34 +0100 Subject: [PATCH 16/43] chore: matching text on spinner --- packages/core/admin/_internal/node/develop.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index d9bb3b68b03..fe9506e7b8f 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -165,7 +165,7 @@ const develop = async ({ const strapiInstance = await strapi.load(); const loadStrapiDuration = timer.end('loadStrapi'); - loadStrapiSpinner.text = `Loaded Strapi (${prettyTime(loadStrapiDuration)})`; + loadStrapiSpinner.text = `Loading Strapi (${prettyTime(loadStrapiDuration)})`; loadStrapiSpinner.succeed(); timer.start('generatingTS'); From 59219dc25d84d492fa11a972b177bab3794bb0bb Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 11:57:15 +0100 Subject: [PATCH 17/43] chore: move comment --- packages/core/admin/_internal/node/develop.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index fe9506e7b8f..a9af9ac013d 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -84,8 +84,8 @@ const develop = async ({ return; } - // Build without diagnostics in case schemas have changed if (tsconfig) { + // Build without diagnostics in case schemas have changed await cleanupDistDirectory({ tsconfig, logger, timer }); await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: true } }); } From d1b6967ee7e47e8641c9ea0a2aab4d22e49f2651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20de=20Juvigny?= Date: Tue, 14 Nov 2023 13:44:04 +0100 Subject: [PATCH 18/43] fix profile page --- .../admin/admin/src/pages/ProfilePage.tsx | 54 ++++++++++++++++++- 1 file changed, 52 insertions(+), 2 deletions(-) diff --git a/packages/core/admin/admin/src/pages/ProfilePage.tsx b/packages/core/admin/admin/src/pages/ProfilePage.tsx index 74b03140534..0bf2bdf3a38 100644 --- a/packages/core/admin/admin/src/pages/ProfilePage.tsx +++ b/packages/core/admin/admin/src/pages/ProfilePage.tsx @@ -120,7 +120,7 @@ const ProfilePage = () => { const isLoading = isLoadingUser || isLoadingSSO; - type UpdateUsersMeBody = Omit & { + type UpdateUsersMeBody = UpdateMe.Request['body'] & { confirmPassword: string; currentTheme: ThemeName; }; @@ -132,6 +132,11 @@ const ProfilePage = () => { >( async (body) => { const { confirmPassword: _confirmPassword, currentTheme, ...dataToSend } = body; + + if (dataToSend.password === '') { + delete dataToSend.password; + } + const { data } = await put('/admin/users/me', dataToSend); return { ...data.data, currentTheme }; @@ -321,9 +326,10 @@ const ProfilePage = () => { * -----------------------------------------------------------------------------------------------*/ interface PasswordSectionProps { - errors: { password?: string; confirmPassword?: string }; + errors: { currentPassword?: string; password?: string; confirmPassword?: string }; onChange: React.ChangeEventHandler; values: { + currentPassword?: string; password?: string; confirmPassword?: string; }; @@ -331,6 +337,7 @@ interface PasswordSectionProps { const PasswordSection = ({ errors, onChange, values }: PasswordSectionProps) => { const { formatMessage } = useIntl(); + const [currentPasswordShown, setCurrentPasswordShown] = React.useState(false); const [passwordShown, setPasswordShown] = React.useState(false); const [passwordConfirmShown, setPasswordConfirmShown] = React.useState(false); @@ -351,6 +358,49 @@ const PasswordSection = ({ errors, onChange, values }: PasswordSectionProps) => defaultMessage: 'Change password', })} + + + { + e.stopPropagation(); + setCurrentPasswordShown((prev) => !prev); + }} + label={formatMessage( + currentPasswordShown + ? { + id: 'Auth.form.password.show-password', + defaultMessage: 'Show password', + } + : { + id: 'Auth.form.password.hide-password', + defaultMessage: 'Hide password', + } + )} + > + {currentPasswordShown ? : } + + } + /> + + Date: Tue, 14 Nov 2023 13:58:27 +0100 Subject: [PATCH 19/43] update tests --- .../core/admin/admin/src/pages/ProfilePage.tsx | 2 +- .../admin/src/pages/tests/ProfilePage.test.tsx | 16 +++++++--------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/packages/core/admin/admin/src/pages/ProfilePage.tsx b/packages/core/admin/admin/src/pages/ProfilePage.tsx index 0bf2bdf3a38..5364d267c0e 100644 --- a/packages/core/admin/admin/src/pages/ProfilePage.tsx +++ b/packages/core/admin/admin/src/pages/ProfilePage.tsx @@ -458,7 +458,7 @@ const PasswordSection = ({ errors, onChange, values }: PasswordSectionProps) => value={values.confirmPassword} label={formatMessage({ id: 'Auth.form.confirmPassword.label', - defaultMessage: 'Password confirmation', + defaultMessage: 'Confirm Password', })} name="confirmPassword" type={passwordConfirmShown ? 'text' : 'password'} diff --git a/packages/core/admin/admin/src/pages/tests/ProfilePage.test.tsx b/packages/core/admin/admin/src/pages/tests/ProfilePage.test.tsx index c4f1ca62b88..8bd8e284926 100644 --- a/packages/core/admin/admin/src/pages/tests/ProfilePage.test.tsx +++ b/packages/core/admin/admin/src/pages/tests/ProfilePage.test.tsx @@ -28,7 +28,7 @@ describe('Profile page', () => { jest.clearAllMocks(); }); - it('renders and show the Interface Language section', async () => { + it('renders and shows the Interface Language section', async () => { const { getByText } = render(); await waitFor(() => { expect(getByText('Interface language')).toBeInTheDocument(); @@ -54,10 +54,9 @@ describe('Profile page', () => { name: 'Change password', }) ).toBeInTheDocument(); - - expect(getByLabelText('Password')).toBeInTheDocument(); - - expect(getByLabelText('Password confirmation')).toBeInTheDocument(); + expect(getByLabelText(/current password/i)).toBeInTheDocument(); + expect(getByLabelText(/^password$/i)).toBeInTheDocument(); + expect(getByLabelText(/confirm password/i)).toBeInTheDocument(); }); it('should not display the change password section and all the fields if the user role is Locked', async () => { @@ -84,9 +83,8 @@ describe('Profile page', () => { }); expect(changePasswordHeading).not.toBeInTheDocument(); - - expect(queryByLabelText('Password')).not.toBeInTheDocument(); - - expect(queryByLabelText('Password confirmation')).not.toBeInTheDocument(); + expect(queryByLabelText(/current password/i)).not.toBeInTheDocument(); + expect(queryByLabelText(/^password$/)).not.toBeInTheDocument(); + expect(queryByLabelText(/confirm password/i)).not.toBeInTheDocument(); }); }); From 59aec6c474372383fcdae05e0c781c1a7bc0c5ee Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Tue, 14 Nov 2023 14:55:52 +0100 Subject: [PATCH 20/43] v4.15.5-alpha.1 --- .github/actions/check-pr-status/package.json | 2 +- examples/getstarted/package.json | 22 +- examples/kitchensink-ts/package.json | 8 +- examples/kitchensink/package.json | 10 +- lerna.json | 2 +- packages/admin-test-utils/package.json | 6 +- packages/cli/create-strapi-app/package.json | 10 +- .../cli/create-strapi-starter/package.json | 10 +- packages/core/admin/package.json | 22 +- packages/core/content-manager/package.json | 4 +- .../core/content-type-builder/package.json | 12 +- packages/core/data-transfer/package.json | 12 +- packages/core/database/package.json | 10 +- packages/core/email/package.json | 12 +- packages/core/helper-plugin/package.json | 10 +- packages/core/permissions/package.json | 10 +- packages/core/strapi/package.json | 36 +- packages/core/types/package.json | 16 +- packages/core/upload/package.json | 12 +- packages/core/utils/package.json | 8 +- packages/generators/app/package.json | 4 +- packages/generators/generators/package.json | 12 +- packages/plugins/cloud/package.json | 10 +- packages/plugins/color-picker/package.json | 6 +- packages/plugins/documentation/package.json | 10 +- packages/plugins/graphql/package.json | 10 +- packages/plugins/i18n/package.json | 10 +- packages/plugins/sentry/package.json | 8 +- .../plugins/users-permissions/package.json | 10 +- .../providers/audit-logs-local/package.json | 10 +- .../providers/email-amazon-ses/package.json | 10 +- packages/providers/email-mailgun/package.json | 10 +- .../providers/email-nodemailer/package.json | 8 +- .../providers/email-sendgrid/package.json | 10 +- .../providers/email-sendmail/package.json | 10 +- packages/providers/upload-aws-s3/package.json | 8 +- .../providers/upload-cloudinary/package.json | 10 +- packages/providers/upload-local/package.json | 10 +- packages/utils/api-tests/package.json | 2 +- .../utils/eslint-config-custom/package.json | 2 +- packages/utils/logger/package.json | 8 +- packages/utils/pack-up/package.json | 6 +- packages/utils/tsconfig/package.json | 2 +- packages/utils/typescript/package.json | 2 +- scripts/front/package.json | 2 +- yarn.lock | 394 +++++++++--------- 46 files changed, 409 insertions(+), 409 deletions(-) diff --git a/.github/actions/check-pr-status/package.json b/.github/actions/check-pr-status/package.json index e8b8ea2a72e..5a3401f4b5a 100644 --- a/.github/actions/check-pr-status/package.json +++ b/.github/actions/check-pr-status/package.json @@ -1,6 +1,6 @@ { "name": "check-pr-status", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "license": "MIT", "main": "dist/index.js", diff --git a/examples/getstarted/package.json b/examples/getstarted/package.json index 08af4e0f61d..25ba69e0658 100644 --- a/examples/getstarted/package.json +++ b/examples/getstarted/package.json @@ -1,6 +1,6 @@ { "name": "getstarted", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -14,16 +14,16 @@ }, "dependencies": { "@strapi/icons": "1.11.0", - "@strapi/plugin-color-picker": "4.15.4", - "@strapi/plugin-documentation": "4.15.4", - "@strapi/plugin-graphql": "4.15.4", - "@strapi/plugin-i18n": "4.15.4", - "@strapi/plugin-sentry": "4.15.4", - "@strapi/plugin-users-permissions": "4.15.4", - "@strapi/provider-email-mailgun": "4.15.4", - "@strapi/provider-upload-aws-s3": "4.15.4", - "@strapi/provider-upload-cloudinary": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/plugin-color-picker": "4.15.5-alpha.1", + "@strapi/plugin-documentation": "4.15.5-alpha.1", + "@strapi/plugin-graphql": "4.15.5-alpha.1", + "@strapi/plugin-i18n": "4.15.5-alpha.1", + "@strapi/plugin-sentry": "4.15.5-alpha.1", + "@strapi/plugin-users-permissions": "4.15.5-alpha.1", + "@strapi/provider-email-mailgun": "4.15.5-alpha.1", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.1", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "better-sqlite3": "8.6.0", "lodash": "4.17.21", "mysql": "2.18.1", diff --git a/examples/kitchensink-ts/package.json b/examples/kitchensink-ts/package.json index 653c61baa09..2856143b0f7 100644 --- a/examples/kitchensink-ts/package.json +++ b/examples/kitchensink-ts/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink-ts", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "description": "A Strapi application", "license": "MIT", @@ -14,9 +14,9 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/plugin-i18n": "4.15.4", - "@strapi/plugin-users-permissions": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/plugin-i18n": "4.15.5-alpha.1", + "@strapi/plugin-users-permissions": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "better-sqlite3": "8.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/kitchensink/package.json b/examples/kitchensink/package.json index c61cc350eb6..0947b0b6c0f 100644 --- a/examples/kitchensink/package.json +++ b/examples/kitchensink/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -13,10 +13,10 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/provider-email-mailgun": "4.15.4", - "@strapi/provider-upload-aws-s3": "4.15.4", - "@strapi/provider-upload-cloudinary": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/provider-email-mailgun": "4.15.5-alpha.1", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.1", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "lodash": "4.17.21", "mysql": "2.18.1", "mysql2": "3.6.0", diff --git a/lerna.json b/lerna.json index 06f115a5fd7..2845e6fd6d5 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.15.4", + "version": "4.15.5-alpha.1", "packages": ["packages/*", "examples/*"], "npmClient": "yarn", "useWorkspaces": true, diff --git a/packages/admin-test-utils/package.json b/packages/admin-test-utils/package.json index 1d1314168f7..0a5cf9a40f5 100644 --- a/packages/admin-test-utils/package.json +++ b/packages/admin-test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin-test-utils", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "description": "Test utilities for the Strapi administration panel", "license": "MIT", @@ -75,8 +75,8 @@ "@reduxjs/toolkit": "1.9.7", "@strapi/pack-up": "workspace:*", "@testing-library/jest-dom": "5.16.5", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "peerDependencies": { "@reduxjs/toolkit": "^1.9.7", diff --git a/packages/cli/create-strapi-app/package.json b/packages/cli/create-strapi-app/package.json index 81e2d7725d7..fc04899720f 100644 --- a/packages/cli/create-strapi-app/package.json +++ b/packages/cli/create-strapi-app/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-app", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-app", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.4", + "@strapi/generate-new": "4.15.5-alpha.1", "commander": "8.3.0", "inquirer": "8.2.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/cli/create-strapi-starter/package.json b/packages/cli/create-strapi-starter/package.json index 118817d1b97..1b2f5b72fcf 100644 --- a/packages/cli/create-strapi-starter/package.json +++ b/packages/cli/create-strapi-starter/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-starter", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-starter", @@ -44,7 +44,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.4", + "@strapi/generate-new": "4.15.5-alpha.1", "chalk": "4.1.2", "ci-info": "3.8.0", "commander": "8.3.0", @@ -54,9 +54,9 @@ "ora": "5.4.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index 7c171ccb6a3..805e7a363a5 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Strapi Admin", "repository": { "type": "git", @@ -75,15 +75,15 @@ "@radix-ui/react-context": "1.0.1", "@radix-ui/react-toolbar": "1.0.4", "@reduxjs/toolkit": "1.9.7", - "@strapi/data-transfer": "4.15.4", + "@strapi/data-transfer": "4.15.5-alpha.1", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/permissions": "4.15.4", - "@strapi/provider-audit-logs-local": "4.15.4", - "@strapi/types": "4.15.4", - "@strapi/typescript-utils": "4.15.4", - "@strapi/utils": "4.15.4", + "@strapi/permissions": "4.15.5-alpha.1", + "@strapi/provider-audit-logs-local": "4.15.5-alpha.1", + "@strapi/types": "4.15.5-alpha.1", + "@strapi/typescript-utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.1", "axios": "1.6.0", "bcryptjs": "2.4.3", "boxen": "5.1.2", @@ -172,9 +172,9 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/admin-test-utils": "4.15.4", - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/admin-test-utils": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/content-manager/package.json b/packages/core/content-manager/package.json index 56d39b4c701..8f5a16035a7 100644 --- a/packages/core/content-manager/package.json +++ b/packages/core/content-manager/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-manager", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "A powerful UI to easily manage your data.", "repository": { "type": "git", @@ -26,7 +26,7 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "lodash": "4.17.21", "qs": "6.11.1" }, diff --git a/packages/core/content-type-builder/package.json b/packages/core/content-type-builder/package.json index 8fd98b7c8cc..08405fcb35a 100644 --- a/packages/core/content-type-builder/package.json +++ b/packages/core/content-type-builder/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-type-builder", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Strapi plugin to create content type", "repository": { "type": "git", @@ -49,10 +49,10 @@ "dependencies": { "@sindresorhus/slugify": "1.1.0", "@strapi/design-system": "1.13.0", - "@strapi/generators": "4.15.4", - "@strapi/helper-plugin": "4.15.4", + "@strapi/generators": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "fs-extra": "10.0.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "@testing-library/react": "14.0.0", "history": "^4.9.0", "react": "^18.2.0", diff --git a/packages/core/data-transfer/package.json b/packages/core/data-transfer/package.json index 3d028cdc495..a261eb1619c 100644 --- a/packages/core/data-transfer/package.json +++ b/packages/core/data-transfer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/data-transfer", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Data transfer capabilities for Strapi", "keywords": [ "strapi", @@ -41,10 +41,10 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/logger": "4.15.4", - "@strapi/strapi": "4.15.4", - "@strapi/types": "4.15.4", - "@strapi/utils": "4.15.4", + "@strapi/logger": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/types": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.1", "chalk": "4.1.2", "cli-table3": "0.6.2", "commander": "8.3.0", @@ -61,7 +61,7 @@ "ws": "8.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@strapi/strapi": "4.15.2", "@types/fs-extra": "9.0.13", "@types/jest": "29.5.2", diff --git a/packages/core/database/package.json b/packages/core/database/package.json index d1bb207f2d0..86869f35965 100644 --- a/packages/core/database/package.json +++ b/packages/core/database/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/database", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Strapi's database layer", "homepage": "https://strapi.io", "bugs": { @@ -40,7 +40,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "date-fns": "2.30.0", "debug": "4.3.4", "fs-extra": "10.0.0", @@ -50,9 +50,9 @@ "umzug": "3.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/email/package.json b/packages/core/email/package.json index ff7966214c6..ff007b5af96 100644 --- a/packages/core/email/package.json +++ b/packages/core/email/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-email", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Easily configure your Strapi application to send emails.", "repository": { "type": "git", @@ -54,10 +54,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/provider-email-sendmail": "4.15.4", - "@strapi/utils": "4.15.4", + "@strapi/provider-email-sendmail": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.1", "lodash": "4.17.21", "prop-types": "^15.8.1", "react-intl": "6.4.1", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/types": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/types": "4.15.5-alpha.1", "@testing-library/react": "14.0.0", "@types/koa": "2.13.4", "@types/lodash": "^4.14.191", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index 042ac1ab47c..a7b2422f9cb 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/helper-plugin", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Helper for Strapi plugins development", "repository": { "type": "git", @@ -69,11 +69,11 @@ "@storybook/addon-mdx-gfm": "7.4.0", "@storybook/builder-vite": "7.4.0", "@storybook/react-vite": "7.4.0", - "@strapi/admin-test-utils": "4.15.4", + "@strapi/admin-test-utils": "4.15.5-alpha.1", "@strapi/design-system": "1.13.0", "@strapi/icons": "1.13.0", - "@strapi/pack-up": "4.15.4", - "@strapi/types": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/types": "4.15.5-alpha.1", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/react": "18.2.7", @@ -82,7 +82,7 @@ "@types/react-router-dom": "5.3.3", "@types/styled-components": "5.1.26", "cross-env": "^7.0.3", - "eslint-config-custom": "4.15.4", + "eslint-config-custom": "4.15.5-alpha.1", "eslint-plugin-storybook": "0.6.14", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/core/permissions/package.json b/packages/core/permissions/package.json index 254604022f1..23362b3cce7 100644 --- a/packages/core/permissions/package.json +++ b/packages/core/permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/permissions", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Strapi's permission layer.", "repository": { "type": "git", @@ -38,15 +38,15 @@ }, "dependencies": { "@casl/ability": "6.5.0", - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "lodash": "4.17.21", "qs": "6.11.1", "sift": "16.0.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/strapi/package.json b/packages/core/strapi/package.json index bdeba4fa576..23b7b04b0b9 100644 --- a/packages/core/strapi/package.json +++ b/packages/core/strapi/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/strapi", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite", "keywords": [ "strapi", @@ -114,21 +114,21 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/admin": "4.15.4", - "@strapi/data-transfer": "4.15.4", - "@strapi/database": "4.15.4", - "@strapi/generate-new": "4.15.4", - "@strapi/generators": "4.15.4", - "@strapi/logger": "4.15.4", - "@strapi/pack-up": "4.15.4", - "@strapi/permissions": "4.15.4", - "@strapi/plugin-content-manager": "4.15.4", - "@strapi/plugin-content-type-builder": "4.15.4", - "@strapi/plugin-email": "4.15.4", - "@strapi/plugin-upload": "4.15.4", - "@strapi/types": "4.15.4", - "@strapi/typescript-utils": "4.15.4", - "@strapi/utils": "4.15.4", + "@strapi/admin": "4.15.5-alpha.1", + "@strapi/data-transfer": "4.15.5-alpha.1", + "@strapi/database": "4.15.5-alpha.1", + "@strapi/generate-new": "4.15.5-alpha.1", + "@strapi/generators": "4.15.5-alpha.1", + "@strapi/logger": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/permissions": "4.15.5-alpha.1", + "@strapi/plugin-content-manager": "4.15.5-alpha.1", + "@strapi/plugin-content-type-builder": "4.15.5-alpha.1", + "@strapi/plugin-email": "4.15.5-alpha.1", + "@strapi/plugin-upload": "4.15.5-alpha.1", + "@strapi/types": "4.15.5-alpha.1", + "@strapi/typescript-utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.1", "bcryptjs": "2.4.3", "boxen": "5.1.2", "chalk": "4.1.2", @@ -188,9 +188,9 @@ "@types/node": "18.18.4", "@types/node-schedule": "2.1.0", "@types/statuses": "2.0.1", - "eslint-config-custom": "4.15.4", + "eslint-config-custom": "4.15.5-alpha.1", "supertest": "6.3.3", - "tsconfig": "4.15.4" + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/types/package.json b/packages/core/types/package.json index 56c9bdc7cf6..80c63a2fd27 100644 --- a/packages/core/types/package.json +++ b/packages/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/types", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Shared typescript types for Strapi internal use", "keywords": [ "strapi" @@ -46,10 +46,10 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/database": "4.15.4", - "@strapi/logger": "4.15.4", - "@strapi/permissions": "4.15.4", - "@strapi/utils": "4.15.4", + "@strapi/database": "4.15.5-alpha.1", + "@strapi/logger": "4.15.5-alpha.1", + "@strapi/permissions": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.1", "commander": "8.3.0", "https-proxy-agent": "5.0.1", "koa": "2.13.4", @@ -57,14 +57,14 @@ "node-schedule": "2.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@strapi/ts-zen": "^0.2.0", "@types/jest": "29.5.2", "@types/koa": "2.13.4", "@types/koa__router": "12.0.0", "@types/node-schedule": "2.1.0", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1", "typescript": "5.2.2" }, "engines": { diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index 053eb735640..c78426ecc2c 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-upload", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Makes it easy to upload images and files to your Strapi Application.", "license": "SEE LICENSE IN LICENSE", "author": { @@ -44,10 +44,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/provider-upload-local": "4.15.4", - "@strapi/utils": "4.15.4", + "@strapi/provider-upload-local": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.1", "axios": "1.6.0", "byte-size": "7.0.1", "cropperjs": "1.6.0", @@ -71,8 +71,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index fb09e742803..5fb27c94e3d 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/utils", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Shared utilities for the Strapi packages", "keywords": [ "strapi", @@ -53,13 +53,13 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@types/koa": "2.13.4", "@types/node": "18.18.4", - "eslint-config-custom": "4.15.4", + "eslint-config-custom": "4.15.5-alpha.1", "koa": "2.13.4", "koa-body": "4.2.0", - "tsconfig": "4.15.4" + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/generators/app/package.json b/packages/generators/app/package.json index 2e7afe714db..4b0cc28653f 100644 --- a/packages/generators/app/package.json +++ b/packages/generators/app/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generate-new", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Generate a new Strapi application.", "keywords": [ "generate", @@ -58,7 +58,7 @@ "tar": "6.1.13" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "copyfiles": "2.4.1" }, "engines": { diff --git a/packages/generators/generators/package.json b/packages/generators/generators/package.json index a87d9fc9c81..c1b2d4098f7 100644 --- a/packages/generators/generators/package.json +++ b/packages/generators/generators/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generators", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Interactive API generator.", "keywords": [ "strapi", @@ -47,8 +47,8 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "4.15.4", - "@strapi/utils": "4.15.4", + "@strapi/typescript-utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.1", "chalk": "4.1.2", "copyfiles": "2.4.1", "fs-extra": "10.0.0", @@ -57,9 +57,9 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/plugins/cloud/package.json b/packages/plugins/cloud/package.json index 616880924f3..7fa6b7bd9cb 100644 --- a/packages/plugins/cloud/package.json +++ b/packages/plugins/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-cloud", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Instructions to deploy your local project to Strapi Cloud", "license": "MIT", "author": { @@ -38,22 +38,22 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.4", + "@strapi/strapi": "4.15.5-alpha.1", "@types/react": "18.2.7", "@types/react-dom": "18.2.12", "@types/react-router-dom": "^5.3.3", "@types/styled-components": "5.1.26", - "eslint-config-custom": "4.15.4", + "eslint-config-custom": "4.15.5-alpha.1", "react": "18.2.0", "react-dom": "18.2.0", "react-router-dom": "5.3.4", "styled-components": "5.3.3", - "tsconfig": "4.15.4", + "tsconfig": "4.15.5-alpha.1", "typescript": "5.2.2" }, "peerDependencies": { diff --git a/packages/plugins/color-picker/package.json b/packages/plugins/color-picker/package.json index d26ead320f4..8a014155934 100644 --- a/packages/plugins/color-picker/package.json +++ b/packages/plugins/color-picker/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-color-picker", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Strapi maintained Custom Fields", "repository": { "type": "git", @@ -55,14 +55,14 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", "prop-types": "^15.8.1", "react-colorful": "5.6.1", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.4", + "@strapi/strapi": "4.15.5-alpha.1", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/styled-components": "5.1.26", diff --git a/packages/plugins/documentation/package.json b/packages/plugins/documentation/package.json index 37f0b4a9f6f..12658756582 100644 --- a/packages/plugins/documentation/package.json +++ b/packages/plugins/documentation/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-documentation", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.", "repository": { "type": "git", @@ -47,9 +47,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "bcryptjs": "2.4.3", "cheerio": "^1.0.0-rc.12", "formik": "2.4.0", @@ -67,8 +67,8 @@ }, "devDependencies": { "@apidevtools/swagger-parser": "^10.1.0", - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "msw": "1.3.0", diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index a3c4c23deee..8dc40d99965 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-graphql", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Adds GraphQL endpoint with default API methods.", "repository": { "type": "git", @@ -45,9 +45,9 @@ "@graphql-tools/schema": "8.5.1", "@graphql-tools/utils": "^8.13.1", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "apollo-server-core": "3.12.1", "apollo-server-koa": "3.10.0", "graphql": "^15.5.1", @@ -61,8 +61,8 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "cross-env": "^7.0.3", "koa": "2.13.4", "react": "^18.2.0", diff --git a/packages/plugins/i18n/package.json b/packages/plugins/i18n/package.json index 5dda8eb634c..46d907374ad 100644 --- a/packages/plugins/i18n/package.json +++ b/packages/plugins/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-i18n", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API", "repository": { "type": "git", @@ -50,9 +50,9 @@ "dependencies": { "@reduxjs/toolkit": "1.9.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "formik": "2.4.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -64,8 +64,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "@testing-library/react": "14.0.0", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index 6f40d9c56a3..3d3b7631cc1 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-sentry", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Send Strapi error events to Sentry", "repository": { "type": "git", @@ -46,12 +46,12 @@ "dependencies": { "@sentry/node": "6.19.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "5.3.4", diff --git a/packages/plugins/users-permissions/package.json b/packages/plugins/users-permissions/package.json index a893019cc63..0d3adabc836 100644 --- a/packages/plugins/users-permissions/package.json +++ b/packages/plugins/users-permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-users-permissions", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Protect your API with a full-authentication process based on JWT", "repository": { "type": "git", @@ -48,9 +48,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.4", + "@strapi/helper-plugin": "4.15.5-alpha.1", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "bcryptjs": "2.4.3", "formik": "2.4.0", "grant-koa": "5.4.8", @@ -69,8 +69,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/strapi": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.1", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/providers/audit-logs-local/package.json b/packages/providers/audit-logs-local/package.json index 830b51ee2f4..ee2176a459c 100644 --- a/packages/providers/audit-logs-local/package.json +++ b/packages/providers/audit-logs-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-audit-logs-local", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Local provider for strapi audit logs", "keywords": [ "audit-logs", @@ -42,10 +42,10 @@ "watch": "pack-up watch" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "@strapi/types": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/types": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-amazon-ses/package.json b/packages/providers/email-amazon-ses/package.json index 3eb718205ff..a33fe81bbbc 100644 --- a/packages/providers/email-amazon-ses/package.json +++ b/packages/providers/email-amazon-ses/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-amazon-ses", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Amazon SES provider for strapi email", "keywords": [ "email", @@ -43,13 +43,13 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "node-ses": "^3.0.3" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-mailgun/package.json b/packages/providers/email-mailgun/package.json index 9c7ef2ab98b..865d3686a15 100644 --- a/packages/providers/email-mailgun/package.json +++ b/packages/providers/email-mailgun/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-mailgun", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Mailgun provider for strapi email plugin", "keywords": [ "email", @@ -45,14 +45,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "form-data": "^4.0.0", "mailgun.js": "8.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-nodemailer/package.json b/packages/providers/email-nodemailer/package.json index 15500d37e13..0c751509328 100644 --- a/packages/providers/email-nodemailer/package.json +++ b/packages/providers/email-nodemailer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-nodemailer", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Nodemailer provider for Strapi 3", "keywords": [ "strapi", @@ -60,10 +60,10 @@ "nodemailer": "6.9.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@types/nodemailer": "6.4.7", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendgrid/package.json b/packages/providers/email-sendgrid/package.json index 6a2f5d564fc..703a2d18c42 100644 --- a/packages/providers/email-sendgrid/package.json +++ b/packages/providers/email-sendgrid/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendgrid", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Sendgrid provider for strapi email", "keywords": [ "email", @@ -44,12 +44,12 @@ }, "dependencies": { "@sendgrid/mail": "7.7.0", - "@strapi/utils": "4.15.4" + "@strapi/utils": "4.15.5-alpha.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendmail/package.json b/packages/providers/email-sendmail/package.json index d575ffcbb0e..7731268ada6 100644 --- a/packages/providers/email-sendmail/package.json +++ b/packages/providers/email-sendmail/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendmail", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Sendmail provider for strapi email", "keywords": [ "email", @@ -42,14 +42,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "sendmail": "^1.6.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@types/sendmail": "1.4.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-aws-s3/package.json b/packages/providers/upload-aws-s3/package.json index 16cf12efe9b..e4fa1995e4a 100644 --- a/packages/providers/upload-aws-s3/package.json +++ b/packages/providers/upload-aws-s3/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-aws-s3", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "AWS S3 provider for strapi upload", "keywords": [ "upload", @@ -53,10 +53,10 @@ "lodash": "4.17.21" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-cloudinary/package.json b/packages/providers/upload-cloudinary/package.json index 98409e43aa3..90a2f664a97 100644 --- a/packages/providers/upload-cloudinary/package.json +++ b/packages/providers/upload-cloudinary/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-cloudinary", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Cloudinary provider for strapi upload", "keywords": [ "upload", @@ -43,14 +43,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "cloudinary": "^1.41.0", "into-stream": "^5.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-local/package.json b/packages/providers/upload-local/package.json index 2873baa8d5d..c493665a5c8 100644 --- a/packages/providers/upload-local/package.json +++ b/packages/providers/upload-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-local", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Local provider for strapi upload", "keywords": [ "upload", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.4", + "@strapi/utils": "4.15.5-alpha.1", "fs-extra": "10.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/api-tests/package.json b/packages/utils/api-tests/package.json index 743cf465516..6a1e90aecb8 100644 --- a/packages/utils/api-tests/package.json +++ b/packages/utils/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "api-tests", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "dependencies": { "dotenv": "14.2.0", diff --git a/packages/utils/eslint-config-custom/package.json b/packages/utils/eslint-config-custom/package.json index fcfad99e778..51ebf8f488e 100644 --- a/packages/utils/eslint-config-custom/package.json +++ b/packages/utils/eslint-config-custom/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-custom", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "main": "index.js" } diff --git a/packages/utils/logger/package.json b/packages/utils/logger/package.json index 2955d122e99..88225ecea53 100644 --- a/packages/utils/logger/package.json +++ b/packages/utils/logger/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/logger", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Strapi's logger", "homepage": "https://strapi.io", "bugs": { @@ -43,9 +43,9 @@ "winston": "3.10.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", - "eslint-config-custom": "4.15.4", - "tsconfig": "4.15.4" + "@strapi/pack-up": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.1" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index ce016e589b0..0f0c70a96c8 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/pack-up", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Simple tools for creating interoperable CJS & ESM packages.", "keywords": [ "strapi", @@ -84,11 +84,11 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.4", + "@strapi/pack-up": "4.15.5-alpha.1", "@types/git-url-parse": "9.0.1", "@types/ini": "1.3.31", "@types/prompts": "2.4.4", - "eslint-config-custom": "4.15.4", + "eslint-config-custom": "4.15.5-alpha.1", "rimraf": "3.0.2" }, "engines": { diff --git a/packages/utils/tsconfig/package.json b/packages/utils/tsconfig/package.json index 5652803f12d..e43a464746e 100644 --- a/packages/utils/tsconfig/package.json +++ b/packages/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "tsconfig", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "devDependencies": { "@tsconfig/node18": "18.2.2" diff --git a/packages/utils/typescript/package.json b/packages/utils/typescript/package.json index c9c4e3d8d7f..2d83c09743c 100644 --- a/packages/utils/typescript/package.json +++ b/packages/utils/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/typescript-utils", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "description": "Typescript support for Strapi", "keywords": [ "strapi", diff --git a/scripts/front/package.json b/scripts/front/package.json index b2061da8cee..422d9b54bbc 100644 --- a/scripts/front/package.json +++ b/scripts/front/package.json @@ -1,6 +1,6 @@ { "name": "scripts-front", - "version": "4.15.4", + "version": "4.15.5-alpha.1", "private": true, "scripts": { "test:front": "jest --config jest.config.front.js" diff --git a/yarn.lock b/yarn.lock index 726d2c10529..616515c475e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8613,7 +8613,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin-test-utils@npm:4.15.4, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": +"@strapi/admin-test-utils@npm:4.15.5-alpha.1, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": version: 0.0.0-use.local resolution: "@strapi/admin-test-utils@workspace:packages/admin-test-utils" dependencies: @@ -8621,9 +8621,9 @@ __metadata: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/pack-up": "workspace:*" "@testing-library/jest-dom": "npm:5.16.5" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" jest-styled-components: "npm:7.1.1" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" whatwg-fetch: "npm:3.6.2" peerDependencies: "@reduxjs/toolkit": ^1.9.7 @@ -8746,7 +8746,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin@npm:4.15.4, @strapi/admin@workspace:packages/core/admin": +"@strapi/admin@npm:4.15.5-alpha.1, @strapi/admin@workspace:packages/core/admin": version: 0.0.0-use.local resolution: "@strapi/admin@workspace:packages/core/admin" dependencies: @@ -8755,18 +8755,18 @@ __metadata: "@radix-ui/react-context": "npm:1.0.1" "@radix-ui/react-toolbar": "npm:1.0.4" "@reduxjs/toolkit": "npm:1.9.7" - "@strapi/admin-test-utils": "npm:4.15.4" - "@strapi/data-transfer": "npm:4.15.4" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.1" + "@strapi/data-transfer": "npm:4.15.5-alpha.1" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/permissions": "npm:4.15.4" - "@strapi/provider-audit-logs-local": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" - "@strapi/types": "npm:4.15.4" - "@strapi/typescript-utils": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/permissions": "npm:4.15.5-alpha.1" + "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/types": "npm:4.15.5-alpha.1" + "@strapi/typescript-utils": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -8902,15 +8902,15 @@ __metadata: languageName: node linkType: hard -"@strapi/data-transfer@npm:4.15.4, @strapi/data-transfer@workspace:packages/core/data-transfer": +"@strapi/data-transfer@npm:4.15.5-alpha.1, @strapi/data-transfer@workspace:packages/core/data-transfer": version: 0.0.0-use.local resolution: "@strapi/data-transfer@workspace:packages/core/data-transfer" dependencies: - "@strapi/logger": "npm:4.15.4" - "@strapi/pack-up": "npm:4.15.4" + "@strapi/logger": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.1" "@strapi/strapi": "npm:4.15.2" - "@strapi/types": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/types": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@types/fs-extra": "npm:9.0.13" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" @@ -8961,20 +8961,20 @@ __metadata: languageName: node linkType: hard -"@strapi/database@npm:4.15.4, @strapi/database@workspace:packages/core/database": +"@strapi/database@npm:4.15.5-alpha.1, @strapi/database@workspace:packages/core/database": version: 0.0.0-use.local resolution: "@strapi/database@workspace:packages/core/database" dependencies: - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" date-fns: "npm:2.30.0" debug: "npm:4.3.4" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" fs-extra: "npm:10.0.0" knex: "npm:2.5.0" lodash: "npm:4.17.21" semver: "npm:7.5.4" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" umzug: "npm:3.2.1" languageName: unknown linkType: soft @@ -9056,12 +9056,12 @@ __metadata: languageName: node linkType: hard -"@strapi/generate-new@npm:4.15.4, @strapi/generate-new@workspace:packages/generators/app": +"@strapi/generate-new@npm:4.15.5-alpha.1, @strapi/generate-new@workspace:packages/generators/app": version: 0.0.0-use.local resolution: "@strapi/generate-new@workspace:packages/generators/app" dependencies: "@sentry/node": "npm:6.19.7" - "@strapi/pack-up": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" chalk: "npm:^4.1.2" copyfiles: "npm:2.4.1" execa: "npm:5.1.1" @@ -9093,22 +9093,22 @@ __metadata: languageName: node linkType: hard -"@strapi/generators@npm:4.15.4, @strapi/generators@workspace:packages/generators/generators": +"@strapi/generators@npm:4.15.5-alpha.1, @strapi/generators@workspace:packages/generators/generators": version: 0.0.0-use.local resolution: "@strapi/generators@workspace:packages/generators/generators" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/typescript-utils": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/typescript-utils": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" chalk: "npm:4.1.2" copyfiles: "npm:2.4.1" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" fs-extra: "npm:10.0.0" node-plop: "npm:0.26.3" plop: "npm:2.7.6" pluralize: "npm:8.0.0" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -9137,7 +9137,7 @@ __metadata: languageName: node linkType: hard -"@strapi/helper-plugin@npm:4.15.4, @strapi/helper-plugin@workspace:packages/core/helper-plugin": +"@strapi/helper-plugin@npm:4.15.5-alpha.1, @strapi/helper-plugin@workspace:packages/core/helper-plugin": version: 0.0.0-use.local resolution: "@strapi/helper-plugin@workspace:packages/core/helper-plugin" dependencies: @@ -9147,11 +9147,11 @@ __metadata: "@storybook/addon-mdx-gfm": "npm:7.4.0" "@storybook/builder-vite": "npm:7.4.0" "@storybook/react-vite": "npm:7.4.0" - "@strapi/admin-test-utils": "npm:4.15.4" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.1" "@strapi/design-system": "npm:1.13.0" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/types": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/types": "npm:4.15.5-alpha.1" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/react": "npm:18.2.7" @@ -9162,7 +9162,7 @@ __metadata: axios: "npm:1.6.0" cross-env: "npm:^7.0.3" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" eslint-plugin-storybook: "npm:0.6.14" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9222,14 +9222,14 @@ __metadata: languageName: node linkType: hard -"@strapi/logger@npm:4.15.4, @strapi/logger@workspace:packages/utils/logger": +"@strapi/logger@npm:4.15.5-alpha.1, @strapi/logger@workspace:packages/utils/logger": version: 0.0.0-use.local resolution: "@strapi/logger@workspace:packages/utils/logger" dependencies: - "@strapi/pack-up": "npm:4.15.4" - eslint-config-custom: "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.1" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" winston: "npm:3.10.0" languageName: unknown linkType: soft @@ -9265,11 +9265,11 @@ __metadata: languageName: node linkType: hard -"@strapi/pack-up@npm:4.15.4, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": +"@strapi/pack-up@npm:4.15.5-alpha.1, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": version: 0.0.0-use.local resolution: "@strapi/pack-up@workspace:packages/utils/pack-up" dependencies: - "@strapi/pack-up": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" "@types/git-url-parse": "npm:9.0.1" "@types/ini": "npm:1.3.31" "@types/prompts": "npm:2.4.4" @@ -9281,7 +9281,7 @@ __metadata: commander: "npm:8.3.0" esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" @@ -9314,18 +9314,18 @@ __metadata: languageName: node linkType: hard -"@strapi/permissions@npm:4.15.4, @strapi/permissions@workspace:packages/core/permissions": +"@strapi/permissions@npm:4.15.5-alpha.1, @strapi/permissions@workspace:packages/core/permissions": version: 0.0.0-use.local resolution: "@strapi/permissions@workspace:packages/core/permissions" dependencies: "@casl/ability": "npm:6.5.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" - eslint-config-custom: "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.1" lodash: "npm:4.17.21" qs: "npm:6.11.1" sift: "npm:16.0.1" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -9334,20 +9334,20 @@ __metadata: resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.4" + "@strapi/strapi": "npm:4.15.5-alpha.1" "@types/react": "npm:18.2.7" "@types/react-dom": "npm:18.2.12" "@types/react-router-dom": "npm:^5.3.3" "@types/styled-components": "npm:5.1.26" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" react: "npm:18.2.0" react-dom: "npm:18.2.0" react-intl: "npm:6.4.1" react-router-dom: "npm:5.3.4" styled-components: "npm:5.3.3" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" typescript: "npm:5.2.2" peerDependencies: "@strapi/strapi": ^4.4.0 @@ -9358,14 +9358,14 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-color-picker@npm:4.15.4, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": +"@strapi/plugin-color-picker@npm:4.15.5-alpha.1, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": version: 0.0.0-use.local resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.4" + "@strapi/strapi": "npm:4.15.5-alpha.1" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/styled-components": "npm:5.1.26" @@ -9398,12 +9398,12 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-manager@npm:4.15.4, @strapi/plugin-content-manager@workspace:packages/core/content-manager": +"@strapi/plugin-content-manager@npm:4.15.5-alpha.1, @strapi/plugin-content-manager@workspace:packages/core/content-manager": version: 0.0.0-use.local resolution: "@strapi/plugin-content-manager@workspace:packages/core/content-manager" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/utils": "npm:4.15.4" + "@strapi/utils": "npm:4.15.5-alpha.1" lodash: "npm:4.17.21" qs: "npm:6.11.1" languageName: unknown @@ -9439,18 +9439,18 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-type-builder@npm:4.15.4, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": +"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.1, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": version: 0.0.0-use.local resolution: "@strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder" dependencies: "@sindresorhus/slugify": "npm:1.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/generators": "npm:4.15.4" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/generators": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@testing-library/react": "npm:14.0.0" fs-extra: "npm:10.0.0" history: "npm:^4.9.0" @@ -9476,17 +9476,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-documentation@npm:4.15.4, @strapi/plugin-documentation@workspace:packages/plugins/documentation": +"@strapi/plugin-documentation@npm:4.15.5-alpha.1, @strapi/plugin-documentation@workspace:packages/plugins/documentation": version: 0.0.0-use.local resolution: "@strapi/plugin-documentation@workspace:packages/plugins/documentation" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" bcryptjs: "npm:2.4.3" @@ -9541,17 +9541,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-email@npm:4.15.4, @strapi/plugin-email@workspace:packages/core/email": +"@strapi/plugin-email@npm:4.15.5-alpha.1, @strapi/plugin-email@workspace:packages/core/email": version: 0.0.0-use.local resolution: "@strapi/plugin-email@workspace:packages/core/email" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/provider-email-sendmail": "npm:4.15.4" - "@strapi/types": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.1" + "@strapi/types": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@testing-library/react": "npm:14.0.0" "@types/koa": "npm:2.13.4" "@types/lodash": "npm:^4.14.191" @@ -9575,18 +9575,18 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-graphql@npm:4.15.4, @strapi/plugin-graphql@workspace:packages/plugins/graphql": +"@strapi/plugin-graphql@npm:4.15.5-alpha.1, @strapi/plugin-graphql@workspace:packages/plugins/graphql": version: 0.0.0-use.local resolution: "@strapi/plugin-graphql@workspace:packages/plugins/graphql" dependencies: "@graphql-tools/schema": "npm:8.5.1" "@graphql-tools/utils": "npm:^8.13.1" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" apollo-server-core: "npm:3.12.1" apollo-server-koa: "npm:3.10.0" cross-env: "npm:^7.0.3" @@ -9613,17 +9613,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-i18n@npm:4.15.4, @strapi/plugin-i18n@workspace:packages/plugins/i18n": +"@strapi/plugin-i18n@npm:4.15.5-alpha.1, @strapi/plugin-i18n@workspace:packages/plugins/i18n": version: 0.0.0-use.local resolution: "@strapi/plugin-i18n@workspace:packages/plugins/i18n" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@testing-library/react": "npm:14.0.0" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9648,16 +9648,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-sentry@npm:4.15.4, @strapi/plugin-sentry@workspace:packages/plugins/sentry": +"@strapi/plugin-sentry@npm:4.15.5-alpha.1, @strapi/plugin-sentry@workspace:packages/plugins/sentry": version: 0.0.0-use.local resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry" dependencies: "@sentry/node": "npm:6.19.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" react-router-dom: "npm:5.3.4" @@ -9711,17 +9711,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-upload@npm:4.15.4, @strapi/plugin-upload@workspace:packages/core/upload": +"@strapi/plugin-upload@npm:4.15.5-alpha.1, @strapi/plugin-upload@workspace:packages/core/upload": version: 0.0.0-use.local resolution: "@strapi/plugin-upload@workspace:packages/core/upload" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/provider-upload-local": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/provider-upload-local": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9760,16 +9760,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-users-permissions@npm:4.15.4, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": +"@strapi/plugin-users-permissions@npm:4.15.5-alpha.1, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": version: 0.0.0-use.local resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.1" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9810,14 +9810,14 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-audit-logs-local@npm:4.15.4, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": +"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.1, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": version: 0.0.0-use.local resolution: "@strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local" dependencies: - "@strapi/pack-up": "npm:4.15.4" - "@strapi/types": "npm:4.15.4" - eslint-config-custom: "npm:4.15.4" - tsconfig: "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/types": "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -9825,24 +9825,24 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-amazon-ses@workspace:packages/providers/email-amazon-ses" dependencies: - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" - eslint-config-custom: "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.1" node-ses: "npm:^3.0.3" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft -"@strapi/provider-email-mailgun@npm:4.15.4, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": +"@strapi/provider-email-mailgun@npm:4.15.5-alpha.1, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": version: 0.0.0-use.local resolution: "@strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun" dependencies: - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" - eslint-config-custom: "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.1" form-data: "npm:^4.0.0" mailgun.js: "npm:8.2.1" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -9850,12 +9850,12 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-nodemailer@workspace:packages/providers/email-nodemailer" dependencies: - "@strapi/pack-up": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" "@types/nodemailer": "npm:6.4.7" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" lodash: "npm:4.17.21" nodemailer: "npm:6.9.1" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -9864,10 +9864,10 @@ __metadata: resolution: "@strapi/provider-email-sendgrid@workspace:packages/providers/email-sendgrid" dependencies: "@sendgrid/mail": "npm:7.7.0" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" - eslint-config-custom: "npm:4.15.4" - tsconfig: "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -9881,20 +9881,20 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-email-sendmail@npm:4.15.4, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": +"@strapi/provider-email-sendmail@npm:4.15.5-alpha.1, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": version: 0.0.0-use.local resolution: "@strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail" dependencies: - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@types/sendmail": "npm:1.4.4" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" sendmail: "npm:^1.6.1" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft -"@strapi/provider-upload-aws-s3@npm:4.15.4, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": +"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.1, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": version: 0.0.0-use.local resolution: "@strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3" dependencies: @@ -9902,24 +9902,24 @@ __metadata: "@aws-sdk/lib-storage": "npm:3.433.0" "@aws-sdk/s3-request-presigner": "npm:3.433.0" "@aws-sdk/types": "npm:3.433.0" - "@strapi/pack-up": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft -"@strapi/provider-upload-cloudinary@npm:4.15.4, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": +"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.1, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": version: 0.0.0-use.local resolution: "@strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary" dependencies: - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" cloudinary: "npm:^1.41.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" into-stream: "npm:^5.1.0" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -9933,16 +9933,16 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-upload-local@npm:4.15.4, @strapi/provider-upload-local@workspace:packages/providers/upload-local": +"@strapi/provider-upload-local@npm:4.15.5-alpha.1, @strapi/provider-upload-local@workspace:packages/providers/upload-local": version: 0.0.0-use.local resolution: "@strapi/provider-upload-local@workspace:packages/providers/upload-local" dependencies: - "@strapi/pack-up": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" fs-extra: "npm:10.0.0" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" languageName: unknown linkType: soft @@ -10014,28 +10014,28 @@ __metadata: languageName: node linkType: hard -"@strapi/strapi@npm:4.15.4, @strapi/strapi@workspace:packages/core/strapi": +"@strapi/strapi@npm:4.15.5-alpha.1, @strapi/strapi@workspace:packages/core/strapi": version: 0.0.0-use.local resolution: "@strapi/strapi@workspace:packages/core/strapi" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/admin": "npm:4.15.4" - "@strapi/data-transfer": "npm:4.15.4" - "@strapi/database": "npm:4.15.4" - "@strapi/generate-new": "npm:4.15.4" - "@strapi/generators": "npm:4.15.4" - "@strapi/logger": "npm:4.15.4" + "@strapi/admin": "npm:4.15.5-alpha.1" + "@strapi/data-transfer": "npm:4.15.5-alpha.1" + "@strapi/database": "npm:4.15.5-alpha.1" + "@strapi/generate-new": "npm:4.15.5-alpha.1" + "@strapi/generators": "npm:4.15.5-alpha.1" + "@strapi/logger": "npm:4.15.5-alpha.1" "@strapi/pack-up": "workspace:*" - "@strapi/permissions": "npm:4.15.4" - "@strapi/plugin-content-manager": "npm:4.15.4" - "@strapi/plugin-content-type-builder": "npm:4.15.4" - "@strapi/plugin-email": "npm:4.15.4" - "@strapi/plugin-upload": "npm:4.15.4" + "@strapi/permissions": "npm:4.15.5-alpha.1" + "@strapi/plugin-content-manager": "npm:4.15.5-alpha.1" + "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.1" + "@strapi/plugin-email": "npm:4.15.5-alpha.1" + "@strapi/plugin-upload": "npm:4.15.5-alpha.1" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/types": "npm:4.15.4" - "@strapi/typescript-utils": "npm:4.15.4" - "@strapi/utils": "npm:4.15.4" + "@strapi/types": "npm:4.15.5-alpha.1" + "@strapi/typescript-utils": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.1" "@types/bcryptjs": "npm:2.4.3" "@types/configstore": "npm:5.0.1" "@types/delegates": "npm:1.0.0" @@ -10061,7 +10061,7 @@ __metadata: debug: "npm:4.3.4" delegates: "npm:1.0.0" dotenv: "npm:14.2.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" glob: "npm:7.2.3" @@ -10091,7 +10091,7 @@ __metadata: semver: "npm:7.5.4" statuses: "npm:2.0.1" supertest: "npm:6.3.3" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" typescript: "npm:5.2.2" yup: "npm:0.32.9" bin: @@ -10128,29 +10128,29 @@ __metadata: languageName: node linkType: hard -"@strapi/types@npm:4.15.4, @strapi/types@workspace:packages/core/types": +"@strapi/types@npm:4.15.5-alpha.1, @strapi/types@workspace:packages/core/types": version: 0.0.0-use.local resolution: "@strapi/types@workspace:packages/core/types" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/database": "npm:4.15.4" - "@strapi/logger": "npm:4.15.4" - "@strapi/pack-up": "npm:4.15.4" - "@strapi/permissions": "npm:4.15.4" + "@strapi/database": "npm:4.15.5-alpha.1" + "@strapi/logger": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/permissions": "npm:4.15.5-alpha.1" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/utils": "npm:4.15.4" + "@strapi/utils": "npm:4.15.5-alpha.1" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" "@types/koa__router": "npm:12.0.0" "@types/node-schedule": "npm:2.1.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" https-proxy-agent: "npm:5.0.1" koa: "npm:2.13.4" node-fetch: "npm:2.7.0" node-schedule: "npm:2.1.0" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" typescript: "npm:5.2.2" languageName: unknown linkType: soft @@ -10169,7 +10169,7 @@ __metadata: languageName: node linkType: hard -"@strapi/typescript-utils@npm:4.15.4, @strapi/typescript-utils@workspace:packages/utils/typescript": +"@strapi/typescript-utils@npm:4.15.5-alpha.1, @strapi/typescript-utils@workspace:packages/utils/typescript": version: 0.0.0-use.local resolution: "@strapi/typescript-utils@workspace:packages/utils/typescript" dependencies: @@ -10228,22 +10228,22 @@ __metadata: languageName: node linkType: hard -"@strapi/utils@npm:4.15.4, @strapi/utils@workspace:packages/core/utils": +"@strapi/utils@npm:4.15.5-alpha.1, @strapi/utils@workspace:packages/core/utils": version: 0.0.0-use.local resolution: "@strapi/utils@workspace:packages/core/utils" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.4" + "@strapi/pack-up": "npm:4.15.5-alpha.1" "@types/koa": "npm:2.13.4" "@types/node": "npm:18.18.4" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" http-errors: "npm:1.8.1" koa: "npm:2.13.4" koa-body: "npm:4.2.0" lodash: "npm:4.17.21" p-map: "npm:4.0.0" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" yup: "npm:0.32.9" languageName: unknown linkType: soft @@ -15642,12 +15642,12 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-app@workspace:packages/cli/create-strapi-app" dependencies: - "@strapi/generate-new": "npm:4.15.4" - "@strapi/pack-up": "npm:4.15.4" + "@strapi/generate-new": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.1" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" inquirer: "npm:8.2.5" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" bin: create-strapi-app: ./bin/index.js languageName: unknown @@ -15657,17 +15657,17 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-starter@workspace:packages/cli/create-strapi-starter" dependencies: - "@strapi/generate-new": "npm:4.15.4" - "@strapi/pack-up": "npm:4.15.4" + "@strapi/generate-new": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.1" chalk: "npm:4.1.2" ci-info: "npm:3.8.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.4" + eslint-config-custom: "npm:4.15.5-alpha.1" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" inquirer: "npm:8.2.5" ora: "npm:5.4.1" - tsconfig: "npm:4.15.4" + tsconfig: "npm:4.15.5-alpha.1" bin: create-strapi-starter: ./bin/index.js languageName: unknown @@ -17570,7 +17570,7 @@ __metadata: languageName: node linkType: hard -"eslint-config-custom@npm:4.15.4, eslint-config-custom@workspace:packages/utils/eslint-config-custom": +"eslint-config-custom@npm:4.15.5-alpha.1, eslint-config-custom@workspace:packages/utils/eslint-config-custom": version: 0.0.0-use.local resolution: "eslint-config-custom@workspace:packages/utils/eslint-config-custom" languageName: unknown @@ -19498,16 +19498,16 @@ __metadata: resolution: "getstarted@workspace:examples/getstarted" dependencies: "@strapi/icons": "npm:1.11.0" - "@strapi/plugin-color-picker": "npm:4.15.4" - "@strapi/plugin-documentation": "npm:4.15.4" - "@strapi/plugin-graphql": "npm:4.15.4" - "@strapi/plugin-i18n": "npm:4.15.4" - "@strapi/plugin-sentry": "npm:4.15.4" - "@strapi/plugin-users-permissions": "npm:4.15.4" - "@strapi/provider-email-mailgun": "npm:4.15.4" - "@strapi/provider-upload-aws-s3": "npm:4.15.4" - "@strapi/provider-upload-cloudinary": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" + "@strapi/plugin-color-picker": "npm:4.15.5-alpha.1" + "@strapi/plugin-documentation": "npm:4.15.5-alpha.1" + "@strapi/plugin-graphql": "npm:4.15.5-alpha.1" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.1" + "@strapi/plugin-sentry": "npm:4.15.5-alpha.1" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.1" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.1" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.1" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" better-sqlite3: "npm:8.6.0" lodash: "npm:4.17.21" mysql: "npm:2.18.1" @@ -23025,9 +23025,9 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink-ts@workspace:examples/kitchensink-ts" dependencies: - "@strapi/plugin-i18n": "npm:4.15.4" - "@strapi/plugin-users-permissions": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.1" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" better-sqlite3: "npm:8.6.0" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" @@ -23040,10 +23040,10 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink@workspace:examples/kitchensink" dependencies: - "@strapi/provider-email-mailgun": "npm:4.15.4" - "@strapi/provider-upload-aws-s3": "npm:4.15.4" - "@strapi/provider-upload-cloudinary": "npm:4.15.4" - "@strapi/strapi": "npm:4.15.4" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.1" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.1" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.1" lodash: "npm:4.17.21" mysql: "npm:2.18.1" mysql2: "npm:3.6.0" @@ -31985,7 +31985,7 @@ __metadata: languageName: node linkType: hard -"tsconfig@npm:4.15.4, tsconfig@workspace:packages/utils/tsconfig": +"tsconfig@npm:4.15.5-alpha.1, tsconfig@workspace:packages/utils/tsconfig": version: 0.0.0-use.local resolution: "tsconfig@workspace:packages/utils/tsconfig" dependencies: From ae4ceab05278f4b5ff79fa3af8b9417f20873ae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20de=20Juvigny?= Date: Tue, 14 Nov 2023 15:22:12 +0100 Subject: [PATCH 21/43] add types and comment --- .../admin/admin/src/pages/ProfilePage.tsx | 27 ++++++++++++++----- packages/core/admin/shared/contracts/users.ts | 23 +++++++++------- 2 files changed, 34 insertions(+), 16 deletions(-) diff --git a/packages/core/admin/admin/src/pages/ProfilePage.tsx b/packages/core/admin/admin/src/pages/ProfilePage.tsx index 5364d267c0e..6eb97b8c59d 100644 --- a/packages/core/admin/admin/src/pages/ProfilePage.tsx +++ b/packages/core/admin/admin/src/pages/ProfilePage.tsx @@ -131,10 +131,24 @@ const ProfilePage = () => { UpdateUsersMeBody >( async (body) => { - const { confirmPassword: _confirmPassword, currentTheme, ...dataToSend } = body; - - if (dataToSend.password === '') { - delete dataToSend.password; + const { confirmPassword: _confirmPassword, currentTheme, ...bodyRest } = body; + let dataToSend = bodyRest; + + const isPasswordRequestBody = ( + data: UpdateMe.Request['body'] + ): data is UpdateMe.PasswordRequestBody => { + return 'password' in data; + }; + + // The password fields are optional. If the user didn't touch them, don't send any password + // to the API, because an empty string would throw a validation error + if (isPasswordRequestBody(dataToSend) && dataToSend.password === '') { + const { + password: _password, + currentPassword: _currentPassword, + ...passwordRequestBodyRest + } = dataToSend; + dataToSend = passwordRequestBodyRest; } const { data } = await put('/admin/users/me', dataToSend); @@ -259,8 +273,7 @@ const ProfilePage = () => { username, preferedLanguage, currentTheme, - password, - confirmPassword, + ...passwordValues }, handleChange, isSubmitting, @@ -298,7 +311,7 @@ const ProfilePage = () => { )} Date: Tue, 14 Nov 2023 15:56:33 +0100 Subject: [PATCH 22/43] chore: add comment to cleanup method --- packages/core/admin/_internal/node/develop.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index a9af9ac013d..c1aa2f88677 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -27,6 +27,7 @@ interface DevelopOptions extends CLIContext { watchAdmin?: boolean; } +// This method removes all non-admin build files from the dist directory const cleanupDistDirectory = async ({ tsconfig, logger, From dffb2ce6d6bb1f696f320fca1a6b989dffb4f872 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 15:58:55 +0100 Subject: [PATCH 23/43] fix: use tsconfig.config for ts project check --- packages/core/admin/_internal/node/develop.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index c1aa2f88677..950230e7e47 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -85,7 +85,7 @@ const develop = async ({ return; } - if (tsconfig) { + if (tsconfig?.config) { // Build without diagnostics in case schemas have changed await cleanupDistDirectory({ tsconfig, logger, timer }); await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: true } }); @@ -126,7 +126,7 @@ const develop = async ({ cluster.on('message', async (worker, message) => { switch (message) { case 'reload': { - if (tsconfig) { + if (tsconfig?.config) { // Build without diagnostics in case schemas have changed await cleanupDistDirectory({ tsconfig, logger, timer }); await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: true } }); From 82ef97a8d4163aad7d46c4ee0ee8627189026c15 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 16:40:55 +0100 Subject: [PATCH 24/43] chore: replace fs-extra --- packages/core/admin/_internal/node/develop.ts | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index 950230e7e47..f40abe00dd5 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -2,7 +2,7 @@ import type { CLIContext } from '@strapi/strapi'; import * as tsUtils from '@strapi/typescript-utils'; import { joinBy } from '@strapi/utils'; import chokidar from 'chokidar'; -import * as fs from 'fs-extra'; +import fs from 'node:fs/promises'; import path from 'node:path'; import cluster from 'node:cluster'; @@ -35,9 +35,16 @@ const cleanupDistDirectory = async ({ }: Pick & { timer: TimeMeasurer }) => { const distDir = tsconfig?.config?.options?.outDir; - if (!distDir || !(await fs.pathExists(distDir))) { + if ( + !distDir || // we don't have a dist dir + (await fs + .access(distDir) + .then(() => false) + .catch(() => true)) // it doesn't exist -- if it does but no access, that will be caught later + ) { return; } + const timerName = 'cleaningDist' + Date.now(); timer.start(timerName); const cleaningSpinner = logger.spinner(`Cleaning dist dir ${distDir}`).start(); @@ -48,7 +55,7 @@ const cleanupDistDirectory = async ({ // Ignore the admin build folder .filter((filename) => filename !== 'build'); for (const filename of validFilenames) { - await fs.remove(path.resolve(distDir, filename)); + await fs.rm(path.resolve(distDir, filename), { recursive: true }); } } catch (err: unknown) { const generatingDuration = timer.end(timerName); From daa0b1917956aacc19ba0f18dd75da3abd499919 Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Tue, 14 Nov 2023 16:56:43 +0100 Subject: [PATCH 25/43] fix: build webpackwatcher before loading strapi instance --- packages/core/admin/_internal/node/develop.ts | 67 +++++++++---------- 1 file changed, 33 insertions(+), 34 deletions(-) diff --git a/packages/core/admin/_internal/node/develop.ts b/packages/core/admin/_internal/node/develop.ts index f40abe00dd5..58ff11cc721 100644 --- a/packages/core/admin/_internal/node/develop.ts +++ b/packages/core/admin/_internal/node/develop.ts @@ -169,40 +169,6 @@ const develop = async ({ autoReload: true, serveAdminPanel: !watchAdmin, }); - - const strapiInstance = await strapi.load(); - - const loadStrapiDuration = timer.end('loadStrapi'); - loadStrapiSpinner.text = `Loading Strapi (${prettyTime(loadStrapiDuration)})`; - loadStrapiSpinner.succeed(); - - timer.start('generatingTS'); - const generatingTsSpinner = logger.spinner(`Generating types`).start(); - - await tsUtils.generators.generate({ - strapi: strapiInstance, - pwd: cwd, - rootDir: undefined, - logger: { silent: true, debug: false }, - artifacts: { contentTypes: true, components: true }, - }); - - const generatingDuration = timer.end('generatingTS'); - generatingTsSpinner.text = `Generating types (${prettyTime(generatingDuration)})`; - generatingTsSpinner.succeed(); - - if (tsconfig?.config) { - timer.start('compilingTS'); - const compilingTsSpinner = logger.spinner(`Compiling TS`).start(); - - await cleanupDistDirectory({ tsconfig, logger, timer }); - await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); - - const compilingDuration = timer.end('compilingTS'); - compilingTsSpinner.text = `Compiling TS (${prettyTime(compilingDuration)})`; - compilingTsSpinner.succeed(); - } - let webpackWatcher: WebpackWatcher | undefined; /** @@ -237,6 +203,39 @@ const develop = async ({ adminSpinner.succeed(); } + const strapiInstance = await strapi.load(); + + const loadStrapiDuration = timer.end('loadStrapi'); + loadStrapiSpinner.text = `Loading Strapi (${prettyTime(loadStrapiDuration)})`; + loadStrapiSpinner.succeed(); + + timer.start('generatingTS'); + const generatingTsSpinner = logger.spinner(`Generating types`).start(); + + await tsUtils.generators.generate({ + strapi: strapiInstance, + pwd: cwd, + rootDir: undefined, + logger: { silent: true, debug: false }, + artifacts: { contentTypes: true, components: true }, + }); + + const generatingDuration = timer.end('generatingTS'); + generatingTsSpinner.text = `Generating types (${prettyTime(generatingDuration)})`; + generatingTsSpinner.succeed(); + + if (tsconfig?.config) { + timer.start('compilingTS'); + const compilingTsSpinner = logger.spinner(`Compiling TS`).start(); + + await cleanupDistDirectory({ tsconfig, logger, timer }); + await tsUtils.compile(cwd, { configOptions: { ignoreDiagnostics: false } }); + + const compilingDuration = timer.end('compilingTS'); + compilingTsSpinner.text = `Compiling TS (${prettyTime(compilingDuration)})`; + compilingTsSpinner.succeed(); + } + const restart = async () => { if (strapiInstance.reload.isWatching && !strapiInstance.reload.isReloading) { strapiInstance.reload.isReloading = true; From 180e3acca9f4bc3ce9f79c293a311b3791ffdd5a Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Tue, 14 Nov 2023 17:24:18 +0100 Subject: [PATCH 26/43] v4.15.5-alpha.2 --- .github/actions/check-pr-status/package.json | 2 +- examples/getstarted/package.json | 22 +- examples/kitchensink-ts/package.json | 8 +- examples/kitchensink/package.json | 10 +- lerna.json | 2 +- packages/admin-test-utils/package.json | 6 +- packages/cli/create-strapi-app/package.json | 10 +- .../cli/create-strapi-starter/package.json | 10 +- packages/core/admin/package.json | 22 +- packages/core/content-manager/package.json | 4 +- .../core/content-type-builder/package.json | 12 +- packages/core/data-transfer/package.json | 12 +- packages/core/database/package.json | 10 +- packages/core/email/package.json | 12 +- packages/core/helper-plugin/package.json | 10 +- packages/core/permissions/package.json | 10 +- packages/core/strapi/package.json | 36 +- packages/core/types/package.json | 16 +- packages/core/upload/package.json | 12 +- packages/core/utils/package.json | 8 +- packages/generators/app/package.json | 4 +- packages/generators/generators/package.json | 12 +- packages/plugins/cloud/package.json | 10 +- packages/plugins/color-picker/package.json | 6 +- packages/plugins/documentation/package.json | 10 +- packages/plugins/graphql/package.json | 10 +- packages/plugins/i18n/package.json | 10 +- packages/plugins/sentry/package.json | 8 +- .../plugins/users-permissions/package.json | 10 +- .../providers/audit-logs-local/package.json | 10 +- .../providers/email-amazon-ses/package.json | 10 +- packages/providers/email-mailgun/package.json | 10 +- .../providers/email-nodemailer/package.json | 8 +- .../providers/email-sendgrid/package.json | 10 +- .../providers/email-sendmail/package.json | 10 +- packages/providers/upload-aws-s3/package.json | 8 +- .../providers/upload-cloudinary/package.json | 10 +- packages/providers/upload-local/package.json | 10 +- packages/utils/api-tests/package.json | 2 +- .../utils/eslint-config-custom/package.json | 2 +- packages/utils/logger/package.json | 8 +- packages/utils/pack-up/package.json | 6 +- packages/utils/tsconfig/package.json | 2 +- packages/utils/typescript/package.json | 2 +- scripts/front/package.json | 2 +- yarn.lock | 394 +++++++++--------- 46 files changed, 409 insertions(+), 409 deletions(-) diff --git a/.github/actions/check-pr-status/package.json b/.github/actions/check-pr-status/package.json index 5a3401f4b5a..430fa7f2c39 100644 --- a/.github/actions/check-pr-status/package.json +++ b/.github/actions/check-pr-status/package.json @@ -1,6 +1,6 @@ { "name": "check-pr-status", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "license": "MIT", "main": "dist/index.js", diff --git a/examples/getstarted/package.json b/examples/getstarted/package.json index 25ba69e0658..e2380097cc2 100644 --- a/examples/getstarted/package.json +++ b/examples/getstarted/package.json @@ -1,6 +1,6 @@ { "name": "getstarted", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -14,16 +14,16 @@ }, "dependencies": { "@strapi/icons": "1.11.0", - "@strapi/plugin-color-picker": "4.15.5-alpha.1", - "@strapi/plugin-documentation": "4.15.5-alpha.1", - "@strapi/plugin-graphql": "4.15.5-alpha.1", - "@strapi/plugin-i18n": "4.15.5-alpha.1", - "@strapi/plugin-sentry": "4.15.5-alpha.1", - "@strapi/plugin-users-permissions": "4.15.5-alpha.1", - "@strapi/provider-email-mailgun": "4.15.5-alpha.1", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.1", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/plugin-color-picker": "4.15.5-alpha.2", + "@strapi/plugin-documentation": "4.15.5-alpha.2", + "@strapi/plugin-graphql": "4.15.5-alpha.2", + "@strapi/plugin-i18n": "4.15.5-alpha.2", + "@strapi/plugin-sentry": "4.15.5-alpha.2", + "@strapi/plugin-users-permissions": "4.15.5-alpha.2", + "@strapi/provider-email-mailgun": "4.15.5-alpha.2", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.2", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "better-sqlite3": "8.6.0", "lodash": "4.17.21", "mysql": "2.18.1", diff --git a/examples/kitchensink-ts/package.json b/examples/kitchensink-ts/package.json index 2856143b0f7..a2b956b7e8c 100644 --- a/examples/kitchensink-ts/package.json +++ b/examples/kitchensink-ts/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink-ts", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "description": "A Strapi application", "license": "MIT", @@ -14,9 +14,9 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/plugin-i18n": "4.15.5-alpha.1", - "@strapi/plugin-users-permissions": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/plugin-i18n": "4.15.5-alpha.2", + "@strapi/plugin-users-permissions": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "better-sqlite3": "8.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/kitchensink/package.json b/examples/kitchensink/package.json index 0947b0b6c0f..65e34c22306 100644 --- a/examples/kitchensink/package.json +++ b/examples/kitchensink/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -13,10 +13,10 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/provider-email-mailgun": "4.15.5-alpha.1", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.1", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/provider-email-mailgun": "4.15.5-alpha.2", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.2", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "lodash": "4.17.21", "mysql": "2.18.1", "mysql2": "3.6.0", diff --git a/lerna.json b/lerna.json index 2845e6fd6d5..6b5b4647090 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "packages": ["packages/*", "examples/*"], "npmClient": "yarn", "useWorkspaces": true, diff --git a/packages/admin-test-utils/package.json b/packages/admin-test-utils/package.json index 0a5cf9a40f5..f4add207af3 100644 --- a/packages/admin-test-utils/package.json +++ b/packages/admin-test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin-test-utils", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "description": "Test utilities for the Strapi administration panel", "license": "MIT", @@ -75,8 +75,8 @@ "@reduxjs/toolkit": "1.9.7", "@strapi/pack-up": "workspace:*", "@testing-library/jest-dom": "5.16.5", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "peerDependencies": { "@reduxjs/toolkit": "^1.9.7", diff --git a/packages/cli/create-strapi-app/package.json b/packages/cli/create-strapi-app/package.json index fc04899720f..6a206198663 100644 --- a/packages/cli/create-strapi-app/package.json +++ b/packages/cli/create-strapi-app/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-app", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-app", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.1", + "@strapi/generate-new": "4.15.5-alpha.2", "commander": "8.3.0", "inquirer": "8.2.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/cli/create-strapi-starter/package.json b/packages/cli/create-strapi-starter/package.json index 1b2f5b72fcf..a09de821471 100644 --- a/packages/cli/create-strapi-starter/package.json +++ b/packages/cli/create-strapi-starter/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-starter", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-starter", @@ -44,7 +44,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.1", + "@strapi/generate-new": "4.15.5-alpha.2", "chalk": "4.1.2", "ci-info": "3.8.0", "commander": "8.3.0", @@ -54,9 +54,9 @@ "ora": "5.4.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index 805e7a363a5..29bb8a4715b 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Strapi Admin", "repository": { "type": "git", @@ -75,15 +75,15 @@ "@radix-ui/react-context": "1.0.1", "@radix-ui/react-toolbar": "1.0.4", "@reduxjs/toolkit": "1.9.7", - "@strapi/data-transfer": "4.15.5-alpha.1", + "@strapi/data-transfer": "4.15.5-alpha.2", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/permissions": "4.15.5-alpha.1", - "@strapi/provider-audit-logs-local": "4.15.5-alpha.1", - "@strapi/types": "4.15.5-alpha.1", - "@strapi/typescript-utils": "4.15.5-alpha.1", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/permissions": "4.15.5-alpha.2", + "@strapi/provider-audit-logs-local": "4.15.5-alpha.2", + "@strapi/types": "4.15.5-alpha.2", + "@strapi/typescript-utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.2", "axios": "1.6.0", "bcryptjs": "2.4.3", "boxen": "5.1.2", @@ -172,9 +172,9 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/admin-test-utils": "4.15.5-alpha.1", - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/admin-test-utils": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/content-manager/package.json b/packages/core/content-manager/package.json index 8f5a16035a7..63e760fec5a 100644 --- a/packages/core/content-manager/package.json +++ b/packages/core/content-manager/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-manager", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "A powerful UI to easily manage your data.", "repository": { "type": "git", @@ -26,7 +26,7 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "lodash": "4.17.21", "qs": "6.11.1" }, diff --git a/packages/core/content-type-builder/package.json b/packages/core/content-type-builder/package.json index 08405fcb35a..ddff3093186 100644 --- a/packages/core/content-type-builder/package.json +++ b/packages/core/content-type-builder/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-type-builder", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Strapi plugin to create content type", "repository": { "type": "git", @@ -49,10 +49,10 @@ "dependencies": { "@sindresorhus/slugify": "1.1.0", "@strapi/design-system": "1.13.0", - "@strapi/generators": "4.15.5-alpha.1", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/generators": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "fs-extra": "10.0.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "@testing-library/react": "14.0.0", "history": "^4.9.0", "react": "^18.2.0", diff --git a/packages/core/data-transfer/package.json b/packages/core/data-transfer/package.json index a261eb1619c..3a07ed6966d 100644 --- a/packages/core/data-transfer/package.json +++ b/packages/core/data-transfer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/data-transfer", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Data transfer capabilities for Strapi", "keywords": [ "strapi", @@ -41,10 +41,10 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/logger": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", - "@strapi/types": "4.15.5-alpha.1", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/logger": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/types": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.2", "chalk": "4.1.2", "cli-table3": "0.6.2", "commander": "8.3.0", @@ -61,7 +61,7 @@ "ws": "8.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@strapi/strapi": "4.15.2", "@types/fs-extra": "9.0.13", "@types/jest": "29.5.2", diff --git a/packages/core/database/package.json b/packages/core/database/package.json index 86869f35965..03293ff47e8 100644 --- a/packages/core/database/package.json +++ b/packages/core/database/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/database", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Strapi's database layer", "homepage": "https://strapi.io", "bugs": { @@ -40,7 +40,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "date-fns": "2.30.0", "debug": "4.3.4", "fs-extra": "10.0.0", @@ -50,9 +50,9 @@ "umzug": "3.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/email/package.json b/packages/core/email/package.json index ff007b5af96..2a69243f14d 100644 --- a/packages/core/email/package.json +++ b/packages/core/email/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-email", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Easily configure your Strapi application to send emails.", "repository": { "type": "git", @@ -54,10 +54,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/provider-email-sendmail": "4.15.5-alpha.1", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/provider-email-sendmail": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.2", "lodash": "4.17.21", "prop-types": "^15.8.1", "react-intl": "6.4.1", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/types": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/types": "4.15.5-alpha.2", "@testing-library/react": "14.0.0", "@types/koa": "2.13.4", "@types/lodash": "^4.14.191", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index a7b2422f9cb..838db376306 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/helper-plugin", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Helper for Strapi plugins development", "repository": { "type": "git", @@ -69,11 +69,11 @@ "@storybook/addon-mdx-gfm": "7.4.0", "@storybook/builder-vite": "7.4.0", "@storybook/react-vite": "7.4.0", - "@strapi/admin-test-utils": "4.15.5-alpha.1", + "@strapi/admin-test-utils": "4.15.5-alpha.2", "@strapi/design-system": "1.13.0", "@strapi/icons": "1.13.0", - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/types": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/types": "4.15.5-alpha.2", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/react": "18.2.7", @@ -82,7 +82,7 @@ "@types/react-router-dom": "5.3.3", "@types/styled-components": "5.1.26", "cross-env": "^7.0.3", - "eslint-config-custom": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.2", "eslint-plugin-storybook": "0.6.14", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/core/permissions/package.json b/packages/core/permissions/package.json index 23362b3cce7..60bc47e5ecb 100644 --- a/packages/core/permissions/package.json +++ b/packages/core/permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/permissions", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Strapi's permission layer.", "repository": { "type": "git", @@ -38,15 +38,15 @@ }, "dependencies": { "@casl/ability": "6.5.0", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "lodash": "4.17.21", "qs": "6.11.1", "sift": "16.0.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/strapi/package.json b/packages/core/strapi/package.json index 23b7b04b0b9..d27ed3c3823 100644 --- a/packages/core/strapi/package.json +++ b/packages/core/strapi/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/strapi", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite", "keywords": [ "strapi", @@ -114,21 +114,21 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/admin": "4.15.5-alpha.1", - "@strapi/data-transfer": "4.15.5-alpha.1", - "@strapi/database": "4.15.5-alpha.1", - "@strapi/generate-new": "4.15.5-alpha.1", - "@strapi/generators": "4.15.5-alpha.1", - "@strapi/logger": "4.15.5-alpha.1", - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/permissions": "4.15.5-alpha.1", - "@strapi/plugin-content-manager": "4.15.5-alpha.1", - "@strapi/plugin-content-type-builder": "4.15.5-alpha.1", - "@strapi/plugin-email": "4.15.5-alpha.1", - "@strapi/plugin-upload": "4.15.5-alpha.1", - "@strapi/types": "4.15.5-alpha.1", - "@strapi/typescript-utils": "4.15.5-alpha.1", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/admin": "4.15.5-alpha.2", + "@strapi/data-transfer": "4.15.5-alpha.2", + "@strapi/database": "4.15.5-alpha.2", + "@strapi/generate-new": "4.15.5-alpha.2", + "@strapi/generators": "4.15.5-alpha.2", + "@strapi/logger": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/permissions": "4.15.5-alpha.2", + "@strapi/plugin-content-manager": "4.15.5-alpha.2", + "@strapi/plugin-content-type-builder": "4.15.5-alpha.2", + "@strapi/plugin-email": "4.15.5-alpha.2", + "@strapi/plugin-upload": "4.15.5-alpha.2", + "@strapi/types": "4.15.5-alpha.2", + "@strapi/typescript-utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.2", "bcryptjs": "2.4.3", "boxen": "5.1.2", "chalk": "4.1.2", @@ -188,9 +188,9 @@ "@types/node": "18.18.4", "@types/node-schedule": "2.1.0", "@types/statuses": "2.0.1", - "eslint-config-custom": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.2", "supertest": "6.3.3", - "tsconfig": "4.15.5-alpha.1" + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/types/package.json b/packages/core/types/package.json index 80c63a2fd27..458b8d465be 100644 --- a/packages/core/types/package.json +++ b/packages/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/types", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Shared typescript types for Strapi internal use", "keywords": [ "strapi" @@ -46,10 +46,10 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/database": "4.15.5-alpha.1", - "@strapi/logger": "4.15.5-alpha.1", - "@strapi/permissions": "4.15.5-alpha.1", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/database": "4.15.5-alpha.2", + "@strapi/logger": "4.15.5-alpha.2", + "@strapi/permissions": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.2", "commander": "8.3.0", "https-proxy-agent": "5.0.1", "koa": "2.13.4", @@ -57,14 +57,14 @@ "node-schedule": "2.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@strapi/ts-zen": "^0.2.0", "@types/jest": "29.5.2", "@types/koa": "2.13.4", "@types/koa__router": "12.0.0", "@types/node-schedule": "2.1.0", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2", "typescript": "5.2.2" }, "engines": { diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index c78426ecc2c..d3ee76b640f 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-upload", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Makes it easy to upload images and files to your Strapi Application.", "license": "SEE LICENSE IN LICENSE", "author": { @@ -44,10 +44,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/provider-upload-local": "4.15.5-alpha.1", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/provider-upload-local": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.2", "axios": "1.6.0", "byte-size": "7.0.1", "cropperjs": "1.6.0", @@ -71,8 +71,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 5fb27c94e3d..01058a50133 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/utils", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Shared utilities for the Strapi packages", "keywords": [ "strapi", @@ -53,13 +53,13 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@types/koa": "2.13.4", "@types/node": "18.18.4", - "eslint-config-custom": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.2", "koa": "2.13.4", "koa-body": "4.2.0", - "tsconfig": "4.15.5-alpha.1" + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/generators/app/package.json b/packages/generators/app/package.json index 4b0cc28653f..c8e41e8fa69 100644 --- a/packages/generators/app/package.json +++ b/packages/generators/app/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generate-new", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Generate a new Strapi application.", "keywords": [ "generate", @@ -58,7 +58,7 @@ "tar": "6.1.13" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "copyfiles": "2.4.1" }, "engines": { diff --git a/packages/generators/generators/package.json b/packages/generators/generators/package.json index c1b2d4098f7..3457a38e7c3 100644 --- a/packages/generators/generators/package.json +++ b/packages/generators/generators/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generators", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Interactive API generator.", "keywords": [ "strapi", @@ -47,8 +47,8 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "4.15.5-alpha.1", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/typescript-utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.2", "chalk": "4.1.2", "copyfiles": "2.4.1", "fs-extra": "10.0.0", @@ -57,9 +57,9 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/plugins/cloud/package.json b/packages/plugins/cloud/package.json index 7fa6b7bd9cb..61a86c3775a 100644 --- a/packages/plugins/cloud/package.json +++ b/packages/plugins/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-cloud", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Instructions to deploy your local project to Strapi Cloud", "license": "MIT", "author": { @@ -38,22 +38,22 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.2", "@types/react": "18.2.7", "@types/react-dom": "18.2.12", "@types/react-router-dom": "^5.3.3", "@types/styled-components": "5.1.26", - "eslint-config-custom": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.2", "react": "18.2.0", "react-dom": "18.2.0", "react-router-dom": "5.3.4", "styled-components": "5.3.3", - "tsconfig": "4.15.5-alpha.1", + "tsconfig": "4.15.5-alpha.2", "typescript": "5.2.2" }, "peerDependencies": { diff --git a/packages/plugins/color-picker/package.json b/packages/plugins/color-picker/package.json index 8a014155934..a2d4cb6288c 100644 --- a/packages/plugins/color-picker/package.json +++ b/packages/plugins/color-picker/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-color-picker", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Strapi maintained Custom Fields", "repository": { "type": "git", @@ -55,14 +55,14 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", "prop-types": "^15.8.1", "react-colorful": "5.6.1", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/strapi": "4.15.5-alpha.2", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/styled-components": "5.1.26", diff --git a/packages/plugins/documentation/package.json b/packages/plugins/documentation/package.json index 12658756582..b0eac34c6e6 100644 --- a/packages/plugins/documentation/package.json +++ b/packages/plugins/documentation/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-documentation", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.", "repository": { "type": "git", @@ -47,9 +47,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "bcryptjs": "2.4.3", "cheerio": "^1.0.0-rc.12", "formik": "2.4.0", @@ -67,8 +67,8 @@ }, "devDependencies": { "@apidevtools/swagger-parser": "^10.1.0", - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "msw": "1.3.0", diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index 8dc40d99965..641afecd2d4 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-graphql", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Adds GraphQL endpoint with default API methods.", "repository": { "type": "git", @@ -45,9 +45,9 @@ "@graphql-tools/schema": "8.5.1", "@graphql-tools/utils": "^8.13.1", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "apollo-server-core": "3.12.1", "apollo-server-koa": "3.10.0", "graphql": "^15.5.1", @@ -61,8 +61,8 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "cross-env": "^7.0.3", "koa": "2.13.4", "react": "^18.2.0", diff --git a/packages/plugins/i18n/package.json b/packages/plugins/i18n/package.json index 46d907374ad..eb40c46b06c 100644 --- a/packages/plugins/i18n/package.json +++ b/packages/plugins/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-i18n", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API", "repository": { "type": "git", @@ -50,9 +50,9 @@ "dependencies": { "@reduxjs/toolkit": "1.9.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "formik": "2.4.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -64,8 +64,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "@testing-library/react": "14.0.0", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index 3d3b7631cc1..5456e8b35d7 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-sentry", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Send Strapi error events to Sentry", "repository": { "type": "git", @@ -46,12 +46,12 @@ "dependencies": { "@sentry/node": "6.19.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "5.3.4", diff --git a/packages/plugins/users-permissions/package.json b/packages/plugins/users-permissions/package.json index 0d3adabc836..0ef9bcebb9a 100644 --- a/packages/plugins/users-permissions/package.json +++ b/packages/plugins/users-permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-users-permissions", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Protect your API with a full-authentication process based on JWT", "repository": { "type": "git", @@ -48,9 +48,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.1", + "@strapi/helper-plugin": "4.15.5-alpha.2", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "bcryptjs": "2.4.3", "formik": "2.4.0", "grant-koa": "5.4.8", @@ -69,8 +69,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/strapi": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.2", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/providers/audit-logs-local/package.json b/packages/providers/audit-logs-local/package.json index ee2176a459c..1beafa28a65 100644 --- a/packages/providers/audit-logs-local/package.json +++ b/packages/providers/audit-logs-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-audit-logs-local", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Local provider for strapi audit logs", "keywords": [ "audit-logs", @@ -42,10 +42,10 @@ "watch": "pack-up watch" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "@strapi/types": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/types": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-amazon-ses/package.json b/packages/providers/email-amazon-ses/package.json index a33fe81bbbc..973d28e67a6 100644 --- a/packages/providers/email-amazon-ses/package.json +++ b/packages/providers/email-amazon-ses/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-amazon-ses", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Amazon SES provider for strapi email", "keywords": [ "email", @@ -43,13 +43,13 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "node-ses": "^3.0.3" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-mailgun/package.json b/packages/providers/email-mailgun/package.json index 865d3686a15..0852c144d4a 100644 --- a/packages/providers/email-mailgun/package.json +++ b/packages/providers/email-mailgun/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-mailgun", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Mailgun provider for strapi email plugin", "keywords": [ "email", @@ -45,14 +45,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "form-data": "^4.0.0", "mailgun.js": "8.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-nodemailer/package.json b/packages/providers/email-nodemailer/package.json index 0c751509328..2aea664116d 100644 --- a/packages/providers/email-nodemailer/package.json +++ b/packages/providers/email-nodemailer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-nodemailer", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Nodemailer provider for Strapi 3", "keywords": [ "strapi", @@ -60,10 +60,10 @@ "nodemailer": "6.9.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@types/nodemailer": "6.4.7", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendgrid/package.json b/packages/providers/email-sendgrid/package.json index 703a2d18c42..71b2f247643 100644 --- a/packages/providers/email-sendgrid/package.json +++ b/packages/providers/email-sendgrid/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendgrid", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Sendgrid provider for strapi email", "keywords": [ "email", @@ -44,12 +44,12 @@ }, "dependencies": { "@sendgrid/mail": "7.7.0", - "@strapi/utils": "4.15.5-alpha.1" + "@strapi/utils": "4.15.5-alpha.2" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendmail/package.json b/packages/providers/email-sendmail/package.json index 7731268ada6..b12f4a977f2 100644 --- a/packages/providers/email-sendmail/package.json +++ b/packages/providers/email-sendmail/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendmail", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Sendmail provider for strapi email", "keywords": [ "email", @@ -42,14 +42,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "sendmail": "^1.6.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@types/sendmail": "1.4.4", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-aws-s3/package.json b/packages/providers/upload-aws-s3/package.json index e4fa1995e4a..5613b987afb 100644 --- a/packages/providers/upload-aws-s3/package.json +++ b/packages/providers/upload-aws-s3/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-aws-s3", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "AWS S3 provider for strapi upload", "keywords": [ "upload", @@ -53,10 +53,10 @@ "lodash": "4.17.21" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-cloudinary/package.json b/packages/providers/upload-cloudinary/package.json index 90a2f664a97..f96b2d382fc 100644 --- a/packages/providers/upload-cloudinary/package.json +++ b/packages/providers/upload-cloudinary/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-cloudinary", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Cloudinary provider for strapi upload", "keywords": [ "upload", @@ -43,14 +43,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "cloudinary": "^1.41.0", "into-stream": "^5.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-local/package.json b/packages/providers/upload-local/package.json index c493665a5c8..24fb5b00b0e 100644 --- a/packages/providers/upload-local/package.json +++ b/packages/providers/upload-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-local", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Local provider for strapi upload", "keywords": [ "upload", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.1", + "@strapi/utils": "4.15.5-alpha.2", "fs-extra": "10.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/api-tests/package.json b/packages/utils/api-tests/package.json index 6a1e90aecb8..82076c920a2 100644 --- a/packages/utils/api-tests/package.json +++ b/packages/utils/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "api-tests", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "dependencies": { "dotenv": "14.2.0", diff --git a/packages/utils/eslint-config-custom/package.json b/packages/utils/eslint-config-custom/package.json index 51ebf8f488e..5576308ac13 100644 --- a/packages/utils/eslint-config-custom/package.json +++ b/packages/utils/eslint-config-custom/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-custom", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "main": "index.js" } diff --git a/packages/utils/logger/package.json b/packages/utils/logger/package.json index 88225ecea53..5becaf31f8e 100644 --- a/packages/utils/logger/package.json +++ b/packages/utils/logger/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/logger", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Strapi's logger", "homepage": "https://strapi.io", "bugs": { @@ -43,9 +43,9 @@ "winston": "3.10.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", - "eslint-config-custom": "4.15.5-alpha.1", - "tsconfig": "4.15.5-alpha.1" + "@strapi/pack-up": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.2" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index 0f0c70a96c8..97df8d76c95 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/pack-up", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Simple tools for creating interoperable CJS & ESM packages.", "keywords": [ "strapi", @@ -84,11 +84,11 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.1", + "@strapi/pack-up": "4.15.5-alpha.2", "@types/git-url-parse": "9.0.1", "@types/ini": "1.3.31", "@types/prompts": "2.4.4", - "eslint-config-custom": "4.15.5-alpha.1", + "eslint-config-custom": "4.15.5-alpha.2", "rimraf": "3.0.2" }, "engines": { diff --git a/packages/utils/tsconfig/package.json b/packages/utils/tsconfig/package.json index e43a464746e..47925abd1ea 100644 --- a/packages/utils/tsconfig/package.json +++ b/packages/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "tsconfig", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "devDependencies": { "@tsconfig/node18": "18.2.2" diff --git a/packages/utils/typescript/package.json b/packages/utils/typescript/package.json index 2d83c09743c..7a685670dc3 100644 --- a/packages/utils/typescript/package.json +++ b/packages/utils/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/typescript-utils", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "description": "Typescript support for Strapi", "keywords": [ "strapi", diff --git a/scripts/front/package.json b/scripts/front/package.json index 422d9b54bbc..227c51997c1 100644 --- a/scripts/front/package.json +++ b/scripts/front/package.json @@ -1,6 +1,6 @@ { "name": "scripts-front", - "version": "4.15.5-alpha.1", + "version": "4.15.5-alpha.2", "private": true, "scripts": { "test:front": "jest --config jest.config.front.js" diff --git a/yarn.lock b/yarn.lock index 616515c475e..da791e403b5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8613,7 +8613,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin-test-utils@npm:4.15.5-alpha.1, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": +"@strapi/admin-test-utils@npm:4.15.5-alpha.2, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": version: 0.0.0-use.local resolution: "@strapi/admin-test-utils@workspace:packages/admin-test-utils" dependencies: @@ -8621,9 +8621,9 @@ __metadata: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/pack-up": "workspace:*" "@testing-library/jest-dom": "npm:5.16.5" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" jest-styled-components: "npm:7.1.1" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" whatwg-fetch: "npm:3.6.2" peerDependencies: "@reduxjs/toolkit": ^1.9.7 @@ -8746,7 +8746,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin@npm:4.15.5-alpha.1, @strapi/admin@workspace:packages/core/admin": +"@strapi/admin@npm:4.15.5-alpha.2, @strapi/admin@workspace:packages/core/admin": version: 0.0.0-use.local resolution: "@strapi/admin@workspace:packages/core/admin" dependencies: @@ -8755,18 +8755,18 @@ __metadata: "@radix-ui/react-context": "npm:1.0.1" "@radix-ui/react-toolbar": "npm:1.0.4" "@reduxjs/toolkit": "npm:1.9.7" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.1" - "@strapi/data-transfer": "npm:4.15.5-alpha.1" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.2" + "@strapi/data-transfer": "npm:4.15.5-alpha.2" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/permissions": "npm:4.15.5-alpha.1" - "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" - "@strapi/types": "npm:4.15.5-alpha.1" - "@strapi/typescript-utils": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/permissions": "npm:4.15.5-alpha.2" + "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/types": "npm:4.15.5-alpha.2" + "@strapi/typescript-utils": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -8902,15 +8902,15 @@ __metadata: languageName: node linkType: hard -"@strapi/data-transfer@npm:4.15.5-alpha.1, @strapi/data-transfer@workspace:packages/core/data-transfer": +"@strapi/data-transfer@npm:4.15.5-alpha.2, @strapi/data-transfer@workspace:packages/core/data-transfer": version: 0.0.0-use.local resolution: "@strapi/data-transfer@workspace:packages/core/data-transfer" dependencies: - "@strapi/logger": "npm:4.15.5-alpha.1" - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/logger": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.2" "@strapi/strapi": "npm:4.15.2" - "@strapi/types": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/types": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@types/fs-extra": "npm:9.0.13" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" @@ -8961,20 +8961,20 @@ __metadata: languageName: node linkType: hard -"@strapi/database@npm:4.15.5-alpha.1, @strapi/database@workspace:packages/core/database": +"@strapi/database@npm:4.15.5-alpha.2, @strapi/database@workspace:packages/core/database": version: 0.0.0-use.local resolution: "@strapi/database@workspace:packages/core/database" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" date-fns: "npm:2.30.0" debug: "npm:4.3.4" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" fs-extra: "npm:10.0.0" knex: "npm:2.5.0" lodash: "npm:4.17.21" semver: "npm:7.5.4" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" umzug: "npm:3.2.1" languageName: unknown linkType: soft @@ -9056,12 +9056,12 @@ __metadata: languageName: node linkType: hard -"@strapi/generate-new@npm:4.15.5-alpha.1, @strapi/generate-new@workspace:packages/generators/app": +"@strapi/generate-new@npm:4.15.5-alpha.2, @strapi/generate-new@workspace:packages/generators/app": version: 0.0.0-use.local resolution: "@strapi/generate-new@workspace:packages/generators/app" dependencies: "@sentry/node": "npm:6.19.7" - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" chalk: "npm:^4.1.2" copyfiles: "npm:2.4.1" execa: "npm:5.1.1" @@ -9093,22 +9093,22 @@ __metadata: languageName: node linkType: hard -"@strapi/generators@npm:4.15.5-alpha.1, @strapi/generators@workspace:packages/generators/generators": +"@strapi/generators@npm:4.15.5-alpha.2, @strapi/generators@workspace:packages/generators/generators": version: 0.0.0-use.local resolution: "@strapi/generators@workspace:packages/generators/generators" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/typescript-utils": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/typescript-utils": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" chalk: "npm:4.1.2" copyfiles: "npm:2.4.1" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" fs-extra: "npm:10.0.0" node-plop: "npm:0.26.3" plop: "npm:2.7.6" pluralize: "npm:8.0.0" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -9137,7 +9137,7 @@ __metadata: languageName: node linkType: hard -"@strapi/helper-plugin@npm:4.15.5-alpha.1, @strapi/helper-plugin@workspace:packages/core/helper-plugin": +"@strapi/helper-plugin@npm:4.15.5-alpha.2, @strapi/helper-plugin@workspace:packages/core/helper-plugin": version: 0.0.0-use.local resolution: "@strapi/helper-plugin@workspace:packages/core/helper-plugin" dependencies: @@ -9147,11 +9147,11 @@ __metadata: "@storybook/addon-mdx-gfm": "npm:7.4.0" "@storybook/builder-vite": "npm:7.4.0" "@storybook/react-vite": "npm:7.4.0" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.1" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.2" "@strapi/design-system": "npm:1.13.0" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/types": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/types": "npm:4.15.5-alpha.2" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/react": "npm:18.2.7" @@ -9162,7 +9162,7 @@ __metadata: axios: "npm:1.6.0" cross-env: "npm:^7.0.3" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" eslint-plugin-storybook: "npm:0.6.14" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9222,14 +9222,14 @@ __metadata: languageName: node linkType: hard -"@strapi/logger@npm:4.15.5-alpha.1, @strapi/logger@workspace:packages/utils/logger": +"@strapi/logger@npm:4.15.5-alpha.2, @strapi/logger@workspace:packages/utils/logger": version: 0.0.0-use.local resolution: "@strapi/logger@workspace:packages/utils/logger" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - eslint-config-custom: "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.2" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" winston: "npm:3.10.0" languageName: unknown linkType: soft @@ -9265,11 +9265,11 @@ __metadata: languageName: node linkType: hard -"@strapi/pack-up@npm:4.15.5-alpha.1, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": +"@strapi/pack-up@npm:4.15.5-alpha.2, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": version: 0.0.0-use.local resolution: "@strapi/pack-up@workspace:packages/utils/pack-up" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" "@types/git-url-parse": "npm:9.0.1" "@types/ini": "npm:1.3.31" "@types/prompts": "npm:2.4.4" @@ -9281,7 +9281,7 @@ __metadata: commander: "npm:8.3.0" esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" @@ -9314,18 +9314,18 @@ __metadata: languageName: node linkType: hard -"@strapi/permissions@npm:4.15.5-alpha.1, @strapi/permissions@workspace:packages/core/permissions": +"@strapi/permissions@npm:4.15.5-alpha.2, @strapi/permissions@workspace:packages/core/permissions": version: 0.0.0-use.local resolution: "@strapi/permissions@workspace:packages/core/permissions" dependencies: "@casl/ability": "npm:6.5.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" - eslint-config-custom: "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.2" lodash: "npm:4.17.21" qs: "npm:6.11.1" sift: "npm:16.0.1" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -9334,20 +9334,20 @@ __metadata: resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.2" "@types/react": "npm:18.2.7" "@types/react-dom": "npm:18.2.12" "@types/react-router-dom": "npm:^5.3.3" "@types/styled-components": "npm:5.1.26" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" react: "npm:18.2.0" react-dom: "npm:18.2.0" react-intl: "npm:6.4.1" react-router-dom: "npm:5.3.4" styled-components: "npm:5.3.3" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" typescript: "npm:5.2.2" peerDependencies: "@strapi/strapi": ^4.4.0 @@ -9358,14 +9358,14 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-color-picker@npm:4.15.5-alpha.1, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": +"@strapi/plugin-color-picker@npm:4.15.5-alpha.2, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": version: 0.0.0-use.local resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/strapi": "npm:4.15.5-alpha.2" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/styled-components": "npm:5.1.26" @@ -9398,12 +9398,12 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-manager@npm:4.15.5-alpha.1, @strapi/plugin-content-manager@workspace:packages/core/content-manager": +"@strapi/plugin-content-manager@npm:4.15.5-alpha.2, @strapi/plugin-content-manager@workspace:packages/core/content-manager": version: 0.0.0-use.local resolution: "@strapi/plugin-content-manager@workspace:packages/core/content-manager" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.2" lodash: "npm:4.17.21" qs: "npm:6.11.1" languageName: unknown @@ -9439,18 +9439,18 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.1, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": +"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.2, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": version: 0.0.0-use.local resolution: "@strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder" dependencies: "@sindresorhus/slugify": "npm:1.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/generators": "npm:4.15.5-alpha.1" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/generators": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@testing-library/react": "npm:14.0.0" fs-extra: "npm:10.0.0" history: "npm:^4.9.0" @@ -9476,17 +9476,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-documentation@npm:4.15.5-alpha.1, @strapi/plugin-documentation@workspace:packages/plugins/documentation": +"@strapi/plugin-documentation@npm:4.15.5-alpha.2, @strapi/plugin-documentation@workspace:packages/plugins/documentation": version: 0.0.0-use.local resolution: "@strapi/plugin-documentation@workspace:packages/plugins/documentation" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" bcryptjs: "npm:2.4.3" @@ -9541,17 +9541,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-email@npm:4.15.5-alpha.1, @strapi/plugin-email@workspace:packages/core/email": +"@strapi/plugin-email@npm:4.15.5-alpha.2, @strapi/plugin-email@workspace:packages/core/email": version: 0.0.0-use.local resolution: "@strapi/plugin-email@workspace:packages/core/email" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.1" - "@strapi/types": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.2" + "@strapi/types": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@testing-library/react": "npm:14.0.0" "@types/koa": "npm:2.13.4" "@types/lodash": "npm:^4.14.191" @@ -9575,18 +9575,18 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-graphql@npm:4.15.5-alpha.1, @strapi/plugin-graphql@workspace:packages/plugins/graphql": +"@strapi/plugin-graphql@npm:4.15.5-alpha.2, @strapi/plugin-graphql@workspace:packages/plugins/graphql": version: 0.0.0-use.local resolution: "@strapi/plugin-graphql@workspace:packages/plugins/graphql" dependencies: "@graphql-tools/schema": "npm:8.5.1" "@graphql-tools/utils": "npm:^8.13.1" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" apollo-server-core: "npm:3.12.1" apollo-server-koa: "npm:3.10.0" cross-env: "npm:^7.0.3" @@ -9613,17 +9613,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-i18n@npm:4.15.5-alpha.1, @strapi/plugin-i18n@workspace:packages/plugins/i18n": +"@strapi/plugin-i18n@npm:4.15.5-alpha.2, @strapi/plugin-i18n@workspace:packages/plugins/i18n": version: 0.0.0-use.local resolution: "@strapi/plugin-i18n@workspace:packages/plugins/i18n" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@testing-library/react": "npm:14.0.0" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9648,16 +9648,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-sentry@npm:4.15.5-alpha.1, @strapi/plugin-sentry@workspace:packages/plugins/sentry": +"@strapi/plugin-sentry@npm:4.15.5-alpha.2, @strapi/plugin-sentry@workspace:packages/plugins/sentry": version: 0.0.0-use.local resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry" dependencies: "@sentry/node": "npm:6.19.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" react-router-dom: "npm:5.3.4" @@ -9711,17 +9711,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-upload@npm:4.15.5-alpha.1, @strapi/plugin-upload@workspace:packages/core/upload": +"@strapi/plugin-upload@npm:4.15.5-alpha.2, @strapi/plugin-upload@workspace:packages/core/upload": version: 0.0.0-use.local resolution: "@strapi/plugin-upload@workspace:packages/core/upload" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/provider-upload-local": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/provider-upload-local": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9760,16 +9760,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-users-permissions@npm:4.15.5-alpha.1, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": +"@strapi/plugin-users-permissions@npm:4.15.5-alpha.2, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": version: 0.0.0-use.local resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.1" + "@strapi/helper-plugin": "npm:4.15.5-alpha.2" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9810,14 +9810,14 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.1, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": +"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.2, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": version: 0.0.0-use.local resolution: "@strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/types": "npm:4.15.5-alpha.1" - eslint-config-custom: "npm:4.15.5-alpha.1" - tsconfig: "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/types": "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -9825,24 +9825,24 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-amazon-ses@workspace:packages/providers/email-amazon-ses" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" - eslint-config-custom: "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.2" node-ses: "npm:^3.0.3" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft -"@strapi/provider-email-mailgun@npm:4.15.5-alpha.1, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": +"@strapi/provider-email-mailgun@npm:4.15.5-alpha.2, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": version: 0.0.0-use.local resolution: "@strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" - eslint-config-custom: "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.2" form-data: "npm:^4.0.0" mailgun.js: "npm:8.2.1" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -9850,12 +9850,12 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-nodemailer@workspace:packages/providers/email-nodemailer" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" "@types/nodemailer": "npm:6.4.7" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" lodash: "npm:4.17.21" nodemailer: "npm:6.9.1" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -9864,10 +9864,10 @@ __metadata: resolution: "@strapi/provider-email-sendgrid@workspace:packages/providers/email-sendgrid" dependencies: "@sendgrid/mail": "npm:7.7.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" - eslint-config-custom: "npm:4.15.5-alpha.1" - tsconfig: "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -9881,20 +9881,20 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-email-sendmail@npm:4.15.5-alpha.1, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": +"@strapi/provider-email-sendmail@npm:4.15.5-alpha.2, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": version: 0.0.0-use.local resolution: "@strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@types/sendmail": "npm:1.4.4" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" sendmail: "npm:^1.6.1" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft -"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.1, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": +"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.2, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": version: 0.0.0-use.local resolution: "@strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3" dependencies: @@ -9902,24 +9902,24 @@ __metadata: "@aws-sdk/lib-storage": "npm:3.433.0" "@aws-sdk/s3-request-presigner": "npm:3.433.0" "@aws-sdk/types": "npm:3.433.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft -"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.1, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": +"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.2, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": version: 0.0.0-use.local resolution: "@strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" cloudinary: "npm:^1.41.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" into-stream: "npm:^5.1.0" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -9933,16 +9933,16 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-upload-local@npm:4.15.5-alpha.1, @strapi/provider-upload-local@workspace:packages/providers/upload-local": +"@strapi/provider-upload-local@npm:4.15.5-alpha.2, @strapi/provider-upload-local@workspace:packages/providers/upload-local": version: 0.0.0-use.local resolution: "@strapi/provider-upload-local@workspace:packages/providers/upload-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" fs-extra: "npm:10.0.0" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" languageName: unknown linkType: soft @@ -10014,28 +10014,28 @@ __metadata: languageName: node linkType: hard -"@strapi/strapi@npm:4.15.5-alpha.1, @strapi/strapi@workspace:packages/core/strapi": +"@strapi/strapi@npm:4.15.5-alpha.2, @strapi/strapi@workspace:packages/core/strapi": version: 0.0.0-use.local resolution: "@strapi/strapi@workspace:packages/core/strapi" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/admin": "npm:4.15.5-alpha.1" - "@strapi/data-transfer": "npm:4.15.5-alpha.1" - "@strapi/database": "npm:4.15.5-alpha.1" - "@strapi/generate-new": "npm:4.15.5-alpha.1" - "@strapi/generators": "npm:4.15.5-alpha.1" - "@strapi/logger": "npm:4.15.5-alpha.1" + "@strapi/admin": "npm:4.15.5-alpha.2" + "@strapi/data-transfer": "npm:4.15.5-alpha.2" + "@strapi/database": "npm:4.15.5-alpha.2" + "@strapi/generate-new": "npm:4.15.5-alpha.2" + "@strapi/generators": "npm:4.15.5-alpha.2" + "@strapi/logger": "npm:4.15.5-alpha.2" "@strapi/pack-up": "workspace:*" - "@strapi/permissions": "npm:4.15.5-alpha.1" - "@strapi/plugin-content-manager": "npm:4.15.5-alpha.1" - "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.1" - "@strapi/plugin-email": "npm:4.15.5-alpha.1" - "@strapi/plugin-upload": "npm:4.15.5-alpha.1" + "@strapi/permissions": "npm:4.15.5-alpha.2" + "@strapi/plugin-content-manager": "npm:4.15.5-alpha.2" + "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.2" + "@strapi/plugin-email": "npm:4.15.5-alpha.2" + "@strapi/plugin-upload": "npm:4.15.5-alpha.2" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/types": "npm:4.15.5-alpha.1" - "@strapi/typescript-utils": "npm:4.15.5-alpha.1" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/types": "npm:4.15.5-alpha.2" + "@strapi/typescript-utils": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.2" "@types/bcryptjs": "npm:2.4.3" "@types/configstore": "npm:5.0.1" "@types/delegates": "npm:1.0.0" @@ -10061,7 +10061,7 @@ __metadata: debug: "npm:4.3.4" delegates: "npm:1.0.0" dotenv: "npm:14.2.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" glob: "npm:7.2.3" @@ -10091,7 +10091,7 @@ __metadata: semver: "npm:7.5.4" statuses: "npm:2.0.1" supertest: "npm:6.3.3" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" typescript: "npm:5.2.2" yup: "npm:0.32.9" bin: @@ -10128,29 +10128,29 @@ __metadata: languageName: node linkType: hard -"@strapi/types@npm:4.15.5-alpha.1, @strapi/types@workspace:packages/core/types": +"@strapi/types@npm:4.15.5-alpha.2, @strapi/types@workspace:packages/core/types": version: 0.0.0-use.local resolution: "@strapi/types@workspace:packages/core/types" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/database": "npm:4.15.5-alpha.1" - "@strapi/logger": "npm:4.15.5-alpha.1" - "@strapi/pack-up": "npm:4.15.5-alpha.1" - "@strapi/permissions": "npm:4.15.5-alpha.1" + "@strapi/database": "npm:4.15.5-alpha.2" + "@strapi/logger": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/permissions": "npm:4.15.5-alpha.2" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/utils": "npm:4.15.5-alpha.1" + "@strapi/utils": "npm:4.15.5-alpha.2" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" "@types/koa__router": "npm:12.0.0" "@types/node-schedule": "npm:2.1.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" https-proxy-agent: "npm:5.0.1" koa: "npm:2.13.4" node-fetch: "npm:2.7.0" node-schedule: "npm:2.1.0" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" typescript: "npm:5.2.2" languageName: unknown linkType: soft @@ -10169,7 +10169,7 @@ __metadata: languageName: node linkType: hard -"@strapi/typescript-utils@npm:4.15.5-alpha.1, @strapi/typescript-utils@workspace:packages/utils/typescript": +"@strapi/typescript-utils@npm:4.15.5-alpha.2, @strapi/typescript-utils@workspace:packages/utils/typescript": version: 0.0.0-use.local resolution: "@strapi/typescript-utils@workspace:packages/utils/typescript" dependencies: @@ -10228,22 +10228,22 @@ __metadata: languageName: node linkType: hard -"@strapi/utils@npm:4.15.5-alpha.1, @strapi/utils@workspace:packages/core/utils": +"@strapi/utils@npm:4.15.5-alpha.2, @strapi/utils@workspace:packages/core/utils": version: 0.0.0-use.local resolution: "@strapi/utils@workspace:packages/core/utils" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/pack-up": "npm:4.15.5-alpha.2" "@types/koa": "npm:2.13.4" "@types/node": "npm:18.18.4" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" http-errors: "npm:1.8.1" koa: "npm:2.13.4" koa-body: "npm:4.2.0" lodash: "npm:4.17.21" p-map: "npm:4.0.0" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" yup: "npm:0.32.9" languageName: unknown linkType: soft @@ -15642,12 +15642,12 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-app@workspace:packages/cli/create-strapi-app" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.1" - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/generate-new": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.2" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" inquirer: "npm:8.2.5" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" bin: create-strapi-app: ./bin/index.js languageName: unknown @@ -15657,17 +15657,17 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-starter@workspace:packages/cli/create-strapi-starter" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.1" - "@strapi/pack-up": "npm:4.15.5-alpha.1" + "@strapi/generate-new": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.2" chalk: "npm:4.1.2" ci-info: "npm:3.8.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.1" + eslint-config-custom: "npm:4.15.5-alpha.2" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" inquirer: "npm:8.2.5" ora: "npm:5.4.1" - tsconfig: "npm:4.15.5-alpha.1" + tsconfig: "npm:4.15.5-alpha.2" bin: create-strapi-starter: ./bin/index.js languageName: unknown @@ -17570,7 +17570,7 @@ __metadata: languageName: node linkType: hard -"eslint-config-custom@npm:4.15.5-alpha.1, eslint-config-custom@workspace:packages/utils/eslint-config-custom": +"eslint-config-custom@npm:4.15.5-alpha.2, eslint-config-custom@workspace:packages/utils/eslint-config-custom": version: 0.0.0-use.local resolution: "eslint-config-custom@workspace:packages/utils/eslint-config-custom" languageName: unknown @@ -19498,16 +19498,16 @@ __metadata: resolution: "getstarted@workspace:examples/getstarted" dependencies: "@strapi/icons": "npm:1.11.0" - "@strapi/plugin-color-picker": "npm:4.15.5-alpha.1" - "@strapi/plugin-documentation": "npm:4.15.5-alpha.1" - "@strapi/plugin-graphql": "npm:4.15.5-alpha.1" - "@strapi/plugin-i18n": "npm:4.15.5-alpha.1" - "@strapi/plugin-sentry": "npm:4.15.5-alpha.1" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.1" - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.1" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.1" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/plugin-color-picker": "npm:4.15.5-alpha.2" + "@strapi/plugin-documentation": "npm:4.15.5-alpha.2" + "@strapi/plugin-graphql": "npm:4.15.5-alpha.2" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.2" + "@strapi/plugin-sentry": "npm:4.15.5-alpha.2" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.2" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.2" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.2" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" better-sqlite3: "npm:8.6.0" lodash: "npm:4.17.21" mysql: "npm:2.18.1" @@ -23025,9 +23025,9 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink-ts@workspace:examples/kitchensink-ts" dependencies: - "@strapi/plugin-i18n": "npm:4.15.5-alpha.1" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.2" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" better-sqlite3: "npm:8.6.0" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" @@ -23040,10 +23040,10 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink@workspace:examples/kitchensink" dependencies: - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.1" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.1" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.1" - "@strapi/strapi": "npm:4.15.5-alpha.1" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.2" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.2" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.2" lodash: "npm:4.17.21" mysql: "npm:2.18.1" mysql2: "npm:3.6.0" @@ -31985,7 +31985,7 @@ __metadata: languageName: node linkType: hard -"tsconfig@npm:4.15.5-alpha.1, tsconfig@workspace:packages/utils/tsconfig": +"tsconfig@npm:4.15.5-alpha.2, tsconfig@workspace:packages/utils/tsconfig": version: 0.0.0-use.local resolution: "tsconfig@workspace:packages/utils/tsconfig" dependencies: From 25192249562d604cb2d1cef82453270e57a62b12 Mon Sep 17 00:00:00 2001 From: Josh <37798644+joshuaellis@users.noreply.github.com> Date: Wed, 15 Nov 2023 13:03:15 +0000 Subject: [PATCH 27/43] fix(admin): windows files paths do not make for module paths (#18797) --- .../node/core/admin-customisations.ts | 22 +++- .../core/admin/_internal/node/core/files.ts | 33 +++++- .../core/admin/_internal/node/core/plugins.ts | 102 +++++++++++------- .../_internal/node/createBuildContext.ts | 18 ++-- .../core/admin/_internal/node/staticFiles.ts | 12 +-- 5 files changed, 125 insertions(+), 62 deletions(-) diff --git a/packages/core/admin/_internal/node/core/admin-customisations.ts b/packages/core/admin/_internal/node/core/admin-customisations.ts index e6dabbdac0c..cae6af48534 100644 --- a/packages/core/admin/_internal/node/core/admin-customisations.ts +++ b/packages/core/admin/_internal/node/core/admin-customisations.ts @@ -1,5 +1,6 @@ import path from 'node:path'; -import fs from 'node:fs'; +import { convertSystemPathToModulePath, pathExists } from '../core/files'; +import { BuildContext } from '../createBuildContext'; const ADMIN_APP_FILES = ['app.js', 'app.mjs', 'app.ts', 'app.jsx', 'app.tsx']; @@ -11,15 +12,28 @@ interface AdminCustomisations { } interface AppFile { + /** + * The system path to the file + */ path: string; + /** + * The module path to the file i.e. how you would import it + */ + modulePath: string; } -const loadUserAppFile = async (appDir: string): Promise => { +const loadUserAppFile = async ({ + runtimeDir, + appDir, +}: Pick): Promise => { for (const file of ADMIN_APP_FILES) { const filePath = path.join(appDir, 'src', 'admin', file); - if (fs.existsSync(filePath)) { - return { path: filePath }; + if (await pathExists(filePath)) { + return { + path: filePath, + modulePath: convertSystemPathToModulePath(path.relative(runtimeDir, filePath)), + }; } } diff --git a/packages/core/admin/_internal/node/core/files.ts b/packages/core/admin/_internal/node/core/files.ts index 3771a1f5bc2..aaa83f1acee 100644 --- a/packages/core/admin/_internal/node/core/files.ts +++ b/packages/core/admin/_internal/node/core/files.ts @@ -1,3 +1,4 @@ +import path from 'node:path'; import { access } from 'node:fs/promises'; import { register } from 'esbuild-register/dist/node'; @@ -40,4 +41,34 @@ const loadFile = async (path: string): Promise => { return undefined; }; -export { pathExists, loadFile }; +/** + * @internal + * + * @description Converts a system path to a module path mainly for `Windows` systems. + * where the path separator is `\` instead of `/`, on linux systems the path separator + * is identical to the module path separator. + */ +const convertSystemPathToModulePath = (sysPath: string) => { + if (process.platform === 'win32') { + return sysPath.split(path.sep).join(path.posix.sep); + } else { + return sysPath; + } +}; + +/** + * @internal + * + * @description Converts a module path to a system path, again largely used for Windows systems. + * The original use case was plugins where the resolve path was in module format but we want to + * have it relative to the runtime directory. + */ +const convertModulePathToSystemPath = (modulePath: string) => { + if (process.platform === 'win32') { + return modulePath.split(path.posix.sep).join(path.sep); + } else { + return modulePath; + } +}; + +export { pathExists, loadFile, convertSystemPathToModulePath, convertModulePathToSystemPath }; diff --git a/packages/core/admin/_internal/node/core/plugins.ts b/packages/core/admin/_internal/node/core/plugins.ts index f71459df2fb..6ab16563cd0 100644 --- a/packages/core/admin/_internal/node/core/plugins.ts +++ b/packages/core/admin/_internal/node/core/plugins.ts @@ -4,16 +4,51 @@ import fs from 'node:fs'; import camelCase from 'lodash/camelCase'; import { env } from '@strapi/utils'; import { getModule, PackageJson } from './dependencies'; -import { loadFile } from './files'; +import { convertModulePathToSystemPath, convertSystemPathToModulePath, loadFile } from './files'; import { BuildContext } from '../createBuildContext'; import { isError } from './errors'; -interface PluginMeta { +interface LocalPluginMeta { name: string; - pathToPlugin: string; - isLocal?: boolean; + /** + * camelCased version of the plugin name + */ + importName: string; + /** + * The path to the plugin, relative to the app's root directory + * in system format + */ + path: string; + /** + * The path to the plugin, relative to the runtime directory + * in module format (i.e. with forward slashes) because thats + * where it should be used as an import + */ + modulePath: string; + type: 'local'; +} + +interface ModulePluginMeta { + name: string; + /** + * camelCased version of the plugin name + */ + importName: string; + /** + * Modules don't have a path because we never resolve them to their node_modules + * because we simply do not require it. + */ + path?: never; + /** + * The path to the plugin, relative to the app's root directory + * in module format (i.e. with forward slashes) + */ + modulePath: string; + type: 'module'; } +type PluginMeta = LocalPluginMeta | ModulePluginMeta; + interface StrapiPlugin extends PackageJson { strapi: { description?: string; @@ -36,10 +71,13 @@ const validatePackageIsPlugin = (pkg: PackageJson): pkg is StrapiPlugin => validatePackageHasStrapi(pkg) && pkg.strapi.kind === 'plugin'; const getEnabledPlugins = async ({ - strapi, cwd, logger, -}: Pick): Promise> => { + runtimeDir, + strapi, +}: Pick): Promise< + Record +> => { const plugins: Record = {}; /** @@ -68,7 +106,9 @@ const getEnabledPlugins = async ({ plugins[name] = { name, - pathToPlugin: dep, + importName: camelCase(name), + type: 'module', + modulePath: dep, }; } } @@ -79,14 +119,17 @@ const getEnabledPlugins = async ({ for (const [userPluginName, userPluginConfig] of Object.entries(userPluginsFile)) { if (userPluginConfig.enabled && userPluginConfig.resolve) { + const sysPath = convertModulePathToSystemPath(userPluginConfig.resolve); plugins[userPluginName] = { name: userPluginName, - isLocal: true, + importName: camelCase(userPluginName), + type: 'local', /** * User plugin paths are resolved from the entry point * of the app, because that's how you import them. */ - pathToPlugin: userPluginConfig.resolve, + modulePath: convertSystemPathToModulePath(path.relative(runtimeDir, sysPath)), + path: sysPath, }; } } @@ -114,10 +157,7 @@ const loadUserPluginsFile = async (root: string): Promise return {}; }; -const getMapOfPluginsWithAdmin = ( - plugins: Record, - { runtimeDir }: { runtimeDir: string } -) => +const getMapOfPluginsWithAdmin = (plugins: Record) => Object.values(plugins) .filter((plugin) => { if (!plugin) { @@ -128,7 +168,7 @@ const getMapOfPluginsWithAdmin = ( * There are two ways a plugin should be imported, either it's local to the strapi app, * or it's an actual npm module that's installed and resolved via node_modules. * - * We first check if the plugin is local to the strapi app, using a regular `resolve` because + * We first check if the plugin is local to the strapi app, using a regular `fs.existsSync` because * the pathToPlugin will be relative i.e. `/Users/my-name/strapi-app/src/plugins/my-plugin`. * * If the file doesn't exist well then it's probably a node_module, so instead we use `require.resolve` @@ -136,20 +176,11 @@ const getMapOfPluginsWithAdmin = ( * then it doesn't have an admin part to the package. */ try { - const isLocalPluginWithLegacyAdminFile = fs.existsSync( - //@ts-ignore - path.resolve(`${plugin.pathToPlugin}/strapi-admin.js`) - ); + const isLocalPluginWithLegacyAdminFile = + plugin.path && fs.existsSync(path.join(plugin.path, 'strapi-admin.js')); if (!isLocalPluginWithLegacyAdminFile) { - //@ts-ignore - let pathToPlugin = plugin.pathToPlugin; - - if (process.platform === 'win32') { - pathToPlugin = pathToPlugin.split(path.sep).join(path.posix.sep); - } - - const isModuleWithFE = require.resolve(`${pathToPlugin}/strapi-admin`); + const isModuleWithFE = require.resolve(`${plugin.modulePath}/strapi-admin`); return isModuleWithFE; } @@ -167,19 +198,10 @@ const getMapOfPluginsWithAdmin = ( throw err; } }) - .map((plugin) => { - const systemPath = plugin.isLocal - ? path.relative(runtimeDir, plugin.pathToPlugin.split('/').join(path.sep)) - : undefined; - const modulePath = systemPath ? systemPath.split(path.sep).join('/') : undefined; - - return { - path: !plugin.isLocal - ? `${plugin.pathToPlugin}/strapi-admin` - : `${modulePath}/strapi-admin`, - name: plugin.name, - importName: camelCase(plugin.name), - }; - }); + .map((plugin) => ({ + ...plugin, + modulePath: `${plugin.modulePath}/strapi-admin`, + })); export { getEnabledPlugins, getMapOfPluginsWithAdmin }; +export type { PluginMeta, LocalPluginMeta, ModulePluginMeta }; diff --git a/packages/core/admin/_internal/node/createBuildContext.ts b/packages/core/admin/_internal/node/createBuildContext.ts index cc6130d59fc..e2a602a276c 100644 --- a/packages/core/admin/_internal/node/createBuildContext.ts +++ b/packages/core/admin/_internal/node/createBuildContext.ts @@ -9,7 +9,7 @@ import { getStrapiAdminEnvVars, loadEnv } from './core/env'; import type { BuildOptions } from './build'; import { DevelopOptions } from './develop'; -import { getEnabledPlugins, getMapOfPluginsWithAdmin } from './core/plugins'; +import { PluginMeta, getEnabledPlugins, getMapOfPluginsWithAdmin } from './core/plugins'; import { Strapi } from '@strapi/types'; import { AppFile, loadUserAppFile } from './core/admin-customisations'; @@ -56,11 +56,7 @@ interface BuildContext { * The plugins to be included in the JS bundle * incl. internal plugins, third party plugins & local plugins */ - plugins: Array<{ - path: string; - name: string; - importName: string; - }>; + plugins: PluginMeta[]; /** * The absolute path to the runtime directory */ @@ -113,6 +109,8 @@ const createBuildContext = async ({ const { serverUrl, adminPath } = getConfigUrls(strapiInstance.config, true); + const appDir = strapiInstance.dirs.app.root; + await loadEnv(cwd); const env = getStrapiAdminEnvVars({ @@ -150,20 +148,20 @@ const createBuildContext = async ({ const runtimeDir = path.join(cwd, '.strapi', 'client'); const entry = path.relative(cwd, path.join(runtimeDir, 'app.js')); - const plugins = await getEnabledPlugins({ cwd, logger, strapi: strapiInstance }); + const plugins = await getEnabledPlugins({ cwd, logger, runtimeDir, strapi: strapiInstance }); logger.debug('Enabled plugins', os.EOL, plugins); - const pluginsWithFront = getMapOfPluginsWithAdmin(plugins, { runtimeDir }); + const pluginsWithFront = getMapOfPluginsWithAdmin(plugins); logger.debug('Enabled plugins with FE', os.EOL, plugins); const target = browserslist.loadConfig({ path: cwd }) ?? DEFAULT_BROWSERSLIST; - const customisations = await loadUserAppFile(strapiInstance.dirs.app.root); + const customisations = await loadUserAppFile({ appDir, runtimeDir }); const buildContext = { - appDir: strapiInstance.dirs.app.root, + appDir, basePath: `${adminPath}/`, customisations, cwd, diff --git a/packages/core/admin/_internal/node/staticFiles.ts b/packages/core/admin/_internal/node/staticFiles.ts index 79cf23e113a..fbc19338c49 100644 --- a/packages/core/admin/_internal/node/staticFiles.ts +++ b/packages/core/admin/_internal/node/staticFiles.ts @@ -4,6 +4,7 @@ import outdent from 'outdent'; import { format } from 'prettier'; import { createElement } from 'react'; import { renderToStaticMarkup } from 'react-dom/server'; +import camelCase from 'lodash/camelCase'; import { DefaultDocument as Document } from '../../admin/src/components/DefaultDocument'; import type { BuildContext } from './createBuildContext'; @@ -14,7 +15,7 @@ const getEntryModule = (ctx: BuildContext): string => { .join(',\n'); const pluginsImport = ctx.plugins - .map(({ importName, path }) => `import ${importName} from '${path}';`) + .map(({ importName, modulePath }) => `import ${importName} from '${modulePath}';`) .join('\n'); return outdent` @@ -26,18 +27,15 @@ const getEntryModule = (ctx: BuildContext): string => { import { renderAdmin } from "@strapi/strapi/admin" ${ - ctx.customisations?.path - ? `import customisations from '${path.relative( - ctx.runtimeDir, - ctx.customisations.path - )}'` + ctx.customisations?.modulePath + ? `import customisations from '${ctx.customisations.modulePath}'` : '' } renderAdmin( document.getElementById("strapi"), { - ${ctx.customisations?.path ? 'customisations,' : ''} + ${ctx.customisations?.modulePath ? 'customisations,' : ''} plugins: { ${pluginsObject} } From 85efb4bfa37cbf434907dcef6959c541d2b74249 Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Wed, 15 Nov 2023 14:37:17 +0100 Subject: [PATCH 28/43] v4.15.5-alpha.3 --- .github/actions/check-pr-status/package.json | 2 +- examples/getstarted/package.json | 22 +- examples/kitchensink-ts/package.json | 8 +- examples/kitchensink/package.json | 10 +- lerna.json | 2 +- packages/admin-test-utils/package.json | 6 +- packages/cli/create-strapi-app/package.json | 10 +- .../cli/create-strapi-starter/package.json | 10 +- packages/core/admin/package.json | 22 +- packages/core/content-manager/package.json | 4 +- .../core/content-type-builder/package.json | 12 +- packages/core/data-transfer/package.json | 12 +- packages/core/database/package.json | 10 +- packages/core/email/package.json | 12 +- packages/core/helper-plugin/package.json | 10 +- packages/core/permissions/package.json | 10 +- packages/core/strapi/package.json | 36 +- packages/core/types/package.json | 16 +- packages/core/upload/package.json | 12 +- packages/core/utils/package.json | 8 +- packages/generators/app/package.json | 4 +- packages/generators/generators/package.json | 12 +- packages/plugins/cloud/package.json | 10 +- packages/plugins/color-picker/package.json | 6 +- packages/plugins/documentation/package.json | 10 +- packages/plugins/graphql/package.json | 10 +- packages/plugins/i18n/package.json | 10 +- packages/plugins/sentry/package.json | 8 +- .../plugins/users-permissions/package.json | 10 +- .../providers/audit-logs-local/package.json | 10 +- .../providers/email-amazon-ses/package.json | 10 +- packages/providers/email-mailgun/package.json | 10 +- .../providers/email-nodemailer/package.json | 8 +- .../providers/email-sendgrid/package.json | 10 +- .../providers/email-sendmail/package.json | 10 +- packages/providers/upload-aws-s3/package.json | 8 +- .../providers/upload-cloudinary/package.json | 10 +- packages/providers/upload-local/package.json | 10 +- packages/utils/api-tests/package.json | 2 +- .../utils/eslint-config-custom/package.json | 2 +- packages/utils/logger/package.json | 8 +- packages/utils/pack-up/package.json | 6 +- packages/utils/tsconfig/package.json | 2 +- packages/utils/typescript/package.json | 2 +- scripts/front/package.json | 2 +- yarn.lock | 394 +++++++++--------- 46 files changed, 409 insertions(+), 409 deletions(-) diff --git a/.github/actions/check-pr-status/package.json b/.github/actions/check-pr-status/package.json index 430fa7f2c39..2439756b974 100644 --- a/.github/actions/check-pr-status/package.json +++ b/.github/actions/check-pr-status/package.json @@ -1,6 +1,6 @@ { "name": "check-pr-status", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "license": "MIT", "main": "dist/index.js", diff --git a/examples/getstarted/package.json b/examples/getstarted/package.json index e2380097cc2..5ef1e1b9277 100644 --- a/examples/getstarted/package.json +++ b/examples/getstarted/package.json @@ -1,6 +1,6 @@ { "name": "getstarted", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -14,16 +14,16 @@ }, "dependencies": { "@strapi/icons": "1.11.0", - "@strapi/plugin-color-picker": "4.15.5-alpha.2", - "@strapi/plugin-documentation": "4.15.5-alpha.2", - "@strapi/plugin-graphql": "4.15.5-alpha.2", - "@strapi/plugin-i18n": "4.15.5-alpha.2", - "@strapi/plugin-sentry": "4.15.5-alpha.2", - "@strapi/plugin-users-permissions": "4.15.5-alpha.2", - "@strapi/provider-email-mailgun": "4.15.5-alpha.2", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.2", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/plugin-color-picker": "4.15.5-alpha.3", + "@strapi/plugin-documentation": "4.15.5-alpha.3", + "@strapi/plugin-graphql": "4.15.5-alpha.3", + "@strapi/plugin-i18n": "4.15.5-alpha.3", + "@strapi/plugin-sentry": "4.15.5-alpha.3", + "@strapi/plugin-users-permissions": "4.15.5-alpha.3", + "@strapi/provider-email-mailgun": "4.15.5-alpha.3", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.3", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "better-sqlite3": "8.6.0", "lodash": "4.17.21", "mysql": "2.18.1", diff --git a/examples/kitchensink-ts/package.json b/examples/kitchensink-ts/package.json index a2b956b7e8c..6c52d4f200b 100644 --- a/examples/kitchensink-ts/package.json +++ b/examples/kitchensink-ts/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink-ts", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "description": "A Strapi application", "license": "MIT", @@ -14,9 +14,9 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/plugin-i18n": "4.15.5-alpha.2", - "@strapi/plugin-users-permissions": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/plugin-i18n": "4.15.5-alpha.3", + "@strapi/plugin-users-permissions": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "better-sqlite3": "8.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/kitchensink/package.json b/examples/kitchensink/package.json index 65e34c22306..db6fd421ef6 100644 --- a/examples/kitchensink/package.json +++ b/examples/kitchensink/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -13,10 +13,10 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/provider-email-mailgun": "4.15.5-alpha.2", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.2", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/provider-email-mailgun": "4.15.5-alpha.3", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.3", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "lodash": "4.17.21", "mysql": "2.18.1", "mysql2": "3.6.0", diff --git a/lerna.json b/lerna.json index 6b5b4647090..c871de8e129 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "packages": ["packages/*", "examples/*"], "npmClient": "yarn", "useWorkspaces": true, diff --git a/packages/admin-test-utils/package.json b/packages/admin-test-utils/package.json index f4add207af3..aa749d916a1 100644 --- a/packages/admin-test-utils/package.json +++ b/packages/admin-test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin-test-utils", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "description": "Test utilities for the Strapi administration panel", "license": "MIT", @@ -75,8 +75,8 @@ "@reduxjs/toolkit": "1.9.7", "@strapi/pack-up": "workspace:*", "@testing-library/jest-dom": "5.16.5", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "peerDependencies": { "@reduxjs/toolkit": "^1.9.7", diff --git a/packages/cli/create-strapi-app/package.json b/packages/cli/create-strapi-app/package.json index 6a206198663..51667c0f2d8 100644 --- a/packages/cli/create-strapi-app/package.json +++ b/packages/cli/create-strapi-app/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-app", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-app", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.2", + "@strapi/generate-new": "4.15.5-alpha.3", "commander": "8.3.0", "inquirer": "8.2.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/cli/create-strapi-starter/package.json b/packages/cli/create-strapi-starter/package.json index a09de821471..59a0d95dfbe 100644 --- a/packages/cli/create-strapi-starter/package.json +++ b/packages/cli/create-strapi-starter/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-starter", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-starter", @@ -44,7 +44,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.2", + "@strapi/generate-new": "4.15.5-alpha.3", "chalk": "4.1.2", "ci-info": "3.8.0", "commander": "8.3.0", @@ -54,9 +54,9 @@ "ora": "5.4.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index 29bb8a4715b..926c4d70ece 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Strapi Admin", "repository": { "type": "git", @@ -75,15 +75,15 @@ "@radix-ui/react-context": "1.0.1", "@radix-ui/react-toolbar": "1.0.4", "@reduxjs/toolkit": "1.9.7", - "@strapi/data-transfer": "4.15.5-alpha.2", + "@strapi/data-transfer": "4.15.5-alpha.3", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/permissions": "4.15.5-alpha.2", - "@strapi/provider-audit-logs-local": "4.15.5-alpha.2", - "@strapi/types": "4.15.5-alpha.2", - "@strapi/typescript-utils": "4.15.5-alpha.2", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/permissions": "4.15.5-alpha.3", + "@strapi/provider-audit-logs-local": "4.15.5-alpha.3", + "@strapi/types": "4.15.5-alpha.3", + "@strapi/typescript-utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.3", "axios": "1.6.0", "bcryptjs": "2.4.3", "boxen": "5.1.2", @@ -172,9 +172,9 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/admin-test-utils": "4.15.5-alpha.2", - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/admin-test-utils": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/content-manager/package.json b/packages/core/content-manager/package.json index 63e760fec5a..91efab0ed07 100644 --- a/packages/core/content-manager/package.json +++ b/packages/core/content-manager/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-manager", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "A powerful UI to easily manage your data.", "repository": { "type": "git", @@ -26,7 +26,7 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "lodash": "4.17.21", "qs": "6.11.1" }, diff --git a/packages/core/content-type-builder/package.json b/packages/core/content-type-builder/package.json index ddff3093186..f6bf8d1975b 100644 --- a/packages/core/content-type-builder/package.json +++ b/packages/core/content-type-builder/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-type-builder", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Strapi plugin to create content type", "repository": { "type": "git", @@ -49,10 +49,10 @@ "dependencies": { "@sindresorhus/slugify": "1.1.0", "@strapi/design-system": "1.13.0", - "@strapi/generators": "4.15.5-alpha.2", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/generators": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "fs-extra": "10.0.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "@testing-library/react": "14.0.0", "history": "^4.9.0", "react": "^18.2.0", diff --git a/packages/core/data-transfer/package.json b/packages/core/data-transfer/package.json index 3a07ed6966d..e30eae0a0a8 100644 --- a/packages/core/data-transfer/package.json +++ b/packages/core/data-transfer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/data-transfer", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Data transfer capabilities for Strapi", "keywords": [ "strapi", @@ -41,10 +41,10 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/logger": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", - "@strapi/types": "4.15.5-alpha.2", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/logger": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/types": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.3", "chalk": "4.1.2", "cli-table3": "0.6.2", "commander": "8.3.0", @@ -61,7 +61,7 @@ "ws": "8.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@strapi/strapi": "4.15.2", "@types/fs-extra": "9.0.13", "@types/jest": "29.5.2", diff --git a/packages/core/database/package.json b/packages/core/database/package.json index 03293ff47e8..c32488406e6 100644 --- a/packages/core/database/package.json +++ b/packages/core/database/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/database", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Strapi's database layer", "homepage": "https://strapi.io", "bugs": { @@ -40,7 +40,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "date-fns": "2.30.0", "debug": "4.3.4", "fs-extra": "10.0.0", @@ -50,9 +50,9 @@ "umzug": "3.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/email/package.json b/packages/core/email/package.json index 2a69243f14d..ee786578806 100644 --- a/packages/core/email/package.json +++ b/packages/core/email/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-email", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Easily configure your Strapi application to send emails.", "repository": { "type": "git", @@ -54,10 +54,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/provider-email-sendmail": "4.15.5-alpha.2", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/provider-email-sendmail": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.3", "lodash": "4.17.21", "prop-types": "^15.8.1", "react-intl": "6.4.1", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/types": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/types": "4.15.5-alpha.3", "@testing-library/react": "14.0.0", "@types/koa": "2.13.4", "@types/lodash": "^4.14.191", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index 838db376306..1c2e66c2b46 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/helper-plugin", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Helper for Strapi plugins development", "repository": { "type": "git", @@ -69,11 +69,11 @@ "@storybook/addon-mdx-gfm": "7.4.0", "@storybook/builder-vite": "7.4.0", "@storybook/react-vite": "7.4.0", - "@strapi/admin-test-utils": "4.15.5-alpha.2", + "@strapi/admin-test-utils": "4.15.5-alpha.3", "@strapi/design-system": "1.13.0", "@strapi/icons": "1.13.0", - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/types": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/types": "4.15.5-alpha.3", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/react": "18.2.7", @@ -82,7 +82,7 @@ "@types/react-router-dom": "5.3.3", "@types/styled-components": "5.1.26", "cross-env": "^7.0.3", - "eslint-config-custom": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.3", "eslint-plugin-storybook": "0.6.14", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/core/permissions/package.json b/packages/core/permissions/package.json index 60bc47e5ecb..727a8c48fc5 100644 --- a/packages/core/permissions/package.json +++ b/packages/core/permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/permissions", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Strapi's permission layer.", "repository": { "type": "git", @@ -38,15 +38,15 @@ }, "dependencies": { "@casl/ability": "6.5.0", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "lodash": "4.17.21", "qs": "6.11.1", "sift": "16.0.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/strapi/package.json b/packages/core/strapi/package.json index d27ed3c3823..1bbefd10afc 100644 --- a/packages/core/strapi/package.json +++ b/packages/core/strapi/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/strapi", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite", "keywords": [ "strapi", @@ -114,21 +114,21 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/admin": "4.15.5-alpha.2", - "@strapi/data-transfer": "4.15.5-alpha.2", - "@strapi/database": "4.15.5-alpha.2", - "@strapi/generate-new": "4.15.5-alpha.2", - "@strapi/generators": "4.15.5-alpha.2", - "@strapi/logger": "4.15.5-alpha.2", - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/permissions": "4.15.5-alpha.2", - "@strapi/plugin-content-manager": "4.15.5-alpha.2", - "@strapi/plugin-content-type-builder": "4.15.5-alpha.2", - "@strapi/plugin-email": "4.15.5-alpha.2", - "@strapi/plugin-upload": "4.15.5-alpha.2", - "@strapi/types": "4.15.5-alpha.2", - "@strapi/typescript-utils": "4.15.5-alpha.2", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/admin": "4.15.5-alpha.3", + "@strapi/data-transfer": "4.15.5-alpha.3", + "@strapi/database": "4.15.5-alpha.3", + "@strapi/generate-new": "4.15.5-alpha.3", + "@strapi/generators": "4.15.5-alpha.3", + "@strapi/logger": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/permissions": "4.15.5-alpha.3", + "@strapi/plugin-content-manager": "4.15.5-alpha.3", + "@strapi/plugin-content-type-builder": "4.15.5-alpha.3", + "@strapi/plugin-email": "4.15.5-alpha.3", + "@strapi/plugin-upload": "4.15.5-alpha.3", + "@strapi/types": "4.15.5-alpha.3", + "@strapi/typescript-utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.3", "bcryptjs": "2.4.3", "boxen": "5.1.2", "chalk": "4.1.2", @@ -188,9 +188,9 @@ "@types/node": "18.18.4", "@types/node-schedule": "2.1.0", "@types/statuses": "2.0.1", - "eslint-config-custom": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.3", "supertest": "6.3.3", - "tsconfig": "4.15.5-alpha.2" + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/types/package.json b/packages/core/types/package.json index 458b8d465be..815640b1e47 100644 --- a/packages/core/types/package.json +++ b/packages/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/types", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Shared typescript types for Strapi internal use", "keywords": [ "strapi" @@ -46,10 +46,10 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/database": "4.15.5-alpha.2", - "@strapi/logger": "4.15.5-alpha.2", - "@strapi/permissions": "4.15.5-alpha.2", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/database": "4.15.5-alpha.3", + "@strapi/logger": "4.15.5-alpha.3", + "@strapi/permissions": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.3", "commander": "8.3.0", "https-proxy-agent": "5.0.1", "koa": "2.13.4", @@ -57,14 +57,14 @@ "node-schedule": "2.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@strapi/ts-zen": "^0.2.0", "@types/jest": "29.5.2", "@types/koa": "2.13.4", "@types/koa__router": "12.0.0", "@types/node-schedule": "2.1.0", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3", "typescript": "5.2.2" }, "engines": { diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index d3ee76b640f..af6c34c4ba1 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-upload", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Makes it easy to upload images and files to your Strapi Application.", "license": "SEE LICENSE IN LICENSE", "author": { @@ -44,10 +44,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/provider-upload-local": "4.15.5-alpha.2", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/provider-upload-local": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.3", "axios": "1.6.0", "byte-size": "7.0.1", "cropperjs": "1.6.0", @@ -71,8 +71,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 01058a50133..06f9a67516d 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/utils", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Shared utilities for the Strapi packages", "keywords": [ "strapi", @@ -53,13 +53,13 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@types/koa": "2.13.4", "@types/node": "18.18.4", - "eslint-config-custom": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.3", "koa": "2.13.4", "koa-body": "4.2.0", - "tsconfig": "4.15.5-alpha.2" + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/generators/app/package.json b/packages/generators/app/package.json index c8e41e8fa69..0a26216c3be 100644 --- a/packages/generators/app/package.json +++ b/packages/generators/app/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generate-new", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Generate a new Strapi application.", "keywords": [ "generate", @@ -58,7 +58,7 @@ "tar": "6.1.13" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "copyfiles": "2.4.1" }, "engines": { diff --git a/packages/generators/generators/package.json b/packages/generators/generators/package.json index 3457a38e7c3..c10cf7ce008 100644 --- a/packages/generators/generators/package.json +++ b/packages/generators/generators/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generators", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Interactive API generator.", "keywords": [ "strapi", @@ -47,8 +47,8 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "4.15.5-alpha.2", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/typescript-utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.3", "chalk": "4.1.2", "copyfiles": "2.4.1", "fs-extra": "10.0.0", @@ -57,9 +57,9 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/plugins/cloud/package.json b/packages/plugins/cloud/package.json index 61a86c3775a..83eee719002 100644 --- a/packages/plugins/cloud/package.json +++ b/packages/plugins/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-cloud", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Instructions to deploy your local project to Strapi Cloud", "license": "MIT", "author": { @@ -38,22 +38,22 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.3", "@types/react": "18.2.7", "@types/react-dom": "18.2.12", "@types/react-router-dom": "^5.3.3", "@types/styled-components": "5.1.26", - "eslint-config-custom": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.3", "react": "18.2.0", "react-dom": "18.2.0", "react-router-dom": "5.3.4", "styled-components": "5.3.3", - "tsconfig": "4.15.5-alpha.2", + "tsconfig": "4.15.5-alpha.3", "typescript": "5.2.2" }, "peerDependencies": { diff --git a/packages/plugins/color-picker/package.json b/packages/plugins/color-picker/package.json index a2d4cb6288c..c7e595b6f9c 100644 --- a/packages/plugins/color-picker/package.json +++ b/packages/plugins/color-picker/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-color-picker", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Strapi maintained Custom Fields", "repository": { "type": "git", @@ -55,14 +55,14 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", "prop-types": "^15.8.1", "react-colorful": "5.6.1", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/strapi": "4.15.5-alpha.3", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/styled-components": "5.1.26", diff --git a/packages/plugins/documentation/package.json b/packages/plugins/documentation/package.json index b0eac34c6e6..edc87c2ff67 100644 --- a/packages/plugins/documentation/package.json +++ b/packages/plugins/documentation/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-documentation", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.", "repository": { "type": "git", @@ -47,9 +47,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "bcryptjs": "2.4.3", "cheerio": "^1.0.0-rc.12", "formik": "2.4.0", @@ -67,8 +67,8 @@ }, "devDependencies": { "@apidevtools/swagger-parser": "^10.1.0", - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "msw": "1.3.0", diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index 641afecd2d4..d63c4fe1ca0 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-graphql", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Adds GraphQL endpoint with default API methods.", "repository": { "type": "git", @@ -45,9 +45,9 @@ "@graphql-tools/schema": "8.5.1", "@graphql-tools/utils": "^8.13.1", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "apollo-server-core": "3.12.1", "apollo-server-koa": "3.10.0", "graphql": "^15.5.1", @@ -61,8 +61,8 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "cross-env": "^7.0.3", "koa": "2.13.4", "react": "^18.2.0", diff --git a/packages/plugins/i18n/package.json b/packages/plugins/i18n/package.json index eb40c46b06c..9914b3b4af9 100644 --- a/packages/plugins/i18n/package.json +++ b/packages/plugins/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-i18n", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API", "repository": { "type": "git", @@ -50,9 +50,9 @@ "dependencies": { "@reduxjs/toolkit": "1.9.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "formik": "2.4.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -64,8 +64,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "@testing-library/react": "14.0.0", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index 5456e8b35d7..10a79245eeb 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-sentry", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Send Strapi error events to Sentry", "repository": { "type": "git", @@ -46,12 +46,12 @@ "dependencies": { "@sentry/node": "6.19.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "5.3.4", diff --git a/packages/plugins/users-permissions/package.json b/packages/plugins/users-permissions/package.json index 0ef9bcebb9a..572bca2aa35 100644 --- a/packages/plugins/users-permissions/package.json +++ b/packages/plugins/users-permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-users-permissions", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Protect your API with a full-authentication process based on JWT", "repository": { "type": "git", @@ -48,9 +48,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.2", + "@strapi/helper-plugin": "4.15.5-alpha.3", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "bcryptjs": "2.4.3", "formik": "2.4.0", "grant-koa": "5.4.8", @@ -69,8 +69,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/strapi": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.3", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/providers/audit-logs-local/package.json b/packages/providers/audit-logs-local/package.json index 1beafa28a65..babb2c97973 100644 --- a/packages/providers/audit-logs-local/package.json +++ b/packages/providers/audit-logs-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-audit-logs-local", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Local provider for strapi audit logs", "keywords": [ "audit-logs", @@ -42,10 +42,10 @@ "watch": "pack-up watch" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "@strapi/types": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/types": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-amazon-ses/package.json b/packages/providers/email-amazon-ses/package.json index 973d28e67a6..490b8f825db 100644 --- a/packages/providers/email-amazon-ses/package.json +++ b/packages/providers/email-amazon-ses/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-amazon-ses", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Amazon SES provider for strapi email", "keywords": [ "email", @@ -43,13 +43,13 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "node-ses": "^3.0.3" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-mailgun/package.json b/packages/providers/email-mailgun/package.json index 0852c144d4a..18cd619aa79 100644 --- a/packages/providers/email-mailgun/package.json +++ b/packages/providers/email-mailgun/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-mailgun", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Mailgun provider for strapi email plugin", "keywords": [ "email", @@ -45,14 +45,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "form-data": "^4.0.0", "mailgun.js": "8.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-nodemailer/package.json b/packages/providers/email-nodemailer/package.json index 2aea664116d..fbc11181a9e 100644 --- a/packages/providers/email-nodemailer/package.json +++ b/packages/providers/email-nodemailer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-nodemailer", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Nodemailer provider for Strapi 3", "keywords": [ "strapi", @@ -60,10 +60,10 @@ "nodemailer": "6.9.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@types/nodemailer": "6.4.7", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendgrid/package.json b/packages/providers/email-sendgrid/package.json index 71b2f247643..3b42d164332 100644 --- a/packages/providers/email-sendgrid/package.json +++ b/packages/providers/email-sendgrid/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendgrid", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Sendgrid provider for strapi email", "keywords": [ "email", @@ -44,12 +44,12 @@ }, "dependencies": { "@sendgrid/mail": "7.7.0", - "@strapi/utils": "4.15.5-alpha.2" + "@strapi/utils": "4.15.5-alpha.3" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendmail/package.json b/packages/providers/email-sendmail/package.json index b12f4a977f2..dcf795ec842 100644 --- a/packages/providers/email-sendmail/package.json +++ b/packages/providers/email-sendmail/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendmail", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Sendmail provider for strapi email", "keywords": [ "email", @@ -42,14 +42,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "sendmail": "^1.6.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@types/sendmail": "1.4.4", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-aws-s3/package.json b/packages/providers/upload-aws-s3/package.json index 5613b987afb..38f75edcfe6 100644 --- a/packages/providers/upload-aws-s3/package.json +++ b/packages/providers/upload-aws-s3/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-aws-s3", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "AWS S3 provider for strapi upload", "keywords": [ "upload", @@ -53,10 +53,10 @@ "lodash": "4.17.21" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-cloudinary/package.json b/packages/providers/upload-cloudinary/package.json index f96b2d382fc..9104157a239 100644 --- a/packages/providers/upload-cloudinary/package.json +++ b/packages/providers/upload-cloudinary/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-cloudinary", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Cloudinary provider for strapi upload", "keywords": [ "upload", @@ -43,14 +43,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "cloudinary": "^1.41.0", "into-stream": "^5.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-local/package.json b/packages/providers/upload-local/package.json index 24fb5b00b0e..aa97486c9c7 100644 --- a/packages/providers/upload-local/package.json +++ b/packages/providers/upload-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-local", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Local provider for strapi upload", "keywords": [ "upload", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.2", + "@strapi/utils": "4.15.5-alpha.3", "fs-extra": "10.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/api-tests/package.json b/packages/utils/api-tests/package.json index 82076c920a2..12584c07171 100644 --- a/packages/utils/api-tests/package.json +++ b/packages/utils/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "api-tests", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "dependencies": { "dotenv": "14.2.0", diff --git a/packages/utils/eslint-config-custom/package.json b/packages/utils/eslint-config-custom/package.json index 5576308ac13..f196262faac 100644 --- a/packages/utils/eslint-config-custom/package.json +++ b/packages/utils/eslint-config-custom/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-custom", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "main": "index.js" } diff --git a/packages/utils/logger/package.json b/packages/utils/logger/package.json index 5becaf31f8e..29ee060ecdb 100644 --- a/packages/utils/logger/package.json +++ b/packages/utils/logger/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/logger", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Strapi's logger", "homepage": "https://strapi.io", "bugs": { @@ -43,9 +43,9 @@ "winston": "3.10.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", - "eslint-config-custom": "4.15.5-alpha.2", - "tsconfig": "4.15.5-alpha.2" + "@strapi/pack-up": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.3" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index 97df8d76c95..e0f7bb87b2f 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/pack-up", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Simple tools for creating interoperable CJS & ESM packages.", "keywords": [ "strapi", @@ -84,11 +84,11 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.2", + "@strapi/pack-up": "4.15.5-alpha.3", "@types/git-url-parse": "9.0.1", "@types/ini": "1.3.31", "@types/prompts": "2.4.4", - "eslint-config-custom": "4.15.5-alpha.2", + "eslint-config-custom": "4.15.5-alpha.3", "rimraf": "3.0.2" }, "engines": { diff --git a/packages/utils/tsconfig/package.json b/packages/utils/tsconfig/package.json index 47925abd1ea..547c8f9aadc 100644 --- a/packages/utils/tsconfig/package.json +++ b/packages/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "tsconfig", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "devDependencies": { "@tsconfig/node18": "18.2.2" diff --git a/packages/utils/typescript/package.json b/packages/utils/typescript/package.json index 7a685670dc3..662f55bdce6 100644 --- a/packages/utils/typescript/package.json +++ b/packages/utils/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/typescript-utils", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "description": "Typescript support for Strapi", "keywords": [ "strapi", diff --git a/scripts/front/package.json b/scripts/front/package.json index 227c51997c1..3ef5c24857c 100644 --- a/scripts/front/package.json +++ b/scripts/front/package.json @@ -1,6 +1,6 @@ { "name": "scripts-front", - "version": "4.15.5-alpha.2", + "version": "4.15.5-alpha.3", "private": true, "scripts": { "test:front": "jest --config jest.config.front.js" diff --git a/yarn.lock b/yarn.lock index da791e403b5..7c0f88f1ef8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8613,7 +8613,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin-test-utils@npm:4.15.5-alpha.2, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": +"@strapi/admin-test-utils@npm:4.15.5-alpha.3, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": version: 0.0.0-use.local resolution: "@strapi/admin-test-utils@workspace:packages/admin-test-utils" dependencies: @@ -8621,9 +8621,9 @@ __metadata: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/pack-up": "workspace:*" "@testing-library/jest-dom": "npm:5.16.5" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" jest-styled-components: "npm:7.1.1" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" whatwg-fetch: "npm:3.6.2" peerDependencies: "@reduxjs/toolkit": ^1.9.7 @@ -8746,7 +8746,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin@npm:4.15.5-alpha.2, @strapi/admin@workspace:packages/core/admin": +"@strapi/admin@npm:4.15.5-alpha.3, @strapi/admin@workspace:packages/core/admin": version: 0.0.0-use.local resolution: "@strapi/admin@workspace:packages/core/admin" dependencies: @@ -8755,18 +8755,18 @@ __metadata: "@radix-ui/react-context": "npm:1.0.1" "@radix-ui/react-toolbar": "npm:1.0.4" "@reduxjs/toolkit": "npm:1.9.7" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.2" - "@strapi/data-transfer": "npm:4.15.5-alpha.2" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.3" + "@strapi/data-transfer": "npm:4.15.5-alpha.3" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/permissions": "npm:4.15.5-alpha.2" - "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" - "@strapi/types": "npm:4.15.5-alpha.2" - "@strapi/typescript-utils": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/permissions": "npm:4.15.5-alpha.3" + "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/types": "npm:4.15.5-alpha.3" + "@strapi/typescript-utils": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -8902,15 +8902,15 @@ __metadata: languageName: node linkType: hard -"@strapi/data-transfer@npm:4.15.5-alpha.2, @strapi/data-transfer@workspace:packages/core/data-transfer": +"@strapi/data-transfer@npm:4.15.5-alpha.3, @strapi/data-transfer@workspace:packages/core/data-transfer": version: 0.0.0-use.local resolution: "@strapi/data-transfer@workspace:packages/core/data-transfer" dependencies: - "@strapi/logger": "npm:4.15.5-alpha.2" - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/logger": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.3" "@strapi/strapi": "npm:4.15.2" - "@strapi/types": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/types": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@types/fs-extra": "npm:9.0.13" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" @@ -8961,20 +8961,20 @@ __metadata: languageName: node linkType: hard -"@strapi/database@npm:4.15.5-alpha.2, @strapi/database@workspace:packages/core/database": +"@strapi/database@npm:4.15.5-alpha.3, @strapi/database@workspace:packages/core/database": version: 0.0.0-use.local resolution: "@strapi/database@workspace:packages/core/database" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" date-fns: "npm:2.30.0" debug: "npm:4.3.4" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" fs-extra: "npm:10.0.0" knex: "npm:2.5.0" lodash: "npm:4.17.21" semver: "npm:7.5.4" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" umzug: "npm:3.2.1" languageName: unknown linkType: soft @@ -9056,12 +9056,12 @@ __metadata: languageName: node linkType: hard -"@strapi/generate-new@npm:4.15.5-alpha.2, @strapi/generate-new@workspace:packages/generators/app": +"@strapi/generate-new@npm:4.15.5-alpha.3, @strapi/generate-new@workspace:packages/generators/app": version: 0.0.0-use.local resolution: "@strapi/generate-new@workspace:packages/generators/app" dependencies: "@sentry/node": "npm:6.19.7" - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" chalk: "npm:^4.1.2" copyfiles: "npm:2.4.1" execa: "npm:5.1.1" @@ -9093,22 +9093,22 @@ __metadata: languageName: node linkType: hard -"@strapi/generators@npm:4.15.5-alpha.2, @strapi/generators@workspace:packages/generators/generators": +"@strapi/generators@npm:4.15.5-alpha.3, @strapi/generators@workspace:packages/generators/generators": version: 0.0.0-use.local resolution: "@strapi/generators@workspace:packages/generators/generators" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/typescript-utils": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/typescript-utils": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" chalk: "npm:4.1.2" copyfiles: "npm:2.4.1" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" fs-extra: "npm:10.0.0" node-plop: "npm:0.26.3" plop: "npm:2.7.6" pluralize: "npm:8.0.0" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -9137,7 +9137,7 @@ __metadata: languageName: node linkType: hard -"@strapi/helper-plugin@npm:4.15.5-alpha.2, @strapi/helper-plugin@workspace:packages/core/helper-plugin": +"@strapi/helper-plugin@npm:4.15.5-alpha.3, @strapi/helper-plugin@workspace:packages/core/helper-plugin": version: 0.0.0-use.local resolution: "@strapi/helper-plugin@workspace:packages/core/helper-plugin" dependencies: @@ -9147,11 +9147,11 @@ __metadata: "@storybook/addon-mdx-gfm": "npm:7.4.0" "@storybook/builder-vite": "npm:7.4.0" "@storybook/react-vite": "npm:7.4.0" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.2" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.3" "@strapi/design-system": "npm:1.13.0" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/types": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/types": "npm:4.15.5-alpha.3" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/react": "npm:18.2.7" @@ -9162,7 +9162,7 @@ __metadata: axios: "npm:1.6.0" cross-env: "npm:^7.0.3" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" eslint-plugin-storybook: "npm:0.6.14" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9222,14 +9222,14 @@ __metadata: languageName: node linkType: hard -"@strapi/logger@npm:4.15.5-alpha.2, @strapi/logger@workspace:packages/utils/logger": +"@strapi/logger@npm:4.15.5-alpha.3, @strapi/logger@workspace:packages/utils/logger": version: 0.0.0-use.local resolution: "@strapi/logger@workspace:packages/utils/logger" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - eslint-config-custom: "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.3" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" winston: "npm:3.10.0" languageName: unknown linkType: soft @@ -9265,11 +9265,11 @@ __metadata: languageName: node linkType: hard -"@strapi/pack-up@npm:4.15.5-alpha.2, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": +"@strapi/pack-up@npm:4.15.5-alpha.3, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": version: 0.0.0-use.local resolution: "@strapi/pack-up@workspace:packages/utils/pack-up" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" "@types/git-url-parse": "npm:9.0.1" "@types/ini": "npm:1.3.31" "@types/prompts": "npm:2.4.4" @@ -9281,7 +9281,7 @@ __metadata: commander: "npm:8.3.0" esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" @@ -9314,18 +9314,18 @@ __metadata: languageName: node linkType: hard -"@strapi/permissions@npm:4.15.5-alpha.2, @strapi/permissions@workspace:packages/core/permissions": +"@strapi/permissions@npm:4.15.5-alpha.3, @strapi/permissions@workspace:packages/core/permissions": version: 0.0.0-use.local resolution: "@strapi/permissions@workspace:packages/core/permissions" dependencies: "@casl/ability": "npm:6.5.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" - eslint-config-custom: "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.3" lodash: "npm:4.17.21" qs: "npm:6.11.1" sift: "npm:16.0.1" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -9334,20 +9334,20 @@ __metadata: resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.3" "@types/react": "npm:18.2.7" "@types/react-dom": "npm:18.2.12" "@types/react-router-dom": "npm:^5.3.3" "@types/styled-components": "npm:5.1.26" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" react: "npm:18.2.0" react-dom: "npm:18.2.0" react-intl: "npm:6.4.1" react-router-dom: "npm:5.3.4" styled-components: "npm:5.3.3" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" typescript: "npm:5.2.2" peerDependencies: "@strapi/strapi": ^4.4.0 @@ -9358,14 +9358,14 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-color-picker@npm:4.15.5-alpha.2, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": +"@strapi/plugin-color-picker@npm:4.15.5-alpha.3, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": version: 0.0.0-use.local resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/strapi": "npm:4.15.5-alpha.3" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/styled-components": "npm:5.1.26" @@ -9398,12 +9398,12 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-manager@npm:4.15.5-alpha.2, @strapi/plugin-content-manager@workspace:packages/core/content-manager": +"@strapi/plugin-content-manager@npm:4.15.5-alpha.3, @strapi/plugin-content-manager@workspace:packages/core/content-manager": version: 0.0.0-use.local resolution: "@strapi/plugin-content-manager@workspace:packages/core/content-manager" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.3" lodash: "npm:4.17.21" qs: "npm:6.11.1" languageName: unknown @@ -9439,18 +9439,18 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.2, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": +"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.3, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": version: 0.0.0-use.local resolution: "@strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder" dependencies: "@sindresorhus/slugify": "npm:1.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/generators": "npm:4.15.5-alpha.2" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/generators": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@testing-library/react": "npm:14.0.0" fs-extra: "npm:10.0.0" history: "npm:^4.9.0" @@ -9476,17 +9476,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-documentation@npm:4.15.5-alpha.2, @strapi/plugin-documentation@workspace:packages/plugins/documentation": +"@strapi/plugin-documentation@npm:4.15.5-alpha.3, @strapi/plugin-documentation@workspace:packages/plugins/documentation": version: 0.0.0-use.local resolution: "@strapi/plugin-documentation@workspace:packages/plugins/documentation" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" bcryptjs: "npm:2.4.3" @@ -9541,17 +9541,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-email@npm:4.15.5-alpha.2, @strapi/plugin-email@workspace:packages/core/email": +"@strapi/plugin-email@npm:4.15.5-alpha.3, @strapi/plugin-email@workspace:packages/core/email": version: 0.0.0-use.local resolution: "@strapi/plugin-email@workspace:packages/core/email" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.2" - "@strapi/types": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.3" + "@strapi/types": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@testing-library/react": "npm:14.0.0" "@types/koa": "npm:2.13.4" "@types/lodash": "npm:^4.14.191" @@ -9575,18 +9575,18 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-graphql@npm:4.15.5-alpha.2, @strapi/plugin-graphql@workspace:packages/plugins/graphql": +"@strapi/plugin-graphql@npm:4.15.5-alpha.3, @strapi/plugin-graphql@workspace:packages/plugins/graphql": version: 0.0.0-use.local resolution: "@strapi/plugin-graphql@workspace:packages/plugins/graphql" dependencies: "@graphql-tools/schema": "npm:8.5.1" "@graphql-tools/utils": "npm:^8.13.1" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" apollo-server-core: "npm:3.12.1" apollo-server-koa: "npm:3.10.0" cross-env: "npm:^7.0.3" @@ -9613,17 +9613,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-i18n@npm:4.15.5-alpha.2, @strapi/plugin-i18n@workspace:packages/plugins/i18n": +"@strapi/plugin-i18n@npm:4.15.5-alpha.3, @strapi/plugin-i18n@workspace:packages/plugins/i18n": version: 0.0.0-use.local resolution: "@strapi/plugin-i18n@workspace:packages/plugins/i18n" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@testing-library/react": "npm:14.0.0" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9648,16 +9648,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-sentry@npm:4.15.5-alpha.2, @strapi/plugin-sentry@workspace:packages/plugins/sentry": +"@strapi/plugin-sentry@npm:4.15.5-alpha.3, @strapi/plugin-sentry@workspace:packages/plugins/sentry": version: 0.0.0-use.local resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry" dependencies: "@sentry/node": "npm:6.19.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" react-router-dom: "npm:5.3.4" @@ -9711,17 +9711,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-upload@npm:4.15.5-alpha.2, @strapi/plugin-upload@workspace:packages/core/upload": +"@strapi/plugin-upload@npm:4.15.5-alpha.3, @strapi/plugin-upload@workspace:packages/core/upload": version: 0.0.0-use.local resolution: "@strapi/plugin-upload@workspace:packages/core/upload" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/provider-upload-local": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/provider-upload-local": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9760,16 +9760,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-users-permissions@npm:4.15.5-alpha.2, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": +"@strapi/plugin-users-permissions@npm:4.15.5-alpha.3, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": version: 0.0.0-use.local resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.2" + "@strapi/helper-plugin": "npm:4.15.5-alpha.3" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9810,14 +9810,14 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.2, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": +"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.3, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": version: 0.0.0-use.local resolution: "@strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/types": "npm:4.15.5-alpha.2" - eslint-config-custom: "npm:4.15.5-alpha.2" - tsconfig: "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/types": "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -9825,24 +9825,24 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-amazon-ses@workspace:packages/providers/email-amazon-ses" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" - eslint-config-custom: "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.3" node-ses: "npm:^3.0.3" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft -"@strapi/provider-email-mailgun@npm:4.15.5-alpha.2, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": +"@strapi/provider-email-mailgun@npm:4.15.5-alpha.3, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": version: 0.0.0-use.local resolution: "@strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" - eslint-config-custom: "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.3" form-data: "npm:^4.0.0" mailgun.js: "npm:8.2.1" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -9850,12 +9850,12 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-nodemailer@workspace:packages/providers/email-nodemailer" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" "@types/nodemailer": "npm:6.4.7" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" lodash: "npm:4.17.21" nodemailer: "npm:6.9.1" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -9864,10 +9864,10 @@ __metadata: resolution: "@strapi/provider-email-sendgrid@workspace:packages/providers/email-sendgrid" dependencies: "@sendgrid/mail": "npm:7.7.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" - eslint-config-custom: "npm:4.15.5-alpha.2" - tsconfig: "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -9881,20 +9881,20 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-email-sendmail@npm:4.15.5-alpha.2, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": +"@strapi/provider-email-sendmail@npm:4.15.5-alpha.3, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": version: 0.0.0-use.local resolution: "@strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@types/sendmail": "npm:1.4.4" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" sendmail: "npm:^1.6.1" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft -"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.2, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": +"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.3, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": version: 0.0.0-use.local resolution: "@strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3" dependencies: @@ -9902,24 +9902,24 @@ __metadata: "@aws-sdk/lib-storage": "npm:3.433.0" "@aws-sdk/s3-request-presigner": "npm:3.433.0" "@aws-sdk/types": "npm:3.433.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft -"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.2, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": +"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.3, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": version: 0.0.0-use.local resolution: "@strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" cloudinary: "npm:^1.41.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" into-stream: "npm:^5.1.0" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -9933,16 +9933,16 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-upload-local@npm:4.15.5-alpha.2, @strapi/provider-upload-local@workspace:packages/providers/upload-local": +"@strapi/provider-upload-local@npm:4.15.5-alpha.3, @strapi/provider-upload-local@workspace:packages/providers/upload-local": version: 0.0.0-use.local resolution: "@strapi/provider-upload-local@workspace:packages/providers/upload-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" fs-extra: "npm:10.0.0" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" languageName: unknown linkType: soft @@ -10014,28 +10014,28 @@ __metadata: languageName: node linkType: hard -"@strapi/strapi@npm:4.15.5-alpha.2, @strapi/strapi@workspace:packages/core/strapi": +"@strapi/strapi@npm:4.15.5-alpha.3, @strapi/strapi@workspace:packages/core/strapi": version: 0.0.0-use.local resolution: "@strapi/strapi@workspace:packages/core/strapi" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/admin": "npm:4.15.5-alpha.2" - "@strapi/data-transfer": "npm:4.15.5-alpha.2" - "@strapi/database": "npm:4.15.5-alpha.2" - "@strapi/generate-new": "npm:4.15.5-alpha.2" - "@strapi/generators": "npm:4.15.5-alpha.2" - "@strapi/logger": "npm:4.15.5-alpha.2" + "@strapi/admin": "npm:4.15.5-alpha.3" + "@strapi/data-transfer": "npm:4.15.5-alpha.3" + "@strapi/database": "npm:4.15.5-alpha.3" + "@strapi/generate-new": "npm:4.15.5-alpha.3" + "@strapi/generators": "npm:4.15.5-alpha.3" + "@strapi/logger": "npm:4.15.5-alpha.3" "@strapi/pack-up": "workspace:*" - "@strapi/permissions": "npm:4.15.5-alpha.2" - "@strapi/plugin-content-manager": "npm:4.15.5-alpha.2" - "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.2" - "@strapi/plugin-email": "npm:4.15.5-alpha.2" - "@strapi/plugin-upload": "npm:4.15.5-alpha.2" + "@strapi/permissions": "npm:4.15.5-alpha.3" + "@strapi/plugin-content-manager": "npm:4.15.5-alpha.3" + "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.3" + "@strapi/plugin-email": "npm:4.15.5-alpha.3" + "@strapi/plugin-upload": "npm:4.15.5-alpha.3" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/types": "npm:4.15.5-alpha.2" - "@strapi/typescript-utils": "npm:4.15.5-alpha.2" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/types": "npm:4.15.5-alpha.3" + "@strapi/typescript-utils": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.3" "@types/bcryptjs": "npm:2.4.3" "@types/configstore": "npm:5.0.1" "@types/delegates": "npm:1.0.0" @@ -10061,7 +10061,7 @@ __metadata: debug: "npm:4.3.4" delegates: "npm:1.0.0" dotenv: "npm:14.2.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" glob: "npm:7.2.3" @@ -10091,7 +10091,7 @@ __metadata: semver: "npm:7.5.4" statuses: "npm:2.0.1" supertest: "npm:6.3.3" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" typescript: "npm:5.2.2" yup: "npm:0.32.9" bin: @@ -10128,29 +10128,29 @@ __metadata: languageName: node linkType: hard -"@strapi/types@npm:4.15.5-alpha.2, @strapi/types@workspace:packages/core/types": +"@strapi/types@npm:4.15.5-alpha.3, @strapi/types@workspace:packages/core/types": version: 0.0.0-use.local resolution: "@strapi/types@workspace:packages/core/types" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/database": "npm:4.15.5-alpha.2" - "@strapi/logger": "npm:4.15.5-alpha.2" - "@strapi/pack-up": "npm:4.15.5-alpha.2" - "@strapi/permissions": "npm:4.15.5-alpha.2" + "@strapi/database": "npm:4.15.5-alpha.3" + "@strapi/logger": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/permissions": "npm:4.15.5-alpha.3" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/utils": "npm:4.15.5-alpha.2" + "@strapi/utils": "npm:4.15.5-alpha.3" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" "@types/koa__router": "npm:12.0.0" "@types/node-schedule": "npm:2.1.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" https-proxy-agent: "npm:5.0.1" koa: "npm:2.13.4" node-fetch: "npm:2.7.0" node-schedule: "npm:2.1.0" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" typescript: "npm:5.2.2" languageName: unknown linkType: soft @@ -10169,7 +10169,7 @@ __metadata: languageName: node linkType: hard -"@strapi/typescript-utils@npm:4.15.5-alpha.2, @strapi/typescript-utils@workspace:packages/utils/typescript": +"@strapi/typescript-utils@npm:4.15.5-alpha.3, @strapi/typescript-utils@workspace:packages/utils/typescript": version: 0.0.0-use.local resolution: "@strapi/typescript-utils@workspace:packages/utils/typescript" dependencies: @@ -10228,22 +10228,22 @@ __metadata: languageName: node linkType: hard -"@strapi/utils@npm:4.15.5-alpha.2, @strapi/utils@workspace:packages/core/utils": +"@strapi/utils@npm:4.15.5-alpha.3, @strapi/utils@workspace:packages/core/utils": version: 0.0.0-use.local resolution: "@strapi/utils@workspace:packages/core/utils" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/pack-up": "npm:4.15.5-alpha.3" "@types/koa": "npm:2.13.4" "@types/node": "npm:18.18.4" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" http-errors: "npm:1.8.1" koa: "npm:2.13.4" koa-body: "npm:4.2.0" lodash: "npm:4.17.21" p-map: "npm:4.0.0" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" yup: "npm:0.32.9" languageName: unknown linkType: soft @@ -15642,12 +15642,12 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-app@workspace:packages/cli/create-strapi-app" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.2" - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/generate-new": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.3" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" inquirer: "npm:8.2.5" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" bin: create-strapi-app: ./bin/index.js languageName: unknown @@ -15657,17 +15657,17 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-starter@workspace:packages/cli/create-strapi-starter" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.2" - "@strapi/pack-up": "npm:4.15.5-alpha.2" + "@strapi/generate-new": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.3" chalk: "npm:4.1.2" ci-info: "npm:3.8.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.2" + eslint-config-custom: "npm:4.15.5-alpha.3" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" inquirer: "npm:8.2.5" ora: "npm:5.4.1" - tsconfig: "npm:4.15.5-alpha.2" + tsconfig: "npm:4.15.5-alpha.3" bin: create-strapi-starter: ./bin/index.js languageName: unknown @@ -17570,7 +17570,7 @@ __metadata: languageName: node linkType: hard -"eslint-config-custom@npm:4.15.5-alpha.2, eslint-config-custom@workspace:packages/utils/eslint-config-custom": +"eslint-config-custom@npm:4.15.5-alpha.3, eslint-config-custom@workspace:packages/utils/eslint-config-custom": version: 0.0.0-use.local resolution: "eslint-config-custom@workspace:packages/utils/eslint-config-custom" languageName: unknown @@ -19498,16 +19498,16 @@ __metadata: resolution: "getstarted@workspace:examples/getstarted" dependencies: "@strapi/icons": "npm:1.11.0" - "@strapi/plugin-color-picker": "npm:4.15.5-alpha.2" - "@strapi/plugin-documentation": "npm:4.15.5-alpha.2" - "@strapi/plugin-graphql": "npm:4.15.5-alpha.2" - "@strapi/plugin-i18n": "npm:4.15.5-alpha.2" - "@strapi/plugin-sentry": "npm:4.15.5-alpha.2" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.2" - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.2" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.2" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/plugin-color-picker": "npm:4.15.5-alpha.3" + "@strapi/plugin-documentation": "npm:4.15.5-alpha.3" + "@strapi/plugin-graphql": "npm:4.15.5-alpha.3" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.3" + "@strapi/plugin-sentry": "npm:4.15.5-alpha.3" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.3" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.3" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.3" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" better-sqlite3: "npm:8.6.0" lodash: "npm:4.17.21" mysql: "npm:2.18.1" @@ -23025,9 +23025,9 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink-ts@workspace:examples/kitchensink-ts" dependencies: - "@strapi/plugin-i18n": "npm:4.15.5-alpha.2" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.3" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" better-sqlite3: "npm:8.6.0" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" @@ -23040,10 +23040,10 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink@workspace:examples/kitchensink" dependencies: - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.2" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.2" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.2" - "@strapi/strapi": "npm:4.15.5-alpha.2" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.3" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.3" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.3" lodash: "npm:4.17.21" mysql: "npm:2.18.1" mysql2: "npm:3.6.0" @@ -31985,7 +31985,7 @@ __metadata: languageName: node linkType: hard -"tsconfig@npm:4.15.5-alpha.2, tsconfig@workspace:packages/utils/tsconfig": +"tsconfig@npm:4.15.5-alpha.3, tsconfig@workspace:packages/utils/tsconfig": version: 0.0.0-use.local resolution: "tsconfig@workspace:packages/utils/tsconfig" dependencies: From 6a4fcc93af2f8955e8f981da3d264561253f2a3b Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Wed, 15 Nov 2023 16:37:41 +0100 Subject: [PATCH 29/43] v4.15.5-alpha.4 --- .github/actions/check-pr-status/package.json | 2 +- examples/getstarted/package.json | 22 +- examples/kitchensink-ts/package.json | 8 +- examples/kitchensink/package.json | 10 +- lerna.json | 2 +- packages/admin-test-utils/package.json | 6 +- packages/cli/create-strapi-app/package.json | 10 +- .../cli/create-strapi-starter/package.json | 10 +- packages/core/admin/package.json | 22 +- packages/core/content-manager/package.json | 4 +- .../core/content-type-builder/package.json | 12 +- packages/core/data-transfer/package.json | 12 +- packages/core/database/package.json | 10 +- packages/core/email/package.json | 12 +- packages/core/helper-plugin/package.json | 10 +- packages/core/permissions/package.json | 10 +- packages/core/strapi/package.json | 36 +- packages/core/types/package.json | 16 +- packages/core/upload/package.json | 12 +- packages/core/utils/package.json | 8 +- packages/generators/app/package.json | 4 +- packages/generators/generators/package.json | 12 +- packages/plugins/cloud/package.json | 10 +- packages/plugins/color-picker/package.json | 6 +- packages/plugins/documentation/package.json | 10 +- packages/plugins/graphql/package.json | 10 +- packages/plugins/i18n/package.json | 10 +- packages/plugins/sentry/package.json | 8 +- .../plugins/users-permissions/package.json | 10 +- .../providers/audit-logs-local/package.json | 10 +- .../providers/email-amazon-ses/package.json | 10 +- packages/providers/email-mailgun/package.json | 10 +- .../providers/email-nodemailer/package.json | 8 +- .../providers/email-sendgrid/package.json | 10 +- .../providers/email-sendmail/package.json | 10 +- packages/providers/upload-aws-s3/package.json | 8 +- .../providers/upload-cloudinary/package.json | 10 +- packages/providers/upload-local/package.json | 10 +- packages/utils/api-tests/package.json | 2 +- .../utils/eslint-config-custom/package.json | 2 +- packages/utils/logger/package.json | 8 +- packages/utils/pack-up/package.json | 6 +- packages/utils/tsconfig/package.json | 2 +- packages/utils/typescript/package.json | 2 +- scripts/front/package.json | 2 +- yarn.lock | 394 +++++++++--------- 46 files changed, 409 insertions(+), 409 deletions(-) diff --git a/.github/actions/check-pr-status/package.json b/.github/actions/check-pr-status/package.json index 2439756b974..2f8df79ea72 100644 --- a/.github/actions/check-pr-status/package.json +++ b/.github/actions/check-pr-status/package.json @@ -1,6 +1,6 @@ { "name": "check-pr-status", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "license": "MIT", "main": "dist/index.js", diff --git a/examples/getstarted/package.json b/examples/getstarted/package.json index 5ef1e1b9277..9efe9ec2fdd 100644 --- a/examples/getstarted/package.json +++ b/examples/getstarted/package.json @@ -1,6 +1,6 @@ { "name": "getstarted", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -14,16 +14,16 @@ }, "dependencies": { "@strapi/icons": "1.11.0", - "@strapi/plugin-color-picker": "4.15.5-alpha.3", - "@strapi/plugin-documentation": "4.15.5-alpha.3", - "@strapi/plugin-graphql": "4.15.5-alpha.3", - "@strapi/plugin-i18n": "4.15.5-alpha.3", - "@strapi/plugin-sentry": "4.15.5-alpha.3", - "@strapi/plugin-users-permissions": "4.15.5-alpha.3", - "@strapi/provider-email-mailgun": "4.15.5-alpha.3", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.3", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/plugin-color-picker": "4.15.5-alpha.4", + "@strapi/plugin-documentation": "4.15.5-alpha.4", + "@strapi/plugin-graphql": "4.15.5-alpha.4", + "@strapi/plugin-i18n": "4.15.5-alpha.4", + "@strapi/plugin-sentry": "4.15.5-alpha.4", + "@strapi/plugin-users-permissions": "4.15.5-alpha.4", + "@strapi/provider-email-mailgun": "4.15.5-alpha.4", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.4", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "better-sqlite3": "8.6.0", "lodash": "4.17.21", "mysql": "2.18.1", diff --git a/examples/kitchensink-ts/package.json b/examples/kitchensink-ts/package.json index 6c52d4f200b..72565ba6be4 100644 --- a/examples/kitchensink-ts/package.json +++ b/examples/kitchensink-ts/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink-ts", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "description": "A Strapi application", "license": "MIT", @@ -14,9 +14,9 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/plugin-i18n": "4.15.5-alpha.3", - "@strapi/plugin-users-permissions": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/plugin-i18n": "4.15.5-alpha.4", + "@strapi/plugin-users-permissions": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "better-sqlite3": "8.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/kitchensink/package.json b/examples/kitchensink/package.json index db6fd421ef6..abc4368d2ff 100644 --- a/examples/kitchensink/package.json +++ b/examples/kitchensink/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -13,10 +13,10 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/provider-email-mailgun": "4.15.5-alpha.3", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.3", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/provider-email-mailgun": "4.15.5-alpha.4", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.4", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "lodash": "4.17.21", "mysql": "2.18.1", "mysql2": "3.6.0", diff --git a/lerna.json b/lerna.json index c871de8e129..0d42ed9bd64 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "packages": ["packages/*", "examples/*"], "npmClient": "yarn", "useWorkspaces": true, diff --git a/packages/admin-test-utils/package.json b/packages/admin-test-utils/package.json index aa749d916a1..7181461f5c3 100644 --- a/packages/admin-test-utils/package.json +++ b/packages/admin-test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin-test-utils", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "description": "Test utilities for the Strapi administration panel", "license": "MIT", @@ -75,8 +75,8 @@ "@reduxjs/toolkit": "1.9.7", "@strapi/pack-up": "workspace:*", "@testing-library/jest-dom": "5.16.5", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "peerDependencies": { "@reduxjs/toolkit": "^1.9.7", diff --git a/packages/cli/create-strapi-app/package.json b/packages/cli/create-strapi-app/package.json index 51667c0f2d8..c86ac617842 100644 --- a/packages/cli/create-strapi-app/package.json +++ b/packages/cli/create-strapi-app/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-app", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-app", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.3", + "@strapi/generate-new": "4.15.5-alpha.4", "commander": "8.3.0", "inquirer": "8.2.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/cli/create-strapi-starter/package.json b/packages/cli/create-strapi-starter/package.json index 59a0d95dfbe..563d9a7a352 100644 --- a/packages/cli/create-strapi-starter/package.json +++ b/packages/cli/create-strapi-starter/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-starter", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-starter", @@ -44,7 +44,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.3", + "@strapi/generate-new": "4.15.5-alpha.4", "chalk": "4.1.2", "ci-info": "3.8.0", "commander": "8.3.0", @@ -54,9 +54,9 @@ "ora": "5.4.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index 926c4d70ece..66beacce197 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Strapi Admin", "repository": { "type": "git", @@ -75,15 +75,15 @@ "@radix-ui/react-context": "1.0.1", "@radix-ui/react-toolbar": "1.0.4", "@reduxjs/toolkit": "1.9.7", - "@strapi/data-transfer": "4.15.5-alpha.3", + "@strapi/data-transfer": "4.15.5-alpha.4", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/permissions": "4.15.5-alpha.3", - "@strapi/provider-audit-logs-local": "4.15.5-alpha.3", - "@strapi/types": "4.15.5-alpha.3", - "@strapi/typescript-utils": "4.15.5-alpha.3", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/permissions": "4.15.5-alpha.4", + "@strapi/provider-audit-logs-local": "4.15.5-alpha.4", + "@strapi/types": "4.15.5-alpha.4", + "@strapi/typescript-utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.4", "axios": "1.6.0", "bcryptjs": "2.4.3", "boxen": "5.1.2", @@ -172,9 +172,9 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/admin-test-utils": "4.15.5-alpha.3", - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/admin-test-utils": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/content-manager/package.json b/packages/core/content-manager/package.json index 91efab0ed07..7f769d8cc28 100644 --- a/packages/core/content-manager/package.json +++ b/packages/core/content-manager/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-manager", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "A powerful UI to easily manage your data.", "repository": { "type": "git", @@ -26,7 +26,7 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "lodash": "4.17.21", "qs": "6.11.1" }, diff --git a/packages/core/content-type-builder/package.json b/packages/core/content-type-builder/package.json index f6bf8d1975b..83cf78233a9 100644 --- a/packages/core/content-type-builder/package.json +++ b/packages/core/content-type-builder/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-type-builder", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Strapi plugin to create content type", "repository": { "type": "git", @@ -49,10 +49,10 @@ "dependencies": { "@sindresorhus/slugify": "1.1.0", "@strapi/design-system": "1.13.0", - "@strapi/generators": "4.15.5-alpha.3", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/generators": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "fs-extra": "10.0.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "@testing-library/react": "14.0.0", "history": "^4.9.0", "react": "^18.2.0", diff --git a/packages/core/data-transfer/package.json b/packages/core/data-transfer/package.json index e30eae0a0a8..da22935d882 100644 --- a/packages/core/data-transfer/package.json +++ b/packages/core/data-transfer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/data-transfer", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Data transfer capabilities for Strapi", "keywords": [ "strapi", @@ -41,10 +41,10 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/logger": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", - "@strapi/types": "4.15.5-alpha.3", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/logger": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/types": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.4", "chalk": "4.1.2", "cli-table3": "0.6.2", "commander": "8.3.0", @@ -61,7 +61,7 @@ "ws": "8.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@strapi/strapi": "4.15.2", "@types/fs-extra": "9.0.13", "@types/jest": "29.5.2", diff --git a/packages/core/database/package.json b/packages/core/database/package.json index c32488406e6..a8133919b35 100644 --- a/packages/core/database/package.json +++ b/packages/core/database/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/database", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Strapi's database layer", "homepage": "https://strapi.io", "bugs": { @@ -40,7 +40,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "date-fns": "2.30.0", "debug": "4.3.4", "fs-extra": "10.0.0", @@ -50,9 +50,9 @@ "umzug": "3.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/email/package.json b/packages/core/email/package.json index ee786578806..6f20446f018 100644 --- a/packages/core/email/package.json +++ b/packages/core/email/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-email", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Easily configure your Strapi application to send emails.", "repository": { "type": "git", @@ -54,10 +54,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/provider-email-sendmail": "4.15.5-alpha.3", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/provider-email-sendmail": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.4", "lodash": "4.17.21", "prop-types": "^15.8.1", "react-intl": "6.4.1", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/types": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/types": "4.15.5-alpha.4", "@testing-library/react": "14.0.0", "@types/koa": "2.13.4", "@types/lodash": "^4.14.191", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index 1c2e66c2b46..cd68c66e20e 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/helper-plugin", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Helper for Strapi plugins development", "repository": { "type": "git", @@ -69,11 +69,11 @@ "@storybook/addon-mdx-gfm": "7.4.0", "@storybook/builder-vite": "7.4.0", "@storybook/react-vite": "7.4.0", - "@strapi/admin-test-utils": "4.15.5-alpha.3", + "@strapi/admin-test-utils": "4.15.5-alpha.4", "@strapi/design-system": "1.13.0", "@strapi/icons": "1.13.0", - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/types": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/types": "4.15.5-alpha.4", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/react": "18.2.7", @@ -82,7 +82,7 @@ "@types/react-router-dom": "5.3.3", "@types/styled-components": "5.1.26", "cross-env": "^7.0.3", - "eslint-config-custom": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.4", "eslint-plugin-storybook": "0.6.14", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/core/permissions/package.json b/packages/core/permissions/package.json index 727a8c48fc5..104a1597ebd 100644 --- a/packages/core/permissions/package.json +++ b/packages/core/permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/permissions", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Strapi's permission layer.", "repository": { "type": "git", @@ -38,15 +38,15 @@ }, "dependencies": { "@casl/ability": "6.5.0", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "lodash": "4.17.21", "qs": "6.11.1", "sift": "16.0.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/strapi/package.json b/packages/core/strapi/package.json index 1bbefd10afc..1a9bf67528c 100644 --- a/packages/core/strapi/package.json +++ b/packages/core/strapi/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/strapi", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite", "keywords": [ "strapi", @@ -114,21 +114,21 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/admin": "4.15.5-alpha.3", - "@strapi/data-transfer": "4.15.5-alpha.3", - "@strapi/database": "4.15.5-alpha.3", - "@strapi/generate-new": "4.15.5-alpha.3", - "@strapi/generators": "4.15.5-alpha.3", - "@strapi/logger": "4.15.5-alpha.3", - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/permissions": "4.15.5-alpha.3", - "@strapi/plugin-content-manager": "4.15.5-alpha.3", - "@strapi/plugin-content-type-builder": "4.15.5-alpha.3", - "@strapi/plugin-email": "4.15.5-alpha.3", - "@strapi/plugin-upload": "4.15.5-alpha.3", - "@strapi/types": "4.15.5-alpha.3", - "@strapi/typescript-utils": "4.15.5-alpha.3", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/admin": "4.15.5-alpha.4", + "@strapi/data-transfer": "4.15.5-alpha.4", + "@strapi/database": "4.15.5-alpha.4", + "@strapi/generate-new": "4.15.5-alpha.4", + "@strapi/generators": "4.15.5-alpha.4", + "@strapi/logger": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/permissions": "4.15.5-alpha.4", + "@strapi/plugin-content-manager": "4.15.5-alpha.4", + "@strapi/plugin-content-type-builder": "4.15.5-alpha.4", + "@strapi/plugin-email": "4.15.5-alpha.4", + "@strapi/plugin-upload": "4.15.5-alpha.4", + "@strapi/types": "4.15.5-alpha.4", + "@strapi/typescript-utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.4", "bcryptjs": "2.4.3", "boxen": "5.1.2", "chalk": "4.1.2", @@ -188,9 +188,9 @@ "@types/node": "18.18.4", "@types/node-schedule": "2.1.0", "@types/statuses": "2.0.1", - "eslint-config-custom": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.4", "supertest": "6.3.3", - "tsconfig": "4.15.5-alpha.3" + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/types/package.json b/packages/core/types/package.json index 815640b1e47..a860d8a2d8e 100644 --- a/packages/core/types/package.json +++ b/packages/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/types", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Shared typescript types for Strapi internal use", "keywords": [ "strapi" @@ -46,10 +46,10 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/database": "4.15.5-alpha.3", - "@strapi/logger": "4.15.5-alpha.3", - "@strapi/permissions": "4.15.5-alpha.3", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/database": "4.15.5-alpha.4", + "@strapi/logger": "4.15.5-alpha.4", + "@strapi/permissions": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.4", "commander": "8.3.0", "https-proxy-agent": "5.0.1", "koa": "2.13.4", @@ -57,14 +57,14 @@ "node-schedule": "2.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@strapi/ts-zen": "^0.2.0", "@types/jest": "29.5.2", "@types/koa": "2.13.4", "@types/koa__router": "12.0.0", "@types/node-schedule": "2.1.0", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4", "typescript": "5.2.2" }, "engines": { diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index af6c34c4ba1..2dfd1d400f2 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-upload", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Makes it easy to upload images and files to your Strapi Application.", "license": "SEE LICENSE IN LICENSE", "author": { @@ -44,10 +44,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/provider-upload-local": "4.15.5-alpha.3", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/provider-upload-local": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.4", "axios": "1.6.0", "byte-size": "7.0.1", "cropperjs": "1.6.0", @@ -71,8 +71,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 06f9a67516d..1da225543bf 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/utils", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Shared utilities for the Strapi packages", "keywords": [ "strapi", @@ -53,13 +53,13 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@types/koa": "2.13.4", "@types/node": "18.18.4", - "eslint-config-custom": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.4", "koa": "2.13.4", "koa-body": "4.2.0", - "tsconfig": "4.15.5-alpha.3" + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/generators/app/package.json b/packages/generators/app/package.json index 0a26216c3be..66f6222262c 100644 --- a/packages/generators/app/package.json +++ b/packages/generators/app/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generate-new", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Generate a new Strapi application.", "keywords": [ "generate", @@ -58,7 +58,7 @@ "tar": "6.1.13" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "copyfiles": "2.4.1" }, "engines": { diff --git a/packages/generators/generators/package.json b/packages/generators/generators/package.json index c10cf7ce008..53bf11cfa1c 100644 --- a/packages/generators/generators/package.json +++ b/packages/generators/generators/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generators", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Interactive API generator.", "keywords": [ "strapi", @@ -47,8 +47,8 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "4.15.5-alpha.3", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/typescript-utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.4", "chalk": "4.1.2", "copyfiles": "2.4.1", "fs-extra": "10.0.0", @@ -57,9 +57,9 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/plugins/cloud/package.json b/packages/plugins/cloud/package.json index 83eee719002..9f45f9547cf 100644 --- a/packages/plugins/cloud/package.json +++ b/packages/plugins/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-cloud", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Instructions to deploy your local project to Strapi Cloud", "license": "MIT", "author": { @@ -38,22 +38,22 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.4", "@types/react": "18.2.7", "@types/react-dom": "18.2.12", "@types/react-router-dom": "^5.3.3", "@types/styled-components": "5.1.26", - "eslint-config-custom": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.4", "react": "18.2.0", "react-dom": "18.2.0", "react-router-dom": "5.3.4", "styled-components": "5.3.3", - "tsconfig": "4.15.5-alpha.3", + "tsconfig": "4.15.5-alpha.4", "typescript": "5.2.2" }, "peerDependencies": { diff --git a/packages/plugins/color-picker/package.json b/packages/plugins/color-picker/package.json index c7e595b6f9c..4ea69be4e7d 100644 --- a/packages/plugins/color-picker/package.json +++ b/packages/plugins/color-picker/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-color-picker", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Strapi maintained Custom Fields", "repository": { "type": "git", @@ -55,14 +55,14 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", "prop-types": "^15.8.1", "react-colorful": "5.6.1", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/strapi": "4.15.5-alpha.4", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/styled-components": "5.1.26", diff --git a/packages/plugins/documentation/package.json b/packages/plugins/documentation/package.json index edc87c2ff67..e5e7004268a 100644 --- a/packages/plugins/documentation/package.json +++ b/packages/plugins/documentation/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-documentation", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.", "repository": { "type": "git", @@ -47,9 +47,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "bcryptjs": "2.4.3", "cheerio": "^1.0.0-rc.12", "formik": "2.4.0", @@ -67,8 +67,8 @@ }, "devDependencies": { "@apidevtools/swagger-parser": "^10.1.0", - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "msw": "1.3.0", diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index d63c4fe1ca0..9557b325f03 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-graphql", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Adds GraphQL endpoint with default API methods.", "repository": { "type": "git", @@ -45,9 +45,9 @@ "@graphql-tools/schema": "8.5.1", "@graphql-tools/utils": "^8.13.1", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "apollo-server-core": "3.12.1", "apollo-server-koa": "3.10.0", "graphql": "^15.5.1", @@ -61,8 +61,8 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "cross-env": "^7.0.3", "koa": "2.13.4", "react": "^18.2.0", diff --git a/packages/plugins/i18n/package.json b/packages/plugins/i18n/package.json index 9914b3b4af9..2d847b87cdb 100644 --- a/packages/plugins/i18n/package.json +++ b/packages/plugins/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-i18n", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API", "repository": { "type": "git", @@ -50,9 +50,9 @@ "dependencies": { "@reduxjs/toolkit": "1.9.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "formik": "2.4.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -64,8 +64,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "@testing-library/react": "14.0.0", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index 10a79245eeb..57034bfa0af 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-sentry", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Send Strapi error events to Sentry", "repository": { "type": "git", @@ -46,12 +46,12 @@ "dependencies": { "@sentry/node": "6.19.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "5.3.4", diff --git a/packages/plugins/users-permissions/package.json b/packages/plugins/users-permissions/package.json index 572bca2aa35..342b11fb059 100644 --- a/packages/plugins/users-permissions/package.json +++ b/packages/plugins/users-permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-users-permissions", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Protect your API with a full-authentication process based on JWT", "repository": { "type": "git", @@ -48,9 +48,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.3", + "@strapi/helper-plugin": "4.15.5-alpha.4", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "bcryptjs": "2.4.3", "formik": "2.4.0", "grant-koa": "5.4.8", @@ -69,8 +69,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/strapi": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.4", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/providers/audit-logs-local/package.json b/packages/providers/audit-logs-local/package.json index babb2c97973..6d0acbc204b 100644 --- a/packages/providers/audit-logs-local/package.json +++ b/packages/providers/audit-logs-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-audit-logs-local", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Local provider for strapi audit logs", "keywords": [ "audit-logs", @@ -42,10 +42,10 @@ "watch": "pack-up watch" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "@strapi/types": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/types": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-amazon-ses/package.json b/packages/providers/email-amazon-ses/package.json index 490b8f825db..8befd4d758d 100644 --- a/packages/providers/email-amazon-ses/package.json +++ b/packages/providers/email-amazon-ses/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-amazon-ses", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Amazon SES provider for strapi email", "keywords": [ "email", @@ -43,13 +43,13 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "node-ses": "^3.0.3" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-mailgun/package.json b/packages/providers/email-mailgun/package.json index 18cd619aa79..c6cc034652d 100644 --- a/packages/providers/email-mailgun/package.json +++ b/packages/providers/email-mailgun/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-mailgun", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Mailgun provider for strapi email plugin", "keywords": [ "email", @@ -45,14 +45,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "form-data": "^4.0.0", "mailgun.js": "8.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-nodemailer/package.json b/packages/providers/email-nodemailer/package.json index fbc11181a9e..63f51c6e452 100644 --- a/packages/providers/email-nodemailer/package.json +++ b/packages/providers/email-nodemailer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-nodemailer", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Nodemailer provider for Strapi 3", "keywords": [ "strapi", @@ -60,10 +60,10 @@ "nodemailer": "6.9.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@types/nodemailer": "6.4.7", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendgrid/package.json b/packages/providers/email-sendgrid/package.json index 3b42d164332..d73178e6e83 100644 --- a/packages/providers/email-sendgrid/package.json +++ b/packages/providers/email-sendgrid/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendgrid", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Sendgrid provider for strapi email", "keywords": [ "email", @@ -44,12 +44,12 @@ }, "dependencies": { "@sendgrid/mail": "7.7.0", - "@strapi/utils": "4.15.5-alpha.3" + "@strapi/utils": "4.15.5-alpha.4" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendmail/package.json b/packages/providers/email-sendmail/package.json index dcf795ec842..8a400df6ea7 100644 --- a/packages/providers/email-sendmail/package.json +++ b/packages/providers/email-sendmail/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendmail", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Sendmail provider for strapi email", "keywords": [ "email", @@ -42,14 +42,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "sendmail": "^1.6.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@types/sendmail": "1.4.4", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-aws-s3/package.json b/packages/providers/upload-aws-s3/package.json index 38f75edcfe6..1741c672e27 100644 --- a/packages/providers/upload-aws-s3/package.json +++ b/packages/providers/upload-aws-s3/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-aws-s3", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "AWS S3 provider for strapi upload", "keywords": [ "upload", @@ -53,10 +53,10 @@ "lodash": "4.17.21" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-cloudinary/package.json b/packages/providers/upload-cloudinary/package.json index 9104157a239..85675c9ea00 100644 --- a/packages/providers/upload-cloudinary/package.json +++ b/packages/providers/upload-cloudinary/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-cloudinary", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Cloudinary provider for strapi upload", "keywords": [ "upload", @@ -43,14 +43,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "cloudinary": "^1.41.0", "into-stream": "^5.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-local/package.json b/packages/providers/upload-local/package.json index aa97486c9c7..fe843c8e40f 100644 --- a/packages/providers/upload-local/package.json +++ b/packages/providers/upload-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-local", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Local provider for strapi upload", "keywords": [ "upload", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.3", + "@strapi/utils": "4.15.5-alpha.4", "fs-extra": "10.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/api-tests/package.json b/packages/utils/api-tests/package.json index 12584c07171..63dbf3f7771 100644 --- a/packages/utils/api-tests/package.json +++ b/packages/utils/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "api-tests", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "dependencies": { "dotenv": "14.2.0", diff --git a/packages/utils/eslint-config-custom/package.json b/packages/utils/eslint-config-custom/package.json index f196262faac..f38473356fd 100644 --- a/packages/utils/eslint-config-custom/package.json +++ b/packages/utils/eslint-config-custom/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-custom", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "main": "index.js" } diff --git a/packages/utils/logger/package.json b/packages/utils/logger/package.json index 29ee060ecdb..02a77267de1 100644 --- a/packages/utils/logger/package.json +++ b/packages/utils/logger/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/logger", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Strapi's logger", "homepage": "https://strapi.io", "bugs": { @@ -43,9 +43,9 @@ "winston": "3.10.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", - "eslint-config-custom": "4.15.5-alpha.3", - "tsconfig": "4.15.5-alpha.3" + "@strapi/pack-up": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.4" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index e0f7bb87b2f..8ab77e26000 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/pack-up", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Simple tools for creating interoperable CJS & ESM packages.", "keywords": [ "strapi", @@ -84,11 +84,11 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.3", + "@strapi/pack-up": "4.15.5-alpha.4", "@types/git-url-parse": "9.0.1", "@types/ini": "1.3.31", "@types/prompts": "2.4.4", - "eslint-config-custom": "4.15.5-alpha.3", + "eslint-config-custom": "4.15.5-alpha.4", "rimraf": "3.0.2" }, "engines": { diff --git a/packages/utils/tsconfig/package.json b/packages/utils/tsconfig/package.json index 547c8f9aadc..ee86983d043 100644 --- a/packages/utils/tsconfig/package.json +++ b/packages/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "tsconfig", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "devDependencies": { "@tsconfig/node18": "18.2.2" diff --git a/packages/utils/typescript/package.json b/packages/utils/typescript/package.json index 662f55bdce6..2c6920e6301 100644 --- a/packages/utils/typescript/package.json +++ b/packages/utils/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/typescript-utils", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "description": "Typescript support for Strapi", "keywords": [ "strapi", diff --git a/scripts/front/package.json b/scripts/front/package.json index 3ef5c24857c..e7c2a030473 100644 --- a/scripts/front/package.json +++ b/scripts/front/package.json @@ -1,6 +1,6 @@ { "name": "scripts-front", - "version": "4.15.5-alpha.3", + "version": "4.15.5-alpha.4", "private": true, "scripts": { "test:front": "jest --config jest.config.front.js" diff --git a/yarn.lock b/yarn.lock index 7c0f88f1ef8..34596d05a70 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8613,7 +8613,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin-test-utils@npm:4.15.5-alpha.3, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": +"@strapi/admin-test-utils@npm:4.15.5-alpha.4, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": version: 0.0.0-use.local resolution: "@strapi/admin-test-utils@workspace:packages/admin-test-utils" dependencies: @@ -8621,9 +8621,9 @@ __metadata: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/pack-up": "workspace:*" "@testing-library/jest-dom": "npm:5.16.5" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" jest-styled-components: "npm:7.1.1" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" whatwg-fetch: "npm:3.6.2" peerDependencies: "@reduxjs/toolkit": ^1.9.7 @@ -8746,7 +8746,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin@npm:4.15.5-alpha.3, @strapi/admin@workspace:packages/core/admin": +"@strapi/admin@npm:4.15.5-alpha.4, @strapi/admin@workspace:packages/core/admin": version: 0.0.0-use.local resolution: "@strapi/admin@workspace:packages/core/admin" dependencies: @@ -8755,18 +8755,18 @@ __metadata: "@radix-ui/react-context": "npm:1.0.1" "@radix-ui/react-toolbar": "npm:1.0.4" "@reduxjs/toolkit": "npm:1.9.7" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.3" - "@strapi/data-transfer": "npm:4.15.5-alpha.3" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.4" + "@strapi/data-transfer": "npm:4.15.5-alpha.4" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/permissions": "npm:4.15.5-alpha.3" - "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" - "@strapi/types": "npm:4.15.5-alpha.3" - "@strapi/typescript-utils": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/permissions": "npm:4.15.5-alpha.4" + "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/types": "npm:4.15.5-alpha.4" + "@strapi/typescript-utils": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -8902,15 +8902,15 @@ __metadata: languageName: node linkType: hard -"@strapi/data-transfer@npm:4.15.5-alpha.3, @strapi/data-transfer@workspace:packages/core/data-transfer": +"@strapi/data-transfer@npm:4.15.5-alpha.4, @strapi/data-transfer@workspace:packages/core/data-transfer": version: 0.0.0-use.local resolution: "@strapi/data-transfer@workspace:packages/core/data-transfer" dependencies: - "@strapi/logger": "npm:4.15.5-alpha.3" - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/logger": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.4" "@strapi/strapi": "npm:4.15.2" - "@strapi/types": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/types": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@types/fs-extra": "npm:9.0.13" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" @@ -8961,20 +8961,20 @@ __metadata: languageName: node linkType: hard -"@strapi/database@npm:4.15.5-alpha.3, @strapi/database@workspace:packages/core/database": +"@strapi/database@npm:4.15.5-alpha.4, @strapi/database@workspace:packages/core/database": version: 0.0.0-use.local resolution: "@strapi/database@workspace:packages/core/database" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" date-fns: "npm:2.30.0" debug: "npm:4.3.4" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" fs-extra: "npm:10.0.0" knex: "npm:2.5.0" lodash: "npm:4.17.21" semver: "npm:7.5.4" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" umzug: "npm:3.2.1" languageName: unknown linkType: soft @@ -9056,12 +9056,12 @@ __metadata: languageName: node linkType: hard -"@strapi/generate-new@npm:4.15.5-alpha.3, @strapi/generate-new@workspace:packages/generators/app": +"@strapi/generate-new@npm:4.15.5-alpha.4, @strapi/generate-new@workspace:packages/generators/app": version: 0.0.0-use.local resolution: "@strapi/generate-new@workspace:packages/generators/app" dependencies: "@sentry/node": "npm:6.19.7" - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" chalk: "npm:^4.1.2" copyfiles: "npm:2.4.1" execa: "npm:5.1.1" @@ -9093,22 +9093,22 @@ __metadata: languageName: node linkType: hard -"@strapi/generators@npm:4.15.5-alpha.3, @strapi/generators@workspace:packages/generators/generators": +"@strapi/generators@npm:4.15.5-alpha.4, @strapi/generators@workspace:packages/generators/generators": version: 0.0.0-use.local resolution: "@strapi/generators@workspace:packages/generators/generators" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/typescript-utils": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/typescript-utils": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" chalk: "npm:4.1.2" copyfiles: "npm:2.4.1" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" fs-extra: "npm:10.0.0" node-plop: "npm:0.26.3" plop: "npm:2.7.6" pluralize: "npm:8.0.0" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -9137,7 +9137,7 @@ __metadata: languageName: node linkType: hard -"@strapi/helper-plugin@npm:4.15.5-alpha.3, @strapi/helper-plugin@workspace:packages/core/helper-plugin": +"@strapi/helper-plugin@npm:4.15.5-alpha.4, @strapi/helper-plugin@workspace:packages/core/helper-plugin": version: 0.0.0-use.local resolution: "@strapi/helper-plugin@workspace:packages/core/helper-plugin" dependencies: @@ -9147,11 +9147,11 @@ __metadata: "@storybook/addon-mdx-gfm": "npm:7.4.0" "@storybook/builder-vite": "npm:7.4.0" "@storybook/react-vite": "npm:7.4.0" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.3" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.4" "@strapi/design-system": "npm:1.13.0" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/types": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/types": "npm:4.15.5-alpha.4" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/react": "npm:18.2.7" @@ -9162,7 +9162,7 @@ __metadata: axios: "npm:1.6.0" cross-env: "npm:^7.0.3" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" eslint-plugin-storybook: "npm:0.6.14" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9222,14 +9222,14 @@ __metadata: languageName: node linkType: hard -"@strapi/logger@npm:4.15.5-alpha.3, @strapi/logger@workspace:packages/utils/logger": +"@strapi/logger@npm:4.15.5-alpha.4, @strapi/logger@workspace:packages/utils/logger": version: 0.0.0-use.local resolution: "@strapi/logger@workspace:packages/utils/logger" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - eslint-config-custom: "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.4" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" winston: "npm:3.10.0" languageName: unknown linkType: soft @@ -9265,11 +9265,11 @@ __metadata: languageName: node linkType: hard -"@strapi/pack-up@npm:4.15.5-alpha.3, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": +"@strapi/pack-up@npm:4.15.5-alpha.4, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": version: 0.0.0-use.local resolution: "@strapi/pack-up@workspace:packages/utils/pack-up" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" "@types/git-url-parse": "npm:9.0.1" "@types/ini": "npm:1.3.31" "@types/prompts": "npm:2.4.4" @@ -9281,7 +9281,7 @@ __metadata: commander: "npm:8.3.0" esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" @@ -9314,18 +9314,18 @@ __metadata: languageName: node linkType: hard -"@strapi/permissions@npm:4.15.5-alpha.3, @strapi/permissions@workspace:packages/core/permissions": +"@strapi/permissions@npm:4.15.5-alpha.4, @strapi/permissions@workspace:packages/core/permissions": version: 0.0.0-use.local resolution: "@strapi/permissions@workspace:packages/core/permissions" dependencies: "@casl/ability": "npm:6.5.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" - eslint-config-custom: "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.4" lodash: "npm:4.17.21" qs: "npm:6.11.1" sift: "npm:16.0.1" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -9334,20 +9334,20 @@ __metadata: resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.4" "@types/react": "npm:18.2.7" "@types/react-dom": "npm:18.2.12" "@types/react-router-dom": "npm:^5.3.3" "@types/styled-components": "npm:5.1.26" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" react: "npm:18.2.0" react-dom: "npm:18.2.0" react-intl: "npm:6.4.1" react-router-dom: "npm:5.3.4" styled-components: "npm:5.3.3" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" typescript: "npm:5.2.2" peerDependencies: "@strapi/strapi": ^4.4.0 @@ -9358,14 +9358,14 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-color-picker@npm:4.15.5-alpha.3, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": +"@strapi/plugin-color-picker@npm:4.15.5-alpha.4, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": version: 0.0.0-use.local resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/strapi": "npm:4.15.5-alpha.4" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/styled-components": "npm:5.1.26" @@ -9398,12 +9398,12 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-manager@npm:4.15.5-alpha.3, @strapi/plugin-content-manager@workspace:packages/core/content-manager": +"@strapi/plugin-content-manager@npm:4.15.5-alpha.4, @strapi/plugin-content-manager@workspace:packages/core/content-manager": version: 0.0.0-use.local resolution: "@strapi/plugin-content-manager@workspace:packages/core/content-manager" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.4" lodash: "npm:4.17.21" qs: "npm:6.11.1" languageName: unknown @@ -9439,18 +9439,18 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.3, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": +"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.4, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": version: 0.0.0-use.local resolution: "@strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder" dependencies: "@sindresorhus/slugify": "npm:1.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/generators": "npm:4.15.5-alpha.3" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/generators": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@testing-library/react": "npm:14.0.0" fs-extra: "npm:10.0.0" history: "npm:^4.9.0" @@ -9476,17 +9476,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-documentation@npm:4.15.5-alpha.3, @strapi/plugin-documentation@workspace:packages/plugins/documentation": +"@strapi/plugin-documentation@npm:4.15.5-alpha.4, @strapi/plugin-documentation@workspace:packages/plugins/documentation": version: 0.0.0-use.local resolution: "@strapi/plugin-documentation@workspace:packages/plugins/documentation" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" bcryptjs: "npm:2.4.3" @@ -9541,17 +9541,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-email@npm:4.15.5-alpha.3, @strapi/plugin-email@workspace:packages/core/email": +"@strapi/plugin-email@npm:4.15.5-alpha.4, @strapi/plugin-email@workspace:packages/core/email": version: 0.0.0-use.local resolution: "@strapi/plugin-email@workspace:packages/core/email" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.3" - "@strapi/types": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.4" + "@strapi/types": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@testing-library/react": "npm:14.0.0" "@types/koa": "npm:2.13.4" "@types/lodash": "npm:^4.14.191" @@ -9575,18 +9575,18 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-graphql@npm:4.15.5-alpha.3, @strapi/plugin-graphql@workspace:packages/plugins/graphql": +"@strapi/plugin-graphql@npm:4.15.5-alpha.4, @strapi/plugin-graphql@workspace:packages/plugins/graphql": version: 0.0.0-use.local resolution: "@strapi/plugin-graphql@workspace:packages/plugins/graphql" dependencies: "@graphql-tools/schema": "npm:8.5.1" "@graphql-tools/utils": "npm:^8.13.1" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" apollo-server-core: "npm:3.12.1" apollo-server-koa: "npm:3.10.0" cross-env: "npm:^7.0.3" @@ -9613,17 +9613,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-i18n@npm:4.15.5-alpha.3, @strapi/plugin-i18n@workspace:packages/plugins/i18n": +"@strapi/plugin-i18n@npm:4.15.5-alpha.4, @strapi/plugin-i18n@workspace:packages/plugins/i18n": version: 0.0.0-use.local resolution: "@strapi/plugin-i18n@workspace:packages/plugins/i18n" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@testing-library/react": "npm:14.0.0" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9648,16 +9648,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-sentry@npm:4.15.5-alpha.3, @strapi/plugin-sentry@workspace:packages/plugins/sentry": +"@strapi/plugin-sentry@npm:4.15.5-alpha.4, @strapi/plugin-sentry@workspace:packages/plugins/sentry": version: 0.0.0-use.local resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry" dependencies: "@sentry/node": "npm:6.19.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" react-router-dom: "npm:5.3.4" @@ -9711,17 +9711,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-upload@npm:4.15.5-alpha.3, @strapi/plugin-upload@workspace:packages/core/upload": +"@strapi/plugin-upload@npm:4.15.5-alpha.4, @strapi/plugin-upload@workspace:packages/core/upload": version: 0.0.0-use.local resolution: "@strapi/plugin-upload@workspace:packages/core/upload" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/provider-upload-local": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/provider-upload-local": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9760,16 +9760,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-users-permissions@npm:4.15.5-alpha.3, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": +"@strapi/plugin-users-permissions@npm:4.15.5-alpha.4, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": version: 0.0.0-use.local resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.3" + "@strapi/helper-plugin": "npm:4.15.5-alpha.4" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9810,14 +9810,14 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.3, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": +"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.4, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": version: 0.0.0-use.local resolution: "@strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/types": "npm:4.15.5-alpha.3" - eslint-config-custom: "npm:4.15.5-alpha.3" - tsconfig: "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/types": "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -9825,24 +9825,24 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-amazon-ses@workspace:packages/providers/email-amazon-ses" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" - eslint-config-custom: "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.4" node-ses: "npm:^3.0.3" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft -"@strapi/provider-email-mailgun@npm:4.15.5-alpha.3, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": +"@strapi/provider-email-mailgun@npm:4.15.5-alpha.4, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": version: 0.0.0-use.local resolution: "@strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" - eslint-config-custom: "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.4" form-data: "npm:^4.0.0" mailgun.js: "npm:8.2.1" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -9850,12 +9850,12 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-nodemailer@workspace:packages/providers/email-nodemailer" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" "@types/nodemailer": "npm:6.4.7" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" lodash: "npm:4.17.21" nodemailer: "npm:6.9.1" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -9864,10 +9864,10 @@ __metadata: resolution: "@strapi/provider-email-sendgrid@workspace:packages/providers/email-sendgrid" dependencies: "@sendgrid/mail": "npm:7.7.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" - eslint-config-custom: "npm:4.15.5-alpha.3" - tsconfig: "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -9881,20 +9881,20 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-email-sendmail@npm:4.15.5-alpha.3, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": +"@strapi/provider-email-sendmail@npm:4.15.5-alpha.4, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": version: 0.0.0-use.local resolution: "@strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@types/sendmail": "npm:1.4.4" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" sendmail: "npm:^1.6.1" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft -"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.3, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": +"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.4, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": version: 0.0.0-use.local resolution: "@strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3" dependencies: @@ -9902,24 +9902,24 @@ __metadata: "@aws-sdk/lib-storage": "npm:3.433.0" "@aws-sdk/s3-request-presigner": "npm:3.433.0" "@aws-sdk/types": "npm:3.433.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft -"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.3, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": +"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.4, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": version: 0.0.0-use.local resolution: "@strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" cloudinary: "npm:^1.41.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" into-stream: "npm:^5.1.0" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -9933,16 +9933,16 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-upload-local@npm:4.15.5-alpha.3, @strapi/provider-upload-local@workspace:packages/providers/upload-local": +"@strapi/provider-upload-local@npm:4.15.5-alpha.4, @strapi/provider-upload-local@workspace:packages/providers/upload-local": version: 0.0.0-use.local resolution: "@strapi/provider-upload-local@workspace:packages/providers/upload-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" fs-extra: "npm:10.0.0" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" languageName: unknown linkType: soft @@ -10014,28 +10014,28 @@ __metadata: languageName: node linkType: hard -"@strapi/strapi@npm:4.15.5-alpha.3, @strapi/strapi@workspace:packages/core/strapi": +"@strapi/strapi@npm:4.15.5-alpha.4, @strapi/strapi@workspace:packages/core/strapi": version: 0.0.0-use.local resolution: "@strapi/strapi@workspace:packages/core/strapi" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/admin": "npm:4.15.5-alpha.3" - "@strapi/data-transfer": "npm:4.15.5-alpha.3" - "@strapi/database": "npm:4.15.5-alpha.3" - "@strapi/generate-new": "npm:4.15.5-alpha.3" - "@strapi/generators": "npm:4.15.5-alpha.3" - "@strapi/logger": "npm:4.15.5-alpha.3" + "@strapi/admin": "npm:4.15.5-alpha.4" + "@strapi/data-transfer": "npm:4.15.5-alpha.4" + "@strapi/database": "npm:4.15.5-alpha.4" + "@strapi/generate-new": "npm:4.15.5-alpha.4" + "@strapi/generators": "npm:4.15.5-alpha.4" + "@strapi/logger": "npm:4.15.5-alpha.4" "@strapi/pack-up": "workspace:*" - "@strapi/permissions": "npm:4.15.5-alpha.3" - "@strapi/plugin-content-manager": "npm:4.15.5-alpha.3" - "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.3" - "@strapi/plugin-email": "npm:4.15.5-alpha.3" - "@strapi/plugin-upload": "npm:4.15.5-alpha.3" + "@strapi/permissions": "npm:4.15.5-alpha.4" + "@strapi/plugin-content-manager": "npm:4.15.5-alpha.4" + "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.4" + "@strapi/plugin-email": "npm:4.15.5-alpha.4" + "@strapi/plugin-upload": "npm:4.15.5-alpha.4" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/types": "npm:4.15.5-alpha.3" - "@strapi/typescript-utils": "npm:4.15.5-alpha.3" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/types": "npm:4.15.5-alpha.4" + "@strapi/typescript-utils": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.4" "@types/bcryptjs": "npm:2.4.3" "@types/configstore": "npm:5.0.1" "@types/delegates": "npm:1.0.0" @@ -10061,7 +10061,7 @@ __metadata: debug: "npm:4.3.4" delegates: "npm:1.0.0" dotenv: "npm:14.2.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" glob: "npm:7.2.3" @@ -10091,7 +10091,7 @@ __metadata: semver: "npm:7.5.4" statuses: "npm:2.0.1" supertest: "npm:6.3.3" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" typescript: "npm:5.2.2" yup: "npm:0.32.9" bin: @@ -10128,29 +10128,29 @@ __metadata: languageName: node linkType: hard -"@strapi/types@npm:4.15.5-alpha.3, @strapi/types@workspace:packages/core/types": +"@strapi/types@npm:4.15.5-alpha.4, @strapi/types@workspace:packages/core/types": version: 0.0.0-use.local resolution: "@strapi/types@workspace:packages/core/types" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/database": "npm:4.15.5-alpha.3" - "@strapi/logger": "npm:4.15.5-alpha.3" - "@strapi/pack-up": "npm:4.15.5-alpha.3" - "@strapi/permissions": "npm:4.15.5-alpha.3" + "@strapi/database": "npm:4.15.5-alpha.4" + "@strapi/logger": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/permissions": "npm:4.15.5-alpha.4" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/utils": "npm:4.15.5-alpha.3" + "@strapi/utils": "npm:4.15.5-alpha.4" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" "@types/koa__router": "npm:12.0.0" "@types/node-schedule": "npm:2.1.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" https-proxy-agent: "npm:5.0.1" koa: "npm:2.13.4" node-fetch: "npm:2.7.0" node-schedule: "npm:2.1.0" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" typescript: "npm:5.2.2" languageName: unknown linkType: soft @@ -10169,7 +10169,7 @@ __metadata: languageName: node linkType: hard -"@strapi/typescript-utils@npm:4.15.5-alpha.3, @strapi/typescript-utils@workspace:packages/utils/typescript": +"@strapi/typescript-utils@npm:4.15.5-alpha.4, @strapi/typescript-utils@workspace:packages/utils/typescript": version: 0.0.0-use.local resolution: "@strapi/typescript-utils@workspace:packages/utils/typescript" dependencies: @@ -10228,22 +10228,22 @@ __metadata: languageName: node linkType: hard -"@strapi/utils@npm:4.15.5-alpha.3, @strapi/utils@workspace:packages/core/utils": +"@strapi/utils@npm:4.15.5-alpha.4, @strapi/utils@workspace:packages/core/utils": version: 0.0.0-use.local resolution: "@strapi/utils@workspace:packages/core/utils" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/pack-up": "npm:4.15.5-alpha.4" "@types/koa": "npm:2.13.4" "@types/node": "npm:18.18.4" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" http-errors: "npm:1.8.1" koa: "npm:2.13.4" koa-body: "npm:4.2.0" lodash: "npm:4.17.21" p-map: "npm:4.0.0" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" yup: "npm:0.32.9" languageName: unknown linkType: soft @@ -15642,12 +15642,12 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-app@workspace:packages/cli/create-strapi-app" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.3" - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/generate-new": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.4" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" inquirer: "npm:8.2.5" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" bin: create-strapi-app: ./bin/index.js languageName: unknown @@ -15657,17 +15657,17 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-starter@workspace:packages/cli/create-strapi-starter" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.3" - "@strapi/pack-up": "npm:4.15.5-alpha.3" + "@strapi/generate-new": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.4" chalk: "npm:4.1.2" ci-info: "npm:3.8.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.3" + eslint-config-custom: "npm:4.15.5-alpha.4" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" inquirer: "npm:8.2.5" ora: "npm:5.4.1" - tsconfig: "npm:4.15.5-alpha.3" + tsconfig: "npm:4.15.5-alpha.4" bin: create-strapi-starter: ./bin/index.js languageName: unknown @@ -17570,7 +17570,7 @@ __metadata: languageName: node linkType: hard -"eslint-config-custom@npm:4.15.5-alpha.3, eslint-config-custom@workspace:packages/utils/eslint-config-custom": +"eslint-config-custom@npm:4.15.5-alpha.4, eslint-config-custom@workspace:packages/utils/eslint-config-custom": version: 0.0.0-use.local resolution: "eslint-config-custom@workspace:packages/utils/eslint-config-custom" languageName: unknown @@ -19498,16 +19498,16 @@ __metadata: resolution: "getstarted@workspace:examples/getstarted" dependencies: "@strapi/icons": "npm:1.11.0" - "@strapi/plugin-color-picker": "npm:4.15.5-alpha.3" - "@strapi/plugin-documentation": "npm:4.15.5-alpha.3" - "@strapi/plugin-graphql": "npm:4.15.5-alpha.3" - "@strapi/plugin-i18n": "npm:4.15.5-alpha.3" - "@strapi/plugin-sentry": "npm:4.15.5-alpha.3" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.3" - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.3" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.3" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/plugin-color-picker": "npm:4.15.5-alpha.4" + "@strapi/plugin-documentation": "npm:4.15.5-alpha.4" + "@strapi/plugin-graphql": "npm:4.15.5-alpha.4" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.4" + "@strapi/plugin-sentry": "npm:4.15.5-alpha.4" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.4" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.4" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.4" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" better-sqlite3: "npm:8.6.0" lodash: "npm:4.17.21" mysql: "npm:2.18.1" @@ -23025,9 +23025,9 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink-ts@workspace:examples/kitchensink-ts" dependencies: - "@strapi/plugin-i18n": "npm:4.15.5-alpha.3" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.4" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" better-sqlite3: "npm:8.6.0" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" @@ -23040,10 +23040,10 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink@workspace:examples/kitchensink" dependencies: - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.3" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.3" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.3" - "@strapi/strapi": "npm:4.15.5-alpha.3" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.4" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.4" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.4" lodash: "npm:4.17.21" mysql: "npm:2.18.1" mysql2: "npm:3.6.0" @@ -31985,7 +31985,7 @@ __metadata: languageName: node linkType: hard -"tsconfig@npm:4.15.5-alpha.3, tsconfig@workspace:packages/utils/tsconfig": +"tsconfig@npm:4.15.5-alpha.4, tsconfig@workspace:packages/utils/tsconfig": version: 0.0.0-use.local resolution: "tsconfig@workspace:packages/utils/tsconfig" dependencies: From 3ba8a83b4a35ecee425713cd9fa9a5f5c2ea7650 Mon Sep 17 00:00:00 2001 From: Christian Date: Fri, 17 Nov 2023 12:16:04 +0100 Subject: [PATCH 30/43] fix(ctb): protect undefined values on SelectComponents (#18808) * fix: protect undefined values on SelectComponents * fix: if value is undefined set number to 0 --- .../admin/src/components/SelectComponents/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/content-type-builder/admin/src/components/SelectComponents/index.js b/packages/core/content-type-builder/admin/src/components/SelectComponents/index.js index f6d70cd94d9..5b1f286a3f9 100644 --- a/packages/core/content-type-builder/admin/src/components/SelectComponents/index.js +++ b/packages/core/content-type-builder/admin/src/components/SelectComponents/index.js @@ -54,7 +54,7 @@ const SelectComponents = ({ dynamicZoneTarget, intlLabel, name, onChange, value defaultMessage: '{number, plural, =0 {# components} one {# component} other {# components}} selected', }, - { number: value.length } + { number: value?.length ?? 0 } ); return ( From b77b41cda42dc1c1bcbd4b124d0efbbc6f596e11 Mon Sep 17 00:00:00 2001 From: Christian Date: Fri, 17 Nov 2023 12:17:25 +0100 Subject: [PATCH 31/43] fix(providers): aws credentials (#18812) --- .../upload-aws-s3/src/__tests__/utils.test.ts | 16 +++++++++++++--- packages/providers/upload-aws-s3/src/index.ts | 4 ++-- packages/providers/upload-aws-s3/src/utils.ts | 4 ++-- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/packages/providers/upload-aws-s3/src/__tests__/utils.test.ts b/packages/providers/upload-aws-s3/src/__tests__/utils.test.ts index 8aab32fd2f8..cf48d5b3bd1 100644 --- a/packages/providers/upload-aws-s3/src/__tests__/utils.test.ts +++ b/packages/providers/upload-aws-s3/src/__tests__/utils.test.ts @@ -16,7 +16,7 @@ const defaultOptions = { describe('Utils', () => { describe('Extract credentials for V4 different aws provider configurations', () => { - test('[Legacy] Credentials directly in the options', async () => { + test('[Legacy] Credentials directly in the options', () => { const options: InitOptions = { accessKeyId, secretAccessKey, @@ -30,7 +30,7 @@ describe('Utils', () => { }); }); - test('[Legacy] credentials directly in s3Options', async () => { + test('[Legacy] credentials directly in s3Options', () => { const options: InitOptions = { s3Options: { accessKeyId, @@ -46,7 +46,7 @@ describe('Utils', () => { }); }); - test('Credentials in credentials object inside s3Options', async () => { + test('Credentials in credentials object inside s3Options', () => { const options: InitOptions = { s3Options: { credentials: { @@ -63,5 +63,15 @@ describe('Utils', () => { secretAccessKey, }); }); + test('Does not throw an error when credentials are not present', () => { + const options: InitOptions = { + s3Options: { + ...defaultOptions, + }, + }; + const credentials = extractCredentials(options); + + expect(credentials).toEqual(null); + }); }); }); diff --git a/packages/providers/upload-aws-s3/src/index.ts b/packages/providers/upload-aws-s3/src/index.ts index 1a280536daf..dac9ea3a293 100644 --- a/packages/providers/upload-aws-s3/src/index.ts +++ b/packages/providers/upload-aws-s3/src/index.ts @@ -76,11 +76,11 @@ const getConfig = ({ baseUrl, rootPath, s3Options, ...legacyS3Options }: InitOpt "S3 configuration options passed at root level of the plugin's providerOptions is deprecated and will be removed in a future release. Please wrap them inside the 's3Options:{}' property." ); } - + const credentials = extractCredentials({ s3Options, ...legacyS3Options }); const config = { ...s3Options, ...legacyS3Options, - credentials: extractCredentials({ s3Options, ...legacyS3Options }), + ...(credentials ? { credentials } : {}), }; config.params.ACL = getOr(ObjectCannedACL.public_read, ['params', 'ACL'], config); diff --git a/packages/providers/upload-aws-s3/src/utils.ts b/packages/providers/upload-aws-s3/src/utils.ts index 31e5f34ec6d..8847cb0579e 100644 --- a/packages/providers/upload-aws-s3/src/utils.ts +++ b/packages/providers/upload-aws-s3/src/utils.ts @@ -89,7 +89,7 @@ function getBucketFromAwsUrl(fileUrl: string): BucketInfo { } // TODO Remove this in V5 since we will only support the new config structure -export const extractCredentials = (options: InitOptions): AwsCredentialIdentity => { +export const extractCredentials = (options: InitOptions): AwsCredentialIdentity | null => { // legacy if (options.accessKeyId && options.secretAccessKey) { return { @@ -115,5 +115,5 @@ export const extractCredentials = (options: InitOptions): AwsCredentialIdentity }; } - throw new Error("Couldn't find AWS credentials."); + return null; }; From afe9e1825429e5d421311cedb027d109edcd401a Mon Sep 17 00:00:00 2001 From: Alexandre Bodin Date: Tue, 21 Nov 2023 20:35:37 +0100 Subject: [PATCH 32/43] v4.15.5-alpha.5 --- .github/actions/check-pr-status/package.json | 2 +- examples/getstarted/package.json | 22 +- examples/kitchensink-ts/package.json | 8 +- examples/kitchensink/package.json | 10 +- lerna.json | 2 +- packages/admin-test-utils/package.json | 6 +- packages/cli/create-strapi-app/package.json | 10 +- .../cli/create-strapi-starter/package.json | 10 +- packages/core/admin/package.json | 22 +- packages/core/content-manager/package.json | 4 +- .../core/content-type-builder/package.json | 12 +- packages/core/data-transfer/package.json | 12 +- packages/core/database/package.json | 10 +- packages/core/email/package.json | 12 +- packages/core/helper-plugin/package.json | 10 +- packages/core/permissions/package.json | 10 +- packages/core/strapi/package.json | 36 +- packages/core/types/package.json | 16 +- packages/core/upload/package.json | 12 +- packages/core/utils/package.json | 8 +- packages/generators/app/package.json | 4 +- packages/generators/generators/package.json | 12 +- packages/plugins/cloud/package.json | 10 +- packages/plugins/color-picker/package.json | 6 +- packages/plugins/documentation/package.json | 10 +- packages/plugins/graphql/package.json | 10 +- packages/plugins/i18n/package.json | 10 +- packages/plugins/sentry/package.json | 8 +- .../plugins/users-permissions/package.json | 10 +- .../providers/audit-logs-local/package.json | 10 +- .../providers/email-amazon-ses/package.json | 10 +- packages/providers/email-mailgun/package.json | 10 +- .../providers/email-nodemailer/package.json | 8 +- .../providers/email-sendgrid/package.json | 10 +- .../providers/email-sendmail/package.json | 10 +- packages/providers/upload-aws-s3/package.json | 8 +- .../providers/upload-cloudinary/package.json | 10 +- packages/providers/upload-local/package.json | 10 +- packages/utils/api-tests/package.json | 2 +- .../utils/eslint-config-custom/package.json | 2 +- packages/utils/logger/package.json | 8 +- packages/utils/pack-up/package.json | 6 +- packages/utils/tsconfig/package.json | 2 +- packages/utils/typescript/package.json | 2 +- scripts/front/package.json | 2 +- yarn.lock | 394 +++++++++--------- 46 files changed, 409 insertions(+), 409 deletions(-) diff --git a/.github/actions/check-pr-status/package.json b/.github/actions/check-pr-status/package.json index 2f8df79ea72..9383c31b64c 100644 --- a/.github/actions/check-pr-status/package.json +++ b/.github/actions/check-pr-status/package.json @@ -1,6 +1,6 @@ { "name": "check-pr-status", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "license": "MIT", "main": "dist/index.js", diff --git a/examples/getstarted/package.json b/examples/getstarted/package.json index 9efe9ec2fdd..642351d9048 100644 --- a/examples/getstarted/package.json +++ b/examples/getstarted/package.json @@ -1,6 +1,6 @@ { "name": "getstarted", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -14,16 +14,16 @@ }, "dependencies": { "@strapi/icons": "1.11.0", - "@strapi/plugin-color-picker": "4.15.5-alpha.4", - "@strapi/plugin-documentation": "4.15.5-alpha.4", - "@strapi/plugin-graphql": "4.15.5-alpha.4", - "@strapi/plugin-i18n": "4.15.5-alpha.4", - "@strapi/plugin-sentry": "4.15.5-alpha.4", - "@strapi/plugin-users-permissions": "4.15.5-alpha.4", - "@strapi/provider-email-mailgun": "4.15.5-alpha.4", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.4", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/plugin-color-picker": "4.15.5-alpha.5", + "@strapi/plugin-documentation": "4.15.5-alpha.5", + "@strapi/plugin-graphql": "4.15.5-alpha.5", + "@strapi/plugin-i18n": "4.15.5-alpha.5", + "@strapi/plugin-sentry": "4.15.5-alpha.5", + "@strapi/plugin-users-permissions": "4.15.5-alpha.5", + "@strapi/provider-email-mailgun": "4.15.5-alpha.5", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.5", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "better-sqlite3": "8.6.0", "lodash": "4.17.21", "mysql": "2.18.1", diff --git a/examples/kitchensink-ts/package.json b/examples/kitchensink-ts/package.json index 72565ba6be4..b3aeca61ebf 100644 --- a/examples/kitchensink-ts/package.json +++ b/examples/kitchensink-ts/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink-ts", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "description": "A Strapi application", "license": "MIT", @@ -14,9 +14,9 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/plugin-i18n": "4.15.5-alpha.4", - "@strapi/plugin-users-permissions": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/plugin-i18n": "4.15.5-alpha.5", + "@strapi/plugin-users-permissions": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "better-sqlite3": "8.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/kitchensink/package.json b/examples/kitchensink/package.json index abc4368d2ff..919b4d9201b 100644 --- a/examples/kitchensink/package.json +++ b/examples/kitchensink/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -13,10 +13,10 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/provider-email-mailgun": "4.15.5-alpha.4", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.4", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/provider-email-mailgun": "4.15.5-alpha.5", + "@strapi/provider-upload-aws-s3": "4.15.5-alpha.5", + "@strapi/provider-upload-cloudinary": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "lodash": "4.17.21", "mysql": "2.18.1", "mysql2": "3.6.0", diff --git a/lerna.json b/lerna.json index 0d42ed9bd64..cea264e536e 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "packages": ["packages/*", "examples/*"], "npmClient": "yarn", "useWorkspaces": true, diff --git a/packages/admin-test-utils/package.json b/packages/admin-test-utils/package.json index 7181461f5c3..05cae34c667 100644 --- a/packages/admin-test-utils/package.json +++ b/packages/admin-test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin-test-utils", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "description": "Test utilities for the Strapi administration panel", "license": "MIT", @@ -75,8 +75,8 @@ "@reduxjs/toolkit": "1.9.7", "@strapi/pack-up": "workspace:*", "@testing-library/jest-dom": "5.16.5", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "peerDependencies": { "@reduxjs/toolkit": "^1.9.7", diff --git a/packages/cli/create-strapi-app/package.json b/packages/cli/create-strapi-app/package.json index c86ac617842..73fb763f2f5 100644 --- a/packages/cli/create-strapi-app/package.json +++ b/packages/cli/create-strapi-app/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-app", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-app", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.4", + "@strapi/generate-new": "4.15.5-alpha.5", "commander": "8.3.0", "inquirer": "8.2.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/cli/create-strapi-starter/package.json b/packages/cli/create-strapi-starter/package.json index 563d9a7a352..7655b3c6b7b 100644 --- a/packages/cli/create-strapi-starter/package.json +++ b/packages/cli/create-strapi-starter/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-starter", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-starter", @@ -44,7 +44,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.4", + "@strapi/generate-new": "4.15.5-alpha.5", "chalk": "4.1.2", "ci-info": "3.8.0", "commander": "8.3.0", @@ -54,9 +54,9 @@ "ora": "5.4.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index 66beacce197..e41e68a761d 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Strapi Admin", "repository": { "type": "git", @@ -75,15 +75,15 @@ "@radix-ui/react-context": "1.0.1", "@radix-ui/react-toolbar": "1.0.4", "@reduxjs/toolkit": "1.9.7", - "@strapi/data-transfer": "4.15.5-alpha.4", + "@strapi/data-transfer": "4.15.5-alpha.5", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/permissions": "4.15.5-alpha.4", - "@strapi/provider-audit-logs-local": "4.15.5-alpha.4", - "@strapi/types": "4.15.5-alpha.4", - "@strapi/typescript-utils": "4.15.5-alpha.4", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/permissions": "4.15.5-alpha.5", + "@strapi/provider-audit-logs-local": "4.15.5-alpha.5", + "@strapi/types": "4.15.5-alpha.5", + "@strapi/typescript-utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5-alpha.5", "axios": "1.6.0", "bcryptjs": "2.4.3", "boxen": "5.1.2", @@ -172,9 +172,9 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/admin-test-utils": "4.15.5-alpha.4", - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/admin-test-utils": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/content-manager/package.json b/packages/core/content-manager/package.json index 7f769d8cc28..6eeb4e10f95 100644 --- a/packages/core/content-manager/package.json +++ b/packages/core/content-manager/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-manager", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "A powerful UI to easily manage your data.", "repository": { "type": "git", @@ -26,7 +26,7 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "lodash": "4.17.21", "qs": "6.11.1" }, diff --git a/packages/core/content-type-builder/package.json b/packages/core/content-type-builder/package.json index 83cf78233a9..f0123ceb098 100644 --- a/packages/core/content-type-builder/package.json +++ b/packages/core/content-type-builder/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-type-builder", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Strapi plugin to create content type", "repository": { "type": "git", @@ -49,10 +49,10 @@ "dependencies": { "@sindresorhus/slugify": "1.1.0", "@strapi/design-system": "1.13.0", - "@strapi/generators": "4.15.5-alpha.4", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/generators": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "fs-extra": "10.0.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "@testing-library/react": "14.0.0", "history": "^4.9.0", "react": "^18.2.0", diff --git a/packages/core/data-transfer/package.json b/packages/core/data-transfer/package.json index da22935d882..4cb786f26ce 100644 --- a/packages/core/data-transfer/package.json +++ b/packages/core/data-transfer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/data-transfer", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Data transfer capabilities for Strapi", "keywords": [ "strapi", @@ -41,10 +41,10 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/logger": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", - "@strapi/types": "4.15.5-alpha.4", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/logger": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/types": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5-alpha.5", "chalk": "4.1.2", "cli-table3": "0.6.2", "commander": "8.3.0", @@ -61,7 +61,7 @@ "ws": "8.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@strapi/strapi": "4.15.2", "@types/fs-extra": "9.0.13", "@types/jest": "29.5.2", diff --git a/packages/core/database/package.json b/packages/core/database/package.json index a8133919b35..bac73ec0e6e 100644 --- a/packages/core/database/package.json +++ b/packages/core/database/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/database", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Strapi's database layer", "homepage": "https://strapi.io", "bugs": { @@ -40,7 +40,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "date-fns": "2.30.0", "debug": "4.3.4", "fs-extra": "10.0.0", @@ -50,9 +50,9 @@ "umzug": "3.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/email/package.json b/packages/core/email/package.json index 6f20446f018..636e3f6ead3 100644 --- a/packages/core/email/package.json +++ b/packages/core/email/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-email", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Easily configure your Strapi application to send emails.", "repository": { "type": "git", @@ -54,10 +54,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/provider-email-sendmail": "4.15.5-alpha.4", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/provider-email-sendmail": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5-alpha.5", "lodash": "4.17.21", "prop-types": "^15.8.1", "react-intl": "6.4.1", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/types": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/types": "4.15.5-alpha.5", "@testing-library/react": "14.0.0", "@types/koa": "2.13.4", "@types/lodash": "^4.14.191", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index cd68c66e20e..09f5ed18418 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/helper-plugin", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Helper for Strapi plugins development", "repository": { "type": "git", @@ -69,11 +69,11 @@ "@storybook/addon-mdx-gfm": "7.4.0", "@storybook/builder-vite": "7.4.0", "@storybook/react-vite": "7.4.0", - "@strapi/admin-test-utils": "4.15.5-alpha.4", + "@strapi/admin-test-utils": "4.15.5-alpha.5", "@strapi/design-system": "1.13.0", "@strapi/icons": "1.13.0", - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/types": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/types": "4.15.5-alpha.5", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/react": "18.2.7", @@ -82,7 +82,7 @@ "@types/react-router-dom": "5.3.3", "@types/styled-components": "5.1.26", "cross-env": "^7.0.3", - "eslint-config-custom": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.5", "eslint-plugin-storybook": "0.6.14", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/core/permissions/package.json b/packages/core/permissions/package.json index 104a1597ebd..ccfab5237bf 100644 --- a/packages/core/permissions/package.json +++ b/packages/core/permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/permissions", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Strapi's permission layer.", "repository": { "type": "git", @@ -38,15 +38,15 @@ }, "dependencies": { "@casl/ability": "6.5.0", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "lodash": "4.17.21", "qs": "6.11.1", "sift": "16.0.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/strapi/package.json b/packages/core/strapi/package.json index 1a9bf67528c..68d0efe6a51 100644 --- a/packages/core/strapi/package.json +++ b/packages/core/strapi/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/strapi", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite", "keywords": [ "strapi", @@ -114,21 +114,21 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/admin": "4.15.5-alpha.4", - "@strapi/data-transfer": "4.15.5-alpha.4", - "@strapi/database": "4.15.5-alpha.4", - "@strapi/generate-new": "4.15.5-alpha.4", - "@strapi/generators": "4.15.5-alpha.4", - "@strapi/logger": "4.15.5-alpha.4", - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/permissions": "4.15.5-alpha.4", - "@strapi/plugin-content-manager": "4.15.5-alpha.4", - "@strapi/plugin-content-type-builder": "4.15.5-alpha.4", - "@strapi/plugin-email": "4.15.5-alpha.4", - "@strapi/plugin-upload": "4.15.5-alpha.4", - "@strapi/types": "4.15.5-alpha.4", - "@strapi/typescript-utils": "4.15.5-alpha.4", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/admin": "4.15.5-alpha.5", + "@strapi/data-transfer": "4.15.5-alpha.5", + "@strapi/database": "4.15.5-alpha.5", + "@strapi/generate-new": "4.15.5-alpha.5", + "@strapi/generators": "4.15.5-alpha.5", + "@strapi/logger": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/permissions": "4.15.5-alpha.5", + "@strapi/plugin-content-manager": "4.15.5-alpha.5", + "@strapi/plugin-content-type-builder": "4.15.5-alpha.5", + "@strapi/plugin-email": "4.15.5-alpha.5", + "@strapi/plugin-upload": "4.15.5-alpha.5", + "@strapi/types": "4.15.5-alpha.5", + "@strapi/typescript-utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5-alpha.5", "bcryptjs": "2.4.3", "boxen": "5.1.2", "chalk": "4.1.2", @@ -188,9 +188,9 @@ "@types/node": "18.18.4", "@types/node-schedule": "2.1.0", "@types/statuses": "2.0.1", - "eslint-config-custom": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.5", "supertest": "6.3.3", - "tsconfig": "4.15.5-alpha.4" + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/types/package.json b/packages/core/types/package.json index a860d8a2d8e..b1e5b404a3f 100644 --- a/packages/core/types/package.json +++ b/packages/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/types", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Shared typescript types for Strapi internal use", "keywords": [ "strapi" @@ -46,10 +46,10 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/database": "4.15.5-alpha.4", - "@strapi/logger": "4.15.5-alpha.4", - "@strapi/permissions": "4.15.5-alpha.4", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/database": "4.15.5-alpha.5", + "@strapi/logger": "4.15.5-alpha.5", + "@strapi/permissions": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5-alpha.5", "commander": "8.3.0", "https-proxy-agent": "5.0.1", "koa": "2.13.4", @@ -57,14 +57,14 @@ "node-schedule": "2.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@strapi/ts-zen": "^0.2.0", "@types/jest": "29.5.2", "@types/koa": "2.13.4", "@types/koa__router": "12.0.0", "@types/node-schedule": "2.1.0", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5", "typescript": "5.2.2" }, "engines": { diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index 2dfd1d400f2..11943f88559 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-upload", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Makes it easy to upload images and files to your Strapi Application.", "license": "SEE LICENSE IN LICENSE", "author": { @@ -44,10 +44,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/provider-upload-local": "4.15.5-alpha.4", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/provider-upload-local": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5-alpha.5", "axios": "1.6.0", "byte-size": "7.0.1", "cropperjs": "1.6.0", @@ -71,8 +71,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 1da225543bf..df47606c87a 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/utils", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Shared utilities for the Strapi packages", "keywords": [ "strapi", @@ -53,13 +53,13 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@types/koa": "2.13.4", "@types/node": "18.18.4", - "eslint-config-custom": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.5", "koa": "2.13.4", "koa-body": "4.2.0", - "tsconfig": "4.15.5-alpha.4" + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/generators/app/package.json b/packages/generators/app/package.json index 66f6222262c..4b9dab30f16 100644 --- a/packages/generators/app/package.json +++ b/packages/generators/app/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generate-new", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Generate a new Strapi application.", "keywords": [ "generate", @@ -58,7 +58,7 @@ "tar": "6.1.13" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "copyfiles": "2.4.1" }, "engines": { diff --git a/packages/generators/generators/package.json b/packages/generators/generators/package.json index 53bf11cfa1c..f1ea7d7614d 100644 --- a/packages/generators/generators/package.json +++ b/packages/generators/generators/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generators", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Interactive API generator.", "keywords": [ "strapi", @@ -47,8 +47,8 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "4.15.5-alpha.4", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/typescript-utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5-alpha.5", "chalk": "4.1.2", "copyfiles": "2.4.1", "fs-extra": "10.0.0", @@ -57,9 +57,9 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/plugins/cloud/package.json b/packages/plugins/cloud/package.json index 9f45f9547cf..2c44a569bf5 100644 --- a/packages/plugins/cloud/package.json +++ b/packages/plugins/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-cloud", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Instructions to deploy your local project to Strapi Cloud", "license": "MIT", "author": { @@ -38,22 +38,22 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.5", "@types/react": "18.2.7", "@types/react-dom": "18.2.12", "@types/react-router-dom": "^5.3.3", "@types/styled-components": "5.1.26", - "eslint-config-custom": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.5", "react": "18.2.0", "react-dom": "18.2.0", "react-router-dom": "5.3.4", "styled-components": "5.3.3", - "tsconfig": "4.15.5-alpha.4", + "tsconfig": "4.15.5-alpha.5", "typescript": "5.2.2" }, "peerDependencies": { diff --git a/packages/plugins/color-picker/package.json b/packages/plugins/color-picker/package.json index 4ea69be4e7d..eea140f3530 100644 --- a/packages/plugins/color-picker/package.json +++ b/packages/plugins/color-picker/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-color-picker", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Strapi maintained Custom Fields", "repository": { "type": "git", @@ -55,14 +55,14 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", "prop-types": "^15.8.1", "react-colorful": "5.6.1", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/strapi": "4.15.5-alpha.5", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/styled-components": "5.1.26", diff --git a/packages/plugins/documentation/package.json b/packages/plugins/documentation/package.json index e5e7004268a..b54659d8d7b 100644 --- a/packages/plugins/documentation/package.json +++ b/packages/plugins/documentation/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-documentation", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.", "repository": { "type": "git", @@ -47,9 +47,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "bcryptjs": "2.4.3", "cheerio": "^1.0.0-rc.12", "formik": "2.4.0", @@ -67,8 +67,8 @@ }, "devDependencies": { "@apidevtools/swagger-parser": "^10.1.0", - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "msw": "1.3.0", diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index 9557b325f03..c98d85349cb 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-graphql", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Adds GraphQL endpoint with default API methods.", "repository": { "type": "git", @@ -45,9 +45,9 @@ "@graphql-tools/schema": "8.5.1", "@graphql-tools/utils": "^8.13.1", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "apollo-server-core": "3.12.1", "apollo-server-koa": "3.10.0", "graphql": "^15.5.1", @@ -61,8 +61,8 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "cross-env": "^7.0.3", "koa": "2.13.4", "react": "^18.2.0", diff --git a/packages/plugins/i18n/package.json b/packages/plugins/i18n/package.json index 2d847b87cdb..d3268e7cf0d 100644 --- a/packages/plugins/i18n/package.json +++ b/packages/plugins/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-i18n", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API", "repository": { "type": "git", @@ -50,9 +50,9 @@ "dependencies": { "@reduxjs/toolkit": "1.9.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "formik": "2.4.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -64,8 +64,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "@testing-library/react": "14.0.0", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index 57034bfa0af..1a4d6f07e3a 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-sentry", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Send Strapi error events to Sentry", "repository": { "type": "git", @@ -46,12 +46,12 @@ "dependencies": { "@sentry/node": "6.19.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "5.3.4", diff --git a/packages/plugins/users-permissions/package.json b/packages/plugins/users-permissions/package.json index 342b11fb059..1b418b1bfc9 100644 --- a/packages/plugins/users-permissions/package.json +++ b/packages/plugins/users-permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-users-permissions", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Protect your API with a full-authentication process based on JWT", "repository": { "type": "git", @@ -48,9 +48,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.4", + "@strapi/helper-plugin": "4.15.5-alpha.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "bcryptjs": "2.4.3", "formik": "2.4.0", "grant-koa": "5.4.8", @@ -69,8 +69,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/strapi": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5-alpha.5", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/providers/audit-logs-local/package.json b/packages/providers/audit-logs-local/package.json index 6d0acbc204b..2c670e6b988 100644 --- a/packages/providers/audit-logs-local/package.json +++ b/packages/providers/audit-logs-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-audit-logs-local", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Local provider for strapi audit logs", "keywords": [ "audit-logs", @@ -42,10 +42,10 @@ "watch": "pack-up watch" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "@strapi/types": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/types": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-amazon-ses/package.json b/packages/providers/email-amazon-ses/package.json index 8befd4d758d..db1cd45a89b 100644 --- a/packages/providers/email-amazon-ses/package.json +++ b/packages/providers/email-amazon-ses/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-amazon-ses", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Amazon SES provider for strapi email", "keywords": [ "email", @@ -43,13 +43,13 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "node-ses": "^3.0.3" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-mailgun/package.json b/packages/providers/email-mailgun/package.json index c6cc034652d..ce7a961d2c7 100644 --- a/packages/providers/email-mailgun/package.json +++ b/packages/providers/email-mailgun/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-mailgun", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Mailgun provider for strapi email plugin", "keywords": [ "email", @@ -45,14 +45,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "form-data": "^4.0.0", "mailgun.js": "8.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-nodemailer/package.json b/packages/providers/email-nodemailer/package.json index 63f51c6e452..abac73fac3d 100644 --- a/packages/providers/email-nodemailer/package.json +++ b/packages/providers/email-nodemailer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-nodemailer", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Nodemailer provider for Strapi 3", "keywords": [ "strapi", @@ -60,10 +60,10 @@ "nodemailer": "6.9.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@types/nodemailer": "6.4.7", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendgrid/package.json b/packages/providers/email-sendgrid/package.json index d73178e6e83..09e083ff2d0 100644 --- a/packages/providers/email-sendgrid/package.json +++ b/packages/providers/email-sendgrid/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendgrid", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Sendgrid provider for strapi email", "keywords": [ "email", @@ -44,12 +44,12 @@ }, "dependencies": { "@sendgrid/mail": "7.7.0", - "@strapi/utils": "4.15.5-alpha.4" + "@strapi/utils": "4.15.5-alpha.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendmail/package.json b/packages/providers/email-sendmail/package.json index 8a400df6ea7..e7ddc42a478 100644 --- a/packages/providers/email-sendmail/package.json +++ b/packages/providers/email-sendmail/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendmail", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Sendmail provider for strapi email", "keywords": [ "email", @@ -42,14 +42,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "sendmail": "^1.6.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@types/sendmail": "1.4.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-aws-s3/package.json b/packages/providers/upload-aws-s3/package.json index 1741c672e27..74b17e204de 100644 --- a/packages/providers/upload-aws-s3/package.json +++ b/packages/providers/upload-aws-s3/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-aws-s3", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "AWS S3 provider for strapi upload", "keywords": [ "upload", @@ -53,10 +53,10 @@ "lodash": "4.17.21" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-cloudinary/package.json b/packages/providers/upload-cloudinary/package.json index 85675c9ea00..05618d1770a 100644 --- a/packages/providers/upload-cloudinary/package.json +++ b/packages/providers/upload-cloudinary/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-cloudinary", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Cloudinary provider for strapi upload", "keywords": [ "upload", @@ -43,14 +43,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "cloudinary": "^1.41.0", "into-stream": "^5.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-local/package.json b/packages/providers/upload-local/package.json index fe843c8e40f..614ed5eec3f 100644 --- a/packages/providers/upload-local/package.json +++ b/packages/providers/upload-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-local", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Local provider for strapi upload", "keywords": [ "upload", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.4", + "@strapi/utils": "4.15.5-alpha.5", "fs-extra": "10.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/api-tests/package.json b/packages/utils/api-tests/package.json index 63dbf3f7771..17e6c9793fe 100644 --- a/packages/utils/api-tests/package.json +++ b/packages/utils/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "api-tests", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "dependencies": { "dotenv": "14.2.0", diff --git a/packages/utils/eslint-config-custom/package.json b/packages/utils/eslint-config-custom/package.json index f38473356fd..97d64f653d6 100644 --- a/packages/utils/eslint-config-custom/package.json +++ b/packages/utils/eslint-config-custom/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-custom", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "main": "index.js" } diff --git a/packages/utils/logger/package.json b/packages/utils/logger/package.json index 02a77267de1..d36d6c61df8 100644 --- a/packages/utils/logger/package.json +++ b/packages/utils/logger/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/logger", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Strapi's logger", "homepage": "https://strapi.io", "bugs": { @@ -43,9 +43,9 @@ "winston": "3.10.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", - "eslint-config-custom": "4.15.5-alpha.4", - "tsconfig": "4.15.5-alpha.4" + "@strapi/pack-up": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5-alpha.5", + "tsconfig": "4.15.5-alpha.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index 8ab77e26000..a555947f139 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/pack-up", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Simple tools for creating interoperable CJS & ESM packages.", "keywords": [ "strapi", @@ -84,11 +84,11 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.4", + "@strapi/pack-up": "4.15.5-alpha.5", "@types/git-url-parse": "9.0.1", "@types/ini": "1.3.31", "@types/prompts": "2.4.4", - "eslint-config-custom": "4.15.5-alpha.4", + "eslint-config-custom": "4.15.5-alpha.5", "rimraf": "3.0.2" }, "engines": { diff --git a/packages/utils/tsconfig/package.json b/packages/utils/tsconfig/package.json index ee86983d043..3916919a34c 100644 --- a/packages/utils/tsconfig/package.json +++ b/packages/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "tsconfig", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "devDependencies": { "@tsconfig/node18": "18.2.2" diff --git a/packages/utils/typescript/package.json b/packages/utils/typescript/package.json index 2c6920e6301..273f39dbc01 100644 --- a/packages/utils/typescript/package.json +++ b/packages/utils/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/typescript-utils", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "description": "Typescript support for Strapi", "keywords": [ "strapi", diff --git a/scripts/front/package.json b/scripts/front/package.json index e7c2a030473..aa04f6e735b 100644 --- a/scripts/front/package.json +++ b/scripts/front/package.json @@ -1,6 +1,6 @@ { "name": "scripts-front", - "version": "4.15.5-alpha.4", + "version": "4.15.5-alpha.5", "private": true, "scripts": { "test:front": "jest --config jest.config.front.js" diff --git a/yarn.lock b/yarn.lock index 34596d05a70..c6ab61b8295 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8613,7 +8613,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin-test-utils@npm:4.15.5-alpha.4, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": +"@strapi/admin-test-utils@npm:4.15.5-alpha.5, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": version: 0.0.0-use.local resolution: "@strapi/admin-test-utils@workspace:packages/admin-test-utils" dependencies: @@ -8621,9 +8621,9 @@ __metadata: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/pack-up": "workspace:*" "@testing-library/jest-dom": "npm:5.16.5" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" jest-styled-components: "npm:7.1.1" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" whatwg-fetch: "npm:3.6.2" peerDependencies: "@reduxjs/toolkit": ^1.9.7 @@ -8746,7 +8746,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin@npm:4.15.5-alpha.4, @strapi/admin@workspace:packages/core/admin": +"@strapi/admin@npm:4.15.5-alpha.5, @strapi/admin@workspace:packages/core/admin": version: 0.0.0-use.local resolution: "@strapi/admin@workspace:packages/core/admin" dependencies: @@ -8755,18 +8755,18 @@ __metadata: "@radix-ui/react-context": "npm:1.0.1" "@radix-ui/react-toolbar": "npm:1.0.4" "@reduxjs/toolkit": "npm:1.9.7" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.4" - "@strapi/data-transfer": "npm:4.15.5-alpha.4" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.5" + "@strapi/data-transfer": "npm:4.15.5-alpha.5" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/permissions": "npm:4.15.5-alpha.4" - "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" - "@strapi/types": "npm:4.15.5-alpha.4" - "@strapi/typescript-utils": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/permissions": "npm:4.15.5-alpha.5" + "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/types": "npm:4.15.5-alpha.5" + "@strapi/typescript-utils": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -8902,15 +8902,15 @@ __metadata: languageName: node linkType: hard -"@strapi/data-transfer@npm:4.15.5-alpha.4, @strapi/data-transfer@workspace:packages/core/data-transfer": +"@strapi/data-transfer@npm:4.15.5-alpha.5, @strapi/data-transfer@workspace:packages/core/data-transfer": version: 0.0.0-use.local resolution: "@strapi/data-transfer@workspace:packages/core/data-transfer" dependencies: - "@strapi/logger": "npm:4.15.5-alpha.4" - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/logger": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5-alpha.5" "@strapi/strapi": "npm:4.15.2" - "@strapi/types": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/types": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@types/fs-extra": "npm:9.0.13" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" @@ -8961,20 +8961,20 @@ __metadata: languageName: node linkType: hard -"@strapi/database@npm:4.15.5-alpha.4, @strapi/database@workspace:packages/core/database": +"@strapi/database@npm:4.15.5-alpha.5, @strapi/database@workspace:packages/core/database": version: 0.0.0-use.local resolution: "@strapi/database@workspace:packages/core/database" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" date-fns: "npm:2.30.0" debug: "npm:4.3.4" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" fs-extra: "npm:10.0.0" knex: "npm:2.5.0" lodash: "npm:4.17.21" semver: "npm:7.5.4" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" umzug: "npm:3.2.1" languageName: unknown linkType: soft @@ -9056,12 +9056,12 @@ __metadata: languageName: node linkType: hard -"@strapi/generate-new@npm:4.15.5-alpha.4, @strapi/generate-new@workspace:packages/generators/app": +"@strapi/generate-new@npm:4.15.5-alpha.5, @strapi/generate-new@workspace:packages/generators/app": version: 0.0.0-use.local resolution: "@strapi/generate-new@workspace:packages/generators/app" dependencies: "@sentry/node": "npm:6.19.7" - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" chalk: "npm:^4.1.2" copyfiles: "npm:2.4.1" execa: "npm:5.1.1" @@ -9093,22 +9093,22 @@ __metadata: languageName: node linkType: hard -"@strapi/generators@npm:4.15.5-alpha.4, @strapi/generators@workspace:packages/generators/generators": +"@strapi/generators@npm:4.15.5-alpha.5, @strapi/generators@workspace:packages/generators/generators": version: 0.0.0-use.local resolution: "@strapi/generators@workspace:packages/generators/generators" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/typescript-utils": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/typescript-utils": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" chalk: "npm:4.1.2" copyfiles: "npm:2.4.1" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" fs-extra: "npm:10.0.0" node-plop: "npm:0.26.3" plop: "npm:2.7.6" pluralize: "npm:8.0.0" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -9137,7 +9137,7 @@ __metadata: languageName: node linkType: hard -"@strapi/helper-plugin@npm:4.15.5-alpha.4, @strapi/helper-plugin@workspace:packages/core/helper-plugin": +"@strapi/helper-plugin@npm:4.15.5-alpha.5, @strapi/helper-plugin@workspace:packages/core/helper-plugin": version: 0.0.0-use.local resolution: "@strapi/helper-plugin@workspace:packages/core/helper-plugin" dependencies: @@ -9147,11 +9147,11 @@ __metadata: "@storybook/addon-mdx-gfm": "npm:7.4.0" "@storybook/builder-vite": "npm:7.4.0" "@storybook/react-vite": "npm:7.4.0" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.4" + "@strapi/admin-test-utils": "npm:4.15.5-alpha.5" "@strapi/design-system": "npm:1.13.0" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/types": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/types": "npm:4.15.5-alpha.5" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/react": "npm:18.2.7" @@ -9162,7 +9162,7 @@ __metadata: axios: "npm:1.6.0" cross-env: "npm:^7.0.3" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" eslint-plugin-storybook: "npm:0.6.14" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9222,14 +9222,14 @@ __metadata: languageName: node linkType: hard -"@strapi/logger@npm:4.15.5-alpha.4, @strapi/logger@workspace:packages/utils/logger": +"@strapi/logger@npm:4.15.5-alpha.5, @strapi/logger@workspace:packages/utils/logger": version: 0.0.0-use.local resolution: "@strapi/logger@workspace:packages/utils/logger" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - eslint-config-custom: "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5-alpha.5" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" winston: "npm:3.10.0" languageName: unknown linkType: soft @@ -9265,11 +9265,11 @@ __metadata: languageName: node linkType: hard -"@strapi/pack-up@npm:4.15.5-alpha.4, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": +"@strapi/pack-up@npm:4.15.5-alpha.5, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": version: 0.0.0-use.local resolution: "@strapi/pack-up@workspace:packages/utils/pack-up" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" "@types/git-url-parse": "npm:9.0.1" "@types/ini": "npm:1.3.31" "@types/prompts": "npm:2.4.4" @@ -9281,7 +9281,7 @@ __metadata: commander: "npm:8.3.0" esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" @@ -9314,18 +9314,18 @@ __metadata: languageName: node linkType: hard -"@strapi/permissions@npm:4.15.5-alpha.4, @strapi/permissions@workspace:packages/core/permissions": +"@strapi/permissions@npm:4.15.5-alpha.5, @strapi/permissions@workspace:packages/core/permissions": version: 0.0.0-use.local resolution: "@strapi/permissions@workspace:packages/core/permissions" dependencies: "@casl/ability": "npm:6.5.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" - eslint-config-custom: "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5-alpha.5" lodash: "npm:4.17.21" qs: "npm:6.11.1" sift: "npm:16.0.1" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -9334,20 +9334,20 @@ __metadata: resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.5" "@types/react": "npm:18.2.7" "@types/react-dom": "npm:18.2.12" "@types/react-router-dom": "npm:^5.3.3" "@types/styled-components": "npm:5.1.26" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" react: "npm:18.2.0" react-dom: "npm:18.2.0" react-intl: "npm:6.4.1" react-router-dom: "npm:5.3.4" styled-components: "npm:5.3.3" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" typescript: "npm:5.2.2" peerDependencies: "@strapi/strapi": ^4.4.0 @@ -9358,14 +9358,14 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-color-picker@npm:4.15.5-alpha.4, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": +"@strapi/plugin-color-picker@npm:4.15.5-alpha.5, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": version: 0.0.0-use.local resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/strapi": "npm:4.15.5-alpha.5" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/styled-components": "npm:5.1.26" @@ -9398,12 +9398,12 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-manager@npm:4.15.5-alpha.4, @strapi/plugin-content-manager@workspace:packages/core/content-manager": +"@strapi/plugin-content-manager@npm:4.15.5-alpha.5, @strapi/plugin-content-manager@workspace:packages/core/content-manager": version: 0.0.0-use.local resolution: "@strapi/plugin-content-manager@workspace:packages/core/content-manager" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.5" lodash: "npm:4.17.21" qs: "npm:6.11.1" languageName: unknown @@ -9439,18 +9439,18 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.4, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": +"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.5, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": version: 0.0.0-use.local resolution: "@strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder" dependencies: "@sindresorhus/slugify": "npm:1.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/generators": "npm:4.15.5-alpha.4" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/generators": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@testing-library/react": "npm:14.0.0" fs-extra: "npm:10.0.0" history: "npm:^4.9.0" @@ -9476,17 +9476,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-documentation@npm:4.15.5-alpha.4, @strapi/plugin-documentation@workspace:packages/plugins/documentation": +"@strapi/plugin-documentation@npm:4.15.5-alpha.5, @strapi/plugin-documentation@workspace:packages/plugins/documentation": version: 0.0.0-use.local resolution: "@strapi/plugin-documentation@workspace:packages/plugins/documentation" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" bcryptjs: "npm:2.4.3" @@ -9541,17 +9541,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-email@npm:4.15.5-alpha.4, @strapi/plugin-email@workspace:packages/core/email": +"@strapi/plugin-email@npm:4.15.5-alpha.5, @strapi/plugin-email@workspace:packages/core/email": version: 0.0.0-use.local resolution: "@strapi/plugin-email@workspace:packages/core/email" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.4" - "@strapi/types": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.5" + "@strapi/types": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@testing-library/react": "npm:14.0.0" "@types/koa": "npm:2.13.4" "@types/lodash": "npm:^4.14.191" @@ -9575,18 +9575,18 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-graphql@npm:4.15.5-alpha.4, @strapi/plugin-graphql@workspace:packages/plugins/graphql": +"@strapi/plugin-graphql@npm:4.15.5-alpha.5, @strapi/plugin-graphql@workspace:packages/plugins/graphql": version: 0.0.0-use.local resolution: "@strapi/plugin-graphql@workspace:packages/plugins/graphql" dependencies: "@graphql-tools/schema": "npm:8.5.1" "@graphql-tools/utils": "npm:^8.13.1" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" apollo-server-core: "npm:3.12.1" apollo-server-koa: "npm:3.10.0" cross-env: "npm:^7.0.3" @@ -9613,17 +9613,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-i18n@npm:4.15.5-alpha.4, @strapi/plugin-i18n@workspace:packages/plugins/i18n": +"@strapi/plugin-i18n@npm:4.15.5-alpha.5, @strapi/plugin-i18n@workspace:packages/plugins/i18n": version: 0.0.0-use.local resolution: "@strapi/plugin-i18n@workspace:packages/plugins/i18n" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@testing-library/react": "npm:14.0.0" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9648,16 +9648,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-sentry@npm:4.15.5-alpha.4, @strapi/plugin-sentry@workspace:packages/plugins/sentry": +"@strapi/plugin-sentry@npm:4.15.5-alpha.5, @strapi/plugin-sentry@workspace:packages/plugins/sentry": version: 0.0.0-use.local resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry" dependencies: "@sentry/node": "npm:6.19.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" react-router-dom: "npm:5.3.4" @@ -9711,17 +9711,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-upload@npm:4.15.5-alpha.4, @strapi/plugin-upload@workspace:packages/core/upload": +"@strapi/plugin-upload@npm:4.15.5-alpha.5, @strapi/plugin-upload@workspace:packages/core/upload": version: 0.0.0-use.local resolution: "@strapi/plugin-upload@workspace:packages/core/upload" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/provider-upload-local": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/provider-upload-local": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9760,16 +9760,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-users-permissions@npm:4.15.5-alpha.4, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": +"@strapi/plugin-users-permissions@npm:4.15.5-alpha.5, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": version: 0.0.0-use.local resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.4" + "@strapi/helper-plugin": "npm:4.15.5-alpha.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9810,14 +9810,14 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.4, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": +"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.5, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": version: 0.0.0-use.local resolution: "@strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/types": "npm:4.15.5-alpha.4" - eslint-config-custom: "npm:4.15.5-alpha.4" - tsconfig: "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/types": "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -9825,24 +9825,24 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-amazon-ses@workspace:packages/providers/email-amazon-ses" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" - eslint-config-custom: "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5-alpha.5" node-ses: "npm:^3.0.3" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft -"@strapi/provider-email-mailgun@npm:4.15.5-alpha.4, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": +"@strapi/provider-email-mailgun@npm:4.15.5-alpha.5, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": version: 0.0.0-use.local resolution: "@strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" - eslint-config-custom: "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5-alpha.5" form-data: "npm:^4.0.0" mailgun.js: "npm:8.2.1" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -9850,12 +9850,12 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-nodemailer@workspace:packages/providers/email-nodemailer" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" "@types/nodemailer": "npm:6.4.7" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" lodash: "npm:4.17.21" nodemailer: "npm:6.9.1" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -9864,10 +9864,10 @@ __metadata: resolution: "@strapi/provider-email-sendgrid@workspace:packages/providers/email-sendgrid" dependencies: "@sendgrid/mail": "npm:7.7.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" - eslint-config-custom: "npm:4.15.5-alpha.4" - tsconfig: "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -9881,20 +9881,20 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-email-sendmail@npm:4.15.5-alpha.4, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": +"@strapi/provider-email-sendmail@npm:4.15.5-alpha.5, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": version: 0.0.0-use.local resolution: "@strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@types/sendmail": "npm:1.4.4" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" sendmail: "npm:^1.6.1" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft -"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.4, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": +"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.5, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": version: 0.0.0-use.local resolution: "@strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3" dependencies: @@ -9902,24 +9902,24 @@ __metadata: "@aws-sdk/lib-storage": "npm:3.433.0" "@aws-sdk/s3-request-presigner": "npm:3.433.0" "@aws-sdk/types": "npm:3.433.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft -"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.4, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": +"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.5, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": version: 0.0.0-use.local resolution: "@strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" cloudinary: "npm:^1.41.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" into-stream: "npm:^5.1.0" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -9933,16 +9933,16 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-upload-local@npm:4.15.5-alpha.4, @strapi/provider-upload-local@workspace:packages/providers/upload-local": +"@strapi/provider-upload-local@npm:4.15.5-alpha.5, @strapi/provider-upload-local@workspace:packages/providers/upload-local": version: 0.0.0-use.local resolution: "@strapi/provider-upload-local@workspace:packages/providers/upload-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" fs-extra: "npm:10.0.0" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" languageName: unknown linkType: soft @@ -10014,28 +10014,28 @@ __metadata: languageName: node linkType: hard -"@strapi/strapi@npm:4.15.5-alpha.4, @strapi/strapi@workspace:packages/core/strapi": +"@strapi/strapi@npm:4.15.5-alpha.5, @strapi/strapi@workspace:packages/core/strapi": version: 0.0.0-use.local resolution: "@strapi/strapi@workspace:packages/core/strapi" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/admin": "npm:4.15.5-alpha.4" - "@strapi/data-transfer": "npm:4.15.5-alpha.4" - "@strapi/database": "npm:4.15.5-alpha.4" - "@strapi/generate-new": "npm:4.15.5-alpha.4" - "@strapi/generators": "npm:4.15.5-alpha.4" - "@strapi/logger": "npm:4.15.5-alpha.4" + "@strapi/admin": "npm:4.15.5-alpha.5" + "@strapi/data-transfer": "npm:4.15.5-alpha.5" + "@strapi/database": "npm:4.15.5-alpha.5" + "@strapi/generate-new": "npm:4.15.5-alpha.5" + "@strapi/generators": "npm:4.15.5-alpha.5" + "@strapi/logger": "npm:4.15.5-alpha.5" "@strapi/pack-up": "workspace:*" - "@strapi/permissions": "npm:4.15.5-alpha.4" - "@strapi/plugin-content-manager": "npm:4.15.5-alpha.4" - "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.4" - "@strapi/plugin-email": "npm:4.15.5-alpha.4" - "@strapi/plugin-upload": "npm:4.15.5-alpha.4" + "@strapi/permissions": "npm:4.15.5-alpha.5" + "@strapi/plugin-content-manager": "npm:4.15.5-alpha.5" + "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.5" + "@strapi/plugin-email": "npm:4.15.5-alpha.5" + "@strapi/plugin-upload": "npm:4.15.5-alpha.5" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/types": "npm:4.15.5-alpha.4" - "@strapi/typescript-utils": "npm:4.15.5-alpha.4" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/types": "npm:4.15.5-alpha.5" + "@strapi/typescript-utils": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5-alpha.5" "@types/bcryptjs": "npm:2.4.3" "@types/configstore": "npm:5.0.1" "@types/delegates": "npm:1.0.0" @@ -10061,7 +10061,7 @@ __metadata: debug: "npm:4.3.4" delegates: "npm:1.0.0" dotenv: "npm:14.2.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" glob: "npm:7.2.3" @@ -10091,7 +10091,7 @@ __metadata: semver: "npm:7.5.4" statuses: "npm:2.0.1" supertest: "npm:6.3.3" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" typescript: "npm:5.2.2" yup: "npm:0.32.9" bin: @@ -10128,29 +10128,29 @@ __metadata: languageName: node linkType: hard -"@strapi/types@npm:4.15.5-alpha.4, @strapi/types@workspace:packages/core/types": +"@strapi/types@npm:4.15.5-alpha.5, @strapi/types@workspace:packages/core/types": version: 0.0.0-use.local resolution: "@strapi/types@workspace:packages/core/types" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/database": "npm:4.15.5-alpha.4" - "@strapi/logger": "npm:4.15.5-alpha.4" - "@strapi/pack-up": "npm:4.15.5-alpha.4" - "@strapi/permissions": "npm:4.15.5-alpha.4" + "@strapi/database": "npm:4.15.5-alpha.5" + "@strapi/logger": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/permissions": "npm:4.15.5-alpha.5" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/utils": "npm:4.15.5-alpha.4" + "@strapi/utils": "npm:4.15.5-alpha.5" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" "@types/koa__router": "npm:12.0.0" "@types/node-schedule": "npm:2.1.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" https-proxy-agent: "npm:5.0.1" koa: "npm:2.13.4" node-fetch: "npm:2.7.0" node-schedule: "npm:2.1.0" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" typescript: "npm:5.2.2" languageName: unknown linkType: soft @@ -10169,7 +10169,7 @@ __metadata: languageName: node linkType: hard -"@strapi/typescript-utils@npm:4.15.5-alpha.4, @strapi/typescript-utils@workspace:packages/utils/typescript": +"@strapi/typescript-utils@npm:4.15.5-alpha.5, @strapi/typescript-utils@workspace:packages/utils/typescript": version: 0.0.0-use.local resolution: "@strapi/typescript-utils@workspace:packages/utils/typescript" dependencies: @@ -10228,22 +10228,22 @@ __metadata: languageName: node linkType: hard -"@strapi/utils@npm:4.15.5-alpha.4, @strapi/utils@workspace:packages/core/utils": +"@strapi/utils@npm:4.15.5-alpha.5, @strapi/utils@workspace:packages/core/utils": version: 0.0.0-use.local resolution: "@strapi/utils@workspace:packages/core/utils" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/pack-up": "npm:4.15.5-alpha.5" "@types/koa": "npm:2.13.4" "@types/node": "npm:18.18.4" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" http-errors: "npm:1.8.1" koa: "npm:2.13.4" koa-body: "npm:4.2.0" lodash: "npm:4.17.21" p-map: "npm:4.0.0" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" yup: "npm:0.32.9" languageName: unknown linkType: soft @@ -15642,12 +15642,12 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-app@workspace:packages/cli/create-strapi-app" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.4" - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/generate-new": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5-alpha.5" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" inquirer: "npm:8.2.5" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" bin: create-strapi-app: ./bin/index.js languageName: unknown @@ -15657,17 +15657,17 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-starter@workspace:packages/cli/create-strapi-starter" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.4" - "@strapi/pack-up": "npm:4.15.5-alpha.4" + "@strapi/generate-new": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5-alpha.5" chalk: "npm:4.1.2" ci-info: "npm:3.8.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.4" + eslint-config-custom: "npm:4.15.5-alpha.5" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" inquirer: "npm:8.2.5" ora: "npm:5.4.1" - tsconfig: "npm:4.15.5-alpha.4" + tsconfig: "npm:4.15.5-alpha.5" bin: create-strapi-starter: ./bin/index.js languageName: unknown @@ -17570,7 +17570,7 @@ __metadata: languageName: node linkType: hard -"eslint-config-custom@npm:4.15.5-alpha.4, eslint-config-custom@workspace:packages/utils/eslint-config-custom": +"eslint-config-custom@npm:4.15.5-alpha.5, eslint-config-custom@workspace:packages/utils/eslint-config-custom": version: 0.0.0-use.local resolution: "eslint-config-custom@workspace:packages/utils/eslint-config-custom" languageName: unknown @@ -19498,16 +19498,16 @@ __metadata: resolution: "getstarted@workspace:examples/getstarted" dependencies: "@strapi/icons": "npm:1.11.0" - "@strapi/plugin-color-picker": "npm:4.15.5-alpha.4" - "@strapi/plugin-documentation": "npm:4.15.5-alpha.4" - "@strapi/plugin-graphql": "npm:4.15.5-alpha.4" - "@strapi/plugin-i18n": "npm:4.15.5-alpha.4" - "@strapi/plugin-sentry": "npm:4.15.5-alpha.4" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.4" - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.4" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.4" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/plugin-color-picker": "npm:4.15.5-alpha.5" + "@strapi/plugin-documentation": "npm:4.15.5-alpha.5" + "@strapi/plugin-graphql": "npm:4.15.5-alpha.5" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.5" + "@strapi/plugin-sentry": "npm:4.15.5-alpha.5" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.5" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.5" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.5" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" better-sqlite3: "npm:8.6.0" lodash: "npm:4.17.21" mysql: "npm:2.18.1" @@ -23025,9 +23025,9 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink-ts@workspace:examples/kitchensink-ts" dependencies: - "@strapi/plugin-i18n": "npm:4.15.5-alpha.4" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/plugin-i18n": "npm:4.15.5-alpha.5" + "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" better-sqlite3: "npm:8.6.0" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" @@ -23040,10 +23040,10 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink@workspace:examples/kitchensink" dependencies: - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.4" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.4" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.4" - "@strapi/strapi": "npm:4.15.5-alpha.4" + "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.5" + "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.5" + "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5-alpha.5" lodash: "npm:4.17.21" mysql: "npm:2.18.1" mysql2: "npm:3.6.0" @@ -31985,7 +31985,7 @@ __metadata: languageName: node linkType: hard -"tsconfig@npm:4.15.5-alpha.4, tsconfig@workspace:packages/utils/tsconfig": +"tsconfig@npm:4.15.5-alpha.5, tsconfig@workspace:packages/utils/tsconfig": version: 0.0.0-use.local resolution: "tsconfig@workspace:packages/utils/tsconfig" dependencies: From 4aea55bf4a31d5e16041409a953645fac878a8dc Mon Sep 17 00:00:00 2001 From: JonathanHallen1991 <69583284+JonathanHallen1991@users.noreply.github.com> Date: Wed, 22 Nov 2023 09:08:55 +0100 Subject: [PATCH 33/43] Add English (Norway) en-NO locale (#18828) --- packages/plugins/i18n/server/constants/iso-locales.json | 4 ++++ .../services/__tests__/__snapshots__/iso-locales.test.js.snap | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/packages/plugins/i18n/server/constants/iso-locales.json b/packages/plugins/i18n/server/constants/iso-locales.json index b569812edb7..5306075508c 100644 --- a/packages/plugins/i18n/server/constants/iso-locales.json +++ b/packages/plugins/i18n/server/constants/iso-locales.json @@ -718,6 +718,10 @@ { "code":"en-MP", "name":"English (Northern Mariana Islands) (en-MP)" + }, + { + "code":"en-NO", + "name":"English (Norway) (en-NO)" }, { "code":"en-PA", diff --git a/packages/plugins/i18n/server/services/__tests__/__snapshots__/iso-locales.test.js.snap b/packages/plugins/i18n/server/services/__tests__/__snapshots__/iso-locales.test.js.snap index e74741af541..246c58b25f3 100644 --- a/packages/plugins/i18n/server/services/__tests__/__snapshots__/iso-locales.test.js.snap +++ b/packages/plugins/i18n/server/services/__tests__/__snapshots__/iso-locales.test.js.snap @@ -722,6 +722,10 @@ exports[`ISO locales getIsoLocales 1`] = ` "code": "en-MP", "name": "English (Northern Mariana Islands) (en-MP)", }, + { + "code": "en-NO", + "name": "English (Norway) (en-NO)", + }, { "code": "en-PA", "name": "English (Panama) (en-PA)", From 52e9a48a8f28a45e50294cfb0b709f0248cb5dae Mon Sep 17 00:00:00 2001 From: Christian Capeans Date: Mon, 27 Nov 2023 16:25:40 +0100 Subject: [PATCH 34/43] chore: add documentation for old s3 urls --- packages/providers/upload-aws-s3/README.md | 44 +++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/packages/providers/upload-aws-s3/README.md b/packages/providers/upload-aws-s3/README.md index b707b81bf15..5dc61bfa3c2 100644 --- a/packages/providers/upload-aws-s3/README.md +++ b/packages/providers/upload-aws-s3/README.md @@ -171,7 +171,7 @@ module.exports = [ ]; ``` -If you use dots in your bucket name, the url of the ressource is in directory style (`s3.yourRegion.amazonaws.com/your.bucket.name/image.jpg`) instead of `yourBucketName.s3.yourRegion.amazonaws.com/image.jpg`. Then only add `s3.yourRegion.amazonaws.com` to img-src and media-src directives. +If you use dots in your bucket name, the url of the resource is in directory style (`s3.yourRegion.amazonaws.com/your.bucket.name/image.jpg`) instead of `yourBucketName.s3.yourRegion.amazonaws.com/image.jpg`. Then only add `s3.yourRegion.amazonaws.com` to img-src and media-src directives. ## Bucket CORS Configuration @@ -202,3 +202,45 @@ These are the minimum amount of permissions needed for this provider to work. "s3:PutObjectAcl" ], ``` + +## Update to AWS SDK V3 and URL Format Change + +In the recent update of the `@strapi/provider-upload-aws-s3` plugin, we have transitioned from AWS SDK V2 to AWS SDK V3. This significant update brings along a change in the format of the URLs used in Amazon S3 services. + +### Understanding the New URL Format + +AWS SDK V3 adopts the virtual-hosted–style URI format for S3 URLs. This format is recommended by AWS and is likely to become the standard in the near future, as the path-style URI is being deprecated. More details on this format can be found in the [AWS User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html#virtual-hosted-style-access). + +### Why the Change? + +The move to virtual-hosted–style URIs aligns with AWS's recommendation and future-proofing strategies. For an in-depth understanding of AWS's decision behind this transition, you can refer to their detailed post [here](https://aws.amazon.com/es/blogs/aws/amazon-s3-path-deprecation-plan-the-rest-of-the-story/). + +### Configuring Your Strapi Application + +If you wish to continue using the plugin with Strapi 4.15.x versions or newer without changing your URL format, it's possible to specify your desired URL format directly in the plugin's configuration. Below is an example configuration highlighting the critical `baseUrl` property: + +```javascript +upload: { + config: { + provider: 'aws-s3', + providerOptions: { + accessKeyId: process.env.AWS_ACCESS_KEY_ID, + secretAccessKey: process.env.AWS_ACCESS_SECRET, + region: process.env.AWS_REGION, + baseUrl: `https://s3.${region}.amazonaws.com/${bucket}`, // CRITICAL LINE + params: { + ACL: process.env.AWS_ACL || 'public-read', + signedUrlExpires: process.env.AWS_SIGNED_URL_EXPIRES || 15 * 60, + Bucket: process.env.AWS_BUCKET, + }, + }, + actionOptions: { + upload: {}, + uploadStream: {}, + delete: {}, + }, + }, +} +``` + +This configuration ensures compatibility with the updated AWS SDK while providing flexibility in URL format selection, catering to various user needs. From 2781bf02bdca977b1e8dcf6c119e97eb57ce5d5b Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 27 Nov 2023 16:57:26 +0100 Subject: [PATCH 35/43] Update packages/providers/upload-aws-s3/README.md Co-authored-by: Ben Irvin --- packages/providers/upload-aws-s3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/providers/upload-aws-s3/README.md b/packages/providers/upload-aws-s3/README.md index 5dc61bfa3c2..902ab176682 100644 --- a/packages/providers/upload-aws-s3/README.md +++ b/packages/providers/upload-aws-s3/README.md @@ -227,7 +227,7 @@ upload: { accessKeyId: process.env.AWS_ACCESS_KEY_ID, secretAccessKey: process.env.AWS_ACCESS_SECRET, region: process.env.AWS_REGION, - baseUrl: `https://s3.${region}.amazonaws.com/${bucket}`, // CRITICAL LINE + baseUrl: `https://s3.${region}.amazonaws.com/${bucket}`, // This line sets the custom url format params: { ACL: process.env.AWS_ACL || 'public-read', signedUrlExpires: process.env.AWS_SIGNED_URL_EXPIRES || 15 * 60, From 33193ce8b29afca03b988914124337b791a75968 Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 27 Nov 2023 16:57:46 +0100 Subject: [PATCH 36/43] Update packages/providers/upload-aws-s3/README.md Co-authored-by: Ben Irvin --- packages/providers/upload-aws-s3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/providers/upload-aws-s3/README.md b/packages/providers/upload-aws-s3/README.md index 902ab176682..9f32b038dc4 100644 --- a/packages/providers/upload-aws-s3/README.md +++ b/packages/providers/upload-aws-s3/README.md @@ -171,7 +171,7 @@ module.exports = [ ]; ``` -If you use dots in your bucket name, the url of the resource is in directory style (`s3.yourRegion.amazonaws.com/your.bucket.name/image.jpg`) instead of `yourBucketName.s3.yourRegion.amazonaws.com/image.jpg`. Then only add `s3.yourRegion.amazonaws.com` to img-src and media-src directives. +If you use dots in your bucket name, the url of the resource is in directory style (`s3.yourRegion.amazonaws.com/your.bucket.name/image.jpg`) instead of `yourBucketName.s3.yourRegion.amazonaws.com/image.jpg` so in that case the img-src and media-src directives to add will be `s3.yourRegion.amazonaws.com` without the bucket name in the url. ## Bucket CORS Configuration From ee776447bcaa6af88e26e35a3e31bd097f66f8bf Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 27 Nov 2023 16:57:58 +0100 Subject: [PATCH 37/43] Update packages/providers/upload-aws-s3/README.md Co-authored-by: Ben Irvin --- packages/providers/upload-aws-s3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/providers/upload-aws-s3/README.md b/packages/providers/upload-aws-s3/README.md index 9f32b038dc4..5851e862069 100644 --- a/packages/providers/upload-aws-s3/README.md +++ b/packages/providers/upload-aws-s3/README.md @@ -209,7 +209,7 @@ In the recent update of the `@strapi/provider-upload-aws-s3` plugin, we have tra ### Understanding the New URL Format -AWS SDK V3 adopts the virtual-hosted–style URI format for S3 URLs. This format is recommended by AWS and is likely to become the standard in the near future, as the path-style URI is being deprecated. More details on this format can be found in the [AWS User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html#virtual-hosted-style-access). +AWS SDK V3 adopts the virtual-hosted–style URI format for S3 URLs. This format is recommended by AWS and is likely to become required in the near future, as the path-style URI is being deprecated. More details on this format can be found in the [AWS User Guide](https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html#virtual-hosted-style-access). ### Why the Change? From dc96169c3f41dab4ab75d828d3fb39dd1a2dae27 Mon Sep 17 00:00:00 2001 From: Mark Kaylor Date: Wed, 29 Nov 2023 16:42:28 +0100 Subject: [PATCH 38/43] v4.15.5 --- .github/actions/check-pr-status/package.json | 2 +- examples/getstarted/package.json | 22 +- examples/kitchensink-ts/package.json | 8 +- examples/kitchensink/package.json | 10 +- lerna.json | 2 +- packages/admin-test-utils/package.json | 6 +- packages/cli/create-strapi-app/package.json | 10 +- .../cli/create-strapi-starter/package.json | 10 +- packages/core/admin/package.json | 22 +- packages/core/content-manager/package.json | 4 +- .../core/content-type-builder/package.json | 12 +- packages/core/data-transfer/package.json | 12 +- packages/core/database/package.json | 10 +- packages/core/email/package.json | 12 +- packages/core/helper-plugin/package.json | 10 +- packages/core/permissions/package.json | 10 +- packages/core/strapi/package.json | 36 +- packages/core/types/package.json | 16 +- packages/core/upload/package.json | 12 +- packages/core/utils/package.json | 8 +- packages/generators/app/package.json | 4 +- packages/generators/generators/package.json | 12 +- packages/plugins/cloud/package.json | 10 +- packages/plugins/color-picker/package.json | 6 +- packages/plugins/documentation/package.json | 10 +- packages/plugins/graphql/package.json | 10 +- packages/plugins/i18n/package.json | 10 +- packages/plugins/sentry/package.json | 8 +- .../plugins/users-permissions/package.json | 10 +- .../providers/audit-logs-local/package.json | 10 +- .../providers/email-amazon-ses/package.json | 10 +- packages/providers/email-mailgun/package.json | 10 +- .../providers/email-nodemailer/package.json | 8 +- .../providers/email-sendgrid/package.json | 10 +- .../providers/email-sendmail/package.json | 10 +- packages/providers/upload-aws-s3/package.json | 8 +- .../providers/upload-cloudinary/package.json | 10 +- packages/providers/upload-local/package.json | 10 +- packages/utils/api-tests/package.json | 2 +- .../utils/eslint-config-custom/package.json | 2 +- packages/utils/logger/package.json | 8 +- packages/utils/pack-up/package.json | 6 +- packages/utils/tsconfig/package.json | 2 +- packages/utils/typescript/package.json | 2 +- scripts/front/package.json | 2 +- yarn.lock | 394 +++++++++--------- 46 files changed, 409 insertions(+), 409 deletions(-) diff --git a/.github/actions/check-pr-status/package.json b/.github/actions/check-pr-status/package.json index 9383c31b64c..c971ecc1ee3 100644 --- a/.github/actions/check-pr-status/package.json +++ b/.github/actions/check-pr-status/package.json @@ -1,6 +1,6 @@ { "name": "check-pr-status", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "license": "MIT", "main": "dist/index.js", diff --git a/examples/getstarted/package.json b/examples/getstarted/package.json index 642351d9048..4bf1385a175 100644 --- a/examples/getstarted/package.json +++ b/examples/getstarted/package.json @@ -1,6 +1,6 @@ { "name": "getstarted", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -14,16 +14,16 @@ }, "dependencies": { "@strapi/icons": "1.11.0", - "@strapi/plugin-color-picker": "4.15.5-alpha.5", - "@strapi/plugin-documentation": "4.15.5-alpha.5", - "@strapi/plugin-graphql": "4.15.5-alpha.5", - "@strapi/plugin-i18n": "4.15.5-alpha.5", - "@strapi/plugin-sentry": "4.15.5-alpha.5", - "@strapi/plugin-users-permissions": "4.15.5-alpha.5", - "@strapi/provider-email-mailgun": "4.15.5-alpha.5", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.5", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/plugin-color-picker": "4.15.5", + "@strapi/plugin-documentation": "4.15.5", + "@strapi/plugin-graphql": "4.15.5", + "@strapi/plugin-i18n": "4.15.5", + "@strapi/plugin-sentry": "4.15.5", + "@strapi/plugin-users-permissions": "4.15.5", + "@strapi/provider-email-mailgun": "4.15.5", + "@strapi/provider-upload-aws-s3": "4.15.5", + "@strapi/provider-upload-cloudinary": "4.15.5", + "@strapi/strapi": "4.15.5", "better-sqlite3": "8.6.0", "lodash": "4.17.21", "mysql": "2.18.1", diff --git a/examples/kitchensink-ts/package.json b/examples/kitchensink-ts/package.json index b3aeca61ebf..db7cb2d0208 100644 --- a/examples/kitchensink-ts/package.json +++ b/examples/kitchensink-ts/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink-ts", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "description": "A Strapi application", "license": "MIT", @@ -14,9 +14,9 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/plugin-i18n": "4.15.5-alpha.5", - "@strapi/plugin-users-permissions": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/plugin-i18n": "4.15.5", + "@strapi/plugin-users-permissions": "4.15.5", + "@strapi/strapi": "4.15.5", "better-sqlite3": "8.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/kitchensink/package.json b/examples/kitchensink/package.json index 919b4d9201b..547f4c7888b 100644 --- a/examples/kitchensink/package.json +++ b/examples/kitchensink/package.json @@ -1,6 +1,6 @@ { "name": "kitchensink", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "description": "A Strapi application.", "license": "SEE LICENSE IN LICENSE", @@ -13,10 +13,10 @@ "strapi": "strapi" }, "dependencies": { - "@strapi/provider-email-mailgun": "4.15.5-alpha.5", - "@strapi/provider-upload-aws-s3": "4.15.5-alpha.5", - "@strapi/provider-upload-cloudinary": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/provider-email-mailgun": "4.15.5", + "@strapi/provider-upload-aws-s3": "4.15.5", + "@strapi/provider-upload-cloudinary": "4.15.5", + "@strapi/strapi": "4.15.5", "lodash": "4.17.21", "mysql": "2.18.1", "mysql2": "3.6.0", diff --git a/lerna.json b/lerna.json index cea264e536e..431a093febb 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.15.5-alpha.5", + "version": "4.15.5", "packages": ["packages/*", "examples/*"], "npmClient": "yarn", "useWorkspaces": true, diff --git a/packages/admin-test-utils/package.json b/packages/admin-test-utils/package.json index 05cae34c667..6c014e8aeb9 100644 --- a/packages/admin-test-utils/package.json +++ b/packages/admin-test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin-test-utils", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "description": "Test utilities for the Strapi administration panel", "license": "MIT", @@ -75,8 +75,8 @@ "@reduxjs/toolkit": "1.9.7", "@strapi/pack-up": "workspace:*", "@testing-library/jest-dom": "5.16.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "peerDependencies": { "@reduxjs/toolkit": "^1.9.7", diff --git a/packages/cli/create-strapi-app/package.json b/packages/cli/create-strapi-app/package.json index 73fb763f2f5..4c5d2c22c85 100644 --- a/packages/cli/create-strapi-app/package.json +++ b/packages/cli/create-strapi-app/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-app", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-app", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.5", + "@strapi/generate-new": "4.15.5", "commander": "8.3.0", "inquirer": "8.2.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/cli/create-strapi-starter/package.json b/packages/cli/create-strapi-starter/package.json index 7655b3c6b7b..44223c756a2 100644 --- a/packages/cli/create-strapi-starter/package.json +++ b/packages/cli/create-strapi-starter/package.json @@ -1,6 +1,6 @@ { "name": "create-strapi-starter", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Generate a new Strapi application.", "keywords": [ "create-strapi-starter", @@ -44,7 +44,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/generate-new": "4.15.5-alpha.5", + "@strapi/generate-new": "4.15.5", "chalk": "4.1.2", "ci-info": "3.8.0", "commander": "8.3.0", @@ -54,9 +54,9 @@ "ora": "5.4.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index e41e68a761d..037a81e6823 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/admin", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Strapi Admin", "repository": { "type": "git", @@ -75,15 +75,15 @@ "@radix-ui/react-context": "1.0.1", "@radix-ui/react-toolbar": "1.0.4", "@reduxjs/toolkit": "1.9.7", - "@strapi/data-transfer": "4.15.5-alpha.5", + "@strapi/data-transfer": "4.15.5", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/permissions": "4.15.5-alpha.5", - "@strapi/provider-audit-logs-local": "4.15.5-alpha.5", - "@strapi/types": "4.15.5-alpha.5", - "@strapi/typescript-utils": "4.15.5-alpha.5", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/permissions": "4.15.5", + "@strapi/provider-audit-logs-local": "4.15.5", + "@strapi/types": "4.15.5", + "@strapi/typescript-utils": "4.15.5", + "@strapi/utils": "4.15.5", "axios": "1.6.0", "bcryptjs": "2.4.3", "boxen": "5.1.2", @@ -172,9 +172,9 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/admin-test-utils": "4.15.5-alpha.5", - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/admin-test-utils": "4.15.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/content-manager/package.json b/packages/core/content-manager/package.json index 6eeb4e10f95..9760945f5c0 100644 --- a/packages/core/content-manager/package.json +++ b/packages/core/content-manager/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-manager", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "A powerful UI to easily manage your data.", "repository": { "type": "git", @@ -26,7 +26,7 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "lodash": "4.17.21", "qs": "6.11.1" }, diff --git a/packages/core/content-type-builder/package.json b/packages/core/content-type-builder/package.json index f0123ceb098..a68594ec3df 100644 --- a/packages/core/content-type-builder/package.json +++ b/packages/core/content-type-builder/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-content-type-builder", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Strapi plugin to create content type", "repository": { "type": "git", @@ -49,10 +49,10 @@ "dependencies": { "@sindresorhus/slugify": "1.1.0", "@strapi/design-system": "1.13.0", - "@strapi/generators": "4.15.5-alpha.5", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/generators": "4.15.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "fs-extra": "10.0.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "@testing-library/react": "14.0.0", "history": "^4.9.0", "react": "^18.2.0", diff --git a/packages/core/data-transfer/package.json b/packages/core/data-transfer/package.json index 4cb786f26ce..e2065661ec7 100644 --- a/packages/core/data-transfer/package.json +++ b/packages/core/data-transfer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/data-transfer", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Data transfer capabilities for Strapi", "keywords": [ "strapi", @@ -41,10 +41,10 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/logger": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", - "@strapi/types": "4.15.5-alpha.5", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/logger": "4.15.5", + "@strapi/strapi": "4.15.5", + "@strapi/types": "4.15.5", + "@strapi/utils": "4.15.5", "chalk": "4.1.2", "cli-table3": "0.6.2", "commander": "8.3.0", @@ -61,7 +61,7 @@ "ws": "8.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@strapi/strapi": "4.15.2", "@types/fs-extra": "9.0.13", "@types/jest": "29.5.2", diff --git a/packages/core/database/package.json b/packages/core/database/package.json index bac73ec0e6e..a94bc85b347 100644 --- a/packages/core/database/package.json +++ b/packages/core/database/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/database", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Strapi's database layer", "homepage": "https://strapi.io", "bugs": { @@ -40,7 +40,7 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "date-fns": "2.30.0", "debug": "4.3.4", "fs-extra": "10.0.0", @@ -50,9 +50,9 @@ "umzug": "3.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/email/package.json b/packages/core/email/package.json index 636e3f6ead3..49914c87961 100644 --- a/packages/core/email/package.json +++ b/packages/core/email/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-email", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Easily configure your Strapi application to send emails.", "repository": { "type": "git", @@ -54,10 +54,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/provider-email-sendmail": "4.15.5-alpha.5", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/provider-email-sendmail": "4.15.5", + "@strapi/utils": "4.15.5", "lodash": "4.17.21", "prop-types": "^15.8.1", "react-intl": "6.4.1", @@ -65,8 +65,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/types": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/types": "4.15.5", "@testing-library/react": "14.0.0", "@types/koa": "2.13.4", "@types/lodash": "^4.14.191", diff --git a/packages/core/helper-plugin/package.json b/packages/core/helper-plugin/package.json index 09f5ed18418..aec0eb60a60 100644 --- a/packages/core/helper-plugin/package.json +++ b/packages/core/helper-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/helper-plugin", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Helper for Strapi plugins development", "repository": { "type": "git", @@ -69,11 +69,11 @@ "@storybook/addon-mdx-gfm": "7.4.0", "@storybook/builder-vite": "7.4.0", "@storybook/react-vite": "7.4.0", - "@strapi/admin-test-utils": "4.15.5-alpha.5", + "@strapi/admin-test-utils": "4.15.5", "@strapi/design-system": "1.13.0", "@strapi/icons": "1.13.0", - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/types": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/types": "4.15.5", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/react": "18.2.7", @@ -82,7 +82,7 @@ "@types/react-router-dom": "5.3.3", "@types/styled-components": "5.1.26", "cross-env": "^7.0.3", - "eslint-config-custom": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5", "eslint-plugin-storybook": "0.6.14", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/core/permissions/package.json b/packages/core/permissions/package.json index ccfab5237bf..4379ee4b71c 100644 --- a/packages/core/permissions/package.json +++ b/packages/core/permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/permissions", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Strapi's permission layer.", "repository": { "type": "git", @@ -38,15 +38,15 @@ }, "dependencies": { "@casl/ability": "6.5.0", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "lodash": "4.17.21", "qs": "6.11.1", "sift": "16.0.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/strapi/package.json b/packages/core/strapi/package.json index 68d0efe6a51..0c807ddbaf7 100644 --- a/packages/core/strapi/package.json +++ b/packages/core/strapi/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/strapi", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite", "keywords": [ "strapi", @@ -114,21 +114,21 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/admin": "4.15.5-alpha.5", - "@strapi/data-transfer": "4.15.5-alpha.5", - "@strapi/database": "4.15.5-alpha.5", - "@strapi/generate-new": "4.15.5-alpha.5", - "@strapi/generators": "4.15.5-alpha.5", - "@strapi/logger": "4.15.5-alpha.5", - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/permissions": "4.15.5-alpha.5", - "@strapi/plugin-content-manager": "4.15.5-alpha.5", - "@strapi/plugin-content-type-builder": "4.15.5-alpha.5", - "@strapi/plugin-email": "4.15.5-alpha.5", - "@strapi/plugin-upload": "4.15.5-alpha.5", - "@strapi/types": "4.15.5-alpha.5", - "@strapi/typescript-utils": "4.15.5-alpha.5", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/admin": "4.15.5", + "@strapi/data-transfer": "4.15.5", + "@strapi/database": "4.15.5", + "@strapi/generate-new": "4.15.5", + "@strapi/generators": "4.15.5", + "@strapi/logger": "4.15.5", + "@strapi/pack-up": "4.15.5", + "@strapi/permissions": "4.15.5", + "@strapi/plugin-content-manager": "4.15.5", + "@strapi/plugin-content-type-builder": "4.15.5", + "@strapi/plugin-email": "4.15.5", + "@strapi/plugin-upload": "4.15.5", + "@strapi/types": "4.15.5", + "@strapi/typescript-utils": "4.15.5", + "@strapi/utils": "4.15.5", "bcryptjs": "2.4.3", "boxen": "5.1.2", "chalk": "4.1.2", @@ -188,9 +188,9 @@ "@types/node": "18.18.4", "@types/node-schedule": "2.1.0", "@types/statuses": "2.0.1", - "eslint-config-custom": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5", "supertest": "6.3.3", - "tsconfig": "4.15.5-alpha.5" + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/core/types/package.json b/packages/core/types/package.json index b1e5b404a3f..6921890c24f 100644 --- a/packages/core/types/package.json +++ b/packages/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/types", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Shared typescript types for Strapi internal use", "keywords": [ "strapi" @@ -46,10 +46,10 @@ "dependencies": { "@koa/cors": "3.4.3", "@koa/router": "10.1.1", - "@strapi/database": "4.15.5-alpha.5", - "@strapi/logger": "4.15.5-alpha.5", - "@strapi/permissions": "4.15.5-alpha.5", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/database": "4.15.5", + "@strapi/logger": "4.15.5", + "@strapi/permissions": "4.15.5", + "@strapi/utils": "4.15.5", "commander": "8.3.0", "https-proxy-agent": "5.0.1", "koa": "2.13.4", @@ -57,14 +57,14 @@ "node-schedule": "2.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@strapi/ts-zen": "^0.2.0", "@types/jest": "29.5.2", "@types/koa": "2.13.4", "@types/koa__router": "12.0.0", "@types/node-schedule": "2.1.0", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5", "typescript": "5.2.2" }, "engines": { diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index 11943f88559..a84fcf067e3 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-upload", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Makes it easy to upload images and files to your Strapi Application.", "license": "SEE LICENSE IN LICENSE", "author": { @@ -44,10 +44,10 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/provider-upload-local": "4.15.5-alpha.5", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/provider-upload-local": "4.15.5", + "@strapi/utils": "4.15.5", "axios": "1.6.0", "byte-size": "7.0.1", "cropperjs": "1.6.0", @@ -71,8 +71,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index df47606c87a..63d7bd37486 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/utils", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Shared utilities for the Strapi packages", "keywords": [ "strapi", @@ -53,13 +53,13 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@types/koa": "2.13.4", "@types/node": "18.18.4", - "eslint-config-custom": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5", "koa": "2.13.4", "koa-body": "4.2.0", - "tsconfig": "4.15.5-alpha.5" + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/generators/app/package.json b/packages/generators/app/package.json index 4b9dab30f16..0243b7b6a7d 100644 --- a/packages/generators/app/package.json +++ b/packages/generators/app/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generate-new", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Generate a new Strapi application.", "keywords": [ "generate", @@ -58,7 +58,7 @@ "tar": "6.1.13" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "copyfiles": "2.4.1" }, "engines": { diff --git a/packages/generators/generators/package.json b/packages/generators/generators/package.json index f1ea7d7614d..297fd402279 100644 --- a/packages/generators/generators/package.json +++ b/packages/generators/generators/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/generators", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Interactive API generator.", "keywords": [ "strapi", @@ -47,8 +47,8 @@ }, "dependencies": { "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "4.15.5-alpha.5", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/typescript-utils": "4.15.5", + "@strapi/utils": "4.15.5", "chalk": "4.1.2", "copyfiles": "2.4.1", "fs-extra": "10.0.0", @@ -57,9 +57,9 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/plugins/cloud/package.json b/packages/plugins/cloud/package.json index 2c44a569bf5..e355bac81c1 100644 --- a/packages/plugins/cloud/package.json +++ b/packages/plugins/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-cloud", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Instructions to deploy your local project to Strapi Cloud", "license": "MIT", "author": { @@ -38,22 +38,22 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5", "@types/react": "18.2.7", "@types/react-dom": "18.2.12", "@types/react-router-dom": "^5.3.3", "@types/styled-components": "5.1.26", - "eslint-config-custom": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5", "react": "18.2.0", "react-dom": "18.2.0", "react-router-dom": "5.3.4", "styled-components": "5.3.3", - "tsconfig": "4.15.5-alpha.5", + "tsconfig": "4.15.5", "typescript": "5.2.2" }, "peerDependencies": { diff --git a/packages/plugins/color-picker/package.json b/packages/plugins/color-picker/package.json index eea140f3530..260afca6536 100644 --- a/packages/plugins/color-picker/package.json +++ b/packages/plugins/color-picker/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-color-picker", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Strapi maintained Custom Fields", "repository": { "type": "git", @@ -55,14 +55,14 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", "prop-types": "^15.8.1", "react-colorful": "5.6.1", "react-intl": "6.4.1" }, "devDependencies": { - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/strapi": "4.15.5", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "@types/styled-components": "5.1.26", diff --git a/packages/plugins/documentation/package.json b/packages/plugins/documentation/package.json index b54659d8d7b..2578dae6ad4 100644 --- a/packages/plugins/documentation/package.json +++ b/packages/plugins/documentation/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-documentation", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.", "repository": { "type": "git", @@ -47,9 +47,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "bcryptjs": "2.4.3", "cheerio": "^1.0.0-rc.12", "formik": "2.4.0", @@ -67,8 +67,8 @@ }, "devDependencies": { "@apidevtools/swagger-parser": "^10.1.0", - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", "msw": "1.3.0", diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index c98d85349cb..1520b0c402a 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-graphql", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Adds GraphQL endpoint with default API methods.", "repository": { "type": "git", @@ -45,9 +45,9 @@ "@graphql-tools/schema": "8.5.1", "@graphql-tools/utils": "^8.13.1", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "apollo-server-core": "3.12.1", "apollo-server-koa": "3.10.0", "graphql": "^15.5.1", @@ -61,8 +61,8 @@ "pluralize": "8.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "cross-env": "^7.0.3", "koa": "2.13.4", "react": "^18.2.0", diff --git a/packages/plugins/i18n/package.json b/packages/plugins/i18n/package.json index d3268e7cf0d..0594ed5d28c 100644 --- a/packages/plugins/i18n/package.json +++ b/packages/plugins/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-i18n", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API", "repository": { "type": "git", @@ -50,9 +50,9 @@ "dependencies": { "@reduxjs/toolkit": "1.9.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "formik": "2.4.0", "immer": "9.0.19", "lodash": "4.17.21", @@ -64,8 +64,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "@testing-library/react": "14.0.0", "msw": "1.3.0", "react": "^18.2.0", diff --git a/packages/plugins/sentry/package.json b/packages/plugins/sentry/package.json index 1a4d6f07e3a..603356ba4e9 100644 --- a/packages/plugins/sentry/package.json +++ b/packages/plugins/sentry/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-sentry", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Send Strapi error events to Sentry", "repository": { "type": "git", @@ -46,12 +46,12 @@ "dependencies": { "@sentry/node": "6.19.7", "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "5.3.4", diff --git a/packages/plugins/users-permissions/package.json b/packages/plugins/users-permissions/package.json index 1b418b1bfc9..6ec5e32e8bb 100644 --- a/packages/plugins/users-permissions/package.json +++ b/packages/plugins/users-permissions/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/plugin-users-permissions", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Protect your API with a full-authentication process based on JWT", "repository": { "type": "git", @@ -48,9 +48,9 @@ }, "dependencies": { "@strapi/design-system": "1.13.0", - "@strapi/helper-plugin": "4.15.5-alpha.5", + "@strapi/helper-plugin": "4.15.5", "@strapi/icons": "1.13.0", - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "bcryptjs": "2.4.3", "formik": "2.4.0", "grant-koa": "5.4.8", @@ -69,8 +69,8 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/strapi": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", + "@strapi/strapi": "4.15.5", "@testing-library/dom": "9.2.0", "@testing-library/react": "14.0.0", "@testing-library/user-event": "14.4.3", diff --git a/packages/providers/audit-logs-local/package.json b/packages/providers/audit-logs-local/package.json index 2c670e6b988..f2b3912e65b 100644 --- a/packages/providers/audit-logs-local/package.json +++ b/packages/providers/audit-logs-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-audit-logs-local", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Local provider for strapi audit logs", "keywords": [ "audit-logs", @@ -42,10 +42,10 @@ "watch": "pack-up watch" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "@strapi/types": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "@strapi/types": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-amazon-ses/package.json b/packages/providers/email-amazon-ses/package.json index db1cd45a89b..095cb1a65c1 100644 --- a/packages/providers/email-amazon-ses/package.json +++ b/packages/providers/email-amazon-ses/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-amazon-ses", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Amazon SES provider for strapi email", "keywords": [ "email", @@ -43,13 +43,13 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "node-ses": "^3.0.3" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-mailgun/package.json b/packages/providers/email-mailgun/package.json index ce7a961d2c7..ac1d0a1ac06 100644 --- a/packages/providers/email-mailgun/package.json +++ b/packages/providers/email-mailgun/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-mailgun", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Mailgun provider for strapi email plugin", "keywords": [ "email", @@ -45,14 +45,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "form-data": "^4.0.0", "mailgun.js": "8.2.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-nodemailer/package.json b/packages/providers/email-nodemailer/package.json index abac73fac3d..19b848aea5b 100644 --- a/packages/providers/email-nodemailer/package.json +++ b/packages/providers/email-nodemailer/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-nodemailer", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Nodemailer provider for Strapi 3", "keywords": [ "strapi", @@ -60,10 +60,10 @@ "nodemailer": "6.9.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@types/nodemailer": "6.4.7", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendgrid/package.json b/packages/providers/email-sendgrid/package.json index 09e083ff2d0..4d6dfc94914 100644 --- a/packages/providers/email-sendgrid/package.json +++ b/packages/providers/email-sendgrid/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendgrid", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Sendgrid provider for strapi email", "keywords": [ "email", @@ -44,12 +44,12 @@ }, "dependencies": { "@sendgrid/mail": "7.7.0", - "@strapi/utils": "4.15.5-alpha.5" + "@strapi/utils": "4.15.5" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/email-sendmail/package.json b/packages/providers/email-sendmail/package.json index e7ddc42a478..93e2a046a96 100644 --- a/packages/providers/email-sendmail/package.json +++ b/packages/providers/email-sendmail/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-email-sendmail", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Sendmail provider for strapi email", "keywords": [ "email", @@ -42,14 +42,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "sendmail": "^1.6.1" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@types/sendmail": "1.4.4", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-aws-s3/package.json b/packages/providers/upload-aws-s3/package.json index 74b17e204de..1826cc97d99 100644 --- a/packages/providers/upload-aws-s3/package.json +++ b/packages/providers/upload-aws-s3/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-aws-s3", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "AWS S3 provider for strapi upload", "keywords": [ "upload", @@ -53,10 +53,10 @@ "lodash": "4.17.21" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-cloudinary/package.json b/packages/providers/upload-cloudinary/package.json index 05618d1770a..2474f011bd6 100644 --- a/packages/providers/upload-cloudinary/package.json +++ b/packages/providers/upload-cloudinary/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-cloudinary", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Cloudinary provider for strapi upload", "keywords": [ "upload", @@ -43,14 +43,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "cloudinary": "^1.41.0", "into-stream": "^5.1.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/providers/upload-local/package.json b/packages/providers/upload-local/package.json index 614ed5eec3f..ac63d18ecab 100644 --- a/packages/providers/upload-local/package.json +++ b/packages/providers/upload-local/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/provider-upload-local", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Local provider for strapi upload", "keywords": [ "upload", @@ -44,14 +44,14 @@ "watch": "pack-up watch" }, "dependencies": { - "@strapi/utils": "4.15.5-alpha.5", + "@strapi/utils": "4.15.5", "fs-extra": "10.0.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@types/jest": "29.5.2", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/api-tests/package.json b/packages/utils/api-tests/package.json index 17e6c9793fe..4da96a03537 100644 --- a/packages/utils/api-tests/package.json +++ b/packages/utils/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "api-tests", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "dependencies": { "dotenv": "14.2.0", diff --git a/packages/utils/eslint-config-custom/package.json b/packages/utils/eslint-config-custom/package.json index 97d64f653d6..7a8903b0814 100644 --- a/packages/utils/eslint-config-custom/package.json +++ b/packages/utils/eslint-config-custom/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-custom", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "main": "index.js" } diff --git a/packages/utils/logger/package.json b/packages/utils/logger/package.json index d36d6c61df8..8fb7c1fc22d 100644 --- a/packages/utils/logger/package.json +++ b/packages/utils/logger/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/logger", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Strapi's logger", "homepage": "https://strapi.io", "bugs": { @@ -43,9 +43,9 @@ "winston": "3.10.0" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", - "eslint-config-custom": "4.15.5-alpha.5", - "tsconfig": "4.15.5-alpha.5" + "@strapi/pack-up": "4.15.5", + "eslint-config-custom": "4.15.5", + "tsconfig": "4.15.5" }, "engines": { "node": ">=18.0.0 <=20.x.x", diff --git a/packages/utils/pack-up/package.json b/packages/utils/pack-up/package.json index a555947f139..1f19dc8d004 100644 --- a/packages/utils/pack-up/package.json +++ b/packages/utils/pack-up/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/pack-up", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Simple tools for creating interoperable CJS & ESM packages.", "keywords": [ "strapi", @@ -84,11 +84,11 @@ "yup": "0.32.9" }, "devDependencies": { - "@strapi/pack-up": "4.15.5-alpha.5", + "@strapi/pack-up": "4.15.5", "@types/git-url-parse": "9.0.1", "@types/ini": "1.3.31", "@types/prompts": "2.4.4", - "eslint-config-custom": "4.15.5-alpha.5", + "eslint-config-custom": "4.15.5", "rimraf": "3.0.2" }, "engines": { diff --git a/packages/utils/tsconfig/package.json b/packages/utils/tsconfig/package.json index 3916919a34c..ee3cf750199 100644 --- a/packages/utils/tsconfig/package.json +++ b/packages/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "tsconfig", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "devDependencies": { "@tsconfig/node18": "18.2.2" diff --git a/packages/utils/typescript/package.json b/packages/utils/typescript/package.json index 273f39dbc01..5fb1e12915f 100644 --- a/packages/utils/typescript/package.json +++ b/packages/utils/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@strapi/typescript-utils", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "description": "Typescript support for Strapi", "keywords": [ "strapi", diff --git a/scripts/front/package.json b/scripts/front/package.json index aa04f6e735b..33b55591287 100644 --- a/scripts/front/package.json +++ b/scripts/front/package.json @@ -1,6 +1,6 @@ { "name": "scripts-front", - "version": "4.15.5-alpha.5", + "version": "4.15.5", "private": true, "scripts": { "test:front": "jest --config jest.config.front.js" diff --git a/yarn.lock b/yarn.lock index c6ab61b8295..6fb993cd2d1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8613,7 +8613,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin-test-utils@npm:4.15.5-alpha.5, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": +"@strapi/admin-test-utils@npm:4.15.5, @strapi/admin-test-utils@workspace:*, @strapi/admin-test-utils@workspace:packages/admin-test-utils": version: 0.0.0-use.local resolution: "@strapi/admin-test-utils@workspace:packages/admin-test-utils" dependencies: @@ -8621,9 +8621,9 @@ __metadata: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/pack-up": "workspace:*" "@testing-library/jest-dom": "npm:5.16.5" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" jest-styled-components: "npm:7.1.1" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" whatwg-fetch: "npm:3.6.2" peerDependencies: "@reduxjs/toolkit": ^1.9.7 @@ -8746,7 +8746,7 @@ __metadata: languageName: node linkType: hard -"@strapi/admin@npm:4.15.5-alpha.5, @strapi/admin@workspace:packages/core/admin": +"@strapi/admin@npm:4.15.5, @strapi/admin@workspace:packages/core/admin": version: 0.0.0-use.local resolution: "@strapi/admin@workspace:packages/core/admin" dependencies: @@ -8755,18 +8755,18 @@ __metadata: "@radix-ui/react-context": "npm:1.0.1" "@radix-ui/react-toolbar": "npm:1.0.4" "@reduxjs/toolkit": "npm:1.9.7" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.5" - "@strapi/data-transfer": "npm:4.15.5-alpha.5" + "@strapi/admin-test-utils": "npm:4.15.5" + "@strapi/data-transfer": "npm:4.15.5" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/permissions": "npm:4.15.5-alpha.5" - "@strapi/provider-audit-logs-local": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" - "@strapi/types": "npm:4.15.5-alpha.5" - "@strapi/typescript-utils": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/permissions": "npm:4.15.5" + "@strapi/provider-audit-logs-local": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" + "@strapi/types": "npm:4.15.5" + "@strapi/typescript-utils": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -8902,15 +8902,15 @@ __metadata: languageName: node linkType: hard -"@strapi/data-transfer@npm:4.15.5-alpha.5, @strapi/data-transfer@workspace:packages/core/data-transfer": +"@strapi/data-transfer@npm:4.15.5, @strapi/data-transfer@workspace:packages/core/data-transfer": version: 0.0.0-use.local resolution: "@strapi/data-transfer@workspace:packages/core/data-transfer" dependencies: - "@strapi/logger": "npm:4.15.5-alpha.5" - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/logger": "npm:4.15.5" + "@strapi/pack-up": "npm:4.15.5" "@strapi/strapi": "npm:4.15.2" - "@strapi/types": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/types": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@types/fs-extra": "npm:9.0.13" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" @@ -8961,20 +8961,20 @@ __metadata: languageName: node linkType: hard -"@strapi/database@npm:4.15.5-alpha.5, @strapi/database@workspace:packages/core/database": +"@strapi/database@npm:4.15.5, @strapi/database@workspace:packages/core/database": version: 0.0.0-use.local resolution: "@strapi/database@workspace:packages/core/database" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" date-fns: "npm:2.30.0" debug: "npm:4.3.4" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" fs-extra: "npm:10.0.0" knex: "npm:2.5.0" lodash: "npm:4.17.21" semver: "npm:7.5.4" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" umzug: "npm:3.2.1" languageName: unknown linkType: soft @@ -9056,12 +9056,12 @@ __metadata: languageName: node linkType: hard -"@strapi/generate-new@npm:4.15.5-alpha.5, @strapi/generate-new@workspace:packages/generators/app": +"@strapi/generate-new@npm:4.15.5, @strapi/generate-new@workspace:packages/generators/app": version: 0.0.0-use.local resolution: "@strapi/generate-new@workspace:packages/generators/app" dependencies: "@sentry/node": "npm:6.19.7" - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" chalk: "npm:^4.1.2" copyfiles: "npm:2.4.1" execa: "npm:5.1.1" @@ -9093,22 +9093,22 @@ __metadata: languageName: node linkType: hard -"@strapi/generators@npm:4.15.5-alpha.5, @strapi/generators@workspace:packages/generators/generators": +"@strapi/generators@npm:4.15.5, @strapi/generators@workspace:packages/generators/generators": version: 0.0.0-use.local resolution: "@strapi/generators@workspace:packages/generators/generators" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/typescript-utils": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/typescript-utils": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" chalk: "npm:4.1.2" copyfiles: "npm:2.4.1" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" fs-extra: "npm:10.0.0" node-plop: "npm:0.26.3" plop: "npm:2.7.6" pluralize: "npm:8.0.0" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -9137,7 +9137,7 @@ __metadata: languageName: node linkType: hard -"@strapi/helper-plugin@npm:4.15.5-alpha.5, @strapi/helper-plugin@workspace:packages/core/helper-plugin": +"@strapi/helper-plugin@npm:4.15.5, @strapi/helper-plugin@workspace:packages/core/helper-plugin": version: 0.0.0-use.local resolution: "@strapi/helper-plugin@workspace:packages/core/helper-plugin" dependencies: @@ -9147,11 +9147,11 @@ __metadata: "@storybook/addon-mdx-gfm": "npm:7.4.0" "@storybook/builder-vite": "npm:7.4.0" "@storybook/react-vite": "npm:7.4.0" - "@strapi/admin-test-utils": "npm:4.15.5-alpha.5" + "@strapi/admin-test-utils": "npm:4.15.5" "@strapi/design-system": "npm:1.13.0" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/types": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/types": "npm:4.15.5" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/react": "npm:18.2.7" @@ -9162,7 +9162,7 @@ __metadata: axios: "npm:1.6.0" cross-env: "npm:^7.0.3" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" eslint-plugin-storybook: "npm:0.6.14" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9222,14 +9222,14 @@ __metadata: languageName: node linkType: hard -"@strapi/logger@npm:4.15.5-alpha.5, @strapi/logger@workspace:packages/utils/logger": +"@strapi/logger@npm:4.15.5, @strapi/logger@workspace:packages/utils/logger": version: 0.0.0-use.local resolution: "@strapi/logger@workspace:packages/utils/logger" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - eslint-config-custom: "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + eslint-config-custom: "npm:4.15.5" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" winston: "npm:3.10.0" languageName: unknown linkType: soft @@ -9265,11 +9265,11 @@ __metadata: languageName: node linkType: hard -"@strapi/pack-up@npm:4.15.5-alpha.5, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": +"@strapi/pack-up@npm:4.15.5, @strapi/pack-up@workspace:*, @strapi/pack-up@workspace:packages/utils/pack-up": version: 0.0.0-use.local resolution: "@strapi/pack-up@workspace:packages/utils/pack-up" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" "@types/git-url-parse": "npm:9.0.1" "@types/ini": "npm:1.3.31" "@types/prompts": "npm:2.4.4" @@ -9281,7 +9281,7 @@ __metadata: commander: "npm:8.3.0" esbuild: "npm:0.19.2" esbuild-register: "npm:3.5.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" get-latest-version: "npm:5.1.0" git-url-parse: "npm:13.1.0" ini: "npm:4.1.1" @@ -9314,18 +9314,18 @@ __metadata: languageName: node linkType: hard -"@strapi/permissions@npm:4.15.5-alpha.5, @strapi/permissions@workspace:packages/core/permissions": +"@strapi/permissions@npm:4.15.5, @strapi/permissions@workspace:packages/core/permissions": version: 0.0.0-use.local resolution: "@strapi/permissions@workspace:packages/core/permissions" dependencies: "@casl/ability": "npm:6.5.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" - eslint-config-custom: "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" + eslint-config-custom: "npm:4.15.5" lodash: "npm:4.17.21" qs: "npm:6.11.1" sift: "npm:16.0.1" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -9334,20 +9334,20 @@ __metadata: resolution: "@strapi/plugin-cloud@workspace:packages/plugins/cloud" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5" "@types/react": "npm:18.2.7" "@types/react-dom": "npm:18.2.12" "@types/react-router-dom": "npm:^5.3.3" "@types/styled-components": "npm:5.1.26" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" react: "npm:18.2.0" react-dom: "npm:18.2.0" react-intl: "npm:6.4.1" react-router-dom: "npm:5.3.4" styled-components: "npm:5.3.3" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" typescript: "npm:5.2.2" peerDependencies: "@strapi/strapi": ^4.4.0 @@ -9358,14 +9358,14 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-color-picker@npm:4.15.5-alpha.5, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": +"@strapi/plugin-color-picker@npm:4.15.5, @strapi/plugin-color-picker@workspace:packages/plugins/color-picker": version: 0.0.0-use.local resolution: "@strapi/plugin-color-picker@workspace:packages/plugins/color-picker" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/strapi": "npm:4.15.5" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" "@types/styled-components": "npm:5.1.26" @@ -9398,12 +9398,12 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-manager@npm:4.15.5-alpha.5, @strapi/plugin-content-manager@workspace:packages/core/content-manager": +"@strapi/plugin-content-manager@npm:4.15.5, @strapi/plugin-content-manager@workspace:packages/core/content-manager": version: 0.0.0-use.local resolution: "@strapi/plugin-content-manager@workspace:packages/core/content-manager" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5" lodash: "npm:4.17.21" qs: "npm:6.11.1" languageName: unknown @@ -9439,18 +9439,18 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-content-type-builder@npm:4.15.5-alpha.5, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": +"@strapi/plugin-content-type-builder@npm:4.15.5, @strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder": version: 0.0.0-use.local resolution: "@strapi/plugin-content-type-builder@workspace:packages/core/content-type-builder" dependencies: "@sindresorhus/slugify": "npm:1.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/generators": "npm:4.15.5-alpha.5" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/generators": "npm:4.15.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@testing-library/react": "npm:14.0.0" fs-extra: "npm:10.0.0" history: "npm:^4.9.0" @@ -9476,17 +9476,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-documentation@npm:4.15.5-alpha.5, @strapi/plugin-documentation@workspace:packages/plugins/documentation": +"@strapi/plugin-documentation@npm:4.15.5, @strapi/plugin-documentation@workspace:packages/plugins/documentation": version: 0.0.0-use.local resolution: "@strapi/plugin-documentation@workspace:packages/plugins/documentation" dependencies: "@apidevtools/swagger-parser": "npm:^10.1.0" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" bcryptjs: "npm:2.4.3" @@ -9541,17 +9541,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-email@npm:4.15.5-alpha.5, @strapi/plugin-email@workspace:packages/core/email": +"@strapi/plugin-email@npm:4.15.5, @strapi/plugin-email@workspace:packages/core/email": version: 0.0.0-use.local resolution: "@strapi/plugin-email@workspace:packages/core/email" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/provider-email-sendmail": "npm:4.15.5-alpha.5" - "@strapi/types": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/provider-email-sendmail": "npm:4.15.5" + "@strapi/types": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@testing-library/react": "npm:14.0.0" "@types/koa": "npm:2.13.4" "@types/lodash": "npm:^4.14.191" @@ -9575,18 +9575,18 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-graphql@npm:4.15.5-alpha.5, @strapi/plugin-graphql@workspace:packages/plugins/graphql": +"@strapi/plugin-graphql@npm:4.15.5, @strapi/plugin-graphql@workspace:packages/plugins/graphql": version: 0.0.0-use.local resolution: "@strapi/plugin-graphql@workspace:packages/plugins/graphql" dependencies: "@graphql-tools/schema": "npm:8.5.1" "@graphql-tools/utils": "npm:^8.13.1" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" apollo-server-core: "npm:3.12.1" apollo-server-koa: "npm:3.10.0" cross-env: "npm:^7.0.3" @@ -9613,17 +9613,17 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-i18n@npm:4.15.5-alpha.5, @strapi/plugin-i18n@workspace:packages/plugins/i18n": +"@strapi/plugin-i18n@npm:4.15.5, @strapi/plugin-i18n@workspace:packages/plugins/i18n": version: 0.0.0-use.local resolution: "@strapi/plugin-i18n@workspace:packages/plugins/i18n" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@testing-library/react": "npm:14.0.0" formik: "npm:2.4.0" immer: "npm:9.0.19" @@ -9648,16 +9648,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-sentry@npm:4.15.5-alpha.5, @strapi/plugin-sentry@workspace:packages/plugins/sentry": +"@strapi/plugin-sentry@npm:4.15.5, @strapi/plugin-sentry@workspace:packages/plugins/sentry": version: 0.0.0-use.local resolution: "@strapi/plugin-sentry@workspace:packages/plugins/sentry" dependencies: "@sentry/node": "npm:6.19.7" "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" react-router-dom: "npm:5.3.4" @@ -9711,17 +9711,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-upload@npm:4.15.5-alpha.5, @strapi/plugin-upload@workspace:packages/core/upload": +"@strapi/plugin-upload@npm:4.15.5, @strapi/plugin-upload@workspace:packages/core/upload": version: 0.0.0-use.local resolution: "@strapi/plugin-upload@workspace:packages/core/upload" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/provider-upload-local": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/provider-upload-local": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9760,16 +9760,16 @@ __metadata: languageName: unknown linkType: soft -"@strapi/plugin-users-permissions@npm:4.15.5-alpha.5, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": +"@strapi/plugin-users-permissions@npm:4.15.5, @strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions": version: 0.0.0-use.local resolution: "@strapi/plugin-users-permissions@workspace:packages/plugins/users-permissions" dependencies: "@strapi/design-system": "npm:1.13.0" - "@strapi/helper-plugin": "npm:4.15.5-alpha.5" + "@strapi/helper-plugin": "npm:4.15.5" "@strapi/icons": "npm:1.13.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@testing-library/dom": "npm:9.2.0" "@testing-library/react": "npm:14.0.0" "@testing-library/user-event": "npm:14.4.3" @@ -9810,14 +9810,14 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-audit-logs-local@npm:4.15.5-alpha.5, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": +"@strapi/provider-audit-logs-local@npm:4.15.5, @strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local": version: 0.0.0-use.local resolution: "@strapi/provider-audit-logs-local@workspace:packages/providers/audit-logs-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/types": "npm:4.15.5-alpha.5" - eslint-config-custom: "npm:4.15.5-alpha.5" - tsconfig: "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/types": "npm:4.15.5" + eslint-config-custom: "npm:4.15.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -9825,24 +9825,24 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-amazon-ses@workspace:packages/providers/email-amazon-ses" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" - eslint-config-custom: "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" + eslint-config-custom: "npm:4.15.5" node-ses: "npm:^3.0.3" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft -"@strapi/provider-email-mailgun@npm:4.15.5-alpha.5, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": +"@strapi/provider-email-mailgun@npm:4.15.5, @strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun": version: 0.0.0-use.local resolution: "@strapi/provider-email-mailgun@workspace:packages/providers/email-mailgun" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" - eslint-config-custom: "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" + eslint-config-custom: "npm:4.15.5" form-data: "npm:^4.0.0" mailgun.js: "npm:8.2.1" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -9850,12 +9850,12 @@ __metadata: version: 0.0.0-use.local resolution: "@strapi/provider-email-nodemailer@workspace:packages/providers/email-nodemailer" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" "@types/nodemailer": "npm:6.4.7" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" lodash: "npm:4.17.21" nodemailer: "npm:6.9.1" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -9864,10 +9864,10 @@ __metadata: resolution: "@strapi/provider-email-sendgrid@workspace:packages/providers/email-sendgrid" dependencies: "@sendgrid/mail": "npm:7.7.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" - eslint-config-custom: "npm:4.15.5-alpha.5" - tsconfig: "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" + eslint-config-custom: "npm:4.15.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -9881,20 +9881,20 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-email-sendmail@npm:4.15.5-alpha.5, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": +"@strapi/provider-email-sendmail@npm:4.15.5, @strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail": version: 0.0.0-use.local resolution: "@strapi/provider-email-sendmail@workspace:packages/providers/email-sendmail" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@types/sendmail": "npm:1.4.4" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" sendmail: "npm:^1.6.1" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft -"@strapi/provider-upload-aws-s3@npm:4.15.5-alpha.5, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": +"@strapi/provider-upload-aws-s3@npm:4.15.5, @strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3": version: 0.0.0-use.local resolution: "@strapi/provider-upload-aws-s3@workspace:packages/providers/upload-aws-s3" dependencies: @@ -9902,24 +9902,24 @@ __metadata: "@aws-sdk/lib-storage": "npm:3.433.0" "@aws-sdk/s3-request-presigner": "npm:3.433.0" "@aws-sdk/types": "npm:3.433.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" lodash: "npm:4.17.21" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft -"@strapi/provider-upload-cloudinary@npm:4.15.5-alpha.5, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": +"@strapi/provider-upload-cloudinary@npm:4.15.5, @strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary": version: 0.0.0-use.local resolution: "@strapi/provider-upload-cloudinary@workspace:packages/providers/upload-cloudinary" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" cloudinary: "npm:^1.41.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" into-stream: "npm:^5.1.0" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -9933,16 +9933,16 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-upload-local@npm:4.15.5-alpha.5, @strapi/provider-upload-local@workspace:packages/providers/upload-local": +"@strapi/provider-upload-local@npm:4.15.5, @strapi/provider-upload-local@workspace:packages/providers/upload-local": version: 0.0.0-use.local resolution: "@strapi/provider-upload-local@workspace:packages/providers/upload-local" dependencies: - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@types/jest": "npm:29.5.2" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" fs-extra: "npm:10.0.0" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" languageName: unknown linkType: soft @@ -10014,28 +10014,28 @@ __metadata: languageName: node linkType: hard -"@strapi/strapi@npm:4.15.5-alpha.5, @strapi/strapi@workspace:packages/core/strapi": +"@strapi/strapi@npm:4.15.5, @strapi/strapi@workspace:packages/core/strapi": version: 0.0.0-use.local resolution: "@strapi/strapi@workspace:packages/core/strapi" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/admin": "npm:4.15.5-alpha.5" - "@strapi/data-transfer": "npm:4.15.5-alpha.5" - "@strapi/database": "npm:4.15.5-alpha.5" - "@strapi/generate-new": "npm:4.15.5-alpha.5" - "@strapi/generators": "npm:4.15.5-alpha.5" - "@strapi/logger": "npm:4.15.5-alpha.5" + "@strapi/admin": "npm:4.15.5" + "@strapi/data-transfer": "npm:4.15.5" + "@strapi/database": "npm:4.15.5" + "@strapi/generate-new": "npm:4.15.5" + "@strapi/generators": "npm:4.15.5" + "@strapi/logger": "npm:4.15.5" "@strapi/pack-up": "workspace:*" - "@strapi/permissions": "npm:4.15.5-alpha.5" - "@strapi/plugin-content-manager": "npm:4.15.5-alpha.5" - "@strapi/plugin-content-type-builder": "npm:4.15.5-alpha.5" - "@strapi/plugin-email": "npm:4.15.5-alpha.5" - "@strapi/plugin-upload": "npm:4.15.5-alpha.5" + "@strapi/permissions": "npm:4.15.5" + "@strapi/plugin-content-manager": "npm:4.15.5" + "@strapi/plugin-content-type-builder": "npm:4.15.5" + "@strapi/plugin-email": "npm:4.15.5" + "@strapi/plugin-upload": "npm:4.15.5" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/types": "npm:4.15.5-alpha.5" - "@strapi/typescript-utils": "npm:4.15.5-alpha.5" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/types": "npm:4.15.5" + "@strapi/typescript-utils": "npm:4.15.5" + "@strapi/utils": "npm:4.15.5" "@types/bcryptjs": "npm:2.4.3" "@types/configstore": "npm:5.0.1" "@types/delegates": "npm:1.0.0" @@ -10061,7 +10061,7 @@ __metadata: debug: "npm:4.3.4" delegates: "npm:1.0.0" dotenv: "npm:14.2.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" glob: "npm:7.2.3" @@ -10091,7 +10091,7 @@ __metadata: semver: "npm:7.5.4" statuses: "npm:2.0.1" supertest: "npm:6.3.3" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" typescript: "npm:5.2.2" yup: "npm:0.32.9" bin: @@ -10128,29 +10128,29 @@ __metadata: languageName: node linkType: hard -"@strapi/types@npm:4.15.5-alpha.5, @strapi/types@workspace:packages/core/types": +"@strapi/types@npm:4.15.5, @strapi/types@workspace:packages/core/types": version: 0.0.0-use.local resolution: "@strapi/types@workspace:packages/core/types" dependencies: "@koa/cors": "npm:3.4.3" "@koa/router": "npm:10.1.1" - "@strapi/database": "npm:4.15.5-alpha.5" - "@strapi/logger": "npm:4.15.5-alpha.5" - "@strapi/pack-up": "npm:4.15.5-alpha.5" - "@strapi/permissions": "npm:4.15.5-alpha.5" + "@strapi/database": "npm:4.15.5" + "@strapi/logger": "npm:4.15.5" + "@strapi/pack-up": "npm:4.15.5" + "@strapi/permissions": "npm:4.15.5" "@strapi/ts-zen": "npm:^0.2.0" - "@strapi/utils": "npm:4.15.5-alpha.5" + "@strapi/utils": "npm:4.15.5" "@types/jest": "npm:29.5.2" "@types/koa": "npm:2.13.4" "@types/koa__router": "npm:12.0.0" "@types/node-schedule": "npm:2.1.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" https-proxy-agent: "npm:5.0.1" koa: "npm:2.13.4" node-fetch: "npm:2.7.0" node-schedule: "npm:2.1.0" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" typescript: "npm:5.2.2" languageName: unknown linkType: soft @@ -10169,7 +10169,7 @@ __metadata: languageName: node linkType: hard -"@strapi/typescript-utils@npm:4.15.5-alpha.5, @strapi/typescript-utils@workspace:packages/utils/typescript": +"@strapi/typescript-utils@npm:4.15.5, @strapi/typescript-utils@workspace:packages/utils/typescript": version: 0.0.0-use.local resolution: "@strapi/typescript-utils@workspace:packages/utils/typescript" dependencies: @@ -10228,22 +10228,22 @@ __metadata: languageName: node linkType: hard -"@strapi/utils@npm:4.15.5-alpha.5, @strapi/utils@workspace:packages/core/utils": +"@strapi/utils@npm:4.15.5, @strapi/utils@workspace:packages/core/utils": version: 0.0.0-use.local resolution: "@strapi/utils@workspace:packages/core/utils" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/pack-up": "npm:4.15.5" "@types/koa": "npm:2.13.4" "@types/node": "npm:18.18.4" date-fns: "npm:2.30.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" http-errors: "npm:1.8.1" koa: "npm:2.13.4" koa-body: "npm:4.2.0" lodash: "npm:4.17.21" p-map: "npm:4.0.0" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" yup: "npm:0.32.9" languageName: unknown linkType: soft @@ -15642,12 +15642,12 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-app@workspace:packages/cli/create-strapi-app" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.5" - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/generate-new": "npm:4.15.5" + "@strapi/pack-up": "npm:4.15.5" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" inquirer: "npm:8.2.5" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" bin: create-strapi-app: ./bin/index.js languageName: unknown @@ -15657,17 +15657,17 @@ __metadata: version: 0.0.0-use.local resolution: "create-strapi-starter@workspace:packages/cli/create-strapi-starter" dependencies: - "@strapi/generate-new": "npm:4.15.5-alpha.5" - "@strapi/pack-up": "npm:4.15.5-alpha.5" + "@strapi/generate-new": "npm:4.15.5" + "@strapi/pack-up": "npm:4.15.5" chalk: "npm:4.1.2" ci-info: "npm:3.8.0" commander: "npm:8.3.0" - eslint-config-custom: "npm:4.15.5-alpha.5" + eslint-config-custom: "npm:4.15.5" execa: "npm:5.1.1" fs-extra: "npm:10.0.0" inquirer: "npm:8.2.5" ora: "npm:5.4.1" - tsconfig: "npm:4.15.5-alpha.5" + tsconfig: "npm:4.15.5" bin: create-strapi-starter: ./bin/index.js languageName: unknown @@ -17570,7 +17570,7 @@ __metadata: languageName: node linkType: hard -"eslint-config-custom@npm:4.15.5-alpha.5, eslint-config-custom@workspace:packages/utils/eslint-config-custom": +"eslint-config-custom@npm:4.15.5, eslint-config-custom@workspace:packages/utils/eslint-config-custom": version: 0.0.0-use.local resolution: "eslint-config-custom@workspace:packages/utils/eslint-config-custom" languageName: unknown @@ -19498,16 +19498,16 @@ __metadata: resolution: "getstarted@workspace:examples/getstarted" dependencies: "@strapi/icons": "npm:1.11.0" - "@strapi/plugin-color-picker": "npm:4.15.5-alpha.5" - "@strapi/plugin-documentation": "npm:4.15.5-alpha.5" - "@strapi/plugin-graphql": "npm:4.15.5-alpha.5" - "@strapi/plugin-i18n": "npm:4.15.5-alpha.5" - "@strapi/plugin-sentry": "npm:4.15.5-alpha.5" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.5" - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.5" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.5" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/plugin-color-picker": "npm:4.15.5" + "@strapi/plugin-documentation": "npm:4.15.5" + "@strapi/plugin-graphql": "npm:4.15.5" + "@strapi/plugin-i18n": "npm:4.15.5" + "@strapi/plugin-sentry": "npm:4.15.5" + "@strapi/plugin-users-permissions": "npm:4.15.5" + "@strapi/provider-email-mailgun": "npm:4.15.5" + "@strapi/provider-upload-aws-s3": "npm:4.15.5" + "@strapi/provider-upload-cloudinary": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" better-sqlite3: "npm:8.6.0" lodash: "npm:4.17.21" mysql: "npm:2.18.1" @@ -23025,9 +23025,9 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink-ts@workspace:examples/kitchensink-ts" dependencies: - "@strapi/plugin-i18n": "npm:4.15.5-alpha.5" - "@strapi/plugin-users-permissions": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/plugin-i18n": "npm:4.15.5" + "@strapi/plugin-users-permissions": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" better-sqlite3: "npm:8.6.0" react: "npm:^18.2.0" react-dom: "npm:^18.2.0" @@ -23040,10 +23040,10 @@ __metadata: version: 0.0.0-use.local resolution: "kitchensink@workspace:examples/kitchensink" dependencies: - "@strapi/provider-email-mailgun": "npm:4.15.5-alpha.5" - "@strapi/provider-upload-aws-s3": "npm:4.15.5-alpha.5" - "@strapi/provider-upload-cloudinary": "npm:4.15.5-alpha.5" - "@strapi/strapi": "npm:4.15.5-alpha.5" + "@strapi/provider-email-mailgun": "npm:4.15.5" + "@strapi/provider-upload-aws-s3": "npm:4.15.5" + "@strapi/provider-upload-cloudinary": "npm:4.15.5" + "@strapi/strapi": "npm:4.15.5" lodash: "npm:4.17.21" mysql: "npm:2.18.1" mysql2: "npm:3.6.0" @@ -31985,7 +31985,7 @@ __metadata: languageName: node linkType: hard -"tsconfig@npm:4.15.5-alpha.5, tsconfig@workspace:packages/utils/tsconfig": +"tsconfig@npm:4.15.5, tsconfig@workspace:packages/utils/tsconfig": version: 0.0.0-use.local resolution: "tsconfig@workspace:packages/utils/tsconfig" dependencies: From b6dda1f6aeeaf48fd3dfbd8f2bc5b6b20fe846e2 Mon Sep 17 00:00:00 2001 From: Mark Kaylor Date: Thu, 30 Nov 2023 12:07:39 +0100 Subject: [PATCH 39/43] chore: update frontend snapshots --- .../pages/EditView/Header/tests/index.test.js | 34 ++-- .../pages/NoContentType/tests/index.test.js | 150 ++++++++++-------- .../pages/NoPermissions/tests/index.test.js | 54 +++---- .../tests/__snapshots__/index.test.js.snap | 60 ++++--- .../tests/__snapshots__/index.test.js.snap | 48 +++--- .../__snapshots__/BulkMoveDialog.test.js.snap | 56 +++---- .../EditAssetDialog.test.js.snap | 56 +++---- .../tests/__snapshots__/index.test.js.snap | 56 +++---- .../EditFolderDialog.test.js.snap | 56 +++---- .../MediaLibraryInput.test.js.snap | 48 +++--- .../ConfigureTheView.test.js.snap | 48 +++--- 11 files changed, 346 insertions(+), 320 deletions(-) diff --git a/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js b/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js index f79b09723c9..1f26b1f34bd 100644 --- a/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js +++ b/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js @@ -56,12 +56,6 @@ describe('CONTENT MANAGER | EditView | Header', () => { } = render(makeApp()); expect(firstChild).toMatchInlineSnapshot(` - .c4 { - font-size: 0.875rem; - line-height: 1.43; - color: #4945ff; - } - .c8 { font-weight: 600; font-size: 2rem; @@ -94,7 +88,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { padding-bottom: 8px; } - .c6 { + .c5 { min-width: 0; } @@ -109,7 +103,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { cursor: pointer; } - .c5 { + .c4 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -127,7 +121,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { justify-content: space-between; } - .c7 { + .c6 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -219,7 +213,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { background: #eaeaef; } - .c12[aria-disabled='true'] .c3 { + .c12[aria-disabled='true'] .c7 { color: #666687; } @@ -233,7 +227,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { background: #eaeaef; } - .c12[aria-disabled='true']:active .c3 { + .c12[aria-disabled='true']:active .c7 { color: #666687; } @@ -257,6 +251,12 @@ describe('CONTENT MANAGER | EditView | Header', () => { fill: #ffffff; } + .c3 { + font-size: 0.875rem; + line-height: 1.43; + color: #4945ff; + } + .c2 { display: -webkit-inline-box; display: -webkit-inline-flex; @@ -347,20 +347,20 @@ describe('CONTENT MANAGER | EditView | Header', () => { /> Back

Create an entry

@@ -375,7 +375,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { type="submit" > Save @@ -383,7 +383,7 @@ describe('CONTENT MANAGER | EditView | Header', () => {

API ID : restaurant

diff --git a/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js b/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js index 1f3bd93f1bf..deba0cd1759 100644 --- a/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js +++ b/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js @@ -32,14 +32,14 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { ); expect(firstChild).toMatchInlineSnapshot(` - .c6 { + .c5 { font-weight: 600; font-size: 2rem; line-height: 1.25; color: #32324d; } - .c13 { + .c12 { font-weight: 500; font-size: 1rem; line-height: 1.25; @@ -47,13 +47,6 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { text-align: center; } - .c18 { - font-size: 0.75rem; - line-height: 1.33; - font-weight: 600; - color: #ffffff; - } - .c1 { background: #f6f6f9; padding-top: 40px; @@ -66,37 +59,26 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { min-width: 0; } - .c7 { + .c6 { padding-right: 56px; padding-left: 56px; } - .c8 { + .c7 { background: #ffffff; padding: 64px; border-radius: 4px; box-shadow: 0px 1px 4px rgba(33,33,52,0.1); } - .c10 { + .c9 { padding-bottom: 24px; } - .c12 { + .c11 { padding-bottom: 16px; } - .c14 { - background: #4945ff; - padding-top: 8px; - padding-right: 16px; - padding-bottom: 8px; - padding-left: 16px; - border-radius: 4px; - border-color: #4945ff; - border: 1px solid #4945ff; - } - .c2 { -webkit-align-items: center; -webkit-box-align: center; @@ -129,7 +111,7 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { flex-direction: row; } - .c9 { + .c8 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -143,7 +125,33 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { flex-direction: column; } - .c15 { + .c10 svg { + height: 5.5rem; + } + + .c0:focus-visible { + outline: none; + } + + .c19 { + font-size: 0.75rem; + line-height: 1.33; + font-weight: 600; + color: #ffffff; + } + + .c13 { + background: #4945ff; + padding-top: 8px; + padding-right: 16px; + padding-bottom: 8px; + padding-left: 16px; + border-radius: 4px; + border-color: #4945ff; + border: 1px solid #4945ff; + } + + .c14 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -158,26 +166,40 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { gap: 8px; } - .c16 { + .c17 { + -webkit-align-items: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: row; + -ms-flex-direction: row; + flex-direction: row; + } + + .c15 { position: relative; outline: none; } - .c16 > svg { + .c15 > svg { height: 12px; width: 12px; } - .c16 > svg > g, - .c16 > svg path { + .c15 > svg > g, + .c15 > svg path { fill: #ffffff; } - .c16[aria-disabled='true'] { + .c15[aria-disabled='true'] { pointer-events: none; } - .c16:after { + .c15:after { -webkit-transition-property: all; transition-property: all; -webkit-transition-duration: 0.2s; @@ -192,11 +214,11 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { border: 2px solid transparent; } - .c16:focus-visible { + .c15:focus-visible { outline: none; } - .c16:focus-visible:after { + .c15:focus-visible:after { border-radius: 8px; content: ''; position: absolute; @@ -207,73 +229,65 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { border: 2px solid #4945ff; } - .c11 svg { - height: 5.5rem; - } - - .c0:focus-visible { - outline: none; - } - - .c17 { + .c16 { -webkit-text-decoration: none; text-decoration: none; border: 1px solid #d9d8ff; background: #f0f0ff; } - .c17[aria-disabled='true'] { + .c16[aria-disabled='true'] { border: 1px solid #dcdce4; background: #eaeaef; } - .c17[aria-disabled='true'] .c5 { + .c16[aria-disabled='true'] .c18 { color: #666687; } - .c17[aria-disabled='true'] svg > g, - .c17[aria-disabled='true'] svg path { + .c16[aria-disabled='true'] svg > g, + .c16[aria-disabled='true'] svg path { fill: #666687; } - .c17[aria-disabled='true']:active { + .c16[aria-disabled='true']:active { border: 1px solid #dcdce4; background: #eaeaef; } - .c17[aria-disabled='true']:active .c5 { + .c16[aria-disabled='true']:active .c18 { color: #666687; } - .c17[aria-disabled='true']:active svg > g, - .c17[aria-disabled='true']:active svg path { + .c16[aria-disabled='true']:active svg > g, + .c16[aria-disabled='true']:active svg path { fill: #666687; } - .c17:hover { + .c16:hover { background-color: #ffffff; } - .c17:active { + .c16:active { background-color: #ffffff; border: 1px solid #4945ff; } - .c17:active .c5 { + .c16:active .c18 { color: #4945ff; } - .c17:active svg > g, - .c17:active svg path { + .c16:active svg > g, + .c16:active svg path { fill: #4945ff; } - .c17 .c5 { + .c16 .c18 { color: #271fe0; } - .c17 svg > g, - .c17 svg path { + .c16 svg > g, + .c16 svg path { fill: #271fe0; } @@ -297,7 +311,7 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { class="c3 c4" >

Content

@@ -306,14 +320,14 @@ describe('CONTENT MANAGER | pages | NoContentType', () => {

You don't have any content yet, we recommend you to create your first Content-Type.

Create your first Content-type diff --git a/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js b/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js index a602cc4478d..90496a54e41 100644 --- a/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js +++ b/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js @@ -41,14 +41,6 @@ describe('', () => { color: #32324d; } - .c12 { - font-weight: 500; - font-size: 1rem; - line-height: 1.25; - color: #666687; - text-align: center; - } - .c1 { background: #f6f6f9; padding-top: 40px; @@ -66,21 +58,6 @@ describe('', () => { padding-left: 56px; } - .c7 { - background: #ffffff; - padding: 64px; - border-radius: 4px; - box-shadow: 0px 1px 4px rgba(33,33,52,0.1); - } - - .c9 { - padding-bottom: 24px; - } - - .c11 { - padding-bottom: 16px; - } - .c2 { -webkit-align-items: center; -webkit-box-align: center; @@ -113,6 +90,33 @@ describe('', () => { flex-direction: row; } + .c0:focus-visible { + outline: none; + } + + .c12 { + font-weight: 500; + font-size: 1rem; + line-height: 1.25; + color: #666687; + text-align: center; + } + + .c7 { + background: #ffffff; + padding: 64px; + border-radius: 4px; + box-shadow: 0px 1px 4px rgba(33,33,52,0.1); + } + + .c9 { + padding-bottom: 24px; + } + + .c11 { + padding-bottom: 16px; + } + .c8 { -webkit-align-items: center; -webkit-box-align: center; @@ -131,10 +135,6 @@ describe('', () => { height: 5.5rem; } - .c0:focus-visible { - outline: none; - } -

renders and matches the snapshot 1`] = ` color: #666687; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - .c7 { padding-right: 40px; padding-left: 40px; @@ -131,10 +122,6 @@ exports[` renders and matches the snapshot 1`] = ` border-radius: 4px; } -.c40 { - padding-right: 12px; -} - .c45 { background: #4945ff; padding: 8px; @@ -146,21 +133,6 @@ exports[` renders and matches the snapshot 1`] = ` cursor: pointer; } -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c8 { -webkit-align-items: center; -webkit-box-align: center; @@ -628,6 +600,34 @@ exports[` renders and matches the snapshot 1`] = ` max-height: 60vh; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + +.c40 { + padding-right: 12px; +} + +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c41 { background: transparent; border: none; diff --git a/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap b/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap index 3667c706606..07d1f2baf45 100644 --- a/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap +++ b/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap @@ -54,15 +54,6 @@ exports[` renders and matches the snapshot 1`] = ` color: #666687; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - .c7 { padding-right: 40px; padding-left: 40px; @@ -131,10 +122,6 @@ exports[` renders and matches the snapshot 1`] = ` border-radius: 4px; } -.c40 { - padding-right: 12px; -} - .c45 { background: #4945ff; padding: 8px; @@ -146,21 +133,6 @@ exports[` renders and matches the snapshot 1`] = ` cursor: pointer; } -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c8 { -webkit-align-items: center; -webkit-box-align: center; @@ -628,6 +600,34 @@ exports[` renders and matches the snapshot 1`] = ` max-height: 60vh; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + +.c40 { + padding-right: 12px; +} + +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c41 { background: transparent; border: none; diff --git a/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap b/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap index b79fe365d38..168004c6596 100644 --- a/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap +++ b/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap @@ -34,15 +34,6 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` color: #ffffff; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - .c3 { padding-right: 40px; padding-left: 40px; @@ -78,10 +69,6 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` padding: 32px; } -.c24 { - padding-right: 12px; -} - .c29 { background: #4945ff; padding: 8px; @@ -93,21 +80,6 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` cursor: pointer; } -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c4 { -webkit-align-items: center; -webkit-box-align: center; @@ -456,6 +428,34 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` max-height: 60vh; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + +.c24 { + padding-right: 12px; +} + +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c25 { background: transparent; border: none; diff --git a/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap b/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap index 4e3a0f86a8e..de9745fa17f 100644 --- a/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap +++ b/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap @@ -27,15 +27,6 @@ exports[` renders and matches the snapshot 1`] = ` color: #666687; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - .c5 { background: #f6f6f9; padding: 8px; @@ -77,21 +68,6 @@ exports[` renders and matches the snapshot 1`] = ` height: 24px; } -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c2 { -webkit-align-items: stretch; -webkit-box-align: stretch; @@ -181,6 +157,30 @@ exports[` renders and matches the snapshot 1`] = ` align-items: center; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c18 { -webkit-align-items: center; -webkit-box-align: center; diff --git a/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap b/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap index bec6d38cf14..6a88fd0b952 100644 --- a/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap +++ b/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap @@ -13,12 +13,6 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] width: 1px; } -.c8 { - font-size: 0.875rem; - line-height: 1.43; - color: #4945ff; -} - .c12 { font-weight: 600; font-size: 2rem; @@ -78,7 +72,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] padding-bottom: 8px; } -.c10 { +.c9 { min-width: 0; } @@ -125,7 +119,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] flex: 1; } -.c9 { +.c8 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -143,7 +137,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] justify-content: space-between; } -.c11 { +.c10 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -284,7 +278,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] background: #eaeaef; } -.c16[aria-disabled='true'] .c7 { +.c16[aria-disabled='true'] .c11 { color: #666687; } @@ -298,7 +292,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] background: #eaeaef; } -.c16[aria-disabled='true']:active .c7 { +.c16[aria-disabled='true']:active .c11 { color: #666687; } @@ -382,7 +376,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] flex-wrap: wrap; } -.c37[data-state='checked'] .c7 { +.c37[data-state='checked'] .c11 { font-weight: bold; color: #4945ff; } @@ -411,6 +405,12 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] outline: none; } +.c7 { + font-size: 0.875rem; + line-height: 1.43; + color: #4945ff; +} + .c6 { display: -webkit-inline-box; display: -webkit-inline-flex; @@ -527,20 +527,20 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] /> Back

Configure the view - Media Library

@@ -569,14 +569,14 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`]
Save

Define the view settings of the media library.

@@ -601,7 +601,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] class="c23" >

Number of assets displayed by default in the Media Library @@ -676,7 +676,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] class="c23" >

Note: You can override this value in the media library. From 675d60f265746a38dc55e5b3378eb2ab2e611289 Mon Sep 17 00:00:00 2001 From: Mark Kaylor Date: Thu, 30 Nov 2023 14:16:07 +0100 Subject: [PATCH 40/43] fix: downgrade @strapi/icons to match main 1.13.0 --- packages/core/admin/package.json | 2 +- packages/core/upload/package.json | 2 +- yarn.lock | 14 ++------------ 3 files changed, 4 insertions(+), 14 deletions(-) diff --git a/packages/core/admin/package.json b/packages/core/admin/package.json index 54d962b8aae..a93af0301bc 100644 --- a/packages/core/admin/package.json +++ b/packages/core/admin/package.json @@ -78,7 +78,7 @@ "@strapi/data-transfer": "4.15.5", "@strapi/design-system": "1.13.1", "@strapi/helper-plugin": "4.15.5", - "@strapi/icons": "1.13.1", + "@strapi/icons": "1.13.0", "@strapi/permissions": "4.15.5", "@strapi/provider-audit-logs-local": "4.15.5", "@strapi/types": "4.15.5", diff --git a/packages/core/upload/package.json b/packages/core/upload/package.json index 2edaab38c8f..548477d6011 100644 --- a/packages/core/upload/package.json +++ b/packages/core/upload/package.json @@ -45,7 +45,7 @@ "dependencies": { "@strapi/design-system": "1.13.1", "@strapi/helper-plugin": "4.15.5", - "@strapi/icons": "1.13.1", + "@strapi/icons": "1.13.0", "@strapi/provider-upload-local": "4.15.5", "@strapi/utils": "4.15.5", "axios": "1.6.0", diff --git a/yarn.lock b/yarn.lock index 28df88cadd4..f0db7e31270 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8644,7 +8644,7 @@ __metadata: "@strapi/data-transfer": "npm:4.15.5" "@strapi/design-system": "npm:1.13.1" "@strapi/helper-plugin": "npm:4.15.5" - "@strapi/icons": "npm:1.13.1" + "@strapi/icons": "npm:1.13.0" "@strapi/pack-up": "npm:4.15.5" "@strapi/permissions": "npm:4.15.5" "@strapi/provider-audit-logs-local": "npm:4.15.5" @@ -8992,16 +8992,6 @@ __metadata: languageName: node linkType: hard -"@strapi/icons@npm:1.13.1": - version: 1.13.1 - resolution: "@strapi/icons@npm:1.13.1" - peerDependencies: - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - checksum: 9dba0968a874d975f4aff086a76a1e07efb4ac9a6c5c8144fd89579554e18953e2359d5616c323dd2bc0189eb47b5a9a16280c1477ef37297a8072cdeb0bfd37 - languageName: node - linkType: hard - "@strapi/logger@npm:4.15.5, @strapi/logger@workspace:packages/utils/logger": version: 0.0.0-use.local resolution: "@strapi/logger@workspace:packages/utils/logger" @@ -9352,7 +9342,7 @@ __metadata: dependencies: "@strapi/design-system": "npm:1.13.1" "@strapi/helper-plugin": "npm:4.15.5" - "@strapi/icons": "npm:1.13.1" + "@strapi/icons": "npm:1.13.0" "@strapi/pack-up": "npm:4.15.5" "@strapi/provider-upload-local": "npm:4.15.5" "@strapi/strapi": "npm:4.15.5" From f486f51567582db957c44557e38737548338a145 Mon Sep 17 00:00:00 2001 From: Mark Kaylor Date: Thu, 30 Nov 2023 15:56:13 +0100 Subject: [PATCH 41/43] fix: update frontend snapshots after downgrade --- .../pages/EditView/Header/tests/index.test.js | 34 ++-- .../pages/NoContentType/tests/index.test.js | 150 ++++++++---------- .../pages/NoPermissions/tests/index.test.js | 54 +++---- .../tests/__snapshots__/index.test.js.snap | 60 +++---- .../tests/__snapshots__/index.test.js.snap | 48 +++--- .../__snapshots__/BulkMoveDialog.test.js.snap | 56 +++---- .../EditAssetDialog.test.js.snap | 56 +++---- .../tests/__snapshots__/index.test.js.snap | 56 +++---- .../EditFolderDialog.test.js.snap | 56 +++---- .../MediaLibraryInput.test.js.snap | 48 +++--- .../ConfigureTheView.test.js.snap | 48 +++--- 11 files changed, 320 insertions(+), 346 deletions(-) diff --git a/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js b/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js index 1f26b1f34bd..f79b09723c9 100644 --- a/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js +++ b/packages/core/admin/admin/src/content-manager/pages/EditView/Header/tests/index.test.js @@ -56,6 +56,12 @@ describe('CONTENT MANAGER | EditView | Header', () => { } = render(makeApp()); expect(firstChild).toMatchInlineSnapshot(` + .c4 { + font-size: 0.875rem; + line-height: 1.43; + color: #4945ff; + } + .c8 { font-weight: 600; font-size: 2rem; @@ -88,7 +94,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { padding-bottom: 8px; } - .c5 { + .c6 { min-width: 0; } @@ -103,7 +109,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { cursor: pointer; } - .c4 { + .c5 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -121,7 +127,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { justify-content: space-between; } - .c6 { + .c7 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -213,7 +219,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { background: #eaeaef; } - .c12[aria-disabled='true'] .c7 { + .c12[aria-disabled='true'] .c3 { color: #666687; } @@ -227,7 +233,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { background: #eaeaef; } - .c12[aria-disabled='true']:active .c7 { + .c12[aria-disabled='true']:active .c3 { color: #666687; } @@ -251,12 +257,6 @@ describe('CONTENT MANAGER | EditView | Header', () => { fill: #ffffff; } - .c3 { - font-size: 0.875rem; - line-height: 1.43; - color: #4945ff; - } - .c2 { display: -webkit-inline-box; display: -webkit-inline-flex; @@ -347,20 +347,20 @@ describe('CONTENT MANAGER | EditView | Header', () => { /> Back

Create an entry

@@ -375,7 +375,7 @@ describe('CONTENT MANAGER | EditView | Header', () => { type="submit" > Save @@ -383,7 +383,7 @@ describe('CONTENT MANAGER | EditView | Header', () => {

API ID : restaurant

diff --git a/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js b/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js index deba0cd1759..1f3bd93f1bf 100644 --- a/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js +++ b/packages/core/admin/admin/src/content-manager/pages/NoContentType/tests/index.test.js @@ -32,14 +32,14 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { ); expect(firstChild).toMatchInlineSnapshot(` - .c5 { + .c6 { font-weight: 600; font-size: 2rem; line-height: 1.25; color: #32324d; } - .c12 { + .c13 { font-weight: 500; font-size: 1rem; line-height: 1.25; @@ -47,6 +47,13 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { text-align: center; } + .c18 { + font-size: 0.75rem; + line-height: 1.33; + font-weight: 600; + color: #ffffff; + } + .c1 { background: #f6f6f9; padding-top: 40px; @@ -59,26 +66,37 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { min-width: 0; } - .c6 { + .c7 { padding-right: 56px; padding-left: 56px; } - .c7 { + .c8 { background: #ffffff; padding: 64px; border-radius: 4px; box-shadow: 0px 1px 4px rgba(33,33,52,0.1); } - .c9 { + .c10 { padding-bottom: 24px; } - .c11 { + .c12 { padding-bottom: 16px; } + .c14 { + background: #4945ff; + padding-top: 8px; + padding-right: 16px; + padding-bottom: 8px; + padding-left: 16px; + border-radius: 4px; + border-color: #4945ff; + border: 1px solid #4945ff; + } + .c2 { -webkit-align-items: center; -webkit-box-align: center; @@ -111,7 +129,7 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { flex-direction: row; } - .c8 { + .c9 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -125,33 +143,7 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { flex-direction: column; } - .c10 svg { - height: 5.5rem; - } - - .c0:focus-visible { - outline: none; - } - - .c19 { - font-size: 0.75rem; - line-height: 1.33; - font-weight: 600; - color: #ffffff; - } - - .c13 { - background: #4945ff; - padding-top: 8px; - padding-right: 16px; - padding-bottom: 8px; - padding-left: 16px; - border-radius: 4px; - border-color: #4945ff; - border: 1px solid #4945ff; - } - - .c14 { + .c15 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -166,40 +158,26 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { gap: 8px; } - .c17 { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - } - - .c15 { + .c16 { position: relative; outline: none; } - .c15 > svg { + .c16 > svg { height: 12px; width: 12px; } - .c15 > svg > g, - .c15 > svg path { + .c16 > svg > g, + .c16 > svg path { fill: #ffffff; } - .c15[aria-disabled='true'] { + .c16[aria-disabled='true'] { pointer-events: none; } - .c15:after { + .c16:after { -webkit-transition-property: all; transition-property: all; -webkit-transition-duration: 0.2s; @@ -214,11 +192,11 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { border: 2px solid transparent; } - .c15:focus-visible { + .c16:focus-visible { outline: none; } - .c15:focus-visible:after { + .c16:focus-visible:after { border-radius: 8px; content: ''; position: absolute; @@ -229,65 +207,73 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { border: 2px solid #4945ff; } - .c16 { + .c11 svg { + height: 5.5rem; + } + + .c0:focus-visible { + outline: none; + } + + .c17 { -webkit-text-decoration: none; text-decoration: none; border: 1px solid #d9d8ff; background: #f0f0ff; } - .c16[aria-disabled='true'] { + .c17[aria-disabled='true'] { border: 1px solid #dcdce4; background: #eaeaef; } - .c16[aria-disabled='true'] .c18 { + .c17[aria-disabled='true'] .c5 { color: #666687; } - .c16[aria-disabled='true'] svg > g, - .c16[aria-disabled='true'] svg path { + .c17[aria-disabled='true'] svg > g, + .c17[aria-disabled='true'] svg path { fill: #666687; } - .c16[aria-disabled='true']:active { + .c17[aria-disabled='true']:active { border: 1px solid #dcdce4; background: #eaeaef; } - .c16[aria-disabled='true']:active .c18 { + .c17[aria-disabled='true']:active .c5 { color: #666687; } - .c16[aria-disabled='true']:active svg > g, - .c16[aria-disabled='true']:active svg path { + .c17[aria-disabled='true']:active svg > g, + .c17[aria-disabled='true']:active svg path { fill: #666687; } - .c16:hover { + .c17:hover { background-color: #ffffff; } - .c16:active { + .c17:active { background-color: #ffffff; border: 1px solid #4945ff; } - .c16:active .c18 { + .c17:active .c5 { color: #4945ff; } - .c16:active svg > g, - .c16:active svg path { + .c17:active svg > g, + .c17:active svg path { fill: #4945ff; } - .c16 .c18 { + .c17 .c5 { color: #271fe0; } - .c16 svg > g, - .c16 svg path { + .c17 svg > g, + .c17 svg path { fill: #271fe0; } @@ -311,7 +297,7 @@ describe('CONTENT MANAGER | pages | NoContentType', () => { class="c3 c4" >

Content

@@ -320,14 +306,14 @@ describe('CONTENT MANAGER | pages | NoContentType', () => {

You don't have any content yet, we recommend you to create your first Content-Type.

Create your first Content-type diff --git a/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js b/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js index 90496a54e41..a602cc4478d 100644 --- a/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js +++ b/packages/core/admin/admin/src/content-manager/pages/NoPermissions/tests/index.test.js @@ -41,6 +41,14 @@ describe('', () => { color: #32324d; } + .c12 { + font-weight: 500; + font-size: 1rem; + line-height: 1.25; + color: #666687; + text-align: center; + } + .c1 { background: #f6f6f9; padding-top: 40px; @@ -58,6 +66,21 @@ describe('', () => { padding-left: 56px; } + .c7 { + background: #ffffff; + padding: 64px; + border-radius: 4px; + box-shadow: 0px 1px 4px rgba(33,33,52,0.1); + } + + .c9 { + padding-bottom: 24px; + } + + .c11 { + padding-bottom: 16px; + } + .c2 { -webkit-align-items: center; -webkit-box-align: center; @@ -90,33 +113,6 @@ describe('', () => { flex-direction: row; } - .c0:focus-visible { - outline: none; - } - - .c12 { - font-weight: 500; - font-size: 1rem; - line-height: 1.25; - color: #666687; - text-align: center; - } - - .c7 { - background: #ffffff; - padding: 64px; - border-radius: 4px; - box-shadow: 0px 1px 4px rgba(33,33,52,0.1); - } - - .c9 { - padding-bottom: 24px; - } - - .c11 { - padding-bottom: 16px; - } - .c8 { -webkit-align-items: center; -webkit-box-align: center; @@ -135,6 +131,10 @@ describe('', () => { height: 5.5rem; } + .c0:focus-visible { + outline: none; + } +

renders and matches the snapshot 1`] = ` color: #666687; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + .c7 { padding-right: 40px; padding-left: 40px; @@ -122,6 +131,10 @@ exports[` renders and matches the snapshot 1`] = ` border-radius: 4px; } +.c40 { + padding-right: 12px; +} + .c45 { background: #4945ff; padding: 8px; @@ -133,6 +146,21 @@ exports[` renders and matches the snapshot 1`] = ` cursor: pointer; } +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c8 { -webkit-align-items: center; -webkit-box-align: center; @@ -600,34 +628,6 @@ exports[` renders and matches the snapshot 1`] = ` max-height: 60vh; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - -.c40 { - padding-right: 12px; -} - -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c41 { background: transparent; border: none; diff --git a/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap b/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap index 07d1f2baf45..3667c706606 100644 --- a/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap +++ b/packages/core/upload/admin/src/components/EditAssetDialog/tests/__snapshots__/index.test.js.snap @@ -54,6 +54,15 @@ exports[` renders and matches the snapshot 1`] = ` color: #666687; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + .c7 { padding-right: 40px; padding-left: 40px; @@ -122,6 +131,10 @@ exports[` renders and matches the snapshot 1`] = ` border-radius: 4px; } +.c40 { + padding-right: 12px; +} + .c45 { background: #4945ff; padding: 8px; @@ -133,6 +146,21 @@ exports[` renders and matches the snapshot 1`] = ` cursor: pointer; } +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c8 { -webkit-align-items: center; -webkit-box-align: center; @@ -600,34 +628,6 @@ exports[` renders and matches the snapshot 1`] = ` max-height: 60vh; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - -.c40 { - padding-right: 12px; -} - -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c41 { background: transparent; border: none; diff --git a/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap b/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap index 168004c6596..b79fe365d38 100644 --- a/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap +++ b/packages/core/upload/admin/src/components/EditFolderDialog/tests/__snapshots__/EditFolderDialog.test.js.snap @@ -34,6 +34,15 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` color: #ffffff; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + .c3 { padding-right: 40px; padding-left: 40px; @@ -69,6 +78,10 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` padding: 32px; } +.c24 { + padding-right: 12px; +} + .c29 { background: #4945ff; padding: 8px; @@ -80,6 +93,21 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` cursor: pointer; } +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c4 { -webkit-align-items: center; -webkit-box-align: center; @@ -428,34 +456,6 @@ exports[`EditFolderDialog renders and matches the snapshot 1`] = ` max-height: 60vh; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - -.c24 { - padding-right: 12px; -} - -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c25 { background: transparent; border: none; diff --git a/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap b/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap index de9745fa17f..4e3a0f86a8e 100644 --- a/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap +++ b/packages/core/upload/admin/src/components/MediaLibraryInput/tests/__snapshots__/MediaLibraryInput.test.js.snap @@ -27,6 +27,15 @@ exports[` renders and matches the snapshot 1`] = ` color: #666687; } +.c0 { + margin-left: -250px; + position: fixed; + left: 50%; + top: 2.875rem; + z-index: 10; + width: 31.25rem; +} + .c5 { background: #f6f6f9; padding: 8px; @@ -68,6 +77,21 @@ exports[` renders and matches the snapshot 1`] = ` height: 24px; } +.c1 { + -webkit-align-items: stretch; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; + gap: 8px; +} + .c2 { -webkit-align-items: stretch; -webkit-box-align: stretch; @@ -157,30 +181,6 @@ exports[` renders and matches the snapshot 1`] = ` align-items: center; } -.c0 { - margin-left: -250px; - position: fixed; - left: 50%; - top: 2.875rem; - z-index: 10; - width: 31.25rem; -} - -.c1 { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 8px; -} - .c18 { -webkit-align-items: center; -webkit-box-align: center; diff --git a/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap b/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap index 6a88fd0b952..bec6d38cf14 100644 --- a/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap +++ b/packages/core/upload/admin/src/pages/App/ConfigureTheView/tests/__snapshots__/ConfigureTheView.test.js.snap @@ -13,6 +13,12 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] width: 1px; } +.c8 { + font-size: 0.875rem; + line-height: 1.43; + color: #4945ff; +} + .c12 { font-weight: 600; font-size: 2rem; @@ -72,7 +78,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] padding-bottom: 8px; } -.c9 { +.c10 { min-width: 0; } @@ -119,7 +125,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] flex: 1; } -.c8 { +.c9 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -137,7 +143,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] justify-content: space-between; } -.c10 { +.c11 { -webkit-align-items: center; -webkit-box-align: center; -ms-flex-align: center; @@ -278,7 +284,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] background: #eaeaef; } -.c16[aria-disabled='true'] .c11 { +.c16[aria-disabled='true'] .c7 { color: #666687; } @@ -292,7 +298,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] background: #eaeaef; } -.c16[aria-disabled='true']:active .c11 { +.c16[aria-disabled='true']:active .c7 { color: #666687; } @@ -376,7 +382,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] flex-wrap: wrap; } -.c37[data-state='checked'] .c11 { +.c37[data-state='checked'] .c7 { font-weight: bold; color: #4945ff; } @@ -405,12 +411,6 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] outline: none; } -.c7 { - font-size: 0.875rem; - line-height: 1.43; - color: #4945ff; -} - .c6 { display: -webkit-inline-box; display: -webkit-inline-flex; @@ -527,20 +527,20 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] /> Back

Configure the view - Media Library

@@ -569,14 +569,14 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`]
Save

Define the view settings of the media library.

@@ -601,7 +601,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] class="c23" >

Number of assets displayed by default in the Media Library @@ -676,7 +676,7 @@ exports[`Upload - Configure initial render renders and matches the snapshot 1`] class="c23" >

Note: You can override this value in the media library. From d58362aec07f4d7855edbd043e16926e96aaa34d Mon Sep 17 00:00:00 2001 From: Bassel Kanso Date: Fri, 1 Dec 2023 12:43:12 +0200 Subject: [PATCH 42/43] fix deep query populate issue on dynamic zone --- packages/core/utils/package.json | 1 + .../src/__tests__/query-populate.test.ts | 265 ++++++++++++++++++ .../core/utils/src/__tests__/test-utils.ts | 24 ++ .../core/utils/src/traverse/query-populate.ts | 5 +- yarn.lock | 1 + 5 files changed, 295 insertions(+), 1 deletion(-) create mode 100644 packages/core/utils/src/__tests__/query-populate.test.ts create mode 100644 packages/core/utils/src/__tests__/test-utils.ts diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 63d7bd37486..1b300dfbc94 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -54,6 +54,7 @@ }, "devDependencies": { "@strapi/pack-up": "4.15.5", + "@strapi/types": "4.15.5", "@types/koa": "2.13.4", "@types/node": "18.18.4", "eslint-config-custom": "4.15.5", diff --git a/packages/core/utils/src/__tests__/query-populate.test.ts b/packages/core/utils/src/__tests__/query-populate.test.ts new file mode 100644 index 00000000000..8e423b3c777 --- /dev/null +++ b/packages/core/utils/src/__tests__/query-populate.test.ts @@ -0,0 +1,265 @@ +import { traverseQueryPopulate } from '../traverse'; +import { setGlobalStrapi, getStrapiFactory } from './test-utils'; + +describe('traverseQueryPopulate', () => { + test('should return an empty object incase no populatable field exists', async () => { + const query = await traverseQueryPopulate(jest.fn(), { + schema: { + kind: 'collectionType', + attributes: { + title: { + type: 'string', + }, + }, + }, + })('*'); + + expect(query).toEqual({}); + }); + + test('should return all populatable fields', async () => { + const strapi = getStrapiFactory({ + getModel: jest.fn((uid) => { + return { + uid, + attributes: { + street: { + type: 'string', + }, + }, + }; + }), + db: { + metadata: { + get: jest.fn(() => ({ + columnToAttribute: { + address: 'address', + some: 'some', + }, + })), + }, + }, + })(); + + setGlobalStrapi(strapi); + + const query = await traverseQueryPopulate(jest.fn(), { + schema: { + kind: 'collectionType', + attributes: { + title: { + type: 'string', + }, + address: { + type: 'relation', + relation: 'oneToOne', + target: 'api::address.address', + }, + some: { + type: 'relation', + relation: 'ManyToMany', + target: 'api::some.some', + }, + }, + }, + })('*'); + + expect(query).toEqual({ address: true, some: true }); + }); + + test('should return only selected populatable field', async () => { + const strapi = getStrapiFactory({ + getModel: jest.fn((uid) => { + return { + uid, + attributes: { + street: { + type: 'string', + }, + }, + }; + }), + db: { + metadata: { + get: jest.fn(() => ({ + columnToAttribute: { + address: 'address', + }, + })), + }, + }, + })(); + + setGlobalStrapi(strapi); + + const query = await traverseQueryPopulate(jest.fn(), { + schema: { + kind: 'collectionType', + attributes: { + title: { + type: 'string', + }, + address: { + type: 'relation', + relation: 'oneToOne', + target: 'api::address.address', + }, + some: { + type: 'relation', + relation: 'ManyToMany', + target: 'api::some.some', + }, + }, + }, + })('address'); + + expect(query).toEqual('address'); + }); + + test('should populate dynamiczone', async () => { + const strapi = getStrapiFactory({ + getModel: jest.fn((uid) => { + return { + uid, + attributes: { + street: { + type: 'string', + }, + }, + }; + }), + db: { + metadata: { + get: jest.fn(() => ({ + columnToAttribute: { + address: 'address', + }, + })), + }, + }, + })(); + + setGlobalStrapi(strapi); + + const query = await traverseQueryPopulate(jest.fn(), { + schema: { + kind: 'collectionType', + attributes: { + title: { + type: 'string', + }, + address: { + type: 'relation', + relation: 'oneToOne', + target: 'api::address.address', + }, + some: { + type: 'relation', + relation: 'ManyToMany', + target: 'api::some.some', + }, + zone: { + type: 'dynamiczone', + components: ['blog.test-como', 'some.another-como'], + }, + }, + }, + })('*'); + + expect(query).toEqual({ + address: true, + some: true, + zone: true, + }); + }); + + test('should deep populate dynamiczone components', async () => { + const strapi = getStrapiFactory({ + getModel: jest.fn((uid) => { + if (uid === 'blog.test-como') { + return { + uid, + attributes: { + street: { + type: 'string', + }, + address: { + type: 'relation', + relation: 'oneToOne', + target: 'api::address.address', + }, + }, + }; + } + if (uid === 'some.another-como') { + return { + uid, + attributes: { + street: { + type: 'string', + }, + some: { + type: 'relation', + relation: 'ManyToMany', + target: 'api::some.some', + }, + }, + }; + } + return { + uid, + attributes: { + street: { + type: 'string', + }, + }, + }; + }), + db: { + metadata: { + get: jest.fn(() => ({ + columnToAttribute: { + address: 'address', + }, + })), + }, + }, + })(); + + setGlobalStrapi(strapi); + + const query = await traverseQueryPopulate(jest.fn(), { + schema: { + kind: 'collectionType', + attributes: { + title: { + type: 'string', + }, + address: { + type: 'relation', + relation: 'oneToOne', + target: 'api::address.address', + }, + some: { + type: 'relation', + relation: 'ManyToMany', + target: 'api::some.some', + }, + zone: { + type: 'dynamiczone', + components: ['blog.test-como', 'some.another-como'], + }, + }, + }, + })({ zone: { populate: '*' } }); + + expect(query).toEqual({ + zone: { + populate: { + address: true, + some: true, + }, + }, + }); + }); +}); diff --git a/packages/core/utils/src/__tests__/test-utils.ts b/packages/core/utils/src/__tests__/test-utils.ts new file mode 100644 index 00000000000..2a3c1e51f75 --- /dev/null +++ b/packages/core/utils/src/__tests__/test-utils.ts @@ -0,0 +1,24 @@ +import type { LoadedStrapi } from '@strapi/types'; + +/** + * Update the global store with the given strapi value + */ +export const setGlobalStrapi = (strapi: LoadedStrapi): void => { + (global as unknown as Global).strapi = strapi; +}; + +/** + * Create a "Strapi" like object factory based on the + * given params and cast it to the correct type + */ +export const getStrapiFactory = + < + T extends { + [key in keyof Partial]: unknown; + } + >( + properties?: T + ) => + (additionalProperties?: Partial) => { + return { ...properties, ...additionalProperties } as LoadedStrapi; + }; diff --git a/packages/core/utils/src/traverse/query-populate.ts b/packages/core/utils/src/traverse/query-populate.ts index a54f963ca85..7660fe24378 100644 --- a/packages/core/utils/src/traverse/query-populate.ts +++ b/packages/core/utils/src/traverse/query-populate.ts @@ -11,6 +11,7 @@ import { join, first, omit, + merge, } from 'lodash/fp'; import traverseFactory from './factory'; @@ -210,7 +211,9 @@ const populate = traverseFactory() for (const componentUID of components) { const componentSchema = strapi.getModel(componentUID); - newProperties = await recurse(visitor, { schema: componentSchema, path }, newProperties); + + const properties = await recurse(visitor, { schema: componentSchema, path }, value); + newProperties = merge(newProperties, properties); } Object.assign(newValue, newProperties); diff --git a/yarn.lock b/yarn.lock index f0db7e31270..232cfec4c3f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9717,6 +9717,7 @@ __metadata: dependencies: "@sindresorhus/slugify": "npm:1.1.0" "@strapi/pack-up": "npm:4.15.5" + "@strapi/types": "npm:4.15.5" "@types/koa": "npm:2.13.4" "@types/node": "npm:18.18.4" date-fns: "npm:2.30.0" From 5fc763775e344d981fd57497f68a34c2c1ff3bb8 Mon Sep 17 00:00:00 2001 From: Jen Tak Date: Tue, 5 Dec 2023 17:28:41 +0900 Subject: [PATCH 43/43] Register logger middleware before errors middleware (#16921) In the examples and project templates the "errors" middleware which turn thrown errors into HTTP responses is registered before the "logger" middleware. This causes any errors thrown in controllers to pierce through the logger middleware resulting in these requests not being logged. Eg. when a controller throws a ValidationError the resulting HTTP 400 request is not logged at all. Change the order of middleware registration so that the logger is 'above' the errors middleware and has a chance to log *all* requests. Co-authored-by: DMehaffy --- examples/getstarted/config/middlewares.js | 2 +- examples/kitchensink-ts/config/middlewares.ts | 2 +- .../core/strapi/src/services/server/register-middlewares.ts | 2 +- .../generators/app/src/resources/files/js/config/middlewares.js | 2 +- .../generators/app/src/resources/files/ts/config/middlewares.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/getstarted/config/middlewares.js b/examples/getstarted/config/middlewares.js index d676d6382be..8904cd55c3f 100644 --- a/examples/getstarted/config/middlewares.js +++ b/examples/getstarted/config/middlewares.js @@ -3,11 +3,11 @@ const responseHandlers = require('./src/response-handlers'); module.exports = [ + 'strapi::logger', 'strapi::errors', 'strapi::security', 'strapi::cors', 'strapi::poweredBy', - 'strapi::logger', 'strapi::query', 'strapi::body', 'strapi::session', diff --git a/examples/kitchensink-ts/config/middlewares.ts b/examples/kitchensink-ts/config/middlewares.ts index 3ab20d955b5..829f5c04df0 100644 --- a/examples/kitchensink-ts/config/middlewares.ts +++ b/examples/kitchensink-ts/config/middlewares.ts @@ -1,9 +1,9 @@ export default [ + 'strapi::logger', 'strapi::errors', 'strapi::security', 'strapi::cors', 'strapi::poweredBy', - 'strapi::logger', 'strapi::query', 'strapi::body', 'strapi::session', diff --git a/packages/core/strapi/src/services/server/register-middlewares.ts b/packages/core/strapi/src/services/server/register-middlewares.ts index b474f0ef673..f948ffcb23f 100644 --- a/packages/core/strapi/src/services/server/register-middlewares.ts +++ b/packages/core/strapi/src/services/server/register-middlewares.ts @@ -5,12 +5,12 @@ import { resolveMiddlewares } from './middleware'; type MiddlewareConfig = (string | { name?: string; resolve?: string; config?: unknown })[]; const defaultConfig = [ + 'strapi::logger', 'strapi::errors', 'strapi::security', 'strapi::cors', 'strapi::poweredBy', 'strapi::session', - 'strapi::logger', 'strapi::query', 'strapi::body', 'strapi::favicon', diff --git a/packages/generators/app/src/resources/files/js/config/middlewares.js b/packages/generators/app/src/resources/files/js/config/middlewares.js index 04a9aa99246..6eaf586ac81 100644 --- a/packages/generators/app/src/resources/files/js/config/middlewares.js +++ b/packages/generators/app/src/resources/files/js/config/middlewares.js @@ -1,9 +1,9 @@ module.exports = [ + 'strapi::logger', 'strapi::errors', 'strapi::security', 'strapi::cors', 'strapi::poweredBy', - 'strapi::logger', 'strapi::query', 'strapi::body', 'strapi::session', diff --git a/packages/generators/app/src/resources/files/ts/config/middlewares.ts b/packages/generators/app/src/resources/files/ts/config/middlewares.ts index 3ab20d955b5..829f5c04df0 100644 --- a/packages/generators/app/src/resources/files/ts/config/middlewares.ts +++ b/packages/generators/app/src/resources/files/ts/config/middlewares.ts @@ -1,9 +1,9 @@ export default [ + 'strapi::logger', 'strapi::errors', 'strapi::security', 'strapi::cors', 'strapi::poweredBy', - 'strapi::logger', 'strapi::query', 'strapi::body', 'strapi::session',