Skip to content

chore(release): bump package versions - #211

Merged
halvaradop merged 3 commits into
masterfrom
release/bump-packages
Jul 5, 2026
Merged

chore(release): bump package versions#211
halvaradop merged 3 commits into
masterfrom
release/bump-packages

Conversation

@halvaradop

@halvaradop halvaradop commented Jul 4, 2026

Copy link
Copy Markdown
Member

@vercel

vercel Bot commented Jul 4, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
auth Skipped Skipped Jul 5, 2026 12:41am

@coderabbitai

coderabbitai Bot commented Jul 5, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

This PR performs a coordinated release across nine workspace packages: version bumps in package.json/deno.json, expanded OAuth provider export subpaths, dependency version alignment (@aura-stack/auth, @aura-stack/react), a new device package export map, restructured rate-limiter exports, a new next.js context export/tsdown entries, and changelog entries documenting an experimental signUp flow and useSignUp hook.

Changes

Release Version Bump and Export Map Expansion

Layer / File(s) Summary
Core package release
packages/core/CHANGELOG.md, packages/core/deno.json, packages/core/package.json
Version bumped to 0.8.0; added authentik, click-up, dribbble OAuth exports; changelog updated.
Device package exports
packages/device/deno.json
New exports map added mapping root to ./src/index.ts.
Elysia package release
packages/elysia/CHANGELOG.md, packages/elysia/deno.json, packages/elysia/package.json
Version bumped to 0.2.0; OAuth exports extended (adds authentik); @aura-stack/auth bumped to 0.8.0; changelog documents experimental signUp flow.
Express package release
packages/express/CHANGELOG.md, packages/express/deno.json, packages/express/package.json
Version bumped to 0.2.0; new OAuth subpath exports added; @aura-stack/auth bumped to 0.8.0; changelog documents experimental signUp flow.
Hono package release
packages/hono/CHANGELOG.md, packages/hono/deno.json, packages/hono/package.json
Version bumped to 0.2.0; new OAuth subpath exports added; @aura-stack/auth bumped to 0.8.0; changelog documents experimental signUp flow.
Next package release
packages/next/CHANGELOG.md, packages/next/deno.json, packages/next/package.json, packages/next/tsdown.config.ts
Version bumped to 0.2.0; new ./context export and additional OAuth exports; @aura-stack/react bumped to 0.2.0; tsdown entries expanded; changelog documents useSignUp hook and signUp flow.
Rate-limiter package release
packages/rate-limiter/CHANGELOG.md, packages/rate-limiter/deno.json, packages/rate-limiter/package.json
Version bumped to 0.1.0; export block replaced with exports block containing explicit algorithm subpaths and updated types export path; changelog updated.
React-router package release
packages/react-router/CHANGELOG.md, packages/react-router/deno.json, packages/react-router/package.json
Version bumped to 0.2.0; new OAuth subpath exports added; @aura-stack/react bumped to 0.2.0; changelog documents useSignUp hook and signUp flow.
React package release
packages/react/CHANGELOG.md, packages/react/deno.json, packages/react/package.json
Version bumped to 0.2.0; new OAuth subpath exports added; @aura-stack/auth bumped to 0.8.0; changelog documents useSignUp hook and signUp flow.

Estimated code review effort: 2 (Simple) | ~10 minutes

Possibly related PRs

  • aura-stack-ts/auth#121: Both PRs modify packages/core/deno.json to extend OAuth-related export subpaths alongside version bumps.
  • aura-stack-ts/auth#131: Both PRs touch the rate-limiter package's deno.json exports and changelog/version metadata.
  • aura-stack-ts/auth#142: Both PRs relate to @aura-stack/react-router package OAuth export entrypoints.

Suggested labels: chore

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: a release-focused package version bump across multiple packages.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release/bump-packages

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 3

♻️ Duplicate comments (1)
packages/next/deno.json (1)

42-42: 🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

Cross-check against CHANGELOG's auth dependency claim.

This only bumps @aura-stack/react to ^0.2.0; no corresponding @aura-stack/auth import update is present here despite the CHANGELOG (lines 21-24) claiming an auth dependency bump. See linked comment on packages/next/CHANGELOG.md for the verification script.

🤖 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 `@packages/next/deno.json` at line 42, The dependency change in deno.json only
updates `@aura-stack/react`, but the CHANGELOG claim about an auth dependency bump
is not reflected here. Review the package imports and dependency entries in the
next package setup, especially the `@aura-stack/auth-related` references, and add
the corresponding auth version update or remove the unsupported CHANGELOG claim
so the manifest and changelog agree.
🤖 Prompt for all review comments with 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.

Inline comments:
In `@packages/core/deno.json`:
- Around line 17-23: The Deno export map is missing the huggingface OAuth
subpath, so direct imports from the provider are not available even though the
module exists and is re-exported elsewhere. Update the exports in deno.json to
include ./oauth/huggingface alongside the other oauth provider entries, matching
the existing pattern used by symbols like ./oauth/atlassian and ./oauth/discord
so Deno consumers can import the provider directly.

In `@packages/hono/deno.json`:
- Around line 16-26: The new OAuth subpath exports in deno.json point to
nonexistent targets because packages/hono/src/oauth is missing. Either add the
corresponding source files and directory for the oauth modules referenced by the
export map, or remove the new ./oauth/* entries from the package export
configuration so package publishing and import resolution stay valid.

In `@packages/react-router/deno.json`:
- Around line 18-28: The export map in deno.json references OAuth entrypoints
that do not exist under the react-router package, so either add the missing
source modules or remove the invalid exports. Review the oauth export entries
for authentik, click-up, google, and hubspot, and ensure each points to a real
file under src/oauth or is deleted if intentionally unsupported. Keep the
deno.json export list consistent with the actual files available so publish does
not fail.

---

Duplicate comments:
In `@packages/next/deno.json`:
- Line 42: The dependency change in deno.json only updates `@aura-stack/react`,
but the CHANGELOG claim about an auth dependency bump is not reflected here.
Review the package imports and dependency entries in the next package setup,
especially the `@aura-stack/auth-related` references, and add the corresponding
auth version update or remove the unsupported CHANGELOG claim so the manifest
and changelog agree.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 7e25d50e-4a3d-4a03-abd7-079b24f1a54d

📥 Commits

Reviewing files that changed from the base of the PR and between dc33675 and b922924.

⛔ Files ignored due to path filters (1)
  • deno.lock is excluded by !**/*.lock
📒 Files selected for processing (26)
  • packages/core/CHANGELOG.md
  • packages/core/deno.json
  • packages/core/package.json
  • packages/device/deno.json
  • packages/elysia/CHANGELOG.md
  • packages/elysia/deno.json
  • packages/elysia/package.json
  • packages/express/CHANGELOG.md
  • packages/express/deno.json
  • packages/express/package.json
  • packages/hono/CHANGELOG.md
  • packages/hono/deno.json
  • packages/hono/package.json
  • packages/next/CHANGELOG.md
  • packages/next/deno.json
  • packages/next/package.json
  • packages/next/tsdown.config.ts
  • packages/rate-limiter/CHANGELOG.md
  • packages/rate-limiter/deno.json
  • packages/rate-limiter/package.json
  • packages/react-router/CHANGELOG.md
  • packages/react-router/deno.json
  • packages/react-router/package.json
  • packages/react/CHANGELOG.md
  • packages/react/deno.json
  • packages/react/package.json

Comment thread packages/core/deno.json
Comment thread packages/hono/deno.json
Comment thread packages/react-router/deno.json
@halvaradop
halvaradop merged commit b212594 into master Jul 5, 2026
7 checks passed
@halvaradop
halvaradop deleted the release/bump-packages branch July 5, 2026 00:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant