github-actions[bot]
7295193bb6
Version Packages (next)
2026-04-28 15:53:09 +00:00
Marat Dyatko
ab1cdbb9db
Fix circular self-imports and add no-self-package-imports lint rule
...
- Fixes the `Cannot access '_AppRootElementBlueprintesm' before
initialization` crash in `@backstage/frontend-plugin-api` caused by a
self-referential import in the packaged ESM.
- Cleans up similar self-imports in `@backstage/catalog-model`,
`@backstage/core-plugin-api`, `@backstage/plugin-catalog-node`,
`@backstage/plugin-kubernetes-common`, and
`@backstage/plugin-kubernetes-node`. Value imports switch to relative
paths; type-only imports use `import type` so they're erased at
runtime.
- Adds a new `@backstage/no-self-package-imports` ESLint rule. It reads
each package's `exports` map, traverses the relative import graph from
every entry's source file, and only reports imports where the current
file is in the same bundle as the target entry (same-entry). Files
that aren't reachable from any entry (tests, scripts, orphans) are
skipped. `import type`, `package.json` imports, and cross-entry
self-imports are allowed by default; cross-entry can be opted into
with `allowCrossEntry: false`.
Signed-off-by: Marat Dyatko <maratd@spotify.com >
Made-with: Cursor
2026-04-23 14:43:01 +02:00
github-actions[bot]
1cc86bee1c
Version Packages (next)
2026-04-21 15:07:43 +00:00
Fredrik Adelöw
8e7f7249e7
chore: regenerate knip reports
...
Signed-off-by: Fredrik Adelöw <freben@spotify.com >
Made-with: Cursor
2026-04-16 12:14:47 +02:00
Fredrik Adelöw
0c5e41f984
chore: remove unused dependencies
...
Remove 30 dependencies across 18 packages that have no imports in
source code and are not peer dependencies of any other dependency.
Signed-off-by: Fredrik Adelöw <freben@spotify.com >
Made-with: Cursor
2026-04-16 11:52:59 +02:00
github-actions[bot]
93e643d142
Version Packages
2026-04-14 14:57:31 +00:00
github-actions[bot]
6c10d88c13
Version Packages (next)
2026-04-07 15:30:58 +00:00
github-actions[bot]
a2cb332e25
Version Packages (next)
2026-03-31 15:30:51 +00:00
github-actions[bot]
c1b510cabb
Version Packages (next)
2026-03-24 14:54:00 +00:00
github-actions[bot]
5725b5fcfa
Version Packages
2026-03-17 21:39:07 +00:00
github-actions[bot]
ed7c4e3bef
Version Packages (next)
2026-03-10 17:34:12 +00:00
github-actions[bot]
4bd6a3a1af
Version Packages (next)
2026-02-24 19:24:06 +00:00
github-actions[bot]
e6df5d52ce
Version Packages
2026-02-17 16:06:18 +00:00
github-actions[bot]
1ea737c1e2
Version Packages (next)
2026-02-03 14:24:29 +00:00
KoB
ce3639c588
feat(kubernetes-plugin): add pv and pvc rendering ( #31355 )
...
* feat: add persistent volumes rendering
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add pv status
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add volume status and volume type
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add test for pv
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add persistent volume claims
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add persistent volume status pending
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add persistent volume metadata
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add persistent volume claims metadata
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: add persistent volume claims test code
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: changeset
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: remove gcp and gke.io
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: yarn build:api-reports
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: update pv to table drawer like pod
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* feat: update pvc to table drawer like pod
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: remove user event at test code
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: exclude pv,pvc from default objects
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: remove duplication import for pv
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: yarn build:api-reports
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: retrigger required checks
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: retrigger required checks
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: retrigger required checks
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
* chore: retrigger required checks
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
---------
Signed-off-by: 김병준 <kingbj0429@gmail.com >
Signed-off-by: KoB <63000843+kingbj940429@users.noreply.github.com >
2026-01-28 14:31:01 -05:00
github-actions[bot]
d4b85dddee
Version Packages (next)
2026-01-27 15:51:11 +00:00
Fredrik Adelöw
7455dae884
require the use of node prefix on native imports
...
Signed-off-by: Fredrik Adelöw <freben@gmail.com >
2026-01-26 13:22:53 +01:00
github-actions[bot]
c24788d5bb
Version Packages
2025-12-16 14:08:20 +00:00
github-actions[bot]
e08f48a9b5
Version Packages (next)
2025-12-09 15:00:09 +00:00
Fredrik Adelöw
f80cb26825
Merge pull request #31349 from IlyaSavich/kubernetes-router-extension
...
Add Kubernetes Router extension point, add fetcher to custom objects provider
2025-12-09 11:58:52 +01:00
Ilya Savich
7c6530b036
Remove trivial deps
...
Signed-off-by: Ilya Savich <isavich@box.com >
2025-12-05 11:13:10 +01:00
github-actions[bot]
336db00d21
Version Packages (next)
2025-12-02 15:37:41 +00:00
github-actions[bot]
756986e5e7
Version Packages (next)
2025-11-25 16:21:32 +00:00
Ilya Savich
a393d69ea3
fix type deps
...
Signed-off-by: Ilya Savich <isavich@box.com >
2025-11-20 12:41:19 +01:00
Ilya Savich
b0dfe347b9
fix type deps
...
Signed-off-by: Ilya Savich <isavich@box.com >
# Conflicts:
# yarn.lock
2025-11-20 12:40:36 +01:00
Ilya Savich
62355e177d
fix build
...
Signed-off-by: Ilya Savich <isavich@box.com >
2025-11-20 12:34:27 +01:00
Ilya Savich
7f9846fd55
Add Kubernetes Router extension point, add fetcher to custom objects provider
...
Signed-off-by: Ilya Savich <isavich@box.com >
2025-11-20 12:34:27 +01:00
github-actions[bot]
792f4d7e3d
Version Packages
2025-11-18 12:23:09 +00:00
github-actions[bot]
20fae88bdf
Version Packages (next)
2025-11-11 21:45:56 +00:00
renovate[bot]
1906d3712b
fix(deps): update dependency @kubernetes/client-node to v1.4.0
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-10 14:25:08 +00:00
github-actions[bot]
3738293d26
Version Packages (next)
2025-11-04 15:00:26 +00:00
github-actions[bot]
807af8ce0e
Version Packages (next)
2025-10-21 16:14:43 +00:00
Patrik Oldsberg
b436f73803
Merge pull request #31166 from schultzp2020/constructor-parameters
...
refactor: convert constructor parameter properties for erasableSyntaxOnly compatibility
2025-10-15 18:56:42 +02:00
github-actions[bot]
d6ce2db9ca
Version Packages
2025-10-14 15:29:54 +00:00
Paul Schultz
05f60e1e0a
refactor: convert constructor parameter properties for erasableSyntaxOnly compatibility
...
Signed-off-by: Paul Schultz <pschultz@pobox.com >
2025-10-14 08:29:21 -05:00
github-actions[bot]
c2c60546d2
Version Packages (next)
2025-09-24 12:57:42 +00:00
github-actions[bot]
c73bfa46d4
Version Packages (next)
2025-09-23 15:00:29 +00:00
github-actions[bot]
b799a2d07f
Version Packages
2025-09-16 13:22:58 +00:00
Paul Schultz
133ac7ad66
fix(repo-tools): resolve knip-reports failure with spaces in workspace paths
...
Signed-off-by: Paul Schultz <pschultz@pobox.com >
2025-09-15 12:34:26 -05:00
github-actions[bot]
ac48eeb3ba
Version Packages (next)
2025-09-02 12:17:03 +00:00
github-actions[bot]
b93a3471c2
Version Packages
2025-08-19 13:01:39 +00:00
benjdlambert
908420bf3b
chore: fix up code review comments
...
Signed-off-by: benjdlambert <ben@blam.sh >
2025-08-18 15:30:53 +02:00
benjdlambert
3bdb44a3a5
chore: fixing api reports
...
Signed-off-by: benjdlambert <ben@blam.sh >
Signed-off-by: benjdlambert <ben@blam.sh >
2025-08-18 11:10:28 +02:00
benjdlambert
3b8a186bf8
chore: updating extension type
...
Signed-off-by: benjdlambert <ben@blam.sh >
2025-08-18 11:10:27 +02:00
Patrik Oldsberg
a25a22b0e1
update knip reports
...
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com >
2025-08-07 11:20:29 +02:00
github-actions[bot]
531a48848c
Version Packages (next)
2025-07-29 14:40:44 +00:00
github-actions[bot]
9a7cae26c9
Version Packages
2025-07-15 14:26:41 +00:00
github-actions[bot]
952cefedd8
Version Packages (next)
2025-07-01 11:50:02 +00:00
Fredrik Adelöw
3507fcdf89
Just some more circular dep cleanup
...
Signed-off-by: Fredrik Adelöw <freben@gmail.com >
2025-06-25 11:33:23 +02:00
github-actions[bot]
58558ef2c1
Version Packages
2025-06-17 12:45:56 +00:00