Version Packages

This commit is contained in:
github-actions[bot]
2022-09-20 11:52:02 +00:00
parent 2a7a21e9c5
commit 30882884a4
520 changed files with 9779 additions and 5672 deletions
+50
View File
@@ -1,5 +1,55 @@
# @backstage/plugin-azure-devops-backend
## 0.3.15
### Patch Changes
- 3f739be9d9: Minor API signatures cleanup
- 667d917488: Updated dependency `msw` to `^0.47.0`.
- 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
- 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
- @backstage/plugin-azure-devops-common@0.3.0
- @backstage/config@1.0.2
## 0.3.15-next.2
### Patch Changes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-azure-devops-backend",
"version": "0.3.15-next.2",
"version": "0.3.15",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -22,9 +22,9 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1-next.3",
"@backstage/config": "^1.0.2-next.0",
"@backstage/plugin-azure-devops-common": "^0.3.0-next.0",
"@backstage/backend-common": "^0.15.1",
"@backstage/config": "^1.0.2",
"@backstage/plugin-azure-devops-common": "^0.3.0",
"@types/express": "^4.17.6",
"azure-devops-node-api": "^11.0.1",
"express": "^4.17.1",
@@ -35,7 +35,7 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.19.0-next.3",
"@backstage/cli": "^0.19.0",
"@types/supertest": "^2.0.8",
"msw": "^0.47.0",
"supertest": "^6.1.6"