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

fix(orchestrator): allows serving the editor envelope in disconnected environments #1450

Merged
merged 1 commit into from
Apr 18, 2024

Conversation

jkilzi
Copy link
Member

@jkilzi jkilzi commented Apr 4, 2024

This PR allows serving the editor envelope in disconnected environments.
I created a new private package called orchestrator-swf-editor-envelope. It contains the source files for producing the 3 different editors (combined, text-only, or diagram). This package is not meant to be published, and must not be consumed as a dependency by the orchestrator-backend. It only produces files upon build, once it is done with that it attempts to copy the produced asset files into the the orchestrator-backend static directory. THE ONLY PACKAGE THAT WILL BE PUBLISHED EVENTUALLY IS THE orchestrator-backend.
Additional instructions can be found inside the package's readme file.

Note: PR reviewer, please note that all the files in plugins/orchestrator-backend/static/generated/** are automatically generated and MUST be under version control.

Addresses:

@jkilzi jkilzi requested review from a team as code owners April 4, 2024 22:48
@openshift-ci openshift-ci bot requested review from batzionb and caponetto April 4, 2024 22:48
@batzionb
Copy link
Contributor

batzionb commented Apr 9, 2024

@jkilzi
Can you please elaborate on the reasons for the changes in yarn.lock?

@jkilzi
Copy link
Member Author

jkilzi commented Apr 9, 2024 via email

@jkilzi
Copy link
Member Author

jkilzi commented Apr 16, 2024

@kadel do you know maybe how I can tell SonarCloud to ignore all files under plugins/orchestrator-backend/static/generated/**? These are generated files that need to be checked in.

@batzionb
Copy link
Contributor

@jkilzi
I checked out the PR
I tested it on backstage-showcase locally
Issue is once you run "export-dynamic" the name of the package changes to
@janus-idp/backstage-plugin-orchestrator-backend-dynamic
In downstream or private repo also the scope is different
So this line fails:
https://github.com/jkilzi/janus-idp-backstage-plugins/blob/bugs/FLPATH-889/plugins/orchestrator-backend/src/service/router.ts#L62
express.static(
resolvePackagePath(
'@janus-idp/backstage-plugin-orchestrator-backend',
'static',
),
),
If there's no "clean" way to get the package name in runtime we will add a "post export-dynamic" script that replaces overwrites this code
The bigger issue though is that even if the package is overriten, for some reason it fails to read the editor.path config value
It gives this warning:
Failed to read configuration value at 'orchestrator.editor.path' as it is not visible. See https://backstage.io/docs/conf/defining#visibility for instructions on how to make it visible.
So it always goes back to the default.
The visibility setting of the config looks fine, it requires further investigation
We can submit this PR as an initial step

@jkilzi
Copy link
Member Author

jkilzi commented Apr 18, 2024

@jkilzi I checked out the PR I tested it on backstage-showcase locally Issue is once you run "export-dynamic" the name of the package changes to @janus-idp/backstage-plugin-orchestrator-backend-dynamic In downstream or private repo also the scope is different So this line fails: https://github.com/jkilzi/janus-idp-backstage-plugins/blob/bugs/FLPATH-889/plugins/orchestrator-backend/src/service/router.ts#L62 express.static( resolvePackagePath( '@janus-idp/backstage-plugin-orchestrator-backend', 'static', ), ), If there's no "clean" way to get the package name in runtime we will add a "post export-dynamic" script that replaces overwrites this code The bigger issue though is that even if the package is overriten, for some reason it fails to read the editor.path config value It gives this warning: Failed to read configuration value at 'orchestrator.editor.path' as it is not visible. See https://backstage.io/docs/conf/defining#visibility for instructions on how to make it visible. So it always goes back to the default. The visibility setting of the config looks fine, it requires further investigation We can submit this PR as an initial step

Understood. I'll change the code in order to read the package's name from its package.json.
Regarding the orchestrator.editor.path, this settings should go into the app-config YAML inside the dynamic plugin IIRC.

@openshift-ci openshift-ci bot removed the lgtm label Apr 18, 2024
@openshift-ci openshift-ci bot added the lgtm label Apr 18, 2024
@openshift-ci openshift-ci bot removed the lgtm label Apr 18, 2024
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.3.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.3.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.3.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.9.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.16.5](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.10.7](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.3.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.5.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.2.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.7](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [3.8.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [3.6.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.6.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.17.7](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [2.7.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-25)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.1.2](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-30)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* checkPluginVersion.sh bump plugins for 1.2.0 release ([janus-idp#1511](janus-idp#1511)) ([73c6588](janus-idp@73c6588))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **feedback:** add support for jira cloud instance ([janus-idp#1582](janus-idp#1582)) ([5425e54](janus-idp@5425e54)), closes [janus-idp#1543](janus-idp#1543)
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))
* **ui:** remove extra inline style ([janus-idp#1548](janus-idp#1548)) ([4f38030](janus-idp@4f38030))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [3.6.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-30)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **feedback:** add support for jira cloud instance ([janus-idp#1582](janus-idp#1582)) ([5425e54](janus-idp@5425e54)), closes [janus-idp#1543](janus-idp#1543)
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))
* **ui:** remove extra inline style ([janus-idp#1548](janus-idp#1548)) ([4f38030](janus-idp@4f38030))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))

### Other changes

* **cli:** new `--in-place`/`--no-in-place` option to the `export-dynamic-plugin` CLI command to allow exporting to `dist-dynamic` (when value is `false`). ([janus-idp#1584](janus-idp#1584)) ([4b5cc40](janus-idp@4b5cc40))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.19.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-30)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **feedback:** add support for jira cloud instance ([janus-idp#1582](janus-idp#1582)) ([5425e54](janus-idp@5425e54)), closes [janus-idp#1543](janus-idp#1543)
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))
* **ui:** remove extra inline style ([janus-idp#1548](janus-idp#1548)) ([4f38030](janus-idp@4f38030))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))

### Other changes

* **cli:** new `--in-place`/`--no-in-place` option to the `export-dynamic-plugin` CLI command to allow exporting to `dist-dynamic` (when value is `false`). ([janus-idp#1584](janus-idp#1584)) ([4b5cc40](janus-idp@4b5cc40))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-30)

### Features

* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))

### Bug Fixes

* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **feedback:** add support for jira cloud instance ([janus-idp#1582](janus-idp#1582)) ([5425e54](janus-idp@5425e54)), closes [janus-idp#1543](janus-idp#1543)
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))
* **ui:** remove extra inline style ([janus-idp#1548](janus-idp#1548)) ([4f38030](janus-idp@4f38030))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))

### Other changes

* **cli:** new `--in-place`/`--no-in-place` option to the `export-dynamic-plugin` CLI command to allow exporting to `dist-dynamic` (when value is `false`). ([janus-idp#1584](janus-idp#1584)) ([4b5cc40](janus-idp@4b5cc40))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.4.2](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-05-09)

### ⚠ BREAKING CHANGES

* **ocm:** add basic permissions to ocm backend plugin (janus-idp#1528)

### Features

* **argocd:** add argocd deployment lifecycle and summary component ([janus-idp#1540](janus-idp#1540)) ([4c7c533](janus-idp@4c7c533))
* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **kiali:** add card for resources  ([janus-idp#1565](janus-idp#1565)) ([1e727aa](janus-idp@1e727aa))
* **ocm:** add basic permissions to ocm backend plugin ([janus-idp#1528](janus-idp#1528)) ([c28d564](janus-idp@c28d564))
* **orchestrator:** add ability to re-trigger workflow in error state ([janus-idp#1624](janus-idp#1624)) ([8709a37](janus-idp@8709a37))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **orchestrator:** make the internal sonata podman compatible ([janus-idp#1612](janus-idp#1612)) ([e4e528e](janus-idp@e4e528e))
* **rbac:** add support for the new backend services ([janus-idp#1607](janus-idp#1607)) ([2892709](janus-idp@2892709))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))
* **rbac:** support for adding conditional permissions ([janus-idp#1588](janus-idp#1588)) ([2042244](janus-idp@2042244))
* **scaffolder:** create custom action for scaffolder templates ([janus-idp#1567](janus-idp#1567)) ([e30701e](janus-idp@e30701e))

### Bug Fixes

* **argocd:** fix argocd configurations visibility ([janus-idp#1618](janus-idp#1618)) ([ade677f](janus-idp@ade677f))
* **argocd:** fix sonarcloud lint warnings in argocd plugin ([janus-idp#1620](janus-idp#1620)) ([66d3763](janus-idp@66d3763))
* **cli:** add `resolve.fallback` for node dependencies in the `export-dynamic-plugin` CLI for frontend plugins. ([janus-idp#1590](janus-idp#1590)) ([e860c3b](janus-idp@e860c3b))
* **cli:** allow exporting dynamic plugins from `frontend-plugin-module` packages. ([janus-idp#1593](janus-idp#1593)) ([55508ba](janus-idp@55508ba))
* **cli:** allow retrieving scalprum config from an external file in `export-dynamic-plugin`. ([janus-idp#1598](janus-idp#1598)) ([889be7f](janus-idp@889be7f))
* **cli:** completely removing the requirement for `app-config` when exporting fronted plugins to dynamic. ([janus-idp#1603](janus-idp#1603)) ([7fb243a](janus-idp@7fb243a))
* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **cli:** remove the requirement for `app-config` when exporting fronted plugins to dynamic. ([janus-idp#1592](janus-idp#1592)) ([577efff](janus-idp@577efff))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **feedback:** add support for jira cloud instance ([janus-idp#1582](janus-idp#1582)) ([5425e54](janus-idp@5425e54)), closes [janus-idp#1543](janus-idp#1543)
* **kiali:** remove IstioConfig extra, Fix links and add kiali control ([janus-idp#1452](janus-idp#1452)) ([51a35f0](janus-idp@51a35f0))
* **kiali:** remove kiali-common from package. ([janus-idp#1586](janus-idp#1586)) ([b1748a4](janus-idp@b1748a4))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **ocm:** update ocm frontend plugin readme ([janus-idp#1611](janus-idp#1611)) ([9960cc0](janus-idp@9960cc0))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **orchestrator:** disable sorting ID column in workflow runs table ([janus-idp#1595](janus-idp#1595)) ([4d4875e](janus-idp@4d4875e))
* **orchestrator:** disabled MUI table thirdSortClick ([janus-idp#1614](janus-idp#1614)) ([5e541bd](janus-idp@5e541bd))
* **rbac:** hide frontend when permission framework was disabled ([janus-idp#1493](janus-idp#1493)) ([5aa012f](janus-idp@5aa012f))
* **rbac:** implement ability to disable rbac-backend plugin ([janus-idp#1501](janus-idp#1501)) ([6367965](janus-idp@6367965))
* sync lockfile ([janus-idp#1617](janus-idp#1617)) ([de7393d](janus-idp@de7393d))
* **ui:** remove extra inline style ([janus-idp#1548](janus-idp#1548)) ([4f38030](janus-idp@4f38030))

### Documentation

* **kiali:** update rhdh docs ([janus-idp#1621](janus-idp#1621)) ([7087cba](janus-idp@7087cba))
* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
* **servicenow:** fix typo in the service now documentation ([janus-idp#1596](janus-idp#1596)) ([9de4ff6](janus-idp@9de4ff6))

### Other changes

* **argocd:** add playwright dev mode tests ([janus-idp#1616](janus-idp#1616)) ([07c1452](janus-idp@07c1452))
* **cli:** new `--in-place`/`--no-in-place` option to the `export-dynamic-plugin` CLI command to allow exporting to `dist-dynamic` (when value is `false`). ([janus-idp#1584](janus-idp#1584)) ([4b5cc40](janus-idp@4b5cc40))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.1.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-05-09)

### ⚠ BREAKING CHANGES

* **ocm:** add basic permissions to ocm backend plugin (janus-idp#1528)

### Features

* **argocd:** add argocd deployment lifecycle and summary component ([janus-idp#1540](janus-idp#1540)) ([4c7c533](janus-idp@4c7c533))
* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **kiali:** add card for resources  ([janus-idp#1565](janus-idp#1565)) ([1e727aa](janus-idp@1e727aa))
* **ocm:** add basic permissions to ocm backend plugin ([janus-idp#1528](janus-idp#1528)) ([c28d564](janus-idp@c28d564))
* **orchestrator:** add ability to re-trigger workflow in error state ([janus-idp#1624](janus-idp#1624)) ([8709a37](janus-idp@8709a37))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **orchestrator:** make the internal sonata podman compatible ([janus-idp#1612](janus-idp#1612)) ([e4e528e](janus-idp@e4e528e))
* **rbac:** add support for the new backend services ([janus-idp#1607](janus-idp#1607)) ([2892709](janus-idp@2892709))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))
* **rbac:** support for adding conditional permissions ([janus-idp#1588](janus-idp#1588)) ([2042244](janus-idp@2042244))
* **scaffolder:** create custom action for scaffolder templates ([janus-idp#1567](janus-idp#1567)) ([e30701e](janus-idp@e30701e))

### Bug Fixes

* **argocd:** fix argocd configurations visibility ([janus-idp#1618](janus-idp#1618)) ([ade677f](janus-idp@ade677f))
* **argocd:** fix sonarcloud lint warnings in argocd plugin ([janus-idp#1620](janus-idp#1620)) ([66d3763](janus-idp@66d3763))
* **cli:** add `resolve.fallback` for node dependencies in the `export-dynamic-plugin` CLI for frontend plugins. ([janus-idp#1590](janus-idp#1590)) ([e860c3b](janus-idp@e860c3b))
* **cli:** allow exporting dynamic plugins from `frontend-plugin-module` packages. ([janus-idp#1593](janus-idp#1593)) ([55508ba](janus-idp@55508ba))
* **cli:** allow retrieving scalprum config from an external file in `export-dynamic-plugin`. ([janus-idp#1598](janus-idp#1598)) ([889be7f](janus-idp@889be7f))
* **cli:** completely removing the requirement for `app-config` when exporting fronted plugins to dynamic. ([janus-idp#1603](janus-idp#1603)) ([7fb243a](janus-idp@7fb243a))
* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **cli:** remove the requirement for `app-config` when exporting fronted plugins to dynamic. ([janus-idp#1592](janus-idp#1592)) ([577efff](janus-idp@577efff))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **feedback:** add support for jira cloud instance ([janus-idp#1582](janus-idp#1582)) ([5425e54](janus-idp@5425e54)), closes [janus-idp#1543](janus-idp#1543)
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** remove IstioConfig extra, Fix links and add kiali control ([janus-idp#1452](janus-idp#1452)) ([51a35f0](janus-idp@51a35f0))
* **kiali:** remove kiali-common from package. ([janus-idp#1586](janus-idp#1586)) ([b1748a4](janus-idp@b1748a4))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **ocm:** update ocm frontend plugin readme ([janus-idp#1611](janus-idp#1611)) ([9960cc0](janus-idp@9960cc0))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **orchestrator:** disable sorting ID column in workflow runs table ([janus-idp#1595](janus-idp#1595)) ([4d4875e](janus-idp@4d4875e))
* **orchestrator:** disabled MUI table thirdSortClick ([janus-idp#1614](janus-idp#1614)) ([5e541bd](janus-idp@5e541bd))
* **rbac:** hide frontend when permission framework was disabled ([janus-idp#1493](janus-idp#1493)) ([5aa012f](janus-idp@5aa012f))
* **rbac:** implement ability to disable rbac-backend plugin ([janus-idp#1501](janus-idp#1501)) ([6367965](janus-idp@6367965))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))
* sync lockfile ([janus-idp#1617](janus-idp#1617)) ([de7393d](janus-idp@de7393d))
* **ui:** remove extra inline style ([janus-idp#1548](janus-idp#1548)) ([4f38030](janus-idp@4f38030))

### Documentation

* **kiali:** update rhdh docs ([janus-idp#1621](janus-idp#1621)) ([7087cba](janus-idp@7087cba))
* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
* **servicenow:** fix typo in the service now documentation ([janus-idp#1596](janus-idp#1596)) ([9de4ff6](janus-idp@9de4ff6))

### Other changes

* **argocd:** add playwright dev mode tests ([janus-idp#1616](janus-idp#1616)) ([07c1452](janus-idp@07c1452))
* **cli:** new `--in-place`/`--no-in-place` option to the `export-dynamic-plugin` CLI command to allow exporting to `dist-dynamic` (when value is `false`). ([janus-idp#1584](janus-idp#1584)) ([4b5cc40](janus-idp@4b5cc40))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [2.6.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-05-09)

### ⚠ BREAKING CHANGES

* **ocm:** add basic permissions to ocm backend plugin (janus-idp#1528)

### Features

* **argocd:** add argocd deployment lifecycle and summary component ([janus-idp#1540](janus-idp#1540)) ([4c7c533](janus-idp@4c7c533))
* **bulk-import:** allow user to select repositories from side panel ([janus-idp#1430](janus-idp#1430)) ([ffcd101](janus-idp@ffcd101))
* **kiali:** add card for resources  ([janus-idp#1565](janus-idp#1565)) ([1e727aa](janus-idp@1e727aa))
* **ocm:** add basic permissions to ocm backend plugin ([janus-idp#1528](janus-idp#1528)) ([c28d564](janus-idp@c28d564))
* **orchestrator:** add ability to re-trigger workflow in error state ([janus-idp#1624](janus-idp#1624)) ([8709a37](janus-idp@8709a37))
* **orchestrator:** add endpoint to retrigger workflow in error state ([janus-idp#1343](janus-idp#1343)) ([328d23a](janus-idp@328d23a))
* **orchestrator:** make the internal sonata podman compatible ([janus-idp#1612](janus-idp#1612)) ([e4e528e](janus-idp@e4e528e))
* **rbac:** add support for the new backend services ([janus-idp#1607](janus-idp#1607)) ([2892709](janus-idp@2892709))
* **rbac:** add the optional maxDepth feature ([janus-idp#1486](janus-idp#1486)) ([ea87f34](janus-idp@ea87f34))
* **rbac:** lazy load temporary enforcer ([janus-idp#1513](janus-idp#1513)) ([b5f1552](janus-idp@b5f1552))
* **rbac:** support for adding conditional permissions ([janus-idp#1588](janus-idp#1588)) ([2042244](janus-idp@2042244))
* **scaffolder:** create custom action for scaffolder templates ([janus-idp#1567](janus-idp#1567)) ([e30701e](janus-idp@e30701e))

### Bug Fixes

* **argocd:** fix argocd configurations visibility ([janus-idp#1618](janus-idp#1618)) ([ade677f](janus-idp@ade677f))
* **argocd:** fix sonarcloud lint warnings in argocd plugin ([janus-idp#1620](janus-idp#1620)) ([66d3763](janus-idp@66d3763))
* **cli:** add `resolve.fallback` for node dependencies in the `export-dynamic-plugin` CLI for frontend plugins. ([janus-idp#1590](janus-idp#1590)) ([e860c3b](janus-idp@e860c3b))
* **cli:** allow exporting dynamic plugins from `frontend-plugin-module` packages. ([janus-idp#1593](janus-idp#1593)) ([55508ba](janus-idp@55508ba))
* **cli:** allow retrieving scalprum config from an external file in `export-dynamic-plugin`. ([janus-idp#1598](janus-idp#1598)) ([889be7f](janus-idp@889be7f))
* **cli:** completely removing the requirement for `app-config` when exporting fronted plugins to dynamic. ([janus-idp#1603](janus-idp#1603)) ([7fb243a](janus-idp@7fb243a))
* **cli:** fix entrypoint validation when running with `npx` on some packages with `alpha` API. ([janus-idp#1545](janus-idp#1545)) ([3d9781c](janus-idp@3d9781c))
* **cli:** remove the requirement for `app-config` when exporting fronted plugins to dynamic. ([janus-idp#1592](janus-idp#1592)) ([577efff](janus-idp@577efff))
* **deps:** update dependency bfj to v8 ([janus-idp#1463](janus-idp#1463)) ([01d9360](janus-idp@01d9360))
* **feedback:** add support for jira cloud instance ([janus-idp#1582](janus-idp#1582)) ([5425e54](janus-idp@5425e54)), closes [janus-idp#1543](janus-idp#1543)
* fix typo in orchestrator documentation ([janus-idp#1508](janus-idp#1508)) ([bfa360a](janus-idp@bfa360a))
* **kiali:** remove IstioConfig extra, Fix links and add kiali control ([janus-idp#1452](janus-idp#1452)) ([51a35f0](janus-idp@51a35f0))
* **kiali:** remove kiali-common from package. ([janus-idp#1586](janus-idp#1586)) ([b1748a4](janus-idp@b1748a4))
* **kiali:** update load for overview page ([janus-idp#1491](janus-idp#1491)) ([8de16e2](janus-idp@8de16e2))
* **ocm:** update ocm frontend plugin readme ([janus-idp#1611](janus-idp#1611)) ([9960cc0](janus-idp@9960cc0))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([janus-idp#1450](janus-idp#1450)) ([1e778d8](janus-idp@1e778d8))
* **orchestrator:** disable sorting ID column in workflow runs table ([janus-idp#1595](janus-idp#1595)) ([4d4875e](janus-idp@4d4875e))
* **orchestrator:** disabled MUI table thirdSortClick ([janus-idp#1614](janus-idp#1614)) ([5e541bd](janus-idp@5e541bd))
* **rbac:** hide frontend when permission framework was disabled ([janus-idp#1493](janus-idp#1493)) ([5aa012f](janus-idp@5aa012f))
* **rbac:** implement ability to disable rbac-backend plugin ([janus-idp#1501](janus-idp#1501)) ([6367965](janus-idp@6367965))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([janus-idp#1474](janus-idp#1474)) ([e5dda95](janus-idp@e5dda95))
* sync lockfile ([janus-idp#1617](janus-idp#1617)) ([de7393d](janus-idp@de7393d))
* **ui:** remove extra inline style ([janus-idp#1548](janus-idp#1548)) ([4f38030](janus-idp@4f38030))

### Documentation

* **kiali:** update rhdh docs ([janus-idp#1621](janus-idp#1621)) ([7087cba](janus-idp@7087cba))
* **orchestrator:** fix quick start urls to private repo and make image urls raw ([janus-idp#1521](janus-idp#1521)) ([eefd264](janus-idp@eefd264))
* **servicenow:** fix typo in the service now documentation ([janus-idp#1596](janus-idp#1596)) ([9de4ff6](janus-idp@9de4ff6))

### Other changes

* **argocd:** add playwright dev mode tests ([janus-idp#1616](janus-idp#1616)) ([07c1452](janus-idp@07c1452))
* **cli:** new `--in-place`/`--no-in-place` option to the `export-dynamic-plugin` CLI command to allow exporting to `dist-dynamic` (when value is `false`). ([janus-idp#1584](janus-idp#1584)) ([4b5cc40](janus-idp@4b5cc40))
@jkilzi jkilzi deleted the bugs/FLPATH-889 branch October 10, 2024 13:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants