Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions workspaces/homepage/.changeset/shiny-suns-sniff.md

This file was deleted.

11 changes: 0 additions & 11 deletions workspaces/homepage/.changeset/unless-and-tags.md

This file was deleted.

15 changes: 15 additions & 0 deletions workspaces/homepage/plugins/homepage-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @red-hat-developer-hub/backstage-plugin-homepage-backend

## 0.3.0

### Minor Changes

- 0186e63: Add `unless` exclusion block and `tags` for RBAC conditional policy filtering to homepage default widgets.

`unless` is the denylist counterpart to `if` — it uses the same shape (`users`, `groups`, `permissions`) and hides a widget when any condition matches. Deny wins over `if`, and on group nodes it prunes the entire subtree.

`tags` is an optional string array on leaf nodes (e.g. `['admin', 'developer']`) used with the new `HAS_TAG` permission rule for RBAC conditional filtering. Widgets without tags bypass tag-based filtering.

### Patch Changes

- Updated dependencies [0186e63]
- @red-hat-developer-hub/backstage-plugin-homepage-common@0.3.0

## 0.2.1

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-homepage-backend",
"version": "0.2.1",
"version": "0.3.0",
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
10 changes: 10 additions & 0 deletions workspaces/homepage/plugins/homepage-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @red-hat-developer-hub/backstage-plugin-homepage-common

## 0.3.0

### Minor Changes

- 0186e63: Add `unless` exclusion block and `tags` for RBAC conditional policy filtering to homepage default widgets.

`unless` is the denylist counterpart to `if` — it uses the same shape (`users`, `groups`, `permissions`) and hides a widget when any condition matches. Deny wins over `if`, and on group nodes it prunes the entire subtree.

`tags` is an optional string array on leaf nodes (e.g. `['admin', 'developer']`) used with the new `HAS_TAG` permission rule for RBAC conditional filtering. Widgets without tags bypass tag-based filtering.

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/homepage/plugins/homepage-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-homepage-common",
"version": "0.2.1",
"version": "0.3.0",
"license": "Apache-2.0",
"description": "Common functionalities for the homepage plugin",
"main": "src/index.ts",
Expand Down
17 changes: 17 additions & 0 deletions workspaces/homepage/plugins/homepage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @red-hat-developer-hub/backstage-plugin-homepage

## 1.16.0

### Minor Changes

- ef8da5a: Change plugin id to homepage

### Patch Changes

- 0186e63: Add `unless` exclusion block and `tags` for RBAC conditional policy filtering to homepage default widgets.

`unless` is the denylist counterpart to `if` — it uses the same shape (`users`, `groups`, `permissions`) and hides a widget when any condition matches. Deny wins over `if`, and on group nodes it prunes the entire subtree.

`tags` is an optional string array on leaf nodes (e.g. `['admin', 'developer']`) used with the new `HAS_TAG` permission rule for RBAC conditional filtering. Widgets without tags bypass tag-based filtering.

- Updated dependencies [0186e63]
- @red-hat-developer-hub/backstage-plugin-homepage-common@0.3.0

## 1.15.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/homepage/plugins/homepage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-homepage",
"version": "1.15.0",
"version": "1.16.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down