Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-08-23 10:29:17 +00:00
parent 6ae6a77dd5
commit 18ab337f96
324 changed files with 5358 additions and 1170 deletions
+47
View File
@@ -1,5 +1,52 @@
# @backstage/plugin-azure-devops-backend
## 0.3.15-next.0
### Patch Changes
- 3f739be9d9: Minor API signatures cleanup
- bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
- cb1cfc018b: `createRouter` now requires an additional reader: `UrlReader` argument
```diff
export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
return createRouter({
logger: env.logger,
config: env.config,
+ reader: env.reader,
});
}
```
Remember to check if you have already provided these settings previously.
#### [Azure DevOps]
```yaml
# app-config.yaml
azureDevOps:
host: dev.azure.com
token: my-token
organization: my-company
```
#### [Azure Integrations]
```yaml
# app-config.yaml
integrations:
azure:
- host: dev.azure.com
token: ${AZURE_TOKEN}
```
- ef9ab322de: Minor API signatures cleanup
- Updated dependencies
- @backstage/backend-common@0.15.1-next.0
- @backstage/plugin-azure-devops-common@0.3.0-next.0
## 0.3.14
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-azure-devops-backend",
"version": "0.3.14",
"version": "0.3.15-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -23,9 +23,9 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.15.0",
"@backstage/backend-common": "^0.15.1-next.0",
"@backstage/config": "^1.0.1",
"@backstage/plugin-azure-devops-common": "^0.2.4",
"@backstage/plugin-azure-devops-common": "^0.3.0-next.0",
"@types/express": "^4.17.6",
"azure-devops-node-api": "^11.0.1",
"express": "^4.17.1",
@@ -36,7 +36,7 @@
"mime-types": "^2.1.27"
},
"devDependencies": {
"@backstage/cli": "^0.18.1",
"@backstage/cli": "^0.18.2-next.0",
"@types/supertest": "^2.0.8",
"supertest": "^6.1.6",
"msw": "^0.45.0"