-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded to Backstage core 1.22.1, support for React v18... (#204)
Upgraded to Backstage core 1.22.1, support for React v18, Node 20, Cypress e2e test migrated to [Playwright](https://playwright.dev/) and more. BREAKING CHANGES: - `EntityScoreExtended` new required property `id:string` added to fullfill the Material UI Table row ID needs. Fix your clients by providing e.g. `stringifyEntityRef(score.entityRef)` as a value for the id.
- Loading branch information
Showing
28 changed files
with
11,098 additions
and
8,382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
'@oriflame/backstage-plugin-score-card': minor | ||
--- | ||
|
||
Upgraded to Backstage core 1.22.1, support for React v18, Node 20, Cypress e2e test migrated to [Playwright](https://playwright.dev/) and more. | ||
|
||
BREAKING CHANGES: | ||
|
||
- `EntityScoreExtended` new required property `id:string` added to fullfill the Material UI Table row ID needs. Fix your clients by providing e.g. `stringifyEntityRef(score.entityRef)` as a value for the id. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"version": "1.10.1" | ||
"version": "1.22.1" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,31 +6,31 @@ | |
"[email protected]", | ||
"[email protected]" | ||
], | ||
"version": "0.1.19", | ||
"version": "0.2.0", | ||
"private": true, | ||
"engines": { | ||
"node": "14 || 16" | ||
"node": "18 || 20" | ||
}, | ||
"scripts": { | ||
"dev": "concurrently \"yarn start\" \"yarn start-backend\" \"http-server -p 8090 --cors 2>&1\"", | ||
"start": "yarn workspace app start", | ||
"start-backend": "yarn workspace backend start", | ||
"build": "backstage-cli repo build --all", | ||
"tsc": "tsc", | ||
"tsc:full": "backstage-cli clean && tsc --skipLibCheck true --incremental false", | ||
"clean": "backstage-cli clean && lerna run clean", | ||
"diff": "lerna run diff --", | ||
"test": "backstage-cli test", | ||
"test:all": "lerna run test -- --coverage", | ||
"test:e2e": "yarn workspace app cypress run", | ||
"tsc:full": "backstage-cli repo clean && tsc --skipLibCheck true --incremental false", | ||
"clean": "backstage-cli repo clean", | ||
"test": "backstage-cli repo test", | ||
"test:all": "backstage-cli repo test --coverage", | ||
"test:e2e": "tsc && playwright test", | ||
"fix": "backstage-cli repo fix", | ||
"lint": "backstage-cli repo lint --since origin/main", | ||
"lint:all": "backstage-cli repo lint", | ||
"lint:type-deps": "node scripts/check-type-dependencies.js", | ||
"create-plugin": "backstage-cli create-plugin --scope ori --no-private", | ||
"remove-plugin": "backstage-cli remove-plugin", | ||
"release": "node scripts/prepare-release.js && changeset version && yarn diff --yes && yarn prettier --write '{packages,plugins}/*/{package.json,CHANGELOG.md}' '.changeset/*.json' && yarn install", | ||
"lint:type-deps": "backstage-repo-tools type-deps", | ||
"new": "backstage-cli new --scope ori --baseVersion 0.0.0 --no-private", | ||
"create-plugin": "echo \"use 'yarn new' instead\"", | ||
"release": "node scripts/prepare-release.js && changeset version && yarn prettier --write '{packages,plugins}/*/{package.json,CHANGELOG.md}' '.changeset/*.json' && yarn install --no-immutable", | ||
"prettier:check": "prettier --check .", | ||
"lerna": "lerna", | ||
"prettier:fix": "prettier --write .", | ||
"lock:check": "yarn-lock-check" | ||
}, | ||
"workspaces": { | ||
|
@@ -40,26 +40,29 @@ | |
] | ||
}, | ||
"resolutions": { | ||
"@types/react": "^17", | ||
"@types/react-dom": "^17", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18", | ||
"dockerode": "3.3.4", | ||
"@types/dockerode": "3.3.9" | ||
"@types/dockerode": "3.3.9", | ||
"jest-environment-jsdom": "30.0.0-alpha.2" | ||
}, | ||
"dependencies": { | ||
"@changesets/cli": "2.25.2" | ||
"@changesets/cli": "2.25.2", | ||
"jest-environment-jsdom": "30.0.0-alpha.2" | ||
}, | ||
"devDependencies": { | ||
"@backstage/cli": "^0.22.1", | ||
"@backstage/cli": "^0.25.1", | ||
"@backstage/e2e-test-utils": "^0.1.0", | ||
"@backstage/repo-tools": "^0.5.2", | ||
"@spotify/prettier-config": "14.1.4", | ||
"@types/webpack": "5.28.0", | ||
"concurrently": "7.5.0", | ||
"eslint-plugin-notice": "0.9.10", | ||
"lerna": "5.6.2", | ||
"prettier": "2.7.1", | ||
"typescript": "4.8.4", | ||
"@types/react": "17.0.52", | ||
"react": "17.0.2", | ||
"react-dom": "17.0.2" | ||
"typescript": "~5.2.0", | ||
"@types/react": "^18", | ||
"react": "^18.0.0", | ||
"@types/react-dom": "^18" | ||
}, | ||
"prettier": "@spotify/prettier-config", | ||
"lint-staged": { | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.