diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a97763debc..f72d8b3a81 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -55,7 +55,7 @@ The core team will review your pull request and will either merge it, request ch To facilitate the contribution, we have drastically reduced the amount of commands necessary to install the entire development environment. -First of all, you need to check if you're using the [required versions of Node.js and npm](https://strapi.io/documentation/3.0.0-beta.x/getting-started/install-requirements.html) +First of all, you need to check if you're using the [required versions of Node.js and npm](https://strapi.io/documentation/v3.x/installation/cli.html#step-1-make-sure-requirements-are-met) Then, please follow the instructions below: diff --git a/README.md b/README.md index 7d31d89bb6..6c0326fea5 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Strapi is a free and open source headless CMS delivering your content anywhere y ## Getting Started -Read the Getting Started tutorial or follow the steps below: +Read the Getting Started tutorial or follow the steps below: ### ⏳ Installation @@ -86,7 +86,7 @@ Enjoy 🎉 ### 🖐 Requirements -Complete installation requirements can be found in the documentation under Installation Requirements. +Complete installation requirements can be found in the documentation under Installation Requirements. **Supported operating systems**: @@ -145,7 +145,7 @@ For general help using Strapi, please refer to [the official Strapi documentatio ## Migration -Follow our [migration guides](https://strapi.io/documentation/3.0.0-beta.x/migration-guide/) on the documentation to keep your projects up-to-date. +Follow our [migration guides](https://strapi.io/documentation/v3.x/migration-guide/) on the documentation to keep your projects up-to-date. ## Roadmap diff --git a/packages/strapi-admin/admin/src/components/EmptyList/index.js b/packages/strapi-admin/admin/src/components/EmptyList/index.js index c4b5093f5e..26b747ec75 100644 --- a/packages/strapi-admin/admin/src/components/EmptyList/index.js +++ b/packages/strapi-admin/admin/src/components/EmptyList/index.js @@ -17,7 +17,7 @@ function EmptyList() {
{formatMessage({ id: 'Settings.webhooks.list.empty.title' })}
{formatMessage({ id: 'Settings.webhooks.list.empty.description' })}
diff --git a/packages/strapi-admin/admin/src/containers/HomePage/index.js b/packages/strapi-admin/admin/src/containers/HomePage/index.js index 6cef0546a0..bc87074d01 100644 --- a/packages/strapi-admin/admin/src/containers/HomePage/index.js +++ b/packages/strapi-admin/admin/src/containers/HomePage/index.js @@ -18,7 +18,7 @@ import SocialLink from './SocialLink'; const FIRST_BLOCK_LINKS = [ { link: - 'https://strapi.io/documentation/3.0.0-beta.x/getting-started/quick-start.html#_4-create-a-new-content-type', + 'https://strapi.io/documentation/v3.x/getting-started/quick-start.html#_4-create-a-category-content-type', contentId: 'app.components.BlockLink.documentation.content', titleId: 'app.components.BlockLink.documentation', }, diff --git a/packages/strapi-generate-api/templates/controller.template b/packages/strapi-generate-api/templates/controller.template index f94f22736f..a589b84af4 100644 --- a/packages/strapi-generate-api/templates/controller.template +++ b/packages/strapi-generate-api/templates/controller.template @@ -1,7 +1,7 @@ 'use strict'; /** - * Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/controllers.html#core-controllers) + * Read the documentation (https://strapi.io/documentation/v3.x/concepts/controllers.html#core-controllers) * to customize this controller */ diff --git a/packages/strapi-generate-api/templates/model.template b/packages/strapi-generate-api/templates/model.template index d354d32f6f..4133599f61 100644 --- a/packages/strapi-generate-api/templates/model.template +++ b/packages/strapi-generate-api/templates/model.template @@ -1,7 +1,7 @@ 'use strict'; /** - * Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/models.html#life-cycle-callbacks) + * Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#life-cycle-callbacks) * to customize this model */ diff --git a/packages/strapi-generate-api/templates/service.template b/packages/strapi-generate-api/templates/service.template index d0dcc88381..1f5330ef96 100644 --- a/packages/strapi-generate-api/templates/service.template +++ b/packages/strapi-generate-api/templates/service.template @@ -1,7 +1,7 @@ 'use strict'; /** - * Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/services.html#core-services) + * Read the documentation (https://strapi.io/documentation/v3.x/concepts/services.html#core-services) * to customize this service */ diff --git a/packages/strapi-generate-model/templates/model.template b/packages/strapi-generate-model/templates/model.template index d354d32f6f..319ea80a1d 100644 --- a/packages/strapi-generate-model/templates/model.template +++ b/packages/strapi-generate-model/templates/model.template @@ -1,7 +1,7 @@ 'use strict'; /** - * Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/models.html#life-cycle-callbacks) + * Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#lifecycle-hooks) * to customize this model */ diff --git a/packages/strapi-generate-new/lib/resources/files/config/functions/bootstrap.js b/packages/strapi-generate-new/lib/resources/files/config/functions/bootstrap.js index 1bf1ef1955..5f8ceb9455 100644 --- a/packages/strapi-generate-new/lib/resources/files/config/functions/bootstrap.js +++ b/packages/strapi-generate-new/lib/resources/files/config/functions/bootstrap.js @@ -7,7 +7,7 @@ * This gives you an opportunity to set up your data model, * run jobs, or perform some special logic. * - * See more details here: https://strapi.io/documentation/3.0.0-beta.x/concepts/configurations.html#bootstrap + * See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#bootstrap */ module.exports = () => {}; diff --git a/packages/strapi-generate-new/lib/resources/files/config/functions/cron.js b/packages/strapi-generate-new/lib/resources/files/config/functions/cron.js index 9b9a8a3e9f..8aa2edd873 100644 --- a/packages/strapi-generate-new/lib/resources/files/config/functions/cron.js +++ b/packages/strapi-generate-new/lib/resources/files/config/functions/cron.js @@ -7,7 +7,7 @@ * The cron format consists of: * [SECOND (optional)] [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK] * - * See more details here: https://strapi.io/documentation/3.0.0-beta.x/concepts/configurations.html#cron-tasks + * See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#cron-tasks */ module.exports = { diff --git a/packages/strapi-plugin-documentation/config/settings.json b/packages/strapi-plugin-documentation/config/settings.json index d9bcd3481f..17948e90fe 100755 --- a/packages/strapi-plugin-documentation/config/settings.json +++ b/packages/strapi-plugin-documentation/config/settings.json @@ -36,7 +36,7 @@ ], "externalDocs": { "description": "Find out more", - "url": "https://strapi.io/documentation/3.0.0-beta.x/" + "url": "https://strapi.io/documentation/v3.x/" }, "security": [ { diff --git a/packages/strapi-provider-upload-local/README.md b/packages/strapi-provider-upload-local/README.md index f656dfb630..867e89dccc 100644 --- a/packages/strapi-provider-upload-local/README.md +++ b/packages/strapi-provider-upload-local/README.md @@ -17,7 +17,7 @@ Your configuration is passed down to the cloudinary configuration. (e.g: `cloudi } ``` -The `sizeLimit` parameter must be a number. Be aware that the unit is in KB. When setting this value high, you should make sure to also configure the body parser middleware `maxFileSize` so the file can be sent and processed. Read more [here](https://strapi.io/documentation/3.0.0-beta.x/plugins/upload.html#configuration) +The `sizeLimit` parameter must be a number. Be aware that the unit is in KB. When setting this value high, you should make sure to also configure the body parser middleware `maxFileSize` so the file can be sent and processed. Read more [here](https://strapi.io/documentation/v3.x/plugins/upload.html#configuration) ## Resources diff --git a/packages/strapi/lib/services/metrics/index.js b/packages/strapi/lib/services/metrics/index.js index 7dbd4b3be9..bf1c736baa 100644 --- a/packages/strapi/lib/services/metrics/index.js +++ b/packages/strapi/lib/services/metrics/index.js @@ -1,7 +1,7 @@ 'use strict'; /** * Strapi telemetry package. - * You can learn more at https://strapi.io/documentation/3.0.0-beta.x/global-strapi/usage-information.html#commitment-to-our-users-data-collection + * You can learn more at https://strapi.io/documentation/v3.x/global-strapi/usage-information.html#commitment-to-our-users-data-collection */ const { scheduleJob } = require('node-schedule');