Skip to content
Merged
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
4 changes: 4 additions & 0 deletions docs/changelogs/ent-v1.4.7.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ description: "Enterprise v1.4.7 changelog - 2026-06-07"
details, and a step-by-step checklist before upgrading.
</Warning>

<Warning>>
v1.4.7 has a known `/virtua-key/quota` issue which is fixed in v1.4.8.
</Warning>
Comment on lines +14 to +16

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P1 The <Warning> tag has a stray extra > character, which will likely break MDX/Mintlify rendering and prevent the warning block from displaying correctly. Additionally, the endpoint path /virtua-key/quota appears to be missing the letter l — it should be /virtual-key/quota.

Suggested change
<Warning>>
v1.4.7 has a known `/virtua-key/quota` issue which is fixed in v1.4.8.
</Warning>
<Warning>
v1.4.7 has a known `/virtual-key/quota` issue which is fixed in v1.4.8.
</Warning>


## Changelog

A governance and organizational-hierarchy release on `transports/v1.5.10`. The headline work is a full **customer -> team -> business unit** model with end-to-end usage and budget tracking, a rebuilt **DAC + RBAC** layer backed by a virtual-key mapping table, and a more robust **access profile** lifecycle.
Expand Down
16 changes: 13 additions & 3 deletions docs/changelogs/v1.5.11.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,18 @@ description: "v1.5.11 changelog - 2026-06-08"
</Tabs>

<Update label="Bifrost(HTTP)" description="1.5.11">
<Warning>
Run the rollback queries below before migrating if you need to preserve compatibility with v1.5.8.
</Warning>

## 🐞 Fixed

- **VK Budget Quota & Reload APIs** — The virtual key quota and reload (rotate) APIs now hydrate governance data (model configs and budgets) before returning, so budget information is accurate instead of missing or stale. Also added proper error handling when fetching model config during hydration.

## ⏲️Rolling back (to 1.5.8)
## ⏲️ Rolling back (to 1.5.8)

### Single node setup
<AccordionGroup>
<Accordion title="Single node setup">

```sql
-- ============================================================
Expand Down Expand Up @@ -127,7 +132,9 @@ DELETE FROM migrations WHERE id = 'add_budget_model_config_id_column';
COMMIT;
```

### Multiple nodes
</Accordion>

<Accordion title="Multiple nodes">

```sql
-- ============================================================
Expand Down Expand Up @@ -226,4 +233,7 @@ DELETE FROM migrations WHERE id = 'migrate_provider_governance_to_model_configs'
COMMIT;
```

</Accordion>
</AccordionGroup>

</Update>
3 changes: 3 additions & 0 deletions transports/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 🐞 Fixed

- **VK Budget Quota & Reload APIs** — The virtual key quota and reload (rotate) APIs now hydrate governance data (model configs and budgets) before returning, so budget information is accurate instead of missing or stale. Also added proper error handling when fetching model config during hydration.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P2 The file is missing a trailing newline. Most editors and tooling expect text files to end with a newline character.

Suggested change
- **VK Budget Quota & Reload APIs** — The virtual key quota and reload (rotate) APIs now hydrate governance data (model configs and budgets) before returning, so budget information is accurate instead of missing or stale. Also added proper error handling when fetching model config during hydration.
- **VK Budget Quota & Reload APIs** — The virtual key quota and reload (rotate) APIs now hydrate governance data (model configs and budgets) before returning, so budget information is accurate instead of missing or stale. Also added proper error handling when fetching model config during hydration.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Loading