Skip to content

Commit 70e3b89

Browse files
committed
chore(release): version 2.74.0 changelogs
1 parent 636085f commit 70e3b89

File tree

8 files changed

+36
-2
lines changed

8 files changed

+36
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## 2.74.0 (2025-10-06)
2+
3+
### 🩹 Fixes
4+
5+
- **storage:** remove trailing slash from baseUrl normalization ([#1589](https://github.com/supabase/supabase-js/pull/1589))
6+
7+
### ❤️ Thank You
8+
9+
- Taketo Yoshida

packages/core/auth-js/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.74.0 (2025-10-06)
2+
3+
This was a version bump only for @supabase/auth-js to align it with other projects, there were no code changes.
4+
15
# Changelog
26

37
## [2.72.0](https://github.com/supabase/auth-js/compare/v2.71.1...v2.72.0) (2025-09-11)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 2.74.0 (2025-10-06)
2+
3+
This was a version bump only for @supabase/functions-js to align it with other projects, there were no code changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 2.74.0 (2025-10-06)
2+
3+
This was a version bump only for @supabase/postgrest-js to align it with other projects, there were no code changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 2.74.0 (2025-10-06)
2+
3+
This was a version bump only for @supabase/realtime-js to align it with other projects, there were no code changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## 2.74.0 (2025-10-06)
2+
3+
### 🩹 Fixes
4+
5+
- **storage:** remove trailing slash from baseUrl normalization ([#1589](https://github.com/supabase/supabase-js/pull/1589))
6+
7+
### ❤️ Thank You
8+
9+
- Taketo Yoshida
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 2.74.0 (2025-10-06)
2+
3+
This was a version bump only for @supabase/supabase-js to align it with other projects, there were no code changes.

scripts/release-stable.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ if (!validSpecifiers.includes(versionSpecifier) && !isValidVersion) {
128128

129129
// Commit changes if any
130130
try {
131-
execSync(`git commit -m "chore(release): publish version ${version}"`)
131+
execSync(`git commit -m "chore(release): version ${version} changelogs"`)
132132
} catch {
133133
console.log('No changes to commit')
134134
}
@@ -137,7 +137,7 @@ if (!validSpecifiers.includes(versionSpecifier) && !isValidVersion) {
137137

138138
// Open PR using GitHub CLI
139139
execSync(
140-
`gh pr create --base master --head ${branchName} --title "chore(release): ${version}" --body "Automated release PR for ${version}"`,
140+
`gh pr create --base master --head ${branchName} --title "chore(release): version ${version} changelogs" --body "Automated release PR for ${version} to update changelogs."`,
141141
{ stdio: 'inherit' }
142142
)
143143

0 commit comments

Comments
 (0)