Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-04-26 12:22:43 +00:00
parent 08e7fc564c
commit 1bff70d602
247 changed files with 3033 additions and 662 deletions
+40
View File
@@ -1,5 +1,45 @@
# @backstage/integration
## 1.2.0-next.0
### Minor Changes
- 6673babab9: Gerrit UrlReader: Implemented `readTree`
- 1b4e1e2306: Split `bitbucket` integration into `bitbucketCloud` and `bitbucketServer`
(backwards compatible).
In order to migrate to the new integration configs,
move your configs from `integrations.bitbucket`
to `integrations.bitbucketCloud` or `integrations.bitbucketServer`.
Migration example:
**Before:**
```yaml
integrations:
bitbucket:
- host: bitbucket.org
username: bitbucket_user
appPassword: app-password
- host: bitbucket-server.company.com
token: my-token
```
**After:**
```yaml
integrations:
bitbucketCloud:
- username: bitbucket_user
appPassword: app-password
bitbucketServer:
- host: bitbucket-server.company.com
token: my-token
```
- 566407bf8a: Gerrit Integration: Added the `getGerritProjectsApiUrl` function
## 1.1.0
### Minor Changes