Skip to content
Merged
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
20 changes: 20 additions & 0 deletions mintlify/docs/changelog/june-2026.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@ title: Changelog
description: What's new in urBackend — new features, improvements, and fixes.
---

<Update label="2026-06-15" description="Week of 2026-06-08–2026-06-15" tags={["Feature", "Improvement", "Fix"]}>
## New features

**Pagination Support for Auth User List** — Added pagination support to the Auth user list.
**Offset Pagination for Public Mail Logs API** — Implemented offset pagination for the public mail logs API.

## Improvements

**Standardized API Responses** — Standardized API responses in Public-Api middleware, Dashboard API-Controller, and Dashboard API-Middleware.
**Improved Auth UI Customization** — Improved auth UI customization options in the React SDK.
**Team Collaboration and Quota Isolation** — Enhanced team collaboration and quota isolation.

## Bug fixes

- Caught unhandled promise rejections in logging middleware (#291)
- Improved global error handling and added React ErrorBoundary (#288)
- Aligned auth schema validation with dashboard API (#289)
- Fixed auth UI customization options in React SDK (#301)
</Update>
Comment on lines +6 to +24

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.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify that changelog/june-2026 is registered in docs.json.

# Check if changelog/june-2026 is listed in docs.json
rg -A 10 '"Changelog"' mintlify/docs/docs.json | grep -c 'june-2026' && echo "Found" || echo "NOT FOUND: changelog/june-2026 is missing from docs.json"

# Show the current Changelog pages section for reference
echo "---"
echo "Current Changelog pages in docs.json:"
rg -A 8 '"Changelog"' mintlify/docs/docs.json

Repository: geturbackend/urBackend

Length of output: 410


Add changelog/june-2026 to the Changelog section in docs.json.

The new changelog entry is unreachable from the Changelog navigation because it is not registered in mintlify/docs/docs.json. The Changelog group currently lists only changelog/may-2026 and changelog/april-2026. Without adding changelog/june-2026 to the pages array, this entry will not appear in the sidebar navigation.

Suggested fix
"pages": [
  "changelog/june-2026",
  "changelog/may-2026",
  "changelog/april-2026"
]
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@mintlify/docs/changelog/june-2026.mdx` around lines 6 - 24, The new changelog
entry for June 2026 is not discoverable in the navigation because it is not
registered in the docs.json configuration file. Open the docs.json file and
locate the Changelog section in the pages array. Add the entry
`changelog/june-2026` to the pages array alongside the existing entries for
`changelog/may-2026` and `changelog/april-2026` to make the new changelog entry
accessible from the sidebar navigation.


<Update label="2026-06-08" description="Week of 2026-06-01–2026-06-08" tags={["Improvement", "Fix"]}>
## Improvements

Expand Down
Loading