From 776c4ae3fe174c296edcee979100726e8a975e21 Mon Sep 17 00:00:00 2001 From: Bereket Engida <86073083+Bekacru@users.noreply.github.com> Date: Sat, 26 Jul 2025 00:56:29 -0700 Subject: [PATCH] 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> --- .changeset/cold-sloths-laugh.md | 5 ----- .changeset/hungry-meals-float.md | 5 ----- .changeset/kind-baboons-speak.md | 20 -------------------- .github/workflows/ci.yml | 5 +++++ packages/better-auth/CHANGELOG.md | 17 +++++++++++++++++ packages/better-auth/package.json | 2 +- packages/cli/CHANGELOG.md | 20 ++++++++++++++++++++ packages/cli/package.json | 2 +- packages/expo/CHANGELOG.md | 20 ++++++++++++++++++++ packages/expo/package.json | 2 +- packages/sso/CHANGELOG.md | 20 ++++++++++++++++++++ packages/sso/package.json | 2 +- packages/stripe/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/stripe/package.json | 2 +- 14 files changed, 109 insertions(+), 35 deletions(-) delete mode 100644 .changeset/cold-sloths-laugh.md delete mode 100644 .changeset/hungry-meals-float.md delete mode 100644 .changeset/kind-baboons-speak.md create mode 100644 packages/better-auth/CHANGELOG.md create mode 100644 packages/cli/CHANGELOG.md create mode 100644 packages/expo/CHANGELOG.md create mode 100644 packages/sso/CHANGELOG.md create mode 100644 packages/stripe/CHANGELOG.md diff --git a/.changeset/cold-sloths-laugh.md b/.changeset/cold-sloths-laugh.md deleted file mode 100644 index 019768651c..0000000000 --- a/.changeset/cold-sloths-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@better-auth/stripe": patch ---- - -chore: fix typo on `freeTrial` diff --git a/.changeset/hungry-meals-float.md b/.changeset/hungry-meals-float.md deleted file mode 100644 index 0dfea18a52..0000000000 --- a/.changeset/hungry-meals-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@better-auth/stripe": patch ---- - -Fix duplicate trials when switching plans \ No newline at end of file diff --git a/.changeset/kind-baboons-speak.md b/.changeset/kind-baboons-speak.md deleted file mode 100644 index eb3208c1e9..0000000000 --- a/.changeset/kind-baboons-speak.md +++ /dev/null @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69e4edda15..cf6fa6680e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/packages/better-auth/CHANGELOG.md b/packages/better-auth/CHANGELOG.md new file mode 100644 index 0000000000..ad7ec0873c --- /dev/null +++ b/packages/better-auth/CHANGELOG.md @@ -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 diff --git a/packages/better-auth/package.json b/packages/better-auth/package.json index d0084be94f..00746120eb 100644 --- a/packages/better-auth/package.json +++ b/packages/better-auth/package.json @@ -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", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 0000000000..11e1e72aa4 --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -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 diff --git a/packages/cli/package.json b/packages/cli/package.json index 03d0446a72..adfa6914b8 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -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": { diff --git a/packages/expo/CHANGELOG.md b/packages/expo/CHANGELOG.md new file mode 100644 index 0000000000..82d5aece6a --- /dev/null +++ b/packages/expo/CHANGELOG.md @@ -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 diff --git a/packages/expo/package.json b/packages/expo/package.json index 261e2e0daf..930b916e3f 100644 --- a/packages/expo/package.json +++ b/packages/expo/package.json @@ -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", diff --git a/packages/sso/CHANGELOG.md b/packages/sso/CHANGELOG.md new file mode 100644 index 0000000000..dc9254aae4 --- /dev/null +++ b/packages/sso/CHANGELOG.md @@ -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 diff --git a/packages/sso/package.json b/packages/sso/package.json index 5deee006e2..fa77d0415c 100644 --- a/packages/sso/package.json +++ b/packages/sso/package.json @@ -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": [ diff --git a/packages/stripe/CHANGELOG.md b/packages/stripe/CHANGELOG.md new file mode 100644 index 0000000000..9e9eb3e434 --- /dev/null +++ b/packages/stripe/CHANGELOG.md @@ -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 diff --git a/packages/stripe/package.json b/packages/stripe/package.json index fe7a9b4c09..d07a983a25 100644 --- a/packages/stripe/package.json +++ b/packages/stripe/package.json @@ -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": [