Merge branch 'master' into feat/vault-allow-override-secret-engine
This commit is contained in:
@@ -1,5 +1,62 @@
|
||||
# @backstage/plugin-vault
|
||||
|
||||
## 0.1.18-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 8cec7664e146: Removed `@types/node` dependency
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.13.5-next.2
|
||||
- @backstage/core-plugin-api@1.6.0-next.2
|
||||
- @backstage/plugin-catalog-react@1.8.4-next.2
|
||||
- @backstage/catalog-model@1.4.2-next.1
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/theme@0.4.1
|
||||
|
||||
## 0.1.18-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.8.4-next.1
|
||||
- @backstage/core-components@0.13.5-next.1
|
||||
- @backstage/catalog-model@1.4.2-next.0
|
||||
- @backstage/core-plugin-api@1.6.0-next.1
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/theme@0.4.1
|
||||
|
||||
## 0.1.17-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 482bb5c0bbf8: Moved `@types/react` to be a regular dependency
|
||||
- Updated dependencies
|
||||
- @backstage/core-plugin-api@1.6.0-next.0
|
||||
- @backstage/core-components@0.13.5-next.0
|
||||
- @backstage/catalog-model@1.4.1
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/theme@0.4.1
|
||||
- @backstage/plugin-catalog-react@1.8.3-next.0
|
||||
|
||||
## 0.1.15
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.13.4
|
||||
- @backstage/plugin-catalog-react@1.8.1
|
||||
- @backstage/core-plugin-api@1.5.3
|
||||
- @backstage/catalog-model@1.4.1
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/theme@0.4.1
|
||||
|
||||
## 0.1.15-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@1.8.1-next.1
|
||||
|
||||
## 0.1.15-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -8,9 +8,10 @@
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
import { BackstagePlugin } from '@backstage/core-plugin-api';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
import { JSX as JSX_2 } from 'react';
|
||||
|
||||
// @public
|
||||
export const EntityVaultCard: () => JSX.Element;
|
||||
export const EntityVaultCard: () => JSX_2.Element;
|
||||
|
||||
// @public
|
||||
export function isVaultAvailable(entity: Entity): boolean;
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
apiVersion: backstage.io/v1alpha1
|
||||
kind: Component
|
||||
metadata:
|
||||
name: backstage-plugin-vault
|
||||
title: '@backstage/plugin-vault'
|
||||
description: A Backstage plugin that integrates towards Vault
|
||||
spec:
|
||||
lifecycle: experimental
|
||||
type: backstage-frontend-plugin
|
||||
owner: maintainers
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-vault",
|
||||
"description": "A Backstage plugin that integrates towards Vault",
|
||||
"version": "0.1.15-next.0",
|
||||
"version": "0.1.18-next.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -23,6 +23,7 @@
|
||||
"backstage",
|
||||
"vault"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"start": "backstage-cli package start",
|
||||
"build": "backstage-cli package build",
|
||||
@@ -42,6 +43,7 @@
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
"@material-ui/lab": "4.0.0-alpha.61",
|
||||
"@types/react": "^16.13.1 || ^17.0.0",
|
||||
"react-use": "^17.2.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
@@ -58,8 +60,6 @@
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
"@testing-library/user-event": "^14.0.0",
|
||||
"@types/node": "*",
|
||||
"@types/react": "^16.13.1 || ^17.0.0",
|
||||
"msw": "^1.0.0"
|
||||
},
|
||||
"files": [
|
||||
|
||||
Reference in New Issue
Block a user