diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..6cb4152d8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +## 2.74.0 (2025-10-06) + +### 🩹 Fixes + +- **storage:** remove trailing slash from baseUrl normalization ([#1589](https://github.com/supabase/supabase-js/pull/1589)) + +### ❤️ Thank You + +- Taketo Yoshida \ No newline at end of file diff --git a/packages/core/auth-js/CHANGELOG.md b/packages/core/auth-js/CHANGELOG.md index 7b7e98bb1..5189d8dca 100644 --- a/packages/core/auth-js/CHANGELOG.md +++ b/packages/core/auth-js/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.74.0 (2025-10-06) + +This was a version bump only for @supabase/auth-js to align it with other projects, there were no code changes. + # Changelog ## [2.72.0](https://github.com/supabase/auth-js/compare/v2.71.1...v2.72.0) (2025-09-11) diff --git a/packages/core/functions-js/CHANGELOG.md b/packages/core/functions-js/CHANGELOG.md new file mode 100644 index 000000000..93fefba21 --- /dev/null +++ b/packages/core/functions-js/CHANGELOG.md @@ -0,0 +1,3 @@ +## 2.74.0 (2025-10-06) + +This was a version bump only for @supabase/functions-js to align it with other projects, there were no code changes. \ No newline at end of file diff --git a/packages/core/postgrest-js/CHANGELOG.md b/packages/core/postgrest-js/CHANGELOG.md new file mode 100644 index 000000000..4eb010a6a --- /dev/null +++ b/packages/core/postgrest-js/CHANGELOG.md @@ -0,0 +1,3 @@ +## 2.74.0 (2025-10-06) + +This was a version bump only for @supabase/postgrest-js to align it with other projects, there were no code changes. \ No newline at end of file diff --git a/packages/core/realtime-js/CHANGELOG.md b/packages/core/realtime-js/CHANGELOG.md new file mode 100644 index 000000000..d6bfbb275 --- /dev/null +++ b/packages/core/realtime-js/CHANGELOG.md @@ -0,0 +1,3 @@ +## 2.74.0 (2025-10-06) + +This was a version bump only for @supabase/realtime-js to align it with other projects, there were no code changes. \ No newline at end of file diff --git a/packages/core/storage-js/CHANGELOG.md b/packages/core/storage-js/CHANGELOG.md new file mode 100644 index 000000000..6cb4152d8 --- /dev/null +++ b/packages/core/storage-js/CHANGELOG.md @@ -0,0 +1,9 @@ +## 2.74.0 (2025-10-06) + +### 🩹 Fixes + +- **storage:** remove trailing slash from baseUrl normalization ([#1589](https://github.com/supabase/supabase-js/pull/1589)) + +### ❤️ Thank You + +- Taketo Yoshida \ No newline at end of file diff --git a/packages/core/supabase-js/CHANGELOG.md b/packages/core/supabase-js/CHANGELOG.md new file mode 100644 index 000000000..5f5c0cac7 --- /dev/null +++ b/packages/core/supabase-js/CHANGELOG.md @@ -0,0 +1,3 @@ +## 2.74.0 (2025-10-06) + +This was a version bump only for @supabase/supabase-js to align it with other projects, there were no code changes. \ No newline at end of file diff --git a/scripts/release-stable.ts b/scripts/release-stable.ts index a413a426a..b2e8608d4 100644 --- a/scripts/release-stable.ts +++ b/scripts/release-stable.ts @@ -128,7 +128,7 @@ if (!validSpecifiers.includes(versionSpecifier) && !isValidVersion) { // Commit changes if any try { - execSync(`git commit -m "chore(release): publish version ${version}"`) + execSync(`git commit -m "chore(release): version ${version} changelogs"`) } catch { console.log('No changes to commit') } @@ -137,7 +137,7 @@ if (!validSpecifiers.includes(versionSpecifier) && !isValidVersion) { // Open PR using GitHub CLI execSync( - `gh pr create --base master --head ${branchName} --title "chore(release): ${version}" --body "Automated release PR for ${version}"`, + `gh pr create --base master --head ${branchName} --title "chore(release): version ${version} changelogs" --body "Automated release PR for ${version} to update changelogs."`, { stdio: 'inherit' } )