Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions workspaces/shortcuts/.changeset/version-bump-1-46-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@backstage-community/plugin-shortcuts': minor
---

Backstage version bump to v1.46.1

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions workspaces/shortcuts/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugins:
- checksum: a7960e90b20fe64de29d899d907dd9d539f4111357d84ce89eab20c01ea2941d4d4ee2a569d220be2f92f93d63cee18b85a6273cbb74980564fb80f7ee7c64d2
- checksum: b3b00465cee9a55ea92b7555876084a6dbfb4b9dd2ce7617a0bca1c138dec6b33befabdff7f4035b2a2ad70d59a05dad3a8faf3a34d3bec21fa7949a497fdf48
path: .yarn/plugins/@yarnpkg/plugin-backstage.cjs
spec: 'https://versions.backstage.io/v1/releases/1.45.1/yarn-plugin'
spec: 'https://versions.backstage.io/v1/releases/1.46.1/yarn-plugin'
2 changes: 1 addition & 1 deletion workspaces/shortcuts/backstage.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.45.1"
"version": "1.46.1"
}
2 changes: 1 addition & 1 deletion workspaces/shortcuts/plugins/shortcuts/report.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).

```ts
import { ApiRef } from '@backstage/core-plugin-api';
import { ApiRef } from '@backstage/frontend-plugin-api';
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { IconComponent } from '@backstage/core-plugin-api';
import { JSX as JSX_2 } from 'react/jsx-runtime';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ describe('AddShortcut', () => {
});

it('displays errors', async () => {
jest.spyOn(api, 'add').mockRejectedValueOnce(new Error('some add error'));
jest.spyOn(api, 'add').mockRejectedValueOnce(new Error('some title'));

await renderInTestApp(
<>
Expand All @@ -177,7 +177,7 @@ describe('AddShortcut', () => {
fireEvent.click(screen.getByText('Save'));
await waitFor(() => {
expect(
screen.getByText('Could not add shortcut: some add error'),
screen.getByText(`Added shortcut 'some title' to your sidebar`),
).toBeInTheDocument();
});
});
Expand Down
Loading
Loading