Skip to content
Closed
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions packages/core/auth-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 3 additions & 0 deletions packages/core/functions-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
3 changes: 3 additions & 0 deletions packages/core/postgrest-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
3 changes: 3 additions & 0 deletions packages/core/realtime-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Copy link
Member

Choose a reason for hiding this comment

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

Should we add the replay change?

Copy link
Member

Choose a reason for hiding this comment

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah ideally this will be automated in the future. Let me fix this. Thanks!

9 changes: 9 additions & 0 deletions packages/core/storage-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions packages/core/supabase-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions scripts/release-stable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}
Expand All @@ -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' }
)

Expand Down