@backstage-community/plugin-azure-devops 0.23.0 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/alpha.d.ts +2 -3
- package/dist/index.d.ts +2 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage-community/plugin-azure-devops
|
|
2
2
|
|
|
3
|
+
## 0.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f9618c9: Backstage version bump to v1.46.2
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [f9618c9]
|
|
12
|
+
- @backstage-community/plugin-azure-devops-common@0.18.0
|
|
13
|
+
|
|
3
14
|
## 0.23.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
|
4
4
|
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
5
5
|
import * as react from 'react';
|
|
6
6
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
7
|
-
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
8
7
|
|
|
9
8
|
/** @alpha */
|
|
10
9
|
declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
|
|
@@ -13,11 +12,11 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
13
12
|
name: undefined;
|
|
14
13
|
config: {};
|
|
15
14
|
configInput: {};
|
|
16
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
15
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
17
16
|
inputs: {};
|
|
18
17
|
params: <TApi, TImpl extends TApi, TDeps extends {
|
|
19
18
|
[x: string]: unknown;
|
|
20
|
-
}>(params:
|
|
19
|
+
}>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
21
20
|
}>;
|
|
22
21
|
"entity-card:azure-devops/readme": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
23
22
|
kind: "entity-card";
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { Entity } from '@backstage/catalog-model';
|
|
|
7
7
|
import { ReactNode } from 'react';
|
|
8
8
|
import { ResultHighlight, IndexableDocument } from '@backstage/plugin-search-common';
|
|
9
9
|
import { SvgIconProps } from '@material-ui/core/SvgIcon';
|
|
10
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
10
11
|
|
|
11
12
|
/** @public */
|
|
12
13
|
type AllFilter = BaseFilter & {
|
|
@@ -147,7 +148,7 @@ declare const AzureDevOpsWikiArticleSearchResultListItem: (props: WikiArticleSea
|
|
|
147
148
|
declare const AzurePullRequestsIcon: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
148
149
|
|
|
149
150
|
/** @public */
|
|
150
|
-
declare const azureDevOpsApiRef:
|
|
151
|
+
declare const azureDevOpsApiRef: _backstage_frontend_plugin_api.ApiRef<AzureDevOpsApi>;
|
|
151
152
|
/** @public */
|
|
152
153
|
interface AzureDevOpsApi {
|
|
153
154
|
getGitTags(projectName: string, repoName: string, entityRef: string, host?: string, org?: string): Promise<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-azure-devops",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "azure-devops",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"test": "backstage-cli package test"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@backstage-community/plugin-azure-devops-common": "^0.
|
|
66
|
+
"@backstage-community/plugin-azure-devops-common": "^0.18.0",
|
|
67
67
|
"@backstage/catalog-model": "^1.7.6",
|
|
68
|
-
"@backstage/core-compat-api": "^0.5.
|
|
69
|
-
"@backstage/core-components": "^0.18.
|
|
70
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
68
|
+
"@backstage/core-compat-api": "^0.5.5",
|
|
69
|
+
"@backstage/core-components": "^0.18.4",
|
|
70
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
71
71
|
"@backstage/errors": "^1.2.7",
|
|
72
|
-
"@backstage/frontend-plugin-api": "^0.13.
|
|
73
|
-
"@backstage/plugin-catalog-react": "^1.21.
|
|
74
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
72
|
+
"@backstage/frontend-plugin-api": "^0.13.2",
|
|
73
|
+
"@backstage/plugin-catalog-react": "^1.21.4",
|
|
74
|
+
"@backstage/plugin-permission-react": "^0.4.39",
|
|
75
75
|
"@backstage/plugin-search-common": "^1.2.21",
|
|
76
|
-
"@backstage/plugin-search-react": "^1.10.
|
|
76
|
+
"@backstage/plugin-search-react": "^1.10.1",
|
|
77
77
|
"@material-ui/core": "^4.12.2",
|
|
78
78
|
"@material-ui/icons": "^4.9.1",
|
|
79
79
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
"react-use": "^17.2.4"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/cli": "^0.
|
|
86
|
-
"@backstage/dev-utils": "^1.1.
|
|
87
|
-
"@backstage/test-utils": "^1.7.
|
|
85
|
+
"@backstage/cli": "^0.35.1",
|
|
86
|
+
"@backstage/dev-utils": "^1.1.18",
|
|
87
|
+
"@backstage/test-utils": "^1.7.14",
|
|
88
88
|
"@testing-library/dom": "^10.0.0",
|
|
89
89
|
"@testing-library/jest-dom": "^6.0.0",
|
|
90
90
|
"@testing-library/react": "^15.0.0",
|