@strapi/strapi 4.0.0-beta.18 → 4.0.0-beta.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,11 +9,11 @@
9
9
  <br />
10
10
 
11
11
  <p align="center">
12
- <a href="https://www.npmjs.org/package/strapi">
13
- <img src="https://img.shields.io/npm/v/strapi/latest.svg" alt="NPM Version" />
12
+ <a href="https://www.npmjs.org/package/@strapi/strapi">
13
+ <img src="https://img.shields.io/npm/v/@strapi/strapi/latest.svg" alt="NPM Version" />
14
14
  </a>
15
- <a href="https://www.npmjs.org/package/strapi">
16
- <img src="https://img.shields.io/npm/dm/strapi.svg" alt="Monthly download on NPM" />
15
+ <a href="https://github.com/strapi/strapi/actions/workflows/tests.yml">
16
+ <img src="https://github.com/strapi/strapi/actions/workflows/tests.yml/badge.svg?branch=master" alt="Tests" />
17
17
  </a>
18
18
  <a href="https://discord.strapi.io">
19
19
  <img src="https://img.shields.io/discord/811989166782021633?label=Discord" alt="Strapi on Discord" />
@@ -24,7 +24,7 @@
24
24
 
25
25
  <p align="center">
26
26
  <a href="https://strapi.io">
27
- <img src="https://raw.githubusercontent.com/strapi/strapi/master/public/assets/administration_panel.png" alt="Administration panel" />
27
+ <img src="https://raw.githubusercontent.com/strapi/strapi/0bcebf77b37182fe021cb59cc19be8f5db4a18ac/public/assets/administration_panel.png" alt="Administration panel" />
28
28
  </a>
29
29
  </p>
30
30
 
@@ -39,7 +39,7 @@ Strapi is a free and open-source headless CMS delivering your content anywhere y
39
39
 
40
40
  ## Getting Started
41
41
 
42
- <a href="https://strapi.io/documentation/developer-docs/latest/getting-started/quick-start.html" target="_blank">Read the Getting Started tutorial</a> or follow the steps below:
42
+ <a href="https://docs.strapi.io/developer-docs/latest/getting-started/quick-start.html" target="_blank">Read the Getting Started tutorial</a> or follow the steps below:
43
43
 
44
44
  ### ⏳ Installation
45
45
 
@@ -65,7 +65,7 @@ Enjoy 🎉
65
65
 
66
66
  ### 🖐 Requirements
67
67
 
68
- Complete installation requirements can be found in the documentation under <a href="https://strapi.io/documentation/developer-docs/latest/setup-deployment-guides/deployment.html#recommended-requirements">Installation Requirements</a>.
68
+ Complete installation requirements can be found in the documentation under <a href="https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/deployment.html">Installation Requirements</a>.
69
69
 
70
70
  **Supported operating systems**:
71
71
 
@@ -79,7 +79,7 @@ Complete installation requirements can be found in the documentation under <a hr
79
79
 
80
80
  **Node:**
81
81
 
82
- - NodeJS >= 10.16 <=14
82
+ - NodeJS >= 12 <= 16
83
83
  - NPM >= 6.x
84
84
 
85
85
  **Database:**
@@ -109,7 +109,7 @@ Please read our [Contributing Guide](./CONTRIBUTING.md) before submitting a Pull
109
109
 
110
110
  ## Community support
111
111
 
112
- For general help using Strapi, please refer to [the official Strapi documentation](https://strapi.io/documentation/). For additional help, you can use one of these channels to ask a question:
112
+ For general help using Strapi, please refer to [the official Strapi documentation](https://docs.strapi.io). For additional help, you can use one of these channels to ask a question:
113
113
 
114
114
  - [Discord](https://discord.strapi.io) (For live discussion with the Community and Strapi team)
115
115
  - [GitHub](https://github.com/strapi/strapi) (Bug reports, Contributions)
@@ -122,7 +122,7 @@ For general help using Strapi, please refer to [the official Strapi documentatio
122
122
 
123
123
  ## Migration
124
124
 
125
- Follow our [migration guides](https://strapi.io/documentation/developer-docs/latest/update-migration-guides/migration-guides.html) on the documentation to keep your projects up-to-date.
125
+ Follow our [migration guides](https://docs.strapi.io/developer-docs/latest/update-migration-guides/migration-guides.html) on the documentation to keep your projects up-to-date.
126
126
 
127
127
  ## Roadmap
128
128
 
@@ -132,8 +132,8 @@ Check out our [roadmap](https://portal.productboard.com/strapi) to get informed
132
132
 
133
133
  See our dedicated [repository](https://github.com/strapi/documentation) for the Strapi documentation, or view our documentation live:
134
134
 
135
- - [Developer docs](https://strapi.io/documentation/developer-docs/latest/getting-started/introduction.html)
136
- - [User docs](https://strapi.io/documentation/user-docs/latest/getting-started/introduction.html)
135
+ - [Developer docs](https://docs.strapi.io/developer-docs/latest/getting-started/introduction.html)
136
+ - [User guide](https://docs.strapi.io/user-docs/latest/getting-started/introduction.html)
137
137
 
138
138
  ## Try live demo
139
139
 
@@ -121,8 +121,8 @@ function watchFileChanges({ dir, strapiInstance, watchIgnoreFiles, polling }) {
121
121
  ignored: [
122
122
  /(^|[/\\])\../, // dot files
123
123
  /tmp/,
124
- '**/admin',
125
- '**/admin/**',
124
+ 'admin',
125
+ 'admin/**',
126
126
  'src/extensions/**/admin',
127
127
  'src/extensions/**/admin/**',
128
128
  '**/documentation',
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
  /**
3
3
  * Strapi telemetry package.
4
- * You can learn more at https://strapi.io/documentation/developer-docs/latest/getting-started/usage-information.html
4
+ * You can learn more at https://docs.strapi.io/developer-docs/latest/getting-started/usage-information.html
5
5
  */
6
6
 
7
7
  const crypto = require('crypto');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/strapi",
3
- "version": "4.0.0-beta.18",
3
+ "version": "4.0.0-beta.21",
4
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",
5
5
  "keywords": [
6
6
  "strapi",
@@ -53,13 +53,13 @@
53
53
  },
54
54
  "license": "SEE LICENSE IN LICENSE",
55
55
  "author": {
56
- "name": "Strapi team",
56
+ "name": "Strapi Solutions SAS",
57
57
  "email": "hi@strapi.io",
58
58
  "url": "https://strapi.io"
59
59
  },
60
60
  "maintainers": [
61
61
  {
62
- "name": "Strapi team",
62
+ "name": "Strapi Solutions SAS",
63
63
  "email": "hi@strapi.io",
64
64
  "url": "https://strapi.io"
65
65
  }
@@ -79,16 +79,16 @@
79
79
  "dependencies": {
80
80
  "@koa/cors": "3.1.0",
81
81
  "@koa/router": "10.1.1",
82
- "@strapi/admin": "4.0.0-beta.18",
83
- "@strapi/database": "4.0.0-beta.18",
84
- "@strapi/generate-new": "4.0.0-beta.18",
85
- "@strapi/generators": "4.0.0-beta.18",
86
- "@strapi/logger": "4.0.0-beta.18",
87
- "@strapi/plugin-content-manager": "4.0.0-beta.18",
88
- "@strapi/plugin-content-type-builder": "4.0.0-beta.18",
89
- "@strapi/plugin-email": "4.0.0-beta.18",
90
- "@strapi/plugin-upload": "4.0.0-beta.18",
91
- "@strapi/utils": "4.0.0-beta.18",
82
+ "@strapi/admin": "4.0.0-beta.21",
83
+ "@strapi/database": "4.0.0-beta.21",
84
+ "@strapi/generate-new": "4.0.0-beta.21",
85
+ "@strapi/generators": "4.0.0-beta.21",
86
+ "@strapi/logger": "4.0.0-beta.21",
87
+ "@strapi/plugin-content-manager": "4.0.0-beta.21",
88
+ "@strapi/plugin-content-type-builder": "4.0.0-beta.21",
89
+ "@strapi/plugin-email": "4.0.0-beta.21",
90
+ "@strapi/plugin-upload": "4.0.0-beta.21",
91
+ "@strapi/utils": "4.0.0-beta.21",
92
92
  "bcryptjs": "2.4.3",
93
93
  "boxen": "5.1.2",
94
94
  "chalk": "4.1.2",
@@ -134,5 +134,5 @@
134
134
  "node": ">=12.x.x <=16.x.x",
135
135
  "npm": ">=6.0.0"
136
136
  },
137
- "gitHead": "3e9e3f13cb85822e6d92b0e448ae0b94d440dac1"
137
+ "gitHead": "dd25a85f8ea5d7b2445e0ba8fe4448087be20839"
138
138
  }