Merge branch 'main' into chore/improve-maketplace-tests

This commit is contained in:
markkaylor 2022-11-09 17:07:11 +01:00 committed by GitHub
commit 2d357b540c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
48 changed files with 164 additions and 114 deletions

View File

@ -1,6 +1,6 @@
{
"name": "check-pr-status",
"version": "4.4.7",
"version": "4.5.0",
"main": "dist/index.js",
"license": "MIT",
"private": true,

View File

@ -1,7 +1,7 @@
{
"name": "getstarted",
"private": true,
"version": "4.4.7",
"version": "4.5.0",
"description": "A Strapi application.",
"scripts": {
"develop": "strapi develop",
@ -12,16 +12,16 @@
"strapi": "strapi"
},
"dependencies": {
"@strapi/plugin-color-picker": "4.4.7",
"@strapi/plugin-documentation": "4.4.7",
"@strapi/plugin-graphql": "4.4.7",
"@strapi/plugin-i18n": "4.4.7",
"@strapi/plugin-sentry": "4.4.7",
"@strapi/plugin-users-permissions": "4.4.7",
"@strapi/provider-email-mailgun": "4.4.7",
"@strapi/provider-upload-aws-s3": "4.4.7",
"@strapi/provider-upload-cloudinary": "4.4.7",
"@strapi/strapi": "4.4.7",
"@strapi/plugin-color-picker": "4.5.0",
"@strapi/plugin-documentation": "4.5.0",
"@strapi/plugin-graphql": "4.5.0",
"@strapi/plugin-i18n": "4.5.0",
"@strapi/plugin-sentry": "4.5.0",
"@strapi/plugin-users-permissions": "4.5.0",
"@strapi/provider-email-mailgun": "4.5.0",
"@strapi/provider-upload-aws-s3": "4.5.0",
"@strapi/provider-upload-cloudinary": "4.5.0",
"@strapi/strapi": "4.5.0",
"@vscode/sqlite3": "5.0.8",
"better-sqlite3": "7.4.6",
"lodash": "4.17.21",

View File

@ -1,7 +1,7 @@
{
"name": "kitchensink-ts",
"private": true,
"version": "4.4.7",
"version": "4.5.0",
"description": "A Strapi application",
"scripts": {
"develop": "strapi develop",
@ -10,9 +10,9 @@
"strapi": "strapi"
},
"dependencies": {
"@strapi/plugin-i18n": "4.4.7",
"@strapi/plugin-users-permissions": "4.4.7",
"@strapi/strapi": "4.4.7",
"@strapi/plugin-i18n": "4.5.0",
"@strapi/plugin-users-permissions": "4.5.0",
"@strapi/strapi": "4.5.0",
"better-sqlite3": "7.4.6"
},
"author": {

View File

@ -1,7 +1,7 @@
{
"name": "kitchensink",
"private": true,
"version": "4.4.7",
"version": "4.5.0",
"description": "A Strapi application.",
"scripts": {
"develop": "strapi develop",
@ -12,10 +12,10 @@
"strapi": "strapi"
},
"dependencies": {
"@strapi/provider-email-mailgun": "4.4.7",
"@strapi/provider-upload-aws-s3": "4.4.7",
"@strapi/provider-upload-cloudinary": "4.4.7",
"@strapi/strapi": "4.4.7",
"@strapi/provider-email-mailgun": "4.5.0",
"@strapi/provider-upload-aws-s3": "4.5.0",
"@strapi/provider-upload-cloudinary": "4.5.0",
"@strapi/strapi": "4.5.0",
"lodash": "4.17.21",
"mysql": "2.18.1",
"passport-google-oauth2": "0.2.0",

View File

@ -1,5 +1,5 @@
{
"version": "4.4.7",
"version": "4.5.0",
"packages": [
"packages/*",
"examples/*"

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/admin-test-utils",
"version": "4.4.7",
"version": "4.5.0",
"private": true,
"description": "Test utilities for the Strapi administration panel",
"license": "MIT",

View File

@ -1,9 +1,9 @@
{
"name": "create-strapi-app",
"version": "4.4.7",
"version": "4.5.0",
"description": "Generate a new Strapi application.",
"dependencies": {
"@strapi/generate-new": "4.4.7",
"@strapi/generate-new": "4.5.0",
"commander": "6.1.0",
"inquirer": "8.2.4"
},

View File

@ -1,6 +1,6 @@
{
"name": "create-strapi-starter",
"version": "4.4.7",
"version": "4.5.0",
"description": "Generate a new Strapi application.",
"keywords": [
"create-strapi-starter",
@ -38,7 +38,7 @@
"test": "echo \"no tests yet\""
},
"dependencies": {
"@strapi/generate-new": "4.4.7",
"@strapi/generate-new": "4.5.0",
"chalk": "4.1.1",
"ci-info": "3.3.2",
"commander": "7.1.0",

View File

@ -10,8 +10,7 @@ import { basename, createHook } from './core/utils';
import configureStore from './core/store/configureStore';
import { customFields, Plugin } from './core/apis';
import App from './pages/App';
import AuthLogo from './assets/images/logo_strapi_auth_v4.png';
import MenuLogo from './assets/images/logo_strapi_menu.png';
import Logo from './assets/images/logo-strapi-2022.svg';
import Providers from './components/Providers';
import languageNativeNames from './translations/languageNativeNames';
import {
@ -29,10 +28,10 @@ class StrapiApp {
this.customConfigurations = adminConfig.config;
this.customBootstrapConfiguration = adminConfig.bootstrap;
this.configurations = {
authLogo: AuthLogo,
authLogo: Logo,
head: { favicon },
locales: ['en'],
menuLogo: MenuLogo,
menuLogo: Logo,
notifications: { releases: true },
themes: { light: lightTheme, dark: darkTheme },
translations: {},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

View File

@ -1,5 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3" y="3" width="18" height="18" rx="4" fill="#4945FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8075 7.625H9.03058V11.1792H12.2533C12.4977 11.1792 12.6958 11.3773 12.6958 11.6216V14.8444H16.25V8.06746C16.25 7.82309 16.0519 7.625 15.8075 7.625Z" fill="white"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M9.0308 7.625V11.1792H6.01073C5.81364 11.1792 5.71494 10.9409 5.8543 10.8015L9.0308 7.625ZM13.0735 18.0209C12.9342 18.1603 12.6959 18.0616 12.6959 17.8645V14.8444H16.25L13.0735 18.0209ZM12.4746 11.1792H9.03058V14.4019C9.03058 14.6463 9.22868 14.8444 9.47304 14.8444H12.6958V11.4004C12.6958 11.2782 12.5968 11.1792 12.4746 11.1792Z" fill="#DAD9FF"/>
</svg>

Before

Width:  |  Height:  |  Size: 797 B

View File

@ -1,5 +1,5 @@
<svg width="88" height="88" viewBox="0 0 88 88" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="87" height="87" rx="43.5" fill="#F0F0FF"/>
<path d="M34.0469 39.2969H30C27.4479 39.2969 25.2604 40.2448 23.4375 42.1406C21.6146 43.9635 20.7031 46.151 20.7031 48.7031C20.7031 51.2552 21.6146 53.4427 23.4375 55.2656C25.2604 57.0885 27.4479 58 30 58H52.75L34.0469 39.2969ZM23 28.25L25.9531 25.2969L65 64.3438L62.0469 67.2969L57.3438 62.7031H30C26.1354 62.7031 22.8177 61.3542 20.0469 58.6562C17.349 55.8854 16 52.5677 16 48.7031C16 44.9115 17.3125 41.6667 19.9375 38.9688C22.5625 36.2708 25.7344 34.849 29.4531 34.7031L23 28.25ZM61.1719 39.4062C64.1615 39.625 66.7135 40.8646 68.8281 43.125C70.9427 45.3125 72 47.9375 72 51C72 55.0104 70.3594 58.1823 67.0781 60.5156L63.6875 57.125C66.0938 55.8125 67.2969 53.7708 67.2969 51C67.2969 49.1042 66.6042 47.4635 65.2188 46.0781C63.8333 44.6927 62.1927 44 60.2969 44H56.7969V42.7969C56.7969 39.224 55.5573 36.1979 53.0781 33.7188C50.599 31.2396 47.5729 30 44 30C41.9583 30 39.9896 30.474 38.0938 31.4219L34.5938 28.0312C37.4375 26.2083 40.5729 25.2969 44 25.2969C47.9375 25.2969 51.5833 26.6823 54.9375 29.4531C58.3646 32.224 60.4427 35.5417 61.1719 39.4062Z" fill="#4945FF"/>
<rect x="0.5" y="0.5" width="87" height="87" rx="43.5" stroke="#D9D8FF"/>
<rect x=".5" y=".5" width="87" height="87" rx="43.5" fill="#F0F0FF"/>
<path d="M34 39.3h-4c-2.6 0-4.7 1-6.6 2.8a9 9 0 0 0-2.7 6.6 9 9 0 0 0 2.7 6.6A9 9 0 0 0 30 58h22.8L34 39.3Zm-11-11 3-3 39 39-3 3-4.7-4.6H30a13.8 13.8 0 0 1-14-14c0-3.8 1.3-7 4-9.7 2.6-2.7 5.7-4.2 9.5-4.3L23 28.2Zm38.2 11.1c3 .2 5.5 1.5 7.6 3.7A11 11 0 0 1 72 51c0 4-1.6 7.2-5 9.5l-3.3-3.4a6.5 6.5 0 0 0 3.6-6.1c0-1.9-.7-3.5-2-5-1.5-1.3-3.1-2-5-2h-3.5v-1.2c0-3.6-1.2-6.6-3.7-9a13 13 0 0 0-15-2.3L34.6 28a17 17 0 0 1 20.3 1.5c3.5 2.7 5.5 6 6.3 10Z" fill="#4945FF"/>
<rect x=".5" y=".5" width="87" height="87" rx="43.5" stroke="#D9D8FF"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 721 B

View File

@ -0,0 +1,7 @@
<svg width="800" height="800" viewBox="0 0 800 800" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M39 282c0-118 0-176.9 36.6-213.5C112.2 32 171.1 32 288.9 32h221.2c117.8 0 176.7 0 213.3 36.6C760 105.2 760 164.1 760 281.9v221.2c0 117.8 0 176.7-36.6 213.3C686.8 753 627.9 753 510.1 753H288.9c-117.8 0-176.7 0-213.3-36.6C39 679.8 39 620.9 39 503.1V281.9Z" fill="#4945FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M536.4 250.7H293.7v123.8h123.8v123.7h123.8V255.5c0-2.6-2.2-4.8-4.9-4.8Z" fill="#fff"/>
<path fill="#fff" d="M412.7 374.5h4.8v4.8h-4.8z"/>
<path d="M293.8 374.5h119c2.6 0 4.8 2.1 4.8 4.8v119h-119a4.8 4.8 0 0 1-4.8-4.9v-119Z" fill="#9593FF"/>
<path d="M417.5 498.2h123.8L421.6 618a2.4 2.4 0 0 1-4-1.7v-118ZM293.8 374.5h-118a2.4 2.4 0 0 1-1.7-4.1l119.7-119.7v123.8Z" fill="#9593FF"/>
</svg>

After

Width:  |  Height:  |  Size: 838 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -0,0 +1,48 @@
<svg width="148" height="148" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity=".8" fill-rule="evenodd" clip-rule="evenodd">
<path opacity=".15" d="M110.81 37H73.97V74.1h36.84V37Z" fill="url(#a)"/>
<path opacity=".07" d="M36.84 0H0v37.08h36.84V0Z" fill="url(#b)"/>
<path opacity=".07" d="M73.92 73.95H37.08v37.08h36.84V73.95Z" fill="url(#c)"/>
<path opacity=".07" d="M147.99 110.92h-37.3V148H148v-37.08Z" fill="url(#d)"/>
<path opacity=".15" d="M73.83 37H36.84L73.83 0v37Z" fill="url(#e)"/>
<path opacity=".15" d="M110.6 111.02v-37h36.98l-36.99 37Z" fill="url(#f)"/>
<path opacity=".4" d="M73.83 0v37h36.98v37.01h37V3a3 3 0 0 0-3-3H73.82Z" fill="url(#g)"/>
</g>
<defs>
<linearGradient id="a" x1="91.31" y1="83.31" x2="118.24" y2="56.59" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A92FF"/>
<stop offset="1" stop-color="#3253EA"/>
</linearGradient>
<linearGradient id="b" x1="40.99" y1="13.88" x2=".01" y2="11.64" gradientUnits="userSpaceOnUse">
<stop stop-color="#A8B8FF"/>
<stop offset="1" stop-color="#3253EA"/>
</linearGradient>
<linearGradient id="c" x1="54.41" y1="120.25" x2="81.35" y2="93.52" gradientUnits="userSpaceOnUse">
<stop stop-color="#A8B8FF"/>
<stop offset="1" stop-color="#3253EA"/>
</linearGradient>
<linearGradient id="d" x1="128.24" y1="157.22" x2="155.17" y2="130.17" gradientUnits="userSpaceOnUse">
<stop stop-color="#A8B8FF"/>
<stop offset="1" stop-color="#3253EA"/>
</linearGradient>
<linearGradient id="e" x1="54.24" y1="46.21" x2="81.12" y2="19.38" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A92FF"/>
<stop offset="1" stop-color="#3253EA"/>
</linearGradient>
<linearGradient id="f" x1="126.28" y1="74.05" x2="124.94" y2="111.07" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A92FF"/>
<stop offset="1" stop-color="#3253EA"/>
</linearGradient>
<linearGradient id="g" x1="73.37" y1="36.87" x2="132.87" y2="66.74" gradientUnits="userSpaceOnUse">
<stop stop-color="#7A92FF"/>
<stop offset="1" stop-color="#3858EA"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -13,7 +13,7 @@ import { Layout } from '@strapi/design-system/Layout';
import { Main } from '@strapi/design-system/Main';
import { Box } from '@strapi/design-system/Box';
import { Grid, GridItem } from '@strapi/design-system/Grid';
import Logo from '../../assets/images/homepage-logo.png';
import cornerOrnamentPath from './assets/corner-ornament.svg';
import { useModels } from '../../hooks';
import isGuidedTourCompleted from '../../components/GuidedTour/utils/isGuidedTourCompleted';
import GuidedTourHomepage from '../../components/GuidedTour/Homepage';
@ -25,6 +25,7 @@ const LogoContainer = styled(Box)`
position: absolute;
top: 0;
right: 0;
img {
width: ${150 / 16}rem;
}
@ -64,7 +65,7 @@ const HomePage = () => {
</FormattedMessage>
<Main>
<LogoContainer>
<img alt="" aria-hidden src={Logo} />
<img alt="" aria-hidden src={cornerOrnamentPath} />
</LogoContainer>
<Box padding={10}>
<Grid>

View File

@ -13,7 +13,7 @@ import { Tooltip } from '@strapi/design-system/Tooltip';
import ExternalLink from '@strapi/icons/ExternalLink';
import CheckCircle from '@strapi/icons/CheckCircle';
import { useTracking } from '@strapi/helper-plugin';
import madeByStrapiIcon from '../../../../assets/images/icon_made-by-strapi.svg';
import StrapiLogo from '../../../../assets/images/logo-strapi-2022.svg';
import InstallPluginButton from './InstallPluginButton';
import PackageStats from './PackageStats';
@ -104,7 +104,7 @@ const NpmPackageCard = ({
<Flex>
<Box
as="img"
src={madeByStrapiIcon}
src={StrapiLogo}
alt={madeByStrapiMessage}
marginLeft={1}
width={6}

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/admin",
"version": "4.4.7",
"version": "4.5.0",
"description": "Strapi Admin",
"repository": {
"type": "git",
@ -51,13 +51,13 @@
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.2.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@strapi/babel-plugin-switch-ee-ce": "4.4.7",
"@strapi/babel-plugin-switch-ee-ce": "4.5.0",
"@strapi/design-system": "1.2.7",
"@strapi/helper-plugin": "4.4.7",
"@strapi/helper-plugin": "4.5.0",
"@strapi/icons": "1.2.7",
"@strapi/permissions": "4.4.7",
"@strapi/typescript-utils": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/permissions": "4.5.0",
"@strapi/typescript-utils": "4.5.0",
"@strapi/utils": "4.5.0",
"axios": "0.27.2",
"babel-loader": "8.2.5",
"babel-plugin-styled-components": "2.0.2",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-content-manager",
"version": "4.4.7",
"version": "4.5.0",
"description": "A powerful UI to easily manage your data.",
"repository": {
"type": "git",
@ -24,7 +24,7 @@
},
"dependencies": {
"@sindresorhus/slugify": "1.1.0",
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"lodash": "4.17.21"
},
"engines": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-content-type-builder",
"version": "4.4.7",
"version": "4.5.0",
"description": "Strapi plugin to create content type",
"repository": {
"type": "git",
@ -28,9 +28,9 @@
},
"dependencies": {
"@sindresorhus/slugify": "1.1.0",
"@strapi/generators": "4.4.7",
"@strapi/helper-plugin": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/generators": "4.5.0",
"@strapi/helper-plugin": "4.5.0",
"@strapi/utils": "4.5.0",
"fs-extra": "10.0.0",
"lodash": "4.17.21",
"pluralize": "^8.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/database",
"version": "4.4.7",
"version": "4.5.0",
"description": "Strapi's database layer",
"homepage": "https://strapi.io",
"bugs": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-email",
"version": "4.4.7",
"version": "4.5.0",
"description": "Easily configure your Strapi application to send emails.",
"repository": {
"type": "git",
@ -26,12 +26,12 @@
"test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll"
},
"dependencies": {
"@strapi/provider-email-sendmail": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/provider-email-sendmail": "4.5.0",
"@strapi/utils": "4.5.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@strapi/helper-plugin": "4.4.7",
"@strapi/helper-plugin": "4.5.0",
"@testing-library/react": "12.1.4"
},
"engines": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/helper-plugin",
"version": "4.4.7",
"version": "4.5.0",
"description": "Helper for Strapi plugins development",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/permissions",
"version": "4.4.7",
"version": "4.5.0",
"description": "Strapi's permission layer.",
"repository": {
"type": "git",
@ -25,7 +25,7 @@
},
"dependencies": {
"@casl/ability": "5.4.4",
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"lodash": "4.17.21",
"sift": "16.0.0"
},

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/strapi",
"version": "4.4.7",
"version": "4.5.0",
"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",
@ -80,18 +80,18 @@
"dependencies": {
"@koa/cors": "3.4.3",
"@koa/router": "10.1.1",
"@strapi/admin": "4.4.7",
"@strapi/database": "4.4.7",
"@strapi/generate-new": "4.4.7",
"@strapi/generators": "4.4.7",
"@strapi/logger": "4.4.7",
"@strapi/permissions": "4.4.7",
"@strapi/plugin-content-manager": "4.4.7",
"@strapi/plugin-content-type-builder": "4.4.7",
"@strapi/plugin-email": "4.4.7",
"@strapi/plugin-upload": "4.4.7",
"@strapi/typescript-utils": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/admin": "4.5.0",
"@strapi/database": "4.5.0",
"@strapi/generate-new": "4.5.0",
"@strapi/generators": "4.5.0",
"@strapi/logger": "4.5.0",
"@strapi/permissions": "4.5.0",
"@strapi/plugin-content-manager": "4.5.0",
"@strapi/plugin-content-type-builder": "4.5.0",
"@strapi/plugin-email": "4.5.0",
"@strapi/plugin-upload": "4.5.0",
"@strapi/typescript-utils": "4.5.0",
"@strapi/utils": "4.5.0",
"bcryptjs": "2.4.3",
"boxen": "5.1.2",
"chalk": "4.1.2",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-upload",
"version": "4.4.7",
"version": "4.5.0",
"description": "Makes it easy to upload images and files to your Strapi Application.",
"license": "SEE LICENSE IN LICENSE",
"author": {
@ -23,9 +23,9 @@
"test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll"
},
"dependencies": {
"@strapi/helper-plugin": "4.4.7",
"@strapi/provider-upload-local": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/helper-plugin": "4.5.0",
"@strapi/provider-upload-local": "4.5.0",
"@strapi/utils": "4.5.0",
"byte-size": "7.0.1",
"cropperjs": "1.5.12",
"date-fns": "2.29.2",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/utils",
"version": "4.4.7",
"version": "4.5.0",
"description": "Shared utilities for the Strapi packages",
"keywords": [
"strapi",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/generate-new",
"version": "4.4.7",
"version": "4.5.0",
"description": "Generate a new Strapi application.",
"keywords": [
"generate",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/generators",
"version": "4.4.7",
"version": "4.5.0",
"description": "Interactive API generator.",
"keywords": [
"strapi",
@ -30,8 +30,8 @@
"main": "lib/index.js",
"dependencies": {
"@sindresorhus/slugify": "1.1.0",
"@strapi/typescript-utils": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/typescript-utils": "4.5.0",
"@strapi/utils": "4.5.0",
"chalk": "4.1.2",
"fs-extra": "10.0.0",
"node-plop": "0.26.3",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-color-picker",
"version": "4.4.7",
"version": "4.5.0",
"description": "Strapi maintained Custom Fields",
"strapi": {
"name": "color-picker",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-documentation",
"version": "4.4.7",
"version": "4.5.0",
"description": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
"repository": {
"type": "git",
@ -24,8 +24,8 @@
"test": "echo \"no tests yet\""
},
"dependencies": {
"@strapi/helper-plugin": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/helper-plugin": "4.5.0",
"@strapi/utils": "4.5.0",
"bcryptjs": "2.4.3",
"cheerio": "^1.0.0-rc.12",
"fs-extra": "10.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-graphql",
"version": "4.4.7",
"version": "4.5.0",
"description": "Adds GraphQL endpoint with default API methods.",
"repository": {
"type": "git",
@ -29,7 +29,7 @@
"dependencies": {
"@graphql-tools/schema": "8.1.2",
"@graphql-tools/utils": "^8.12.0",
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"apollo-server-core": "3.1.2",
"apollo-server-koa": "3.10.0",
"glob": "^7.1.7",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-i18n",
"version": "4.4.7",
"version": "4.5.0",
"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",
@ -24,7 +24,7 @@
"test:unit": "jest --verbose"
},
"dependencies": {
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"lodash": "4.17.21"
},
"devDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-sentry",
"version": "4.4.7",
"version": "4.5.0",
"description": "Send Strapi error events to Sentry",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/plugin-users-permissions",
"version": "4.4.7",
"version": "4.5.0",
"description": "Protect your API with a full-authentication process based on JWT",
"repository": {
"type": "git",
@ -27,8 +27,8 @@
"test:front:watch:ce": "cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll"
},
"dependencies": {
"@strapi/helper-plugin": "4.4.7",
"@strapi/utils": "4.4.7",
"@strapi/helper-plugin": "4.5.0",
"@strapi/utils": "4.5.0",
"bcryptjs": "2.4.3",
"grant-koa": "5.4.8",
"jsonwebtoken": "^8.1.0",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-email-amazon-ses",
"version": "4.4.7",
"version": "4.5.0",
"description": "Amazon SES provider for strapi email",
"keywords": [
"email",
@ -36,7 +36,7 @@
"test": "echo \"no tests yet\""
},
"dependencies": {
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"node-ses": "^3.0.3"
},
"engines": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-email-mailgun",
"version": "4.4.7",
"version": "4.5.0",
"description": "Mailgun provider for strapi email plugin",
"keywords": [
"email",
@ -36,7 +36,7 @@
"test": "echo \"no tests yet\""
},
"dependencies": {
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"form-data": "^4.0.0",
"mailgun.js": "5.2.2"
},

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-email-nodemailer",
"version": "4.4.7",
"version": "4.5.0",
"description": "Nodemailer provider for Strapi 3",
"keywords": [
"strapi",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-email-sendgrid",
"version": "4.4.7",
"version": "4.5.0",
"description": "Sendgrid provider for strapi email",
"keywords": [
"email",
@ -37,7 +37,7 @@
},
"dependencies": {
"@sendgrid/mail": "7.7.0",
"@strapi/utils": "4.4.7"
"@strapi/utils": "4.5.0"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-email-sendmail",
"version": "4.4.7",
"version": "4.5.0",
"description": "Sendmail provider for strapi email",
"keywords": [
"email",
@ -35,7 +35,7 @@
"test": "echo \"no tests yet\""
},
"dependencies": {
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"sendmail": "^1.6.1"
},
"engines": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-upload-aws-s3",
"version": "4.4.7",
"version": "4.5.0",
"description": "AWS S3 provider for strapi upload",
"keywords": [
"upload",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-upload-cloudinary",
"version": "4.4.7",
"version": "4.5.0",
"description": "Cloudinary provider for strapi upload",
"keywords": [
"upload",
@ -36,7 +36,7 @@
"test": "echo \"no tests yet\""
},
"dependencies": {
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"cloudinary": "^1.30.1",
"into-stream": "^5.1.0"
},

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/provider-upload-local",
"version": "4.4.7",
"version": "4.5.0",
"description": "Local provider for strapi upload",
"keywords": [
"upload",
@ -35,7 +35,7 @@
"test": "echo \"no tests yet\""
},
"dependencies": {
"@strapi/utils": "4.4.7",
"@strapi/utils": "4.5.0",
"fs-extra": "10.0.0"
},
"engines": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/babel-plugin-switch-ee-ce",
"version": "4.4.7",
"version": "4.5.0",
"private": false,
"description": "Babel plugin to switch from CE to EE at runtime",
"repository": "git://github.com/strapi/strapi.git",

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/logger",
"version": "4.4.7",
"version": "4.5.0",
"description": "Strapi's logger",
"homepage": "https://strapi.io",
"bugs": {

View File

@ -1,6 +1,6 @@
{
"name": "@strapi/typescript-utils",
"version": "4.4.7",
"version": "4.5.0",
"description": "Typescript support for Strapi",
"keywords": [
"strapi",