-
Notifications
You must be signed in to change notification settings - Fork 381
ci(repo): Version packages #6576
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.
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,20 @@ | ||
# Change Log | ||
|
||
## 3.23.0 | ||
|
||
### Minor Changes | ||
|
||
- [Billing Beta] Rename `cancelFreeTrialDescription` to `cancelFreeTrialAccessUntil`. ([#6582](https://github.com/clerk/javascript/pull/6582)) by [@panteliselef](https://github.com/panteliselef) | ||
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 chainVerify repo-wide migration from Ensure no lingering usages remain in code or locale files, and that the new key exists across locales. 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Search for old key usages outside changelogs:"
rg -nP -g '!**/CHANGELOG.md' '\bcancelFreeTrialDescription\b' -C2 || echo "OK: No occurrences found."
echo
echo "Confirm new key appears in localizations sources:"
rg -nP --type=ts --type=tsx -n -C2 '\bcancelFreeTrialAccessUntil\b' packages/localizations || {
echo "WARNING: New key not found in localizations TS files"; exit 1;
} Length of output: 611 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "1) Search for old key usages outside changelogs:"
rg -nP -g '!**/CHANGELOG.md' '\bcancelFreeTrialDescription\b' -C2 || echo "OK: No occurrences found."
echo
echo "2) Search for old key in localization JSON files:"
rg -nP '"cancelFreeTrialDescription"' -g '*.json' packages/localizations || echo "OK: No occurrences in localization JSON."
echo
echo "3) Confirm new key appears in localization JSON files:"
rg -nP '"cancelFreeTrialAccessUntil"' -g '*.json' packages/localizations || { echo "ERROR: New key not found in localization JSON"; exit 1; }
echo
echo "4) Search for new key usage in code (TS/JS files):"
rg -nP '\bcancelFreeTrialAccessUntil\b' -g '*.ts' -g '*.tsx' -g '*.js' -g '*.jsx' -C2 || echo "WARNING: No TS/JS references found." Length of output: 850 Add missing localization entries for The new key • Add Once the new key is added and TS types updated, this change will be fully rolled out. 🤖 Prompt for AI Agents
|
||
|
||
### Patch Changes | ||
|
||
- Update account deletion localization in zh-CN ([#6577](https://github.com/clerk/javascript/pull/6577)) by [@dearfad](https://github.com/dearfad) | ||
|
||
- Update copies for create organization screen on session tasks ([#6584](https://github.com/clerk/javascript/pull/6584)) by [@iagodahlem](https://github.com/iagodahlem) | ||
|
||
- Updated dependencies [[`e52bf8e`](https://github.com/clerk/javascript/commit/e52bf8ebef74a9e123c69b69acde1340c01d32d7), [`c043c19`](https://github.com/clerk/javascript/commit/c043c1919854aaa5b9cf7f6df5bb517f5617f7a1), [`c28d29c`](https://github.com/clerk/javascript/commit/c28d29c79bb4f144d782313ca72df7db91a77340), [`172e054`](https://github.com/clerk/javascript/commit/172e054a3511be12d16ba19037db320c2d9838bf)]: | ||
- @clerk/types@4.81.0 | ||
|
||
## 3.22.0 | ||
|
||
### Minor 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.
Fix typo and tighten wording in bullet entry.
"containes" → "contains". Also remove “element” to avoid redundancy.
Apply this diff:
📝 Committable suggestion
🤖 Prompt for AI Agents