chore(release): version packages (#3623)

* chore(release): version packages

* chore: remove lock file

* chore: fix ci

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Bereket Engida
2025-07-26 00:56:29 -07:00
committed by GitHub
parent 2b2fd0c77d
commit 776c4ae3fe
14 changed files with 109 additions and 35 deletions

View File

@@ -1,5 +0,0 @@
---
"@better-auth/stripe": patch
---
chore: fix typo on `freeTrial`

View File

@@ -1,5 +0,0 @@
---
"@better-auth/stripe": patch
---
Fix duplicate trials when switching plans

View File

@@ -1,20 +0,0 @@
---
"better-auth": patch
"@better-auth/cli": patch
"@better-auth/expo": patch
"@better-auth/sso": patch
"@better-auth/stripe": patch
---
Added support for listing organization members with pagination, sorting, and filtering, and improved client inference for additional organization fields. Also fixed date handling in rate limits and tokens, improved Notion OAuth user extraction, and ensured session is always set in context.
Organization
- Added listMembers API with pagination, sorting, and filtering.
- Added membersLimit param to getFullOrganization.
- Improved client inference for additional fields in organization schemas.
- Bug Fixes
- Fixed date handling by casting DB values to Date objects before using date methods.
- Fixed Notion OAuth to extract user info correctly.
- Ensured session is set in context when reading from cookie cach

View File

@@ -11,6 +11,10 @@ on:
- 'v**'
merge_group: {}
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM || github.repository_owner }}
jobs:
test:
runs-on: ubuntu-latest
@@ -59,6 +63,7 @@ jobs:
run: pnpm lint
- name: Check for Changesets
if: ${{ !startsWith(github.head_ref, 'changeset-release/') && !startsWith(github.ref_name, 'changeset-release/') }}
run: pnpm changeset status --since origin/main
- name: Test

View File

@@ -0,0 +1,17 @@
# better-auth
## 1.3.4
### Patch Changes
- 2bd2fa9: Added support for listing organization members with pagination, sorting, and filtering, and improved client inference for additional organization fields. Also fixed date handling in rate limits and tokens, improved Notion OAuth user extraction, and ensured session is always set in context.
Organization
- Added listMembers API with pagination, sorting, and filtering.
- Added membersLimit param to getFullOrganization.
- Improved client inference for additional fields in organization schemas.
- Bug Fixes
- Fixed date handling by casting DB values to Date objects before using date methods.
- Fixed Notion OAuth to extract user info correctly.
- Ensured session is set in context when reading from cookie cach

View File

@@ -1,6 +1,6 @@
{
"name": "better-auth",
"version": "1.3.4-beta.3",
"version": "1.3.4",
"description": "The most comprehensive authentication library for TypeScript.",
"type": "module",
"license": "MIT",

20
packages/cli/CHANGELOG.md Normal file
View File

@@ -0,0 +1,20 @@
# @better-auth/cli
## 1.3.4
### Patch Changes
- 2bd2fa9: Added support for listing organization members with pagination, sorting, and filtering, and improved client inference for additional organization fields. Also fixed date handling in rate limits and tokens, improved Notion OAuth user extraction, and ensured session is always set in context.
Organization
- Added listMembers API with pagination, sorting, and filtering.
- Added membersLimit param to getFullOrganization.
- Improved client inference for additional fields in organization schemas.
- Bug Fixes
- Fixed date handling by casting DB values to Date objects before using date methods.
- Fixed Notion OAuth to extract user info correctly.
- Ensured session is set in context when reading from cookie cach
- Updated dependencies [2bd2fa9]
- better-auth@1.3.4

View File

@@ -1,6 +1,6 @@
{
"name": "@better-auth/cli",
"version": "1.3.4-beta.3",
"version": "1.3.4",
"description": "The CLI for Better Auth",
"module": "dist/index.mjs",
"repository": {

View File

@@ -0,0 +1,20 @@
# @better-auth/expo
## 1.3.4
### Patch Changes
- 2bd2fa9: Added support for listing organization members with pagination, sorting, and filtering, and improved client inference for additional organization fields. Also fixed date handling in rate limits and tokens, improved Notion OAuth user extraction, and ensured session is always set in context.
Organization
- Added listMembers API with pagination, sorting, and filtering.
- Added membersLimit param to getFullOrganization.
- Improved client inference for additional fields in organization schemas.
- Bug Fixes
- Fixed date handling by casting DB values to Date objects before using date methods.
- Fixed Notion OAuth to extract user info correctly.
- Ensured session is set in context when reading from cookie cach
- Updated dependencies [2bd2fa9]
- better-auth@1.3.4

View File

@@ -1,6 +1,6 @@
{
"name": "@better-auth/expo",
"version": "1.3.4-beta.3",
"version": "1.3.4",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.mjs",

20
packages/sso/CHANGELOG.md Normal file
View File

@@ -0,0 +1,20 @@
# @better-auth/sso
## 1.3.4
### Patch Changes
- 2bd2fa9: Added support for listing organization members with pagination, sorting, and filtering, and improved client inference for additional organization fields. Also fixed date handling in rate limits and tokens, improved Notion OAuth user extraction, and ensured session is always set in context.
Organization
- Added listMembers API with pagination, sorting, and filtering.
- Added membersLimit param to getFullOrganization.
- Improved client inference for additional fields in organization schemas.
- Bug Fixes
- Fixed date handling by casting DB values to Date objects before using date methods.
- Fixed Notion OAuth to extract user info correctly.
- Ensured session is set in context when reading from cookie cach
- Updated dependencies [2bd2fa9]
- better-auth@1.3.4

View File

@@ -1,7 +1,7 @@
{
"name": "@better-auth/sso",
"author": "Bereket Engida",
"version": "1.3.4-beta.3",
"version": "1.3.4",
"main": "dist/index.cjs",
"license": "MIT",
"keywords": [

View File

@@ -0,0 +1,22 @@
# @better-auth/stripe
## 1.3.4
### Patch Changes
- ac6baba: chore: fix typo on `freeTrial`
- c2fb1aa: Fix duplicate trials when switching plans
- 2bd2fa9: Added support for listing organization members with pagination, sorting, and filtering, and improved client inference for additional organization fields. Also fixed date handling in rate limits and tokens, improved Notion OAuth user extraction, and ensured session is always set in context.
Organization
- Added listMembers API with pagination, sorting, and filtering.
- Added membersLimit param to getFullOrganization.
- Improved client inference for additional fields in organization schemas.
- Bug Fixes
- Fixed date handling by casting DB values to Date objects before using date methods.
- Fixed Notion OAuth to extract user info correctly.
- Ensured session is set in context when reading from cookie cach
- Updated dependencies [2bd2fa9]
- better-auth@1.3.4

View File

@@ -1,7 +1,7 @@
{
"name": "@better-auth/stripe",
"author": "Bereket Engida",
"version": "1.3.4-beta.3",
"version": "1.3.4",
"main": "dist/index.cjs",
"license": "MIT",
"keywords": [