Files
backstage/.changeset
Patrik Oldsberg 68c557b381 backend-plugin-api: tighten internal any usage (#33867)
* backend-plugin-api: tighten internal any usage

Replace internal `any` type annotations with proper types:

- Use `'root' | 'plugin'` union in DepsToInstances conditional type
  and createServiceRef implementation signature
- Use Error type guard with object cast fallback in
  isDatabaseConflictError instead of `as any`

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor

* Use isError in isDatabaseConflictError

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor

* Update changeset wording per review feedback

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor

---------

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
2026-04-13 14:58:03 +02:00
..
2026-04-03 10:06:11 -04:00
2026-04-02 23:47:59 -06:00
2026-04-10 10:33:51 +02:00
2026-04-10 16:28:42 +05:30

Changesets

Hello and welcome! This folder has been automatically generated by @changesets/cli, a build tool that works with multi-package repos, or single-package repos to help you version and publish your code. You can find the full documentation for it in our repository

We have a quick list of common questions to get you started engaging with this project in our documentation


Backstage UI Changesets

For @backstage/ui changesets, use this format:

---
'@backstage/ui': patch
---

Brief summary

Optional description with code examples.

**Migration:**

Migration instructions (breaking changes only).

**Affected components:** Button, Card

Required:

  • End with **Affected components:** + comma-separated component names
  • For breaking changes: Add **Migration:** section
  • No headings (##, ###) inside - use bold markers

Examples:

Fixed button hover state

**Affected components:** Button
**BREAKING**: New Table API

**Migration:**

Update imports:

```diff
- import { Table } from '@backstage/ui';
+ import { Table, type ColumnConfig } from '@backstage/ui';
```

Affected components: Table