-
Notifications
You must be signed in to change notification settings - Fork 373
ci(repo): Version packages #6510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,5 +1,13 @@ | ||||||||||||||||||
# Change Log | ||||||||||||||||||
|
||||||||||||||||||
## 2.7.1 | ||||||||||||||||||
|
||||||||||||||||||
### Patch Changes | ||||||||||||||||||
|
||||||||||||||||||
- Updated dependencies [[`b72a3dd`](https://github.com/clerk/javascript/commit/b72a3dda2467720e5dc8cab3e7e6a110f3beb79b), [`d93b0ed`](https://github.com/clerk/javascript/commit/d93b0edf4adc57d48a26cb08444192887ccec659), [`6459f7d`](https://github.com/clerk/javascript/commit/6459f7dabe5f163f48ed73106bb901d8187da3e2), [`0ff648a`](https://github.com/clerk/javascript/commit/0ff648aeac0e2f5481596a98c8046d9d58a7bf75), [`9084759`](https://github.com/clerk/javascript/commit/90847593300be605e1ee1c06dac147ce68b25dc7)]: | ||||||||||||||||||
- @clerk/types@4.75.0 | ||||||||||||||||||
- @clerk/shared@3.19.0 | ||||||||||||||||||
|
||||||||||||||||||
Comment on lines
+7
to
+10
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainRequest: verify versions align across package.json and dependents The changelog states updated dependencies to @clerk/[email protected] and @clerk/[email protected] for @clerk/[email protected]. Please verify:
🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "1) Verify @clerk/backend version is 2.7.1"
fd -a package.json packages | while read -r f; do
if jq -e '.name=="@clerk/backend"' "$f" >/dev/null 2>&1; then
echo "Found: $f"
jq '{name, version, dependencies}' "$f"
ver=$(jq -r '.version' "$f")
if [[ "$ver" != "2.7.1" ]]; then
echo "ERROR: @clerk/backend version is $ver, expected 2.7.1"
exit 1
fi
echo "OK: @clerk/backend version is 2.7.1"
echo
echo "2) Verify dependencies on @clerk/types and @clerk/shared"
types_ver=$(jq -r '.dependencies["@clerk/types"] // .devDependencies["@clerk/types"] // ""' "$f")
shared_ver=$(jq -r '.dependencies["@clerk/shared"] // .devDependencies["@clerk/shared"] // ""' "$f")
echo "@clerk/types: $types_ver"
echo "@clerk/shared: $shared_ver"
# Accept exact or ranged specifiers as long as they include the target version
if [[ "$types_ver" != *"4.75.0"* ]]; then
echo "ERROR: @clerk/types is $types_ver, expected to include 4.75.0"
exit 1
fi
if [[ "$shared_ver" != *"3.19.0"* ]]; then
echo "ERROR: @clerk/shared is $shared_ver, expected to include 3.19.0"
exit 1
fi
echo "OK: dependency versions match changelog"
fi
done
echo
echo "3) Verify dependents reference @clerk/backend 2.7.1 (or compatible)"
fd -a package.json packages | while read -r f; do
dep=$(jq -r '.dependencies["@clerk/backend"] // .devDependencies["@clerk/backend"] // empty' "$f")
if [[ -n "$dep" ]]; then
echo "$f -> @clerk/backend: $dep"
# Require either exact 2.7.1 or a range that includes it (e.g., ^2.7.1 or ~2.7.1)
if [[ "$dep" =~ ^[~^]?2\.7\.1($|[^0-9]) ]]; then
: # OK
else
echo "WARN: Dependent uses a different specifier ($dep). Confirm this is intended."
fi
fi
done
echo
echo "Done." Length of output: 2725 Align dependency specifiers in packages/backend/package.json with changelog The changelog for @clerk/[email protected] states that @clerk/types was bumped to 4.75.0 and @clerk/shared to 3.19.0, but the manifest uses workspace ranges instead: • packages/backend/package.json
Please update these to explicit semver ranges matching the changelog, for example: --- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ dependencies
- "@clerk/types": "workspace:^",
- "@clerk/shared": "workspace:^",
+ "@clerk/types": "^4.75.0",
+ "@clerk/shared": "^3.19.0", Once updated, also confirm that any packages depending on @clerk/backend reference 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
||||||||||||||||||
## 2.7.0 | ||||||||||||||||||
|
||||||||||||||||||
### Minor Changes | ||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,36 @@ | ||
# Change Log | ||
|
||
## 5.82.0 | ||
|
||
### Minor Changes | ||
|
||
- [Billing Beta] Cleanup naming inconsistencies in billing dates. ([#6513](https://github.com/clerk/javascript/pull/6513)) by [@panteliselef](https://github.com/panteliselef) | ||
|
||
## Migration | ||
|
||
- subscriptionItem.periodStartDate → subscriptionItem.periodStart | ||
- subscriptionItem.periodEndDate → subscriptionItem.periodEnd | ||
- subscriptionItem.canceledAtDate → subscriptionItem.canceledAt | ||
|
||
- [Experimental] Signal Errors ([#6495](https://github.com/clerk/javascript/pull/6495)) by [@dstaley](https://github.com/dstaley) | ||
|
||
- Remove `treatPendingAsSignedOut` from Clerk options ([#6497](https://github.com/clerk/javascript/pull/6497)) by [@LauraBeatris](https://github.com/LauraBeatris) | ||
|
||
### Patch Changes | ||
|
||
- Use throttling instead of sampling for telemetry events of UI components on keyless apps. ([#6514](https://github.com/clerk/javascript/pull/6514)) by [@panteliselef](https://github.com/panteliselef) | ||
|
||
- Refactor ApplicationLogo rendering logic to account for oAuth logos within OAuthConsent component. ([#6518](https://github.com/clerk/javascript/pull/6518)) by [@alexcarpenter](https://github.com/alexcarpenter) | ||
|
||
- Trigger Next.js hooks on session status transition from `active` to `pending` to update authentication context state ([#6511](https://github.com/clerk/javascript/pull/6511)) by [@LauraBeatris](https://github.com/LauraBeatris) | ||
|
||
- Add `.v0.app` as a preferred popup origin for OAuth flows. ([#6519](https://github.com/clerk/javascript/pull/6519)) by [@brkalow](https://github.com/brkalow) | ||
|
||
- Updated dependencies [[`b72a3dd`](https://github.com/clerk/javascript/commit/b72a3dda2467720e5dc8cab3e7e6a110f3beb79b), [`d93b0ed`](https://github.com/clerk/javascript/commit/d93b0edf4adc57d48a26cb08444192887ccec659), [`6459f7d`](https://github.com/clerk/javascript/commit/6459f7dabe5f163f48ed73106bb901d8187da3e2), [`0ff648a`](https://github.com/clerk/javascript/commit/0ff648aeac0e2f5481596a98c8046d9d58a7bf75), [`9084759`](https://github.com/clerk/javascript/commit/90847593300be605e1ee1c06dac147ce68b25dc7)]: | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
|
||
## 5.81.0 | ||
|
||
### Minor Changes | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# Change Log | ||
|
||
## 2.14.17 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`0ff648a`](https://github.com/clerk/javascript/commit/0ff648aeac0e2f5481596a98c8046d9d58a7bf75), [`b72a3dd`](https://github.com/clerk/javascript/commit/b72a3dda2467720e5dc8cab3e7e6a110f3beb79b), [`29a25f3`](https://github.com/clerk/javascript/commit/29a25f3fffca5723e27ee0f639913059e528c083), [`d93b0ed`](https://github.com/clerk/javascript/commit/d93b0edf4adc57d48a26cb08444192887ccec659), [`e040597`](https://github.com/clerk/javascript/commit/e040597ce5c8145dde7c662b2f9cbfe23afa69c4), [`6459f7d`](https://github.com/clerk/javascript/commit/6459f7dabe5f163f48ed73106bb901d8187da3e2), [`0ff648a`](https://github.com/clerk/javascript/commit/0ff648aeac0e2f5481596a98c8046d9d58a7bf75), [`1517932`](https://github.com/clerk/javascript/commit/15179326d44c65109b3e5fcf094f206570453aa6), [`9084759`](https://github.com/clerk/javascript/commit/90847593300be605e1ee1c06dac147ce68b25dc7)]: | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
|
||
## 2.14.16 | ||
|
||
### Patch Changes | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
# Change Log | ||
|
||
## 2.4.18 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`b72a3dd`](https://github.com/clerk/javascript/commit/b72a3dda2467720e5dc8cab3e7e6a110f3beb79b), [`d93b0ed`](https://github.com/clerk/javascript/commit/d93b0edf4adc57d48a26cb08444192887ccec659), [`6459f7d`](https://github.com/clerk/javascript/commit/6459f7dabe5f163f48ed73106bb901d8187da3e2), [`0ff648a`](https://github.com/clerk/javascript/commit/0ff648aeac0e2f5481596a98c8046d9d58a7bf75), [`9084759`](https://github.com/clerk/javascript/commit/90847593300be605e1ee1c06dac147ce68b25dc7)]: | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
|
||
## 2.4.17 | ||
|
||
### Patch Changes | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Change Log | ||
|
||
## 3.20.9 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`b72a3dd`](https://github.com/clerk/javascript/commit/b72a3dda2467720e5dc8cab3e7e6a110f3beb79b), [`d93b0ed`](https://github.com/clerk/javascript/commit/d93b0edf4adc57d48a26cb08444192887ccec659), [`6459f7d`](https://github.com/clerk/javascript/commit/6459f7dabe5f163f48ed73106bb901d8187da3e2), [`9084759`](https://github.com/clerk/javascript/commit/90847593300be605e1ee1c06dac147ce68b25dc7)]: | ||
- @clerk/[email protected] | ||
|
||
## 3.20.8 | ||
|
||
### Patch Changes | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# Change Log | ||
|
||
## 6.30.1 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`b72a3dd`](https://github.com/clerk/javascript/commit/b72a3dda2467720e5dc8cab3e7e6a110f3beb79b), [`d93b0ed`](https://github.com/clerk/javascript/commit/d93b0edf4adc57d48a26cb08444192887ccec659), [`6459f7d`](https://github.com/clerk/javascript/commit/6459f7dabe5f163f48ed73106bb901d8187da3e2), [`0ff648a`](https://github.com/clerk/javascript/commit/0ff648aeac0e2f5481596a98c8046d9d58a7bf75), [`9084759`](https://github.com/clerk/javascript/commit/90847593300be605e1ee1c06dac147ce68b25dc7)]: | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
|
||
## 6.30.0 | ||
|
||
### Minor Changes | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# @clerk/nuxt | ||
|
||
## 1.8.4 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`b72a3dd`](https://github.com/clerk/javascript/commit/b72a3dda2467720e5dc8cab3e7e6a110f3beb79b), [`d93b0ed`](https://github.com/clerk/javascript/commit/d93b0edf4adc57d48a26cb08444192887ccec659), [`6459f7d`](https://github.com/clerk/javascript/commit/6459f7dabe5f163f48ed73106bb901d8187da3e2), [`0ff648a`](https://github.com/clerk/javascript/commit/0ff648aeac0e2f5481596a98c8046d9d58a7bf75), [`9084759`](https://github.com/clerk/javascript/commit/90847593300be605e1ee1c06dac147ce68b25dc7)]: | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
- @clerk/[email protected] | ||
|
||
## 1.8.3 | ||
|
||
### Patch Changes | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Minor bump aligns with option removal; validate docs and changelog.
2.11.0 is appropriate for the removal of
treatPendingAsSignedOut
. Confirm CHANGELOG entry and no lingering references.🏁 Script executed:
Length of output: 3757
Remove all
treatPendingAsSignedOut
references from the Astro integrationThe v2.11.0 changelog entry is in place, but the removed option still appears in both docs and code. Please strip out or update every occurrence before bumping the version:
• packages/astro/CHANGELOG.md
– Remove historical usage examples and mentions of
treatPendingAsSignedOut
under v2.11.0 (and earlier entries).• packages/astro/src/react/controlComponents.tsx
– Props and
useAuth
calls on lines 12–13 and 21–22 still reference the option.• packages/astro/src/react/hooks.ts
– Default parameter and option forwarding on lines 88 and 119.
• packages/astro/src/server/clerk-middleware.ts
–
locals.auth
signature and forwarding on lines 255–256.• packages/astro/src/server/get-auth.ts
– Function signature and spread of
treatPendingAsSignedOut
on lines 16 and 43.Once these are cleaned up, the minor bump to 2.11.0 will correctly reflect the removal.
🤖 Prompt for AI Agents