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(rbac): reduce the number of permissions returned, add isResourced flag #1474

Merged
merged 2 commits into from
Apr 17, 2024

Conversation

AndrienkoAleksandr
Copy link
Collaborator

@AndrienkoAleksandr AndrienkoAleksandr commented Apr 8, 2024

What does this pull request do:

reduce the number of permissions returned, add isResourced flag.

Notice: this pr reduces permission set in combination with current UI implementation.

Screenshots

Before:

Screenshot 2024-04-11 at 09 45 06

After:

Screenshot 2024-04-11 at 09 35 06

Referenced issues:

https://issues.redhat.com/browse/RHIDP-1926
https://issues.redhat.com/browse/RHIDP-1467

@AndrienkoAleksandr AndrienkoAleksandr requested review from PatAKnight and a team as code owners April 8, 2024 14:06
@openshift-ci openshift-ci bot requested review from debsmita1 and schultzp2020 April 8, 2024 14:06
@AndrienkoAleksandr AndrienkoAleksandr force-pushed the changePluginList branch 2 times, most recently from 210ce6f to 7793139 Compare April 9, 2024 09:08
Signed-off-by: Oleksandr Andriienko <[email protected]>
Copy link

sonarcloud bot commented Apr 9, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
1.8% Duplication on New Code

See analysis details on SonarCloud

@divyanshiGupta
Copy link
Member

@AndrienkoAleksandr this issue also reduces the number of permissions returned or it just adds a isResourced param so that the permissions can be identified as resourced or named?

@AndrienkoAleksandr
Copy link
Collaborator Author

@AndrienkoAleksandr this issue also reduces the number of permissions returned or it just adds a isResourced param so that the permissions can be identified as resourced or named?

@divyanshiGupta this pr reduces permission set in combination with current UI implementation. I attached screenshots. The idea of this pr - reduce permission list without UI modification and big backend changes. But we can consider another approach if you can see disadvantages.

@divyanshiGupta
Copy link
Member

divyanshiGupta commented Apr 11, 2024

@AndrienkoAleksandr this issue also reduces the number of permissions returned or it just adds a isResourced param so that the permissions can be identified as resourced or named?

@divyanshiGupta this pr reduces permission set in combination with current UI implementation. I attached screenshots. The idea of this pr - reduce permission list without UI modification and big backend changes. But we can consider another approach if you can see disadvantages.

@AndrienkoAleksandr the changes looks fine to me. I asked this because @ShiranHi 's original ask was, if we can only have resource type permissions for example if we could have only catalog-entity and catalog-location but for now the changes in this PR looks good to me as it reduces the permissions to some extent. Thanks for the PR!

@divyanshiGupta
Copy link
Member

@AndrienkoAleksandr can we get this PR merged?

@ShiranHi
Copy link

ShiranHi commented Apr 15, 2024

@AndrienkoAleksandr the changes looks fine to me. I asked this because @ShiranHi 's original ask was, if we can only have resource type permissions for example if we could have only catalog-entity and catalog-location but for now the changes in this PR looks good to me as it reduces the permissions to some extent. Thanks for the PR!

It's great to see fewer results in the dropdown. Two questions:

  1. Why we're showing "catalog.entity.create" instead of just "catalog.entity"?
  2. Why "catalog.entity.refresh" is no longer present and why there isn't a "Refresh" checkbox under the action options?

I'm not totally clear on the reasoning behind these changes, I'd love to hear the reasoning behind it. We need to make sure we cover all scenarios with this change.

@AndrienkoAleksandr
Copy link
Collaborator Author

Hello, @ShiranHi, thanks for your questions.

"catalog-entity" item in the dropdown should have only three actions: "read", "update", "delete". So this "catalog-enitity" item joins three permissions with names: 'catalog.entity.read', 'catalog.entity.delete', 'catalog.entity.refresh'

Let's take a look each of them:

export const RESOURCE_TYPE_CATALOG_ENTITY = 'catalog-entity';

export const catalogEntityReadPermission = createPermission({
  name: 'catalog.entity.read',
  attributes: {
    action: 'read',
  },
  resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
});


export const catalogEntityDeletePermission = createPermission({
  name: 'catalog.entity.delete',
  attributes: {
    action: 'delete',
  },
  resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
});

export const catalogEntityRefreshPermission = createPermission({
  name: 'catalog.entity.refresh',
  attributes: {
    action: 'update',
  },
  resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
});

See more: https://github.com/backstage/backstage/blob/99305a0/plugins/catalog-common/src/permissions.ts

Answer 1.

@ShiranHi: Why we're showing "catalog.entity.create" instead of just "catalog.entity"?

catalog.entity.create is permission with "basic" type, not "resource", so it doesn't have resourceType "catalog-entity". So it should not be joined to the 'catalog-entity' item:

export const catalogEntityCreatePermission = createPermission({
  name: 'catalog.entity.create',
  attributes: {
    action: 'create',
  },
});

At the end of the doc https://backstage.io/docs/permissions/writing-a-policy/ :

Note: Some catalog permissions do not have the 'catalog-entity' resource type, such as catalogEntityCreatePermission. In those cases, a definitive decision is required because conditions can't be applied to an entity that does not exist yet.

Answer 2.

@ShiranHi: Why "catalog.entity.refresh" is no longer present ...?

catalog.entity.refresh - this is permission with "resource" type and "update" action. So we join this permission to "catalog-entity" item in the dropdown. I will provide definition of this permission one more time:

export const catalogEntityRefreshPermission = createPermission({
  name: 'catalog.entity.refresh',
  attributes: {
    action: 'update',
  },
  resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
});

Answer 3

@ShiranHi: Why there isn't a "Refresh" checkbox under the action options?

Permission framework has only four actions, so there is no "refresh action".

export type PermissionAttributes = {
  action?: 'create' | 'read' | 'update' | 'delete';
};

From code: https://github.com/backstage/backstage/blob/99305a0/plugins/permission-common/src/types/permission.ts#L24-L26

@ShiranHi
Copy link

@AndrienkoAleksandr thank you for the clarification. I didn't understand there are follow up tickets to this. I'll continue following

Copy link
Member

@PatAKnight PatAKnight left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm
/approve

@divyanshiGupta
Copy link
Member

/approve

Copy link

openshift-ci bot commented Apr 17, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: divyanshiGupta, PatAKnight

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-bot openshift-merge-bot bot merged commit e5dda95 into janus-idp:main Apr 17, 2024
13 checks passed
janus-idp bot pushed a commit that referenced this pull request Apr 17, 2024
## @janus-idp/backstage-plugin-rbac-common [1.4.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-17)

### Bug Fixes

* **rbac:** reduce the number of permissions returned, add isResourced flag ([#1474](#1474)) ([e5dda95](e5dda95))
janus-idp bot pushed a commit that referenced this pull request Apr 17, 2024
## [1.17.6](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-17)

### Bug Fixes

* fix typo in orchestrator documentation ([#1508](#1508)) ([bfa360a](bfa360a))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([#1474](#1474)) ([e5dda95](e5dda95))
janus-idp bot pushed a commit that referenced this pull request Apr 17, 2024
## [2.6.4](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-17)

### Bug Fixes

* fix typo in orchestrator documentation ([#1508](#1508)) ([bfa360a](bfa360a))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([#1474](#1474)) ([e5dda95](e5dda95))
janus-idp bot pushed a commit that referenced this pull request Apr 18, 2024
## [1.9.4](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-04-18)

### Bug Fixes

* **orchestrator:** allows serving the editor envelope in disconnected environments ([#1450](#1450)) ([1e778d8](1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([#1474](#1474)) ([e5dda95](e5dda95))

### Documentation

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

### Bug Fixes

* fix typo in orchestrator documentation ([#1508](#1508)) ([bfa360a](bfa360a))
* **orchestrator:** allows serving the editor envelope in disconnected environments ([#1450](#1450)) ([1e778d8](1e778d8))
* **rbac:** reduce the number of permissions returned, add isResourced flag ([#1474](#1474)) ([e5dda95](e5dda95))

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([#1521](#1521)) ([eefd264](eefd264))
janus-idp bot pushed a commit that referenced this pull request Apr 25, 2024
## [1.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 ([#1430](#1430)) ([ffcd101](ffcd101))
* **orchestrator:** add endpoint to retrigger workflow in error state ([#1343](#1343)) ([328d23a](328d23a))
* **rbac:** add the optional maxDepth feature ([#1486](#1486)) ([ea87f34](ea87f34))
* **rbac:** lazy load temporary enforcer ([#1513](#1513)) ([b5f1552](b5f1552))

### Bug Fixes

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

### Documentation

* **orchestrator:** fix quick start urls to private repo and make image urls raw ([#1521](#1521)) ([eefd264](eefd264))
janus-idp bot pushed a commit that referenced this pull request May 9, 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 (#1528)

### Features

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

### Bug Fixes

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

### Documentation

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

### Other changes

* **argocd:** add playwright dev mode tests ([#1616](#1616)) ([07c1452](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`). ([#1584](#1584)) ([4b5cc40](4b5cc40))
ciiay pushed a commit to ciiay/backstage-plugins that referenced this pull request Jun 1, 2024
## [1.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
## [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.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.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.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.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))
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.

4 participants