Skip to content

Commit 4c4f7a1

Browse files
committed
move to community plugins
1 parent d42bca6 commit 4c4f7a1

File tree

4 files changed

+72
-2
lines changed

4 files changed

+72
-2
lines changed

.changeset/violet-grapes-fetch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@roadiehq/backstage-plugin-bitbucket-pullrequest': patch
3+
---
4+
5+
Deprecate plugin to move to the "backstage/community-plugins" repo
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Deprecation Notice
2+
3+
This plugin has been deprecated in favor of the Backstage Community plugin: `@backstage-community/plugin-bitbucket-pull-requests`.
4+
5+
## Migration Guide
6+
7+
1. Uninstall this package:
8+
9+
```bash
10+
yarn remove @roadiehq/backstage-plugin-bitbucket-pullrequest
11+
```
12+
13+
2. Install the community plugin:
14+
15+
```bash
16+
yarn add @backstage-community/plugin-bitbucket-pull-requests
17+
```
18+
19+
3. Update your imports in `packages/app/src/components/catalog/EntityPage.tsx`:
20+
```diff
21+
- import { EntityBitbucketPullRequestsContent } from '@roadiehq/backstage-plugin-bitbucket-pullrequest';
22+
+ import { EntityBitbucketPullRequestsContent } from '@backstage-community/plugin-bitbucket-pull-requests';
23+
```
24+
25+
No other changes are needed.
26+
27+
## Why was this deprecated?
28+
29+
This plugin has been migrated to the Backstage Community Plugins repository to ensure better maintenance and broader community support. The community version offers the same functionality and is actively maintained by the Backstage community.
30+
31+
## Need Help?
32+
33+
For issues with the new plugin, please file an issue in the [Backstage Community Plugins repository](https://github.com/backstage/community-plugins).

plugins/frontend/backstage-plugin-bitbucket-pullrequest/README.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
1-
# Bitbucket PullRequest Plugin for Backstage
1+
# ⚠️ Deprecated: Bitbucket PullRequest Plugin for Backstage
2+
3+
> **This plugin is deprecated in favor of the Backstage Community plugin: `@backstage-community/plugin-bitbucket-pull-requests`**
4+
5+
## Migration Guide
6+
7+
To migrate from `@roadiehq/backstage-plugin-bitbucket-pullrequest` to `@backstage-community/plugin-bitbucket-pull-requests`:
8+
9+
1. Uninstall the Roadie plugin:
10+
11+
```bash
12+
yarn remove @roadiehq/backstage-plugin-bitbucket-pullrequest
13+
```
14+
15+
2. Install the Backstage Community plugin:
16+
17+
```bash
18+
yarn add @backstage-community/plugin-bitbucket-pull-requests
19+
```
20+
21+
3. Update your imports in `packages/app/src/components/catalog/EntityPage.tsx`:
22+
23+
```diff
24+
- import { EntityBitbucketPullRequestsContent } from '@roadiehq/backstage-plugin-bitbucket-pullrequest';
25+
+ import { EntityBitbucketPullRequestsContent } from '@backstage-community/plugin-bitbucket-pull-requests';
26+
```
27+
28+
No other changes are needed.
29+
30+
---
31+
32+
## (Legacy) Bitbucket PullRequest Plugin for Backstage
233

334
![list of pull requests in the Bitbucket repo](./docs/bitbucketprimg.png)
435

@@ -72,4 +103,4 @@ metadata:
72103
73104
---
74105
75-
Roadie gives you a hassle-free, fully customisable SaaS Backstage. Find out more here: [https://roadie.io](https://roadie.io).
106+
Roadie gives you a hassle-free, fully customizable SaaS Backstage. Find out more here: [https://roadie.io](https://roadie.io).

plugins/frontend/backstage-plugin-bitbucket-pullrequest/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@roadiehq/backstage-plugin-bitbucket-pullrequest",
33
"version": "2.1.0",
4+
"deprecated": "This package has been deprecated in favor of @backstage-community/plugin-bitbucket-pull-requests. See README for migration instructions.",
45
"main": "src/index.ts",
56
"types": "src/index.ts",
67
"license": "Apache-2.0",

0 commit comments

Comments
 (0)