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

feat(bulk-import): add the Bulk Import from GitHub Backend [RHIDP-955] #1471

Merged

Conversation

rm3l
Copy link
Member

@rm3l rm3l commented Apr 8, 2024

What type of PR is this

/kind feature
/area bulk-import

What does this PR do / why we need it

This adds the backend plugin for the "Bulk Import from GitHub" feature. It will be used as backend for the Bulk Import UI (see some parts already in https://github.com/janus-idp/backstage-plugins/tree/main/plugins/bulk-import, but using mock data).

This is a continuation of the work started with #1216

The API exposed by this Backend is driven by the OpenAPI schema in plugins/bulk-import-backend/src/schema/openapi.yaml. Both type definitions and API documentation are generated from this OpenAPI spec file.

In a nutshell, this backend exposes API endpoints allowing to:

  1. list all available GitHub repositories from all GitHub integrations listed in the app-config files
  2. for selected repositories, create import PRs in the corresponding repos. Those PRs will add a catalog-info.yaml. Once the PR is merged, the entity will be ingested and made available in the Backstage catalog
  3. return statuses for the import PRs
  4. delete selected import PRs and start over if needed

Which issue(s) this PR fixes

PR acceptance criteria

  • Unit test

  • Integration test

  • Documentation

How to test changes / Special notes to the reviewer

As a prerequisite, you need to add at least one GitHub Integration (using either a GitHub token or a GitHub App or both) in your app-config file.
See https://backstage.io/docs/integrations/github/locations/#configuration and https://backstage.io/docs/integrations/github/github-apps/#including-in-integrations-config
You can add that to a local app-config.local.yaml.

Starting the backend

  • For local dev, see the instructions in the CONTRIBUTING.md file. Start the Backend with:
yarn workspace @janus-idp/backstage-plugin-bulk-import-backend run start
  • For integration in a Backstage App, see the plugin README.md file for more details.

REST API

The API is exposed at http://localhost:7007/api/bulk-import-backend. See the API Docs for more details, but below are a few examples.

Examples (with httpie)

`GET /ping`: anonymous endpoint to just get a response from the Backend
$ http GET http://localhost:7007/api/bulk-import-backend/ping
HTTP/1.1 200 OK

{
    "status": "ok"
}
`GET /repositories`: list repositories accessible from all GitHub Integrations

This is a paginated API endpoint, for performance purposes. The following query parameters allow to control the amount of data returned:

  • pagePerIntegration: default is 1
  • sizePerIntegration: default is 20
$ http GET http://localhost:7007/api/bulk-import-backend/repositories
HTTP/1.1 200 OK

{
    "errors": [],
     "repositories": [
        {
            "defaultBranch": "main",
            "errors": [],
            "id": "lemra-org-ent-2/animated-happiness",
            "importStatus": "WAIT_PR_APPROVAL",
            "name": "animated-happiness",
            "organization": "lemra-org-ent-2",
            "url": "https://github.com/lemra-org-ent-2/animated-happiness"
        },
        {
            "defaultBranch": "master",
            "errors": [],
            "id": "lemra-org-ent-2/flutter",
            "importStatus": null,
            "name": "flutter",
            "organization": "lemra-org-ent-2",
            "url": "https://github.com/lemra-org-ent-2/flutter"
        }
    ],
    "size": 20
}

`GET /imports`: list import jobs along with their status

This is a paginated API endpoint, for performance purposes. The following query parameters allow to control the amount of data returned:

  • pagePerIntegration: default is 1
  • sizePerIntegration: default is 20
$ http GET http://localhost:7007/api/bulk-import-backend/imports
HTTP/1.1 200 OK

[
    {
        "approvalTool": "GIT",
        "id": "lemra-org-ent-1/java-quarkus-starter",
        "repository": {
            "defaultBranch": "main",
            "errors": [],
            "id": "lemra-org-ent-1/java-quarkus-starter",
            "name": "java-quarkus-starter",
            "organization": "lemra-org-ent-1",
            "url": "https://github.com/lemra-org-ent-1/java-quarkus-starter"
        },
        "status": "ADDED"
    },
    {
        "approvalTool": "GIT",
        "github": {
            "pullRequest": {
                "number": 14,
                "url": "https://github.com/lemra-org-ent-2/animated-happiness/pull/14"
            }
        },
        "id": "lemra-org-ent-2/animated-happiness",
        "repository": {
            "defaultBranch": "main",
            "errors": [],
            "id": "lemra-org-ent-2/animated-happiness",
            "name": "animated-happiness",
            "organization": "lemra-org-ent-2",
            "url": "https://github.com/lemra-org-ent-2/animated-happiness"
        },
        "status": "WAIT_PR_APPROVAL"
    }
]


`POST /imports`: submit import requests - will create PRs and register Location entity in the Catalog
$ echo -n '[{"repository": {"url": "https://github.com/lemra-org-ent-2/animated-happiness", "defaultBranch": "main"}, "catalogInfoContent": "---\\napiVersion: backstage.io/v1alpha1\\nkind: Component\\nmetadata:\\n  name: animated-happiness\\n  annotations:\\n    github.com/project-slug: lemra-org-ent-2/animated-happiness\\nspec:\\n  type: other\\n  lifecycle: unknown\\n  owner: lemta-org-ent-2\\n---\\n", "github":{"pullRequest":{"title": "Custom PR title: catalog-info.yaml"}}}, {"repository": {"url": "https://github.com/lemra-org-ent-1/java-quarkus-starter", "defaultBranch": "main"}, "catalogInfoContent": "---\\napiVersion: backstage.io/v1alpha1\\nkind: Component\\nmetadata:\\n  name: java-quarkus-starter\\n  annotations:\\n    github.com/project-slug: lemra-org-ent-1/java-quarkus-starter\\nspec:\\n  type: other\\n  lifecycle: unknown\\n  owner: lemra-org-ent-1\\n---\\n"}]' | http POST http://localhost:7007/api/bulk-import-backend/imports
HTTP/1.1 202 Accepted

[
    {
        "github": {
            "pullRequest": {
                "number": 14,
                "url": "https://github.com/lemra-org-ent-2/animated-happiness/pull/14"
            }
        },
        "repository": {
            "name": "animated-happiness",
            "organization": "lemra-org-ent-2",
            "url": "https://github.com/lemra-org-ent-2/animated-happiness"
        },
        "status": "WAIT_PR_APPROVAL"
    },
    {
        "repository": {
            "name": "java-quarkus-starter",
            "organization": "lemra-org-ent-1",
            "url": "https://github.com/lemra-org-ent-1/java-quarkus-starter"
        },
        "status": "ADDED"
    }
]


@rm3l rm3l changed the title [WIP] feat(bulk-import): Add the Backend for the Bulk Import from GitHub feature [RHIDP-955] [WIP] feat(bulk-import): Add the Bulk Import from GitHub Backend [RHIDP-955] Apr 8, 2024
@rm3l rm3l mentioned this pull request Apr 8, 2024
4 tasks
@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch from 6f38749 to 0d1f0ea Compare April 9, 2024 07:33
@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch from 0d1f0ea to 016a41b Compare April 12, 2024 15:55
@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch from 016a41b to 45ee0d5 Compare April 30, 2024 08:04
@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch from 45ee0d5 to e68e964 Compare April 30, 2024 11:43
Copy link

sonarcloud bot commented Apr 30, 2024

Quality Gate Failed Quality Gate failed

Failed conditions
C Reliability Rating on New Code (required ≥ A)

See analysis details on SonarCloud

Catch issues before they fail your Quality Gate with our IDE extension SonarLint

@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch from e68e964 to b1e61db Compare June 5, 2024 21:25
@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch from b1e61db to 4d3bc93 Compare June 11, 2024 07:12
@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch 4 times, most recently from cf4d192 to 25ad787 Compare June 14, 2024 16:32
Copy link

sonarcloud bot commented Jun 17, 2024

Quality Gate Failed Quality Gate failed

Failed conditions
C Reliability Rating on New Code (required ≥ A)

See analysis details on SonarCloud

Catch issues before they fail your Quality Gate with our IDE extension SonarLint

@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch from 0909e98 to 0be0583 Compare June 18, 2024 10:42
@rm3l rm3l force-pushed the rhidp-955--bulk-import-from-github branch 3 times, most recently from 797e6fb to a27a302 Compare June 21, 2024 16:07
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.8.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.5.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [4.3.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [4.2.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [3.2.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **deps:** update dependency react-use to v17.5.0 ([#1780](#1780)) ([a25bf15](a25bf15))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **matomo:** add default export for new backend system ([#1822](#1822)) ([5e72920](5e72920))
* **orchestrator:** change log level of cache messages to be debug ([#1824](#1824)) ([4224612](4224612))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.7.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.17.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.16.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.12.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.9.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.24.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [4.4.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [2.8.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.6.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [3.9.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.23.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.7.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add repo row actions ([#1572](#1572)) ([66051e3](66051e3))
* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **bulk-import:** preview catalog-info.yaml on a side-panel ([#1541](#1541)) ([9c87dad](9c87dad))
* **bulk-import:** update bulk import icon ([#1826](#1826)) ([32c5553](32c5553))
* **deps:** update to backstage 1.28 ([#1891](#1891)) ([1ba1108](1ba1108))
* **keycloak:** expose keycloak user/group transformer extension point ([#1825](#1825)) ([3f85578](3f85578))
* **kiali:** add banner to warn for tech preview windows ([#1829](#1829)) ([b0cb796](b0cb796))
* **kiali:** add tests for the overview page ([#1790](#1790)) ([582cf36](582cf36))
* **kiali:** changes to Kiali 1.86 ([#1839](#1839)) ([ab1f6bc](ab1f6bc))
* **kiali:** improve styles ([#1861](#1861)) ([158800f](158800f))
* **kiali:** include Kiali external URL as a parameter ([#1835](#1835)) ([6dbe9eb](6dbe9eb))
* **kiali:** resources card test coverage ([#1821](#1821)) ([4090fc2](4090fc2))
* **kiali:** revert changes to Kiali 1.86 ([#1839](#1839)) ([#1876](#1876)) ([c512b29](c512b29))
* **kiali:** sticky headers for tables ([#1877](#1877)) ([64578d9](64578d9))
* **orchestrator:** add auditLog and reorganize endpoints declaration ([#1820](#1820)) ([00d9216](00d9216))
* **orchestrator:** change openapi client generator ([#1864](#1864)) ([d6a4f4c](d6a4f4c))
* **orchestrator:** disable buttons based on permissions ([#1818](#1818)) ([36504b0](36504b0))
* **orchestrator:** fix build failure from [#1833](#1833) ([#1850](#1850)) ([c0c73e6](c0c73e6))
* **orchestrator:** fix version ([#1886](#1886)) ([65c5917](65c5917))
* **orchestrator:** remove unneeded orchestrator jira integration and endpoint ([#1833](#1833)) ([d2a76fd](d2a76fd))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))
* **rbac:** show rules count in overview page ([#1845](#1845)) ([a10dc36](a10dc36))
* **rbac:** show total no. of rules in review and create step ([#1827](#1827)) ([e54c470](e54c470))

### Bug Fixes

* **argocd:** fix argocd commit message visibility ([#1874](#1874)) ([e558d75](e558d75))
* **argocd:** hide commit section for helm based applications ([#1834](#1834)) ([a86ce1e](a86ce1e))
* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **feedback:** fixed feedback creation ([#1863](#1863)) ([eb2f3ac](eb2f3ac))
* **kiali:** add bearer token ([#1870](#1870)) ([8875276](8875276))
* **kiali:** allow unauthenticated kiali due is read-only mod ([#1872](#1872)) ([1990d97](1990d97))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **orchestrator:** returned scrolling bars to instance page cards ([#1880](#1880)) ([08545da](08545da))
* **quay:** add mock data to quay dev mode tests ([#1860](#1860)) ([cbfcc49](cbfcc49))
* **rbac:** background color of sidebar in dark theme ([#1859](#1859)) ([ec6a2d8](ec6a2d8))
* **rbac:** casbinDBAdapterFactory supporting postgres schema configuration ([#1841](#1841)) ([c0e63f9](c0e63f9))
* **rbac:** catch errors whenever a plugin token is not generated ([#1866](#1866)) ([c9abf44](c9abf44))
* **rbac:** correct plugin ID matching to permission policy ([#1795](#1795)) ([6dc4b1c](6dc4b1c))
* **rbac:** edit role page loads error page ([#1849](#1849)) ([6782b4b](6782b4b))
* **rbac:** simplify db logic ([#1842](#1842)) ([cbe263b](cbe263b))
* **rbac:** update rbac common to fix compilation ([#1858](#1858)) ([48f142b](48f142b))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **keycloak-backend:** update keycloak documentation ([#1832](#1832)) ([e7c59f5](e7c59f5))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))

### Other changes

* **rbac:** reduce cognitive stress for create, update and delete role functions ([#1878](#1878)) ([38c3144](38c3144))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.7.2](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **deps:** rollback unreleased plugins ([#1951](#1951)) ([8b77969](8b77969))
* **rbac:** don't start transaction if there no group policies ([#1923](#1923)) ([dffa964](dffa964))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.3.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))

### Bug Fixes

* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **deps:** rollback unreleased plugins ([#1951](#1951)) ([8b77969](8b77969))
* **rbac:** don't start transaction if there no group policies ([#1923](#1923)) ([dffa964](dffa964))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
janus-idp bot pushed a commit that referenced this pull request Jul 24, 2024
## [1.2.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-24)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))

### Bug Fixes

* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **deps:** rollback unreleased plugins ([#1951](#1951)) ([8b77969](8b77969))
* **rbac:** don't start transaction if there no group policies ([#1923](#1923)) ([dffa964](dffa964))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 25, 2024
## [1.13.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-25)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.29 ([#1900](#1900)) ([f53677f](f53677f))
* **orchestrator:** use v2 endpoints to retrieve instances ([#1956](#1956)) ([537502b](537502b))
* **orchestrator:** use v2 endpoints to retrieve workflow overviews ([#1892](#1892)) ([cca1e53](cca1e53))

### Bug Fixes

* **deps:** fix rbac dependencies ([#1918](#1918)) ([fcc4e1d](fcc4e1d))
* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **deps:** rollback unreleased plugins ([#1951](#1951)) ([8b77969](8b77969))
* **deps:** update dependency react-use to v17.5.1 ([#1943](#1943)) ([0c05ad5](0c05ad5))
* **deps:** update rhdh dependencies (non-major) ([#1960](#1960)) ([8b6c249](8b6c249))
* **orchestrator:** resolve broken dynamic plugin publish ([#1906](#1906)) ([5f99043](5f99043))
* **rbac:** don't start transaction if there no group policies ([#1923](#1923)) ([dffa964](dffa964))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* added OpenAPI spec for rbac-backend ([#1830](#1830)) ([4eb2035](4eb2035))
* fix argocd naming ([#1904](#1904)) ([3173d79](3173d79))
* fix rbac integration code samples ([#1905](#1905)) ([3a8da8d](3a8da8d))
* **rbac:** add curl request examples ([#1913](#1913)) ([e496eb7](e496eb7))
* **rbac:** fix condition rules api url ([#1914](#1914)) ([e6fa0ae](e6fa0ae))
janus-idp bot pushed a commit that referenced this pull request Jul 25, 2024
## [1.8.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-25)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.29 ([#1900](#1900)) ([f53677f](f53677f))
* **orchestrator:** use v2 endpoints to retrieve instances ([#1956](#1956)) ([537502b](537502b))

### Bug Fixes

* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **deps:** rollback unreleased plugins ([#1951](#1951)) ([8b77969](8b77969))
* **deps:** update dependency react-use to v17.5.1 ([#1943](#1943)) ([0c05ad5](0c05ad5))
* **deps:** update rhdh dependencies (non-major) ([#1960](#1960)) ([8b6c249](8b6c249))
* **rbac:** don't start transaction if there no group policies ([#1923](#1923)) ([dffa964](dffa964))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* **rbac:** add curl request examples ([#1913](#1913)) ([e496eb7](e496eb7))
janus-idp bot pushed a commit that referenced this pull request Jul 25, 2024
## [1.9.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/[email protected]...@janus-idp/[email protected]) (2024-07-25)

### Features

* **bulk-import:** add the Bulk Import from GitHub Backend [RHIDP-955] ([#1471](#1471)) ([4f79be2](4f79be2))
* **deps:** update to backstage 1.29 ([#1900](#1900)) ([f53677f](f53677f))
* **orchestrator:** use v2 endpoints to retrieve instances ([#1956](#1956)) ([537502b](537502b))

### Bug Fixes

* **deps:** move backend-test-utils to devDependencies ([#1944](#1944)) ([9052a3f](9052a3f))
* **deps:** rollback unreleased plugins ([#1951](#1951)) ([8b77969](8b77969))
* **deps:** update dependency react-use to v17.5.1 ([#1943](#1943)) ([0c05ad5](0c05ad5))
* **deps:** update rhdh dependencies (non-major) ([#1960](#1960)) ([8b6c249](8b6c249))
* **rbac:** don't start transaction if there no group policies ([#1923](#1923)) ([dffa964](dffa964))
* remove crashing process from playwright tests ([#1941](#1941)) ([4b20f8a](4b20f8a))

### Documentation

* **rbac:** add curl request examples ([#1913](#1913)) ([e496eb7](e496eb7))
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.

6 participants