-
Notifications
You must be signed in to change notification settings - Fork 251
chore: bump package versions and update dependencies across project #29
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| # @libra/dispatcher | ||
|
|
||
| ## 1.0.12 | ||
|
|
||
| ### Patch Changes | ||
|
|
||
| - docs bug fix & deps update | ||
|
|
||
| ## 1.0.11 | ||
|
|
||
| ### Patch Changes | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@libra/dispatcher", | ||
| "version": "1.0.11", | ||
| "version": "1.0.12", | ||
|
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. 🛠️ Refactor suggestion 🧩 Analysis chainAlign Cloudflare workers-types with wrangler compatibility_date. You bumped @cloudflare/workers-types; ensure each app’s wrangler.jsonc compatibility_date matches the new types to avoid subtle type/runtime drift. Run to review configured compatibility_date values: Also applies to: 26-26 🏁 Script executed: #!/bin/bash
# List Cloudflare compatibility_date across repo
rg -n '"compatibility_date"\s*:\s*"[0-9-]+"' -g '!**/node_modules/**' -C1 || trueLength of output: 148 🏁 Script executed: #!/bin/bash
set -euo pipefail
printf "PWD: %s\n\n" "$(pwd)"
printf "-- Finding wrangler.json / wrangler.jsonc files --\n"
fd -HI -e json -e jsonc '^wrangler' || true
printf "\n-- Showing contents of found wrangler files (first 200 lines) --\n"
fd -HI -e json -e jsonc '^wrangler' -0 | while IFS= read -r -d '' file; do
printf "\n==== %s ====\n" "$file"
sed -n '1,200p' "$file"
done || true
printf "\n-- Searching for compatibility_date occurrences --\n"
rg -n --hidden --no-ignore '"compatibility_date"\s*:\s*"[0-9-]+"' -C1 || true
printf "\n-- Searching for @cloudflare/workers-types in repo --\n"
rg -n --hidden --no-ignore '@cloudflare/workers-types' -S || trueLength of output: 120 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "PWD: $(pwd)"
echo
echo "-- git ls-files: wrangler.json / wrangler.jsonc --"
git ls-files -- '*/wrangler.json' '*/wrangler.jsonc' || true
echo
echo "-- fallback: find wrangler files (exclude node_modules) --"
find . -type f \( -iname 'wrangler.json' -o -iname 'wrangler.jsonc' \) -not -path './node_modules/*' -print || true
# Collect list of wrangler files (git first, then find)
wranglers=$(git ls-files -- '*/wrangler.json' '*/wrangler.jsonc' 2>/dev/null || true)
if [ -z "$wranglers" ]; then
wranglers=$(find . -type f \( -iname 'wrangler.json' -o -iname 'wrangler.jsonc' \) -not -path './node_modules/*' -print 2>/dev/null || true)
fi
if [ -n "$wranglers" ]; then
echo
echo "-- Showing first 200 lines of each wrangler file found --"
# Handle filenames safely
while IFS= read -r file; do
[ -z "$file" ] && continue
echo
echo "==== $file ===="
sed -n '1,200p' "$file" || true
done <<< "$wranglers"
else
echo
echo "No wrangler.json / wrangler.jsonc files found."
fi
echo
echo "-- Searching for compatibility_date occurrences across repo --"
# Use grep to find occurrences; exclude node_modules
grep -nR --line-number --exclude-dir=node_modules '"compatibility_date"' . || true
echo
echo "-- Searching for @cloudflare/workers-types references in package.json files --"
grep -nR --line-number --exclude-dir=node_modules '@cloudflare/workers-types' . || true
echo
echo "-- finished --"Length of output: 236373 Align wrangler compatibility_date with bumped @cloudflare/workers-types @cloudflare/workers-types was bumped to ^4.20250924.0 — update each Cloudflare Worker config's compatibility_date to 2025-09-24 (or later) so types and runtime match.
🤖 Prompt for AI Agents |
||
| "type": "module", | ||
| "scripts": { | ||
| "dev": "wrangler dev --port 3007 --persist-to=../web/.wrangler/state", | ||
|
|
@@ -23,7 +23,7 @@ | |
| }, | ||
| "devDependencies": { | ||
| "wrangler": "4.27.0", | ||
| "@cloudflare/workers-types": "^4.20250921.0", | ||
| "@cloudflare/workers-types": "^4.20250924.0", | ||
| "typescript": "^5.9.2", | ||
| "dotenv": "^17.2.2", | ||
| "dotenv-cli": "^10.0.0", | ||
|
|
||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| # @libra/docs | ||
|
|
||
| ## 1.0.9 | ||
|
|
||
| ### Patch Changes | ||
|
|
||
| - docs bug fix & deps update | ||
|
|
||
| ## 1.0.8 | ||
|
|
||
| ### Patch Changes | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ | |
| * | ||
| */ | ||
|
|
||
| import { createI18nMiddleware } from 'fumadocs-core/i18n'; | ||
| import { createI18nMiddleware } from 'fumadocs-core/i18n/middleware'; | ||
|
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. [P1] Import path no longer matches installed fumadocs-core version The middleware now imports Useful? React with 👍 / 👎. |
||
| import { i18n } from '@/lib/i18n'; | ||
|
|
||
| export default createI18nMiddleware(i18n); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| /// <reference types="next" /> | ||
| /// <reference types="next/image-types/global" /> | ||
| /// <reference path="./.next/types/routes.d.ts" /> | ||
|
|
||
| // NOTE: This file should not be edited | ||
| // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| # opennext-cache | ||
|
|
||
| ## 1.0.1 | ||
|
|
||
| ### Patch Changes | ||
|
|
||
| - docs bug fix & deps update | ||
|
|
||
| ## 1.0.0 | ||
|
|
||
| ### Major Changes | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "name": "vite-shadcn-template-libra", | ||
| "private": true, | ||
| "version": "1.0.0", | ||
| "version": "1.0.1", | ||
|
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. Project version bumped to 1.0.1 while Docker/Daytona script tags remain 1.0.0, leading to inconsistent versioning across build/push workflows. Update script tags to match the new version. Prompt for AI agents |
||
| "type": "module", | ||
| "scripts": { | ||
| "dev": "vite", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "libra-core", | ||
| "version": "1.0.16", | ||
| "version": "1.0.17", | ||
| "private": true, | ||
| "type": "module", | ||
| "scripts": { | ||
|
|
@@ -25,9 +25,9 @@ | |
| "analyze": "ANALYZE=true bun run build" | ||
| }, | ||
| "dependencies": { | ||
| "@ai-sdk/anthropic": "^2.0.17", | ||
| "@ai-sdk/azure": "^2.0.32", | ||
| "@ai-sdk/xai": "^2.0.20", | ||
| "@ai-sdk/anthropic": "^2.0.18", | ||
| "@ai-sdk/azure": "^2.0.34", | ||
| "@ai-sdk/xai": "^2.0.22", | ||
| "@git-diff-view/file": "^0.0.30", | ||
| "@git-diff-view/react": "^0.0.30", | ||
| "@hookform/resolvers": "^5.2.2", | ||
|
|
@@ -46,22 +46,22 @@ | |
| "@marsidev/react-turnstile": "^1.3.1", | ||
| "@openrouter/ai-sdk-provider": "^1.2.0", | ||
| "@shikijs/transformers": "^3.13.0", | ||
| "@tanstack/react-query": "^5.89.0", | ||
| "@tanstack/react-query": "^5.90.2", | ||
| "@tanstack/react-table": "^8.21.3", | ||
| "@tsparticles/engine": "^3.9.1", | ||
| "@tsparticles/react": "^3.0.0", | ||
| "@tsparticles/slim": "^3.9.1", | ||
| "ai": "^5.0.48", | ||
| "ai": "^5.0.51", | ||
| "date-fns": "^4.1.0", | ||
| "diff": "^8.0.2", | ||
| "fast-xml-parser": "^5.2.5", | ||
| "file-saver": "^2.0.5", | ||
| "jszip": "^3.10.1", | ||
| "motion": "^12.23.16", | ||
| "next": "^15.5.3", | ||
| "motion": "^12.23.19", | ||
| "next": "^15.5.4", | ||
| "nextjs-toploader": "^3.9.17", | ||
| "posthog-js": "^1.266.3", | ||
| "posthog-node": "^5.8.6", | ||
| "posthog-js": "^1.268.1", | ||
| "posthog-node": "^5.8.8", | ||
|
Comment on lines
+63
to
+64
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. 🧩 Analysis chainPostHog bumps: revalidate client-side usage for secrets/consent. Quick scan for PostHog init usage: 🏁 Script executed: #!/bin/bash
set -euo pipefail
rg -n -C2 'posthog|PostHog' apps/web | sed -n '1,200p'Length of output: 12130 PostHog bumps: remove server secrets from client and gate tracking by consent.
🤖 Prompt for AI Agents |
||
| "react": "^19.1.1", | ||
| "react-error-boundary": "^5.0.0", | ||
| "react-hook-form": "^7.63.0", | ||
|
|
@@ -75,7 +75,7 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@types/diff": "^8.0.0", | ||
| "@tanstack/react-query-devtools": "^5.89.0", | ||
| "@tanstack/react-query-devtools": "^5.90.2", | ||
| "@inlang/paraglide-js": "^2.3.2", | ||
| "@inlang/cli": "^3.0.12", | ||
| "@types/file-saver": "^2.0.7", | ||
|
|
||
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.
🧩 Analysis chain
Cloudflare deps bumped: ensure Wrangler and compatibility_date alignment.
Confirm wrangler 4.27.0 is compatible with @cloudflare/vite-plugin ^1.13.4 and workers-types ^4.20250924.0, and that compatibility_date is updated in wrangler config(s).
Use this to audit compatibility_date values:
🏁 Script executed:
Length of output: 61
🏁 Script executed:
Length of output: 444
🏁 Script executed:
Length of output: 56
🏁 Script executed:
Length of output: 469
Update compatibility_date to match @cloudflare/workers-types (2025-09-24) and verify wrangler/plugin compatibility
compatibility_date is "2025-09-03" in:
packages/auth/wrangler.jsonc — no compatibility_date present.
Action: set compatibility_date to "2025-09-24" (or appropriate deployment date) in the files above, add compatibility_date to packages/auth/wrangler.jsonc if needed, and confirm wrangler 4.27.0 is compatible with @cloudflare/vite-plugin ^1.13.4 and @cloudflare/workers-types ^4.20250924.0.
🤖 Prompt for AI Agents