Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.2.x] feat: add the scaffolder relation processor plugin #1303

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
2 changes: 2 additions & 0 deletions dynamic-plugins.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -864,3 +864,5 @@ plugins:
maskIP: true # prevents IP addresses from being sent if true
testMode: ${SEGMENT_TEST_MODE} # prevents data from being sent if true

- package: ./dynamic-plugins/dist/janus-idp-backstage-plugin-catalog-backend-module-scaffolder-relation-processor-dynamic
disabled: false
3 changes: 2 additions & 1 deletion dynamic-plugins/imports/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"@janus-idp/backstage-scaffolder-backend-module-quay": "1.4.6",
"@janus-idp/backstage-scaffolder-backend-module-regex": "1.4.6",
"@janus-idp/backstage-scaffolder-backend-module-servicenow": "1.4.7",
"@janus-idp/backstage-scaffolder-backend-module-sonarqube": "1.4.6"
"@janus-idp/backstage-scaffolder-backend-module-sonarqube": "1.4.6",
"@janus-idp/backstage-plugin-catalog-backend-module-scaffolder-relation-processor": "1.0.1"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test.describe('dynamic-plugins-info UI tests', () => {
// what shows up in the list depends on how the instance is configured so
// let's check for the main basic elements of the component to verify the
// mount point is working as expected
await uiHelper.verifyText('Plugins (53)');
await uiHelper.verifyText('Plugins (54)');
await uiHelper.verifyText('5 rows');
await uiHelper.verifyColumnHeading(
['Name', 'Version', 'Enabled', 'Preinstalled', 'Role'],
Expand Down
Loading