Skip to content

Commit 0957698

Browse files
thomasballingerConvex, Inc.
authored andcommitted
npm release version 1.27.4 (#41628)
GitOrigin-RevId: 9fec4dfd6626570836f8492a93b91f605016cb1b
1 parent 1e8eaa1 commit 0957698

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

npm-packages/@convex-dev/react-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"peerDependencies": {
3737
"@tanstack/react-query": "^5.0.0",
38-
"convex": "^1.27.3"
38+
"convex": "^1.27.4"
3939
},
4040
"devDependencies": {
4141
"@eslint/compat": "~1.3.0",

npm-packages/common/config/rush/version-policies.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
{
103103
"policyName": "convex",
104104
"definitionName": "lockStepVersion",
105-
"version": "1.27.3",
105+
"version": "1.27.4",
106106
"nextBump": "patch"
107107
}
108108
]

npm-packages/convex/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 1.27.4
4+
5+
- Add a `getAuth()` method to the client which returns the current token and
6+
claims. This method is intended for instrumentation purposes like adding this
7+
information to a reported Sentry error or event.
8+
9+
- Change to CLI `--admin-key` and `--url` arg parsing logic to avoid coercing
10+
empty strings to booleans.
11+
12+
- Vendor jwt-decode along with a few other dependnecies; this brings the number
13+
of runtime dependencies for Convex from 3 to 2: esbuild (binary) and prettier.
14+
15+
- Fix ConvexProviderWithClerk to catch `getToken()` errors. This could cause
16+
changes in behavior of refreshing Clerk tokens, we'll be watching this one.
17+
318
## 1.27.3
419

520
- Convex CLI now respects `HTTPS_PROXY` / `HTTP_PROXY` environment variables.

npm-packages/convex/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "convex",
33
"description": "Client for the Convex Cloud",
4-
"version": "1.27.3",
4+
"version": "1.27.4",
55
"author": "Convex, Inc. <no-reply@convex.dev>",
66
"homepage": "https://convex.dev",
77
"repository": {

npm-packages/convex/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = "1.27.3";
1+
export const version = "1.27.4";

0 commit comments

Comments
 (0)