mirror of
https://github.com/strapi/strapi.git
synced 2025-09-15 19:39:06 +00:00
Merge branch 'master' into fix/cast-non-nill-values
This commit is contained in:
commit
ee64bdc323
@ -384,6 +384,10 @@ For security reasons, the Content Type Builder plugin is disabled in production.
|
|||||||
|
|
||||||
### Project updates
|
### Project updates
|
||||||
|
|
||||||
|
When Strapi is deployed to Heroku, Heroku sets the environment variable to `NODE_ENV=production`. In `production mode` Strapi disables the content-type builder (for security reasons). Additionally, if you wanted to change the default production mode in Heroku, it wouldn't work as the file system is temporary. Strapi writes files to the server when you update the content-types and these updates would disappear when Heroku restarts the server.
|
||||||
|
|
||||||
|
Therefore, modifications that require writing to model creation or other json files, e.g. creating or changing content-types, require that you make those changes on your dev environment and then push the changes to Heroku.
|
||||||
|
|
||||||
As you continue developing your application with Strapi, you may want to use [version control](https://devcenter.heroku.com/articles/github-integration), or you can continue to use `Git push heroku master` to commit and push changes to Heroku directly.
|
As you continue developing your application with Strapi, you may want to use [version control](https://devcenter.heroku.com/articles/github-integration), or you can continue to use `Git push heroku master` to commit and push changes to Heroku directly.
|
||||||
|
|
||||||
`Path: ./my-project/`
|
`Path: ./my-project/`
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
# Migration guide from alpha.25 to alpha.26
|
# Migration guide from alpha.25 to alpha.26.1
|
||||||
|
|
||||||
**Here are the major changes:**
|
**Here are the major changes:**
|
||||||
|
|
||||||
- Deep filtering
|
- Fix some issues
|
||||||
- Content type builder refactoring
|
|
||||||
|
|
||||||
**Useful links:**
|
**Useful links:**
|
||||||
- Changelog: [https://github.com/strapi/strapi/releases/tag/v3.0.0-alpha.26](https://github.com/strapi/strapi/releases/tag/v3.0.0-alpha.26)
|
- Changelog: [https://github.com/strapi/strapi/releases/tag/v3.0.0-alpha.26](https://github.com/strapi/strapi/releases/tag/v3.0.0-alpha.26)
|
||||||
- GitHub diff: [https://github.com/strapi/strapi/compare/v3.0.0-alpha.25...v3.0.0-alpha.26](https://github.com/strapi/strapi/compare/v3.0.0-alpha.25...v3.0.0-alpha.26)
|
- GitHub diff: [https://github.com/strapi/strapi/compare/v3.0.0-alpha.25...v3.0.0-alpha.26.1](https://github.com/strapi/strapi/compare/v3.0.0-alpha.25...v3.0.0-alpha.26.1)
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
@ -19,7 +18,7 @@ Feel free to [join us on Slack](http://slack.strapi.io) and ask questions about
|
|||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
Install Strapi `alpha.26` globally on your computer. To do so run `npm install strapi@3.0.0-alpha.26 -g`.
|
Install Strapi `alpha.26.1` globally on your computer. To do so run `npm install strapi@3.0.0-alpha.26.1 -g`.
|
||||||
|
|
||||||
When it's done, generate a new empty project `strapi new myNewProject` (don't pay attention to the database configuration).
|
When it's done, generate a new empty project `strapi new myNewProject` (don't pay attention to the database configuration).
|
||||||
|
|
||||||
@ -27,9 +26,9 @@ When it's done, generate a new empty project `strapi new myNewProject` (don't pa
|
|||||||
|
|
||||||
## Update node modules
|
## Update node modules
|
||||||
|
|
||||||
Update the Strapi's dependencies version (move Strapi's dependencies to `3.0.0-alpha.26` version) of your project.
|
Update the Strapi's dependencies version (move Strapi's dependencies to `3.0.0-alpha.26.1` version) of your project.
|
||||||
|
|
||||||
Run `npm install strapi@3.0.0-alpha.26 --save` to update your strapi version.
|
Run `npm install strapi@3.0.0-alpha.26.1 --save` to update your strapi version.
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
@ -182,4 +181,4 @@ And replace `<%= globalID %>` by the Global of your API.
|
|||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
That's all, you have now upgraded to Strapi `alpha.26`.
|
That's all, you have now upgraded to Strapi `alpha.26.1`.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"assert": "~1.3.0",
|
"assert": "~1.3.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-admin",
|
"name": "strapi-admin",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Strapi Admin",
|
"description": "Strapi Admin",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -35,8 +35,8 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cross-env": "^5.0.5",
|
"cross-env": "^5.0.5",
|
||||||
"sanitize.css": "^4.1.0",
|
"sanitize.css": "^4.1.0",
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26",
|
"strapi-helper-plugin": "3.0.0-alpha.26.1",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi",
|
"name": "Strapi",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-admin",
|
"name": "strapi-generate-admin",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate the default admin panel for a Strapi application.",
|
"description": "Generate the default admin panel for a Strapi application.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -19,8 +19,8 @@
|
|||||||
"fs-extra": "^4.0.1",
|
"fs-extra": "^4.0.1",
|
||||||
"lodash": "^4.17.5",
|
"lodash": "^4.17.5",
|
||||||
"shelljs": "^0.7.8",
|
"shelljs": "^0.7.8",
|
||||||
"strapi-admin": "3.0.0-alpha.26",
|
"strapi-admin": "3.0.0-alpha.26.1",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"email": "hi@strapi.io",
|
"email": "hi@strapi.io",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-api",
|
"name": "strapi-generate-api",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate an API for a Strapi application.",
|
"description": "Generate an API for a Strapi application.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-controller",
|
"name": "strapi-generate-controller",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate a controller for a Strapi API.",
|
"description": "Generate a controller for a Strapi API.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-model",
|
"name": "strapi-generate-model",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate a model for a Strapi API.",
|
"description": "Generate a model for a Strapi API.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-new",
|
"name": "strapi-generate-new",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate a new Strapi application.",
|
"description": "Generate a new Strapi application.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -22,7 +22,7 @@
|
|||||||
"ora": "^2.1.0",
|
"ora": "^2.1.0",
|
||||||
"request": "^2.88.0",
|
"request": "^2.88.0",
|
||||||
"shelljs": "^0.7.8",
|
"shelljs": "^0.7.8",
|
||||||
"strapi-utils": "3.0.0-alpha.26",
|
"strapi-utils": "3.0.0-alpha.26.1",
|
||||||
"uuid": "^3.1.0"
|
"uuid": "^3.1.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-plugin",
|
"name": "strapi-generate-plugin",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate an plugin for a Strapi application.",
|
"description": "Generate an plugin for a Strapi application.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-policy",
|
"name": "strapi-generate-policy",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate a policy for a Strapi API.",
|
"description": "Generate a policy for a Strapi API.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate-service",
|
"name": "strapi-generate-service",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Generate a service for a Strapi API.",
|
"description": "Generate a service for a Strapi API.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-generate",
|
"name": "strapi-generate",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Master of ceremonies for the Strapi generators.",
|
"description": "Master of ceremonies for the Strapi generators.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -20,7 +20,7 @@
|
|||||||
"fs-extra": "^4.0.0",
|
"fs-extra": "^4.0.0",
|
||||||
"lodash": "^4.17.5",
|
"lodash": "^4.17.5",
|
||||||
"reportback": "^2.0.1",
|
"reportback": "^2.0.1",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi team",
|
"name": "Strapi team",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-helper-plugin",
|
"name": "strapi-helper-plugin",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Helper for Strapi plugins development",
|
"description": "Helper for Strapi plugins development",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 10.0.0",
|
"node": ">= 10.0.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-hook-bookshelf",
|
"name": "strapi-hook-bookshelf",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Bookshelf hook for the Strapi framework",
|
"description": "Bookshelf hook for the Strapi framework",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -21,8 +21,8 @@
|
|||||||
"lodash": "^4.17.5",
|
"lodash": "^4.17.5",
|
||||||
"pluralize": "^6.0.0",
|
"pluralize": "^6.0.0",
|
||||||
"rimraf": "^2.6.2",
|
"rimraf": "^2.6.2",
|
||||||
"strapi-hook-knex": "3.0.0-alpha.26",
|
"strapi-hook-knex": "3.0.0-alpha.26.1",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-hook-ejs",
|
"name": "strapi-hook-ejs",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "EJS hook for the Strapi framework",
|
"description": "EJS hook for the Strapi framework",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-hook-knex",
|
"name": "strapi-hook-knex",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Knex hook for the Strapi framework",
|
"description": "Knex hook for the Strapi framework",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-hook-mongoose",
|
"name": "strapi-hook-mongoose",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Mongoose hook for the Strapi framework",
|
"description": "Mongoose hook for the Strapi framework",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -20,7 +20,7 @@
|
|||||||
"mongoose-float": "^1.0.3",
|
"mongoose-float": "^1.0.3",
|
||||||
"pluralize": "^6.0.0",
|
"pluralize": "^6.0.0",
|
||||||
"rimraf": "^2.6.2",
|
"rimraf": "^2.6.2",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"email": "hi@strapi.io",
|
"email": "hi@strapi.io",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-hook-redis",
|
"name": "strapi-hook-redis",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Redis hook for the Strapi framework",
|
"description": "Redis hook for the Strapi framework",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -19,7 +19,7 @@
|
|||||||
"lodash": "^4.17.5",
|
"lodash": "^4.17.5",
|
||||||
"rimraf": "^2.6.2",
|
"rimraf": "^2.6.2",
|
||||||
"stack-trace": "0.0.10",
|
"stack-trace": "0.0.10",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"email": "hi@strapi.io",
|
"email": "hi@strapi.io",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-lint",
|
"name": "strapi-lint",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Strapi eslint and prettier configurations",
|
"description": "Strapi eslint and prettier configurations",
|
||||||
"directories": {
|
"directories": {
|
||||||
"lib": "lib"
|
"lib": "lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-middleware-views",
|
"name": "strapi-middleware-views",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Views middleware to enable server-side rendering for the Strapi framework",
|
"description": "Views middleware to enable server-side rendering for the Strapi framework",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-content-manager",
|
"name": "strapi-plugin-content-manager",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "A powerful UI to easily manage your data.",
|
"description": "A powerful UI to easily manage your data.",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "Content Manager",
|
"name": "Content Manager",
|
||||||
@ -26,11 +26,11 @@
|
|||||||
"draft-js": "^0.10.5",
|
"draft-js": "^0.10.5",
|
||||||
"react-select": "^1.2.1",
|
"react-select": "^1.2.1",
|
||||||
"showdown": "^1.8.6",
|
"showdown": "^1.8.6",
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26"
|
"strapi-helper-plugin": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pluralize": "^7.0.0",
|
"pluralize": "^7.0.0",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi team",
|
"name": "Strapi team",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-content-type-builder",
|
"name": "strapi-plugin-content-type-builder",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Strapi plugin to create content type (API).",
|
"description": "Strapi plugin to create content type (API).",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "Content Type Builder",
|
"name": "Content Type Builder",
|
||||||
@ -24,11 +24,11 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"immutable": "^3.8.2",
|
"immutable": "^3.8.2",
|
||||||
"pluralize": "^7.0.0",
|
"pluralize": "^7.0.0",
|
||||||
"strapi-generate": "3.0.0-alpha.26",
|
"strapi-generate": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-api": "3.0.0-alpha.26"
|
"strapi-generate-api": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26"
|
"strapi-helper-plugin": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi team",
|
"name": "Strapi team",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-documentation",
|
"name": "strapi-plugin-documentation",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "This is the description of the plugin.",
|
"description": "This is the description of the plugin.",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "Documentation",
|
"name": "Documentation",
|
||||||
@ -31,7 +31,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cross-env": "^5.2.0",
|
"cross-env": "^5.2.0",
|
||||||
"rimraf": "^2.6.3",
|
"rimraf": "^2.6.3",
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26"
|
"strapi-helper-plugin": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "soupette",
|
"name": "soupette",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-email",
|
"name": "strapi-plugin-email",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "This is the description of the plugin.",
|
"description": "This is the description of the plugin.",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "Email",
|
"name": "Email",
|
||||||
@ -22,13 +22,13 @@
|
|||||||
"prepublishOnly": "IS_MONOREPO=true npm run build"
|
"prepublishOnly": "IS_MONOREPO=true npm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"strapi-provider-email-sendmail": "3.0.0-alpha.26",
|
"strapi-provider-email-sendmail": "3.0.0-alpha.26.1",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"react-copy-to-clipboard": "5.0.1",
|
"react-copy-to-clipboard": "5.0.1",
|
||||||
"rimraf": "^2.6.3",
|
"rimraf": "^2.6.3",
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26"
|
"strapi-helper-plugin": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi team",
|
"name": "Strapi team",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-graphql",
|
"name": "strapi-plugin-graphql",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "This is the description of the plugin.",
|
"description": "This is the description of the plugin.",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "graphql",
|
"name": "graphql",
|
||||||
@ -32,7 +32,7 @@
|
|||||||
"graphql-type-json": "^0.2.1",
|
"graphql-type-json": "^0.2.1",
|
||||||
"graphql-type-long": "^0.1.1",
|
"graphql-type-long": "^0.1.1",
|
||||||
"pluralize": "^7.0.0",
|
"pluralize": "^7.0.0",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cross-env": "^5.2.0",
|
"cross-env": "^5.2.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-settings-manager",
|
"name": "strapi-plugin-settings-manager",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Strapi plugin to manage settings.",
|
"description": "Strapi plugin to manage settings.",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "Settings Manager",
|
"name": "Settings Manager",
|
||||||
@ -26,7 +26,7 @@
|
|||||||
"cross-env": "^5.2.0",
|
"cross-env": "^5.2.0",
|
||||||
"flag-icon-css": "^2.8.0",
|
"flag-icon-css": "^2.8.0",
|
||||||
"rimraf": "^2.6.3",
|
"rimraf": "^2.6.3",
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26"
|
"strapi-helper-plugin": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"shelljs": "^0.7.8"
|
"shelljs": "^0.7.8"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-upload",
|
"name": "strapi-plugin-upload",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "This is the description of the plugin.",
|
"description": "This is the description of the plugin.",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "Files Upload",
|
"name": "Files Upload",
|
||||||
@ -22,13 +22,13 @@
|
|||||||
"prepublishOnly": "IS_MONOREPO=true npm run build"
|
"prepublishOnly": "IS_MONOREPO=true npm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"strapi-provider-upload-local": "3.0.0-alpha.26",
|
"strapi-provider-upload-local": "3.0.0-alpha.26.1",
|
||||||
"strapi-utils": "3.0.0-alpha.26",
|
"strapi-utils": "3.0.0-alpha.26.1",
|
||||||
"stream-to-array": "^2.3.0",
|
"stream-to-array": "^2.3.0",
|
||||||
"uuid": "^3.2.1"
|
"uuid": "^3.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26"
|
"strapi-helper-plugin": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "A Strapi developer",
|
"name": "A Strapi developer",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-plugin-users-permissions",
|
"name": "strapi-plugin-users-permissions",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Protect your API with a full-authentication process based on JWT",
|
"description": "Protect your API with a full-authentication process based on JWT",
|
||||||
"strapi": {
|
"strapi": {
|
||||||
"name": "Roles & Permissions",
|
"name": "Roles & Permissions",
|
||||||
@ -29,11 +29,11 @@
|
|||||||
"koa2-ratelimit": "^0.6.1",
|
"koa2-ratelimit": "^0.6.1",
|
||||||
"purest": "^2.0.1",
|
"purest": "^2.0.1",
|
||||||
"request": "^2.83.0",
|
"request": "^2.83.0",
|
||||||
"strapi-utils": "3.0.0-alpha.26",
|
"strapi-utils": "3.0.0-alpha.26.1",
|
||||||
"uuid": "^3.1.0"
|
"uuid": "^3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.26"
|
"strapi-helper-plugin": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Strapi team",
|
"name": "Strapi team",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-email-amazon-ses",
|
"name": "strapi-provider-email-amazon-ses",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Amazon SES provider for strapi email",
|
"description": "Amazon SES provider for strapi email",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-email-mailgun",
|
"name": "strapi-provider-email-mailgun",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Mailgun provider for strapi email plugin",
|
"description": "Mailgun provider for strapi email plugin",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-email-sendgrid",
|
"name": "strapi-provider-email-sendgrid",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Sendgrid provider for strapi email",
|
"description": "Sendgrid provider for strapi email",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-email-sendmail",
|
"name": "strapi-provider-email-sendmail",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Sendmail provider for strapi email",
|
"description": "Sendmail provider for strapi email",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-upload-aws-s3",
|
"name": "strapi-provider-upload-aws-s3",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "AWS S3 provider for strapi upload",
|
"description": "AWS S3 provider for strapi upload",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-upload-cloudinary",
|
"name": "strapi-provider-upload-cloudinary",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Cloudinary provider for strapi upload",
|
"description": "Cloudinary provider for strapi upload",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-upload-local",
|
"name": "strapi-provider-upload-local",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Local provider for strapi upload",
|
"description": "Local provider for strapi upload",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-provider-upload-rackspace",
|
"name": "strapi-provider-upload-rackspace",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Rackspace provider for strapi upload",
|
"description": "Rackspace provider for strapi upload",
|
||||||
"main": "./lib",
|
"main": "./lib",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi-utils",
|
"name": "strapi-utils",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "Shared utilities for the Strapi packages",
|
"description": "Shared utilities for the Strapi packages",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "strapi",
|
"name": "strapi",
|
||||||
"version": "3.0.0-alpha.26",
|
"version": "3.0.0-alpha.26.1",
|
||||||
"description": "An open source solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier.",
|
"description": "An open source solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier.",
|
||||||
"homepage": "http://strapi.io",
|
"homepage": "http://strapi.io",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -63,16 +63,16 @@
|
|||||||
"semver": "^5.4.1",
|
"semver": "^5.4.1",
|
||||||
"shelljs": "^0.8.3",
|
"shelljs": "^0.8.3",
|
||||||
"stack-trace": "0.0.10",
|
"stack-trace": "0.0.10",
|
||||||
"strapi-generate": "3.0.0-alpha.26",
|
"strapi-generate": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-admin": "3.0.0-alpha.26",
|
"strapi-generate-admin": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-api": "3.0.0-alpha.26",
|
"strapi-generate-api": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-controller": "3.0.0-alpha.26",
|
"strapi-generate-controller": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-model": "3.0.0-alpha.26",
|
"strapi-generate-model": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-new": "3.0.0-alpha.26",
|
"strapi-generate-new": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-plugin": "3.0.0-alpha.26",
|
"strapi-generate-plugin": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-policy": "3.0.0-alpha.26",
|
"strapi-generate-policy": "3.0.0-alpha.26.1",
|
||||||
"strapi-generate-service": "3.0.0-alpha.26",
|
"strapi-generate-service": "3.0.0-alpha.26.1",
|
||||||
"strapi-utils": "3.0.0-alpha.26"
|
"strapi-utils": "3.0.0-alpha.26.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "jest --forceExit --verbose",
|
"test": "jest --forceExit --verbose",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user