Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 7 additions & 0 deletions workspaces/lightspeed/.changeset/bright-waves-flow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@red-hat-developer-hub/backstage-plugin-lightspeed': minor
---

Graduate the New Frontend System (NFS) plugin from the `./alpha` export to the primary `./` entry point. Legacy (OFS) component exports are still available from the main path (deprecated, will be removed in a future release) and also accessible at `./legacy`. Translations remain at `./alpha`.

Existing OFS dynamic plugin configurations continue to work without changes — `module: Legacy` is advised but not mandatory.
2 changes: 0 additions & 2 deletions workspaces/lightspeed/app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ app:
config:
availableLanguages: ['en', 'de', 'es', 'fr', 'it', 'ja']
defaultLanguage: 'en'
- nav-item:user-settings: false
- nav-item:search: false
- nav-item:catalog:
config:
title: 'Home'
Expand Down
4 changes: 2 additions & 2 deletions workspaces/lightspeed/e2e-tests/pages/LightspeedPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,8 @@ function getWelcomeHeader(t: LightspeedMessages): string {
}

const buttonGroup = `
- button
- text: ''`;
- button /.+/
- text: /.+/`;

const buttonCounts: Record<DisplayMode, number> = {
Overlay: 1,
Expand Down
8 changes: 7 additions & 1 deletion workspaces/lightspeed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
"typescript": "~5.8.0"
},
"dependencies": {
"@react-stately/layout": "^3.6.0",
"@react-stately/overlays": "^3.6.0",
Comment thread
karthikjeeyar marked this conversation as resolved.
"react": "^18.3.1"
},
"resolutions": {
Expand All @@ -74,9 +76,13 @@
"@types/react-dom": "^18",
"refractor@npm:3.6.0/prismjs": "^1.30.0",
"@backstage/frontend-plugin-api": "0.15.1",
"@backstage/plugin-catalog": "2.0.1",
Comment thread
karthikjeeyar marked this conversation as resolved.
"infinispan": "0.13.0",
"@protobufjs/inquire": "1.1.0",
"langsmith": "^0.6.0"
"langsmith": "^0.6.0",
"react-router": "6.30.4",
"react-router-dom": "6.30.4",
"@remix-run/router": "1.23.3"
Comment thread
karthikjeeyar marked this conversation as resolved.
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion workspaces/lightspeed/packages/app-legacy/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import { githubAuthApiRef } from '@backstage/core-plugin-api';
import {
LightspeedPage,
LightspeedDrawerProvider,
} from '@red-hat-developer-hub/backstage-plugin-lightspeed';
} from '@red-hat-developer-hub/backstage-plugin-lightspeed/legacy';
import { RbacPage } from '@backstage-community/plugin-rbac';

const LightspeedRedirect = () => {
Expand Down
2 changes: 1 addition & 1 deletion workspaces/lightspeed/packages/app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
lightspeedFABModule,
lightspeedRedirectModule,
lightspeedTranslationsModule,
} from '@red-hat-developer-hub/backstage-plugin-lightspeed/alpha';
} from '@red-hat-developer-hub/backstage-plugin-lightspeed';
import { rhdhThemeModule } from '@red-hat-developer-hub/backstage-plugin-theme/alpha';

import { navModule } from './modules/nav';
Expand Down
Loading
Loading