Skip to content

Releases: RoadieHQ/roadie-backstage-plugins

release-2025-07-24.3

24 Jul 15:43
24d4003
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Patch Changes

  • c3a96f6: Add default annotations to the eks cluster resource.

release-2025-07-24.2

24 Jul 13:20
152666b
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Patch Changes

  • 5dbdfea: Add support for filter annotation to LD Card

release-2025-07-24.1

24 Jul 07:49
3031b69
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Patch Changes

  • 92443a3: Wrap column configuration in memo to prevent rerenders

release-2025-07-24

24 Jul 07:09
9f6f400
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Patch Changes

  • b42dd5f: Modify details panel to be self-contained to limit unnecessary rerenders

release-2025-07-23.3

23 Jul 11:17
8c08f45
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Patch Changes

  • 6b542e1: Fix how the openseach domain template variable is provided.

release-2025-07-23.2

23 Jul 10:52
Compare
Choose a tag to compare

✔️ Checklist

  • Added tests for new functionality and regression tests for bug fixes
  • Added changeset (run yarn changeset in the root)
  • Screenshots of before and after attached (for UI changes)
  • Added or updated documentation (if applicable)

release-2025-07-18

18 Jul 13:04
f4b81ea
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Minor Changes

  • 3e8bc34: Improved support for Data Center by using a separate search endpoint

release-2025-07-16

16 Jul 10:51
d1a4826
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Major Changes

  • ab88aee: BREAKING Fixed an issue with backend plugin initialisation approach which required additional configuration for the end user.

    This fix allows plugin consumers to add the backend plugin using the new backend system, unfortunately, this breaks existing approaches as plugin consumers will have customised the backend plugin to respond on the incorrect/previous URL.

    Using v2 of the frontend (backstage-plugin-wiz) plugin requires v2 of the backend (plugin-wiz-backend) plugin.

    These changes are required to packages/backend/src/index.ts

    + // Install wiz backend plugin
    + backend.add(import('@roadiehq/plugin-wiz-backend'));
    - import wiz from './plugins/wiz';
    - // ...
    - async function main() {
    -   // ...
    -   const wizEnv = useHotMemoize(module, () => createEnv('wiz'));
    -
    -   const wizConfig = {
    -   clientId: config.getOptionalString('wiz.clientId'),
    -   clientSecret: config.getOptionalString('wiz.clientSecret'),
    -   tokenUrl: config.getOptionalString('wiz.tokenUrl'),
    -   apiUrl: config.getOptionalString('wiz.wizAPIUrl'),
    - };
    -
    -   const apiRouter = Router();
    -     if (wizConfig.enabled && wizConfig.clientId && wizConfig.clientSecret && wizConfig.tokenUrl && wizConfig.apiUrl) {
    -     router.use('/wiz-backend', await wiz(wizEnv));
    -   } await wiz(wizEnv));
    -   // ...
    - }

    And you can remove the previous plugin customisation file packages/backend/src/plugins/wiz.ts

@roadiehq/[email protected]

Major Changes

  • ab88aee: BREAKING Fixed an issue with backend plugin initialisation approach which required additional configuration for the end user.

    This fix allows plugin consumers to add the backend plugin using the new backend system, unfortunately, this breaks existing approaches as plugin consumers will have customised the backend plugin to respond on the incorrect/previous URL.

    Using v2 of the frontend (backstage-plugin-wiz) plugin requires v2 of the backend (plugin-wiz-backend) plugin.

    These changes are required to packages/backend/src/index.ts

    + // Install wiz backend plugin
    + backend.add(import('@roadiehq/plugin-wiz-backend'));
    - import wiz from './plugins/wiz';
    - // ...
    - async function main() {
    -   // ...
    -   const wizEnv = useHotMemoize(module, () => createEnv('wiz'));
    -
    -   const wizConfig = {
    -   clientId: config.getOptionalString('wiz.clientId'),
    -   clientSecret: config.getOptionalString('wiz.clientSecret'),
    -   tokenUrl: config.getOptionalString('wiz.tokenUrl'),
    -   apiUrl: config.getOptionalString('wiz.wizAPIUrl'),
    - };
    -
    -   const apiRouter = Router();
    -     if (wizConfig.enabled && wizConfig.clientId && wizConfig.clientSecret && wizConfig.tokenUrl && wizConfig.apiUrl) {
    -     router.use('/wiz-backend', await wiz(wizEnv));
    -   } await wiz(wizEnv));
    -   // ...
    - }

    And you can remove the previous plugin customisation file packages/backend/src/plugins/wiz.ts

[email protected]

Patch Changes

[email protected]

Patch Changes

release-2025-07-14.1

14 Jul 09:03
a914dd6
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Patch Changes

  • fd1e7e6: Remove private flag from the plugin to publish

release-2025-07-14

14 Jul 07:52
5605353
Compare
Choose a tag to compare

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@roadiehq/[email protected]

Major Changes