Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-05-03 09:38:51 +00:00
parent 624f90b6f1
commit 55da880bf9
185 changed files with 2762 additions and 730 deletions
+26
View File
@@ -1,5 +1,31 @@
# @backstage/plugin-search-react
## 0.2.0-next.1
### Minor Changes
- bdbe620797: **BREAKING**: `SearchContextProviderForStorybook` and `SearchApiProviderForStorybook` has been deleted. New mock implementation of the `SearchApi` introduced. If you need to mock the api we recommend you to do the following:
```tsx
import {
searchApiRef,
MockSearchApi,
SearchContextProvider,
} from '@backstage/plugin-search-react';
import { TestApiProvider } from '@backstage/test-utils';
<TestApiProvider apis={[[searchApiRef, new MockSearchApi()]]}>
<SearchContextProvider>
<Component />
</SearchContextProvider>
</TestApiProvider>;
```
### Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.0.2-next.0
## 0.1.1-next.0
### Patch Changes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-search-react",
"version": "0.1.1-next.0",
"version": "0.2.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -32,7 +32,7 @@
},
"dependencies": {
"@backstage/plugin-search-common": "^0.3.3",
"@backstage/core-plugin-api": "^1.0.1",
"@backstage/core-plugin-api": "^1.0.2-next.0",
"@backstage/version-bridge": "^1.0.1",
"react-use": "^17.3.2",
"@backstage/types": "^1.0.0"
@@ -42,8 +42,8 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/core-app-api": "^1.0.1",
"@backstage/test-utils": "^1.0.2-next.0",
"@backstage/core-app-api": "^1.0.2-next.0",
"@backstage/test-utils": "^1.1.0-next.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/jest-dom": "^5.10.1"