Skip to content

Commit 992f000

Browse files
Remove rackspace provider from documentation (#1050)
Signed-off-by: Derrick Mehaffy <[email protected]>
1 parent c2d81e6 commit 992f000

File tree

4 files changed

+17
-18
lines changed

4 files changed

+17
-18
lines changed

Diff for: docs/developer-docs/latest/development/providers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ canonicalUrl: https://docs.strapi.io/developer-docs/latest/development/providers
88

99
Certain [plugins](../../../user-docs/latest/plugins/introduction-to-plugins.md) can be extended via the installation and configuration of additional [providers](../../../user-docs/latest/plugins/introduction-to-plugins.md#providers).
1010

11-
Providers add an extension to the core capabilities of the plugin, for example to upload media files to Rackspace instead of the local server, or using Amazon SES for emails instead of Sendmail.
11+
Providers add an extension to the core capabilities of the plugin, for example to upload media files to AWS S3 instead of the local server, or using Amazon SES for emails instead of Sendmail.
1212

1313
::: note
1414
Only the [Upload](../plugins/upload.md) and [Email](../plugins/email.md) plugins are currently designed to work with providers.
@@ -202,4 +202,4 @@ If you want to create your own provider without publishing it on npm you can fol
202202
```
203203

204204
4. Update your `./config/plugins.js` file to [configure the provider](#configuring-providers).
205-
5. Finally, run `yarn install` or `npm install` to install your new custom provider.
205+
5. Finally, run `yarn install` or `npm install` to install your new custom provider.

Diff for: docs/developer-docs/latest/plugins/upload.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@ The providers maintained by Strapi include:
1515
- [Amazon S3](https://www.npmjs.com/package/@strapi/provider-upload-aws-s3)
1616
- [Cloudinary](https://www.npmjs.com/package/@strapi/provider-upload-cloudinary)
1717
- [Local](https://www.npmjs.com/package/@strapi/provider-upload-local)
18-
- [Rackspace](https://www.npmjs.com/package/@strapi/provider-upload-rackspace)
1918

2019
## Configuration
2120

22-
This section details configuration options for the default upload provider. If using another provider (e.g. AWS S3 or Rackspace), see the available configuration parameters in that provider's documentation.
21+
This section details configuration options for the default upload provider. If using another provider (e.g. AWS S3 or Cloudinary), see the available configuration parameters in that provider's documentation.
2322

2423
### Local server
2524

Diff for: docs/developer-docs/latest/setup-deployment-guides/deployment/hosting-guides/heroku.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ heroku open
415415

416416
Like with project updates on Heroku, the file system doesn't support local uploading of files as they will be wiped when Heroku "cycles" the dyno. This type of file system is called [ephemeral](https://devcenter.heroku.com/articles/dynos#ephemeral-filesystem), which means the file system only lasts until the dyno is restarted (with Heroku this happens any time you redeploy or during their regular restart which can happen every few hours or every day).
417417

418-
Due to Heroku's filesystem you will need to use an upload provider such as AWS S3, Cloudinary, or Rackspace. You can view the documentation for installing providers [here](/developer-docs/latest/development/providers.md) and you can see a list of providers from both Strapi and the community on [npmjs.com](https://www.npmjs.com/search?q=strapi-provider-upload-&page=0&perPage=20).
418+
Due to Heroku's filesystem you will need to use an upload provider such as AWS S3 or Cloudinary. You can view the documentation for installing providers [here](/developer-docs/latest/development/providers.md) and you can see a list of providers from both Strapi and the community on [npmjs.com](https://www.npmjs.com/search?q=strapi-provider-upload-&page=0&perPage=20).
419419

420420
## Gzip
421421

Diff for: docs/developer-docs/latest/update-migration-guides/migration-guides/v4/code/backend/dependencies.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ The following table highlights new and removed packages:
112112
- Packages with a ✨ emoji before their name have a new name in Strapi v4 but do not need to be defined in your `package.json`.
113113
- Packages identified with the ❌ emoji have been removed from Strapi v4 and all references to these packages should be removed from the code.
114114

115-
| Package name in Strapi v3 | Package name in Strapi v4 |
116-
| ---------------------------------- | ------------------------------------- |
115+
| Package name in Strapi v3 | Package name in Strapi v4 |
116+
| ---------------------------------- | -------------------------------------- |
117117
| strapi |@strapi/strapi |
118118
| strapi-database |@strapi/database |
119119
| strapi-admin |@strapi/admin |
@@ -131,22 +131,22 @@ The following table highlights new and removed packages:
131131
| strapi-provider-upload-local |@strapi/provider-upload-local |
132132
| strapi-provider-upload-aws-s3 | 🔌 @strapi/provider-upload-aws-s3 |
133133
| strapi-provider-upload-cloudinary | 🔌 @strapi/provider-upload-cloudinary |
134-
| strapi-provider-upload-rackspace | 🔌 @strapi/provider-upload-rackspace |
135134
| strapi-provider-email-sendmail |@strapi/provider-email-sendmail |
136135
| strapi-provider-email-amazon-ses | 🔌 @strapi/provider-email-amazon-ses |
137136
| strapi-provider-email-mailgun | 🔌 @strapi/provider-email-mailgun |
138137
| strapi-provider-email-nodemailer | 🔌 @strapi/provider-email-nodemailer |
139138
| strapi-provider-email-sendgrid | 🔌 @strapi/provider-email-sendgrid |
140-
| create-strapi-starter | create-strapi-starter |
141-
| create-strapi-app | create-strapi-app |
142-
| strapi-generate-policy | strapi-generate-policy |
143-
| strapi-generate-controller | strapi-generate-model |
144-
| strapi-generate-model | strapi-generate-controller |
145-
| strapi-generate-new | strapi-generate-new |
146-
| strapi-generate | strapi-generate |
147-
| strapi-generate-api | strapi-generate-api |
148-
| strapi-generate-plugin | strapi-generate-plugin |
149-
| strapi-generate-service | strapi-generate-service |
139+
| create-strapi-starter | create-strapi-starter |
140+
| create-strapi-app | create-strapi-app |
141+
| strapi-generate-policy | strapi-generate-policy |
142+
| strapi-generate-controller | strapi-generate-model |
143+
| strapi-generate-model | strapi-generate-controller |
144+
| strapi-generate-new | strapi-generate-new |
145+
| strapi-generate | strapi-generate |
146+
| strapi-generate-api | strapi-generate-api |
147+
| strapi-generate-plugin | strapi-generate-plugin |
148+
| strapi-generate-service | strapi-generate-service |
149+
| strapi-provider-upload-rackspace | ❌ (removed from v4) |
150150
| strapi-connector-mongoose | ❌ (removed from v4) |
151151
| strapi-connector-bookshelf | ❌ (removed from v4) |
152152
| strapi-hook-redis | ❌ (removed from v4) |

0 commit comments

Comments
 (0)