Version Packages

This commit is contained in:
github-actions[bot]
2021-12-30 11:06:46 +00:00
parent f3784edd89
commit 7d27a11079
155 changed files with 760 additions and 614 deletions
+18
View File
@@ -1,5 +1,23 @@
# @backstage/integration
## 0.7.0
### Minor Changes
- 7d4b4e937c: Create an interface for the GitHub credentials provider in order to support providing implementations.
We have changed the name of the `GithubCredentialsProvider` to `SingleInstanceGithubCredentialsProvider`.
`GithubCredentialsProvider` is now an interface that maybe implemented to provide a custom mechanism to retrieve GitHub credentials.
In a later release we will support configuring URL readers, scaffolder tasks, and processors with customer GitHub credentials providers.
If you want to uptake this release, you will need to replace all references to `GithubCredentialsProvider.create` with `SingleInstanceGithubCredentialsProvider.create`.
### Patch Changes
- cf2e20a792: Added `endpoint` and `s3ForcePathStyle` as optional configuration for AWS S3 integrations.
## 0.6.10
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration",
"description": "Helpers for managing integrations towards external systems",
"version": "0.6.10",
"version": "0.7.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -39,9 +39,9 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/cli": "^0.10.3",
"@backstage/config-loader": "^0.9.0",
"@backstage/test-utils": "^0.2.0",
"@backstage/cli": "^0.10.4",
"@backstage/config-loader": "^0.9.1",
"@backstage/test-utils": "^0.2.1",
"@types/jest": "^26.0.7",
"@types/luxon": "^2.0.4",
"msw": "^0.35.0"