Skip to content

Commit

Permalink
Feature/backstage version 1.29.x upgrade (tduniec#30)
Browse files Browse the repository at this point in the history
* feat: plugins dependencies update

Signed-off-by: Javier Prieto <[email protected]>

* chore: all plugins version and changelog bump

Signed-off-by: Javier Prieto <[email protected]>

* update README.md of catalog processor

Signed-off-by: tduniec <[email protected]>

---------

Signed-off-by: Javier Prieto <[email protected]>
Signed-off-by: tduniec <[email protected]>
Co-authored-by: tduniec <[email protected]>
  • Loading branch information
ionSurf and tduniec authored Jul 26, 2024
1 parent 747b2b0 commit b6bab1d
Show file tree
Hide file tree
Showing 10 changed files with 706 additions and 873 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tduniec/backstage-plugin-catalog-backend-module-time-saver-processor

## 1.1.0

### Minor Changes

- Provided dependenceis upgrade to match Backstage 1.29 version

## 1.0.0

### Major Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ which may be leveraged by the Analytics API.
env: PluginEnvironment,
): Promise<Router> {
const builder = CatalogBuilder.create(env);
+ builder.addProcessor(new TimeSaverProcessor());
+ builder.addProcessor(new TimeSaverProcessor(logger));
// ...
return router;
}
Expand Down
10 changes: 5 additions & 5 deletions plugins/catalog-backend-module-time-saver-processor/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@tduniec/backstage-plugin-catalog-backend-module-time-saver-processor",
"description": "The time-saver-processor backend module for the catalog plugin.",
"version": "1.0.0",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"version": "1.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down Expand Up @@ -32,8 +32,8 @@
"@backstage/types": "^1.1.1"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.4.3",
"@backstage/cli": "^0.26.9"
"@backstage/backend-test-utils": "^0.4.4",
"@backstage/cli": "^0.26.11"
},
"files": [
"dist"
Expand Down
6 changes: 6 additions & 0 deletions plugins/time-saver-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tduniec/backstage-plugin-time-saver-backend

## 2.4.0

### Minor Changes

- Provided dependenceis upgrade to match Backstage 1.29 version

## 2.3.0

### Minor Changes
Expand Down
18 changes: 9 additions & 9 deletions plugins/time-saver-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tduniec/backstage-plugin-time-saver-backend",
"version": "2.3.0",
"version": "2.4.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -33,12 +33,12 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "^0.23.1",
"@backstage/backend-defaults": "^0.3.3",
"@backstage/backend-plugin-api": "^0.6.20",
"@backstage/backend-tasks": "^0.5.25",
"@backstage/backend-common": "^0.23.3",
"@backstage/backend-defaults": "^0.4.1",
"@backstage/backend-plugin-api": "^0.7.0",
"@backstage/backend-tasks": "^0.5.27",
"@backstage/config": "^1.2.0",
"@backstage/plugin-permission-common": "^0.7.14",
"@backstage/plugin-permission-common": "^0.8.0",
"@mui/system": "^5.2.3",
"@types/express": "*",
"base64-js": "^1.5.1",
Expand All @@ -51,9 +51,9 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.4.3",
"@backstage/cli": "^0.26.9",
"@backstage/test-utils": "^1.5.6",
"@backstage/backend-test-utils": "^0.4.4",
"@backstage/cli": "^0.26.11",
"@backstage/test-utils": "^1.5.9",
"@testing-library/dom": "^9.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
Expand Down
6 changes: 6 additions & 0 deletions plugins/time-saver-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tduniec/backstage-plugin-time-saver-common

## 0.4.0

### Minor Changes

- Provided dependenceis upgrade to match Backstage 1.29 version

## 0.3.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions plugins/time-saver-common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tduniec/backstage-plugin-time-saver-common",
"description": "Common functionalities for the time-saver plugin",
"version": "0.3.0",
"version": "0.4.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -36,10 +36,10 @@
},
"dependencies": {
"@backstage/core-plugin-api": "^1.9.3",
"@backstage/plugin-permission-common": "^0.7.14"
"@backstage/plugin-permission-common": "^0.8.0"
},
"devDependencies": {
"@backstage/cli": "^0.26.9"
"@backstage/cli": "^0.26.11"
},
"files": [
"dist"
Expand Down
6 changes: 6 additions & 0 deletions plugins/time-saver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tduniec/backstage-plugin-time-saver

## 1.3.0

### Minor Changes

- Provided dependenceis upgrade to match Backstage 1.29 version

## 1.2.0

### Minor Changes
Expand Down
12 changes: 6 additions & 6 deletions plugins/time-saver/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tduniec/backstage-plugin-time-saver",
"version": "1.2.0",
"version": "1.3.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -34,7 +34,7 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/core-components": "^0.14.8",
"@backstage/core-components": "^0.14.9",
"@backstage/core-plugin-api": "^1.9.3",
"@backstage/theme": "^0.5.6",
"@material-ui/core": "^4.9.13",
Expand All @@ -56,10 +56,10 @@
"react": "^16.13.1 || ^17.0.0 || 18.3.1"
},
"devDependencies": {
"@backstage/cli": "^0.26.9",
"@backstage/core-app-api": "^1.12.6",
"@backstage/dev-utils": "^1.0.33",
"@backstage/test-utils": "^1.5.6",
"@backstage/cli": "^0.26.11",
"@backstage/core-app-api": "^1.14.1",
"@backstage/dev-utils": "^1.0.36",
"@backstage/test-utils": "^1.5.9",
"@backstage/version-bridge": "^1.0.8",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.3.1",
Expand Down
Loading

0 comments on commit b6bab1d

Please sign in to comment.