function Test() {
\\nuseFormState({
\\ncontrol // no longer need context api
\\n})
\\n}
\\n
⚡️ subscribe
const { formControl } = createFormControl(props)\\nformControl.subscribe({
\\nformState: { isDirty: true },
\\ncallback: (formState) => {
\\nif (formState.isDirty) {
\\n// do something here
\\n}
\\n}
\\n})
\\nfunction App() {
\\nconst { register } = useForm({
\\nformControl,
\\n})
\\n
return <form />
\\n}
\\n
\\n🪲 fix react-hook-form/react-hook-form#12680: Update Fieldarray Unmount Status (react-hook-form/react-hook-form#12690)
\\n\\n\\n... (truncated)
\\n\\na66b52a
7.55.022287a0
7.55.0-next.9cbd9fc6
🫡 fix: improve type inference for useFormContext
(#12689)a711056
🪲 fix #12680: Update Fieldarray Unmount Status (#12690)2b922ef
⚽️ chore: update prettier configuration and apply formatting (#12650)094f4f8
7.55.0-next.87aed67d
👮♂️ feat: infer resolver output types (#12638)ba2df7b
🐞 fix(useForm): make values
and defaultValues
work correctly with `create...d9e7e4d
🥹 close #12665 issue with values not populate form662421e
7.55.0-next.7Updates react-native-screens
from 4.9.2 to 4.10.0
Sourced from react-native-screens\'s releases.
\\n\\n\\n4.10.0
\\nMinor release adding support for
\\nformSheet
+ScrollView
+ sticky header layout on iOS (requires specific view hierarchy to work, see: #2747). The release includes also series of important fixes.There are a lot of big internal changes in this release - we kindly ask you to report any bug issues and especially regressions we didn\'t catch.
\\nCheers!
\\nWhat\'s Changed
\\n⚠️ Important
\\n\\n
\\n- chore: update iOS min supported version to 15.1 by
\\n@kkafar
in software-mansion/react-native-screens#2799Please note that this change only aligns the library with the behaviour of min. supported
\\nreact-native
version, which is 0.76 (old arch) and 0.77 (new arch). This should not affect your apps unless you\'re using olderreact-native
version + custom patches.🟢 Improvements
\\n\\n
\\n- feat(iOS): add experimental support for scrollview header when using formsheet by
\\n@kkafar
in software-mansion/react-native-screens#2747🐞 Bug fixes
\\n\\n
\\n- fix(Android,Fabric): prevent header subviews from disappearing after hot-reload by
\\n@kkafar
in software-mansion/react-native-screens#2807- fix(Android,Fabric): prevent Yoga from stretch-fitting height of header subview by
\\n@kkafar
in software-mansion/react-native-screens#2811- fix(Android,Fabric): prevent header subview disappearance when using
\\nsetOptions
by@kkafar
in software-mansion/react-native-screens#2812- fix(Android): pressables under sheets dimming view intercept gesture events by
\\n@kkafar
in software-mansion/react-native-screens#2740- fix(Android): missing content when using flex for formsheet contents by
\\n@kkafar
in software-mansion/react-native-screens#2748- fix(Android): prevent crash by properly managing lifecycle of the dimming view by
\\n@kkafar
in software-mansion/react-native-screens#2750- fix(Android): findTitleTextViewInToolbar couldn\'t find the correct view in certain cases by
\\n@herlihalim
in software-mansion/react-native-screens#2757- fix(Android,native-stack): fix check for
\\nsheetAllowedDetents
value & apply appropriate styles by@kkafar
in software-mansion/react-native-screens#2762- fix(Android):
\\nformSheet
not visible when going back frompush
in parent stack by@kkafar
in software-mansion/react-native-screens#2767- fix: FullWindowOverlay not working with dynamic frameworks by
\\n@war-in
in software-mansion/react-native-screens#2769- fix: update workaround preventing React Native from hiding frozen screens to work with RN 0.78 by
\\n@kligarski
in software-mansion/react-native-screens#2778- fix(Android): adapt header insets when interface orientation changes by
\\n@kkafar
in software-mansion/react-native-screens#2756- fix(Android): fix drawing order when dismissing multiple stacked sheets by
\\n@kkafar
in software-mansion/react-native-screens#2771- fix(Android,Paper): header config blocks gestures close to the top of the screen by
\\n@kkafar
in software-mansion/react-native-screens#2781- fix(Android): keep
\\nformSheet
selected detent index after fragment reattachment by@kkafar
in software-mansion/react-native-screens#2782- fix(Android,Fabric): pressables losing focus on screens with
\\nformSheet
presentation by@kkafar
in software-mansion/react-native-screens#2788- fix(Android):
\\nformSheet
withfitToContents
does not have correct height after goBack by@kkafar
in software-mansion/react-native-screens#2789- fix(Android): implement ReactPointerEventsView to prevent header config from intercepting touches by
\\n@kkafar
in software-mansion/react-native-screens#2796- fix(iOS): use prefersPageSizing for modal on iOS 18.0+ by
\\n@kligarski
in software-mansion/react-native-screens#2797- fix(Android): fix backward compat with K1 compiler by
\\n@kligarski
in software-mansion/react-native-screens#2808🔢 Misc
\\n\\n
\\n\\n- chore: add test examples do example app by
\\n@kkafar
in software-mansion/react-native-screens#2735- fix(TVOS): update dependencies to fix TVOSExample by
\\n@kligarski
in software-mansion/react-native-screens#2751- refactor(Android): kotlinize
\\nScreenStack.onUpdate
method by@kkafar
in software-mansion/react-native-screens#2763- chore(examples): adjust metro config to allow for easier modify-test loop with react-navigation submodule by
\\n@kkafar
in software-mansion/react-native-screens#2765- chore(Android): remove unused NativeDismissalObserver interface by
\\n@kkafar
in software-mansion/react-native-screens#2768- chore: remove unnecessary enableFreeze from Example.tsx by
\\n@kligarski
in software-mansion/react-native-screens#2779
... (truncated)
\\n6b47580
Release 4.10.0ab2a303
fix(Android,Fabric): prevent header subview disappearance when using `setOpti...b1e9c71
fix(Android,Fabric): prevent Yoga from stretch-fitting height of header subvi...29c3ae2
fix(Android,Fabric): prevent header subviews from disappearing after hot-relo...e427d72
fix(Android): fix backward compat with K1 compiler (#2808)2f7b5f6
chore: update iOS min supported version to 15.1 (#2799)82f1124
refactor(iOS): cleanup no. 1 in `RNSScreenStackHeaderConfig.updateViewControl...ac7154c
fix(iOS): use prefersPageSizing for modal on iOS 18.0+ (#2797)da2c028
fix(Android): implement ReactPointerEventsView to prevent header config from ...91400bc
fix(Android): formSheet
with fitToContents
does not have correct height a...Updates use-sync-external-store
from 1.4.0 to 1.5.0
Updates @sentry/react
from 9.9.0 to 9.10.1
Sourced from @sentry/react
\'s releases.
\\n\\n9.10.1
\\n\\n
\\n- fix: Correct
\\n@sentry-internal/feedback
docs to match the code (#15874)- deps: Bump bundler plugins to version
\\n3.2.4
(#15909)Bundle size 📦
\\n\\n\\n
\\n\\n \\n\\n\\nPath \\nSize \\n\\n \\n\\n @sentry/browser
23.08 KB \\n\\n \\n\\n @sentry/browser
- with treeshaking flags22.88 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing)36.49 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay)73.65 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay) - with treeshaking flags67 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay with Canvas)78.3 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay, Feedback)90.87 KB \\n\\n \\n\\n @sentry/browser
(incl. Feedback)40.21 KB \\n\\n \\n\\n @sentry/browser
(incl. sendFeedback)27.71 KB \\n\\n \\n\\n @sentry/browser
(incl. FeedbackAsync)32.5 KB \\n\\n \\n\\n @sentry/react
24.86 KB \\n\\n \\n\\n @sentry/react
(incl. Tracing)38.39 KB \\n\\n \\n\\n @sentry/vue
27.3 KB \\n\\n \\n\\n @sentry/vue
(incl. Tracing)38.18 KB \\n\\n \\n\\n @sentry/svelte
23.12 KB \\n\\n \\nCDN Bundle \\n24.33 KB \\n\\n \\nCDN Bundle (incl. Tracing) \\n36.51 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) \\n71.53 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) \\n76.71 KB \\n\\n \\nCDN Bundle - uncompressed \\n70.93 KB \\n\\n \\nCDN Bundle (incl. Tracing) - uncompressed \\n108.11 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) - uncompressed \\n219.4 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed \\n231.97 KB \\n\\n \\n\\n @sentry/nextjs
(client)39.68 KB \\n\\n \\n\\n @sentry/sveltekit
(client)36.92 KB \\n\\n \\n\\n @sentry/node
142.91 KB \\n\\n \\n\\n @sentry/node
- without tracing96.12 KB \\n\\n \\n\\n\\n @sentry/aws-serverless
120.46 KB \\n9.10.0
\\nImportant Changes
\\n\\n
\\n\\n- \\n
\\nfeat: Add support for logs
\\n\\n
\\n- feat(node): Add logging public APIs to Node SDKs (#15764)
\\n- feat(core): Add support for
\\nbeforeSendLog
(#15814)- feat(core): Add support for parameterizing logs (#15812)
\\n- fix: Remove critical log severity level (#15824)
\\nAll JavaScript SDKs other than
\\n@sentry/cloudflare
and@sentry/deno
now support sending logs via dedicated methods as part of Sentry\'s upcoming logging product.Logging is gated by an experimental option,
\\n_experiments.enableLogs
.
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.10.1
\\n\\n
\\n- fix: Correct
\\n@sentry-internal/feedback
docs to match the code (#15874)- deps: Bump bundler plugins to version
\\n3.2.4
(#15909)9.10.0
\\nImportant Changes
\\n\\n
\\n\\n- \\n
\\nfeat: Add support for logs
\\n\\n
\\n- feat(node): Add logging public APIs to Node SDKs (#15764)
\\n- feat(core): Add support for
\\nbeforeSendLog
(#15814)- feat(core): Add support for parameterizing logs (#15812)
\\n- fix: Remove critical log severity level (#15824)
\\nAll JavaScript SDKs other than
\\n@sentry/cloudflare
and@sentry/deno
now support sending logs via dedicated methods as part of Sentry\'s upcoming logging product.Logging is gated by an experimental option,
\\n_experiments.enableLogs
.\\nSentry.init({\\n dsn: \'PUBLIC_DSN\',\\n // `enableLogs` must be set to true to use the logging features\\n _experiments: { enableLogs: true },\\n});\\n
const { trace, debug, info, warn, error, fatal, fmt } = Sentry.logger;
\\ntrace(\'Starting database connection\', { database: \'users\' });\\ndebug(\'Cache miss for user\', { userId: 123 });\\nerror(\'Failed to process payment\', { orderId: \'order_123\', amount: 99.99 });\\nfatal(\'Database connection pool exhausted\', { database: \'users\', activeConnections: 100 });
\\n// Structured logging via the
\\nfmt
helper function. When you usefmt
, the string template and parameters are sent separately so they can be queried independently in Sentry.
info(fmt(
Updated profile for user ${userId}
));\\nwarn(fmt(Rate limit approaching for endpoint ${endpoint}. Requests: ${requests}, Limit: ${limit}
));\\nWith server-side SDKs like
\\n@sentry/node
,@sentry/bun
or server-side of@sentry/nextjs
or@sentry/sveltekit
, you can do structured logging without needing thefmt
helper function.\\nconst { info, warn } = Sentry.logger;\\n
info(\'User %s logged in successfully\', [123]);\\nwarn(\'Failed to load user %s data\', [123], { errorCode: 404 });\\n
To filter logs, or update them before they are sent to Sentry, you can use the
\\n_experiments.beforeSendLog
option.
... (truncated)
\\n979fe8f
release: 9.10.1c72d02b
Merge pull request #15910 from getsentry/prepare-release/9.10.12139b59
meta(changelog): Update changelog for VERSIONbcb15ba
deps: Bump bundler plugins to version 3.2.4
(#15909)4dc7006
Merge pull request #15876 from getsentry/masterdbde86c
Merge branch \'release/9.10.0\'791d9e3
fix: Correct @sentry-internal/feedback
docs to match the code (#15874)e383fff
release: 9.10.003d4ab1
Merge pull request #15867 from getsentry/prepare-release/9.10.0d430d96
meta(changelog): Update changelog for 9.10.0Updates framer-motion
from 12.5.0 to 12.6.2
Sourced from framer-motion\'s changelog.
\\n\\n\\n[12.6.2] 2025-03-26
\\nFixed
\\n\\n
\\n- Fixing hardware acceleration for non-
\\ntransform
values when amotion
component has a definedtransformTemplate
.[12.6.1] 2025-03-26
\\nFixed
\\n\\n
\\n- Reverting pointer capture for press gesture.
\\n[12.6.0] 2025-03-25
\\nChanged
\\n\\n
\\n- Renamed
\\nview
toanimateView
.Added
\\n\\n
\\n- New
\\ninterrupt: \\"wait\\"
mode asanimateView
default.
25839ac
v12.6.28562e5a
Latest0cd5acc
Merge pull request #3128 from motiondivision/feature/optimise-transform-template782ee2c
Fixing acceleration on non-transform values with transformTemplate304abfe
v12.6.16f88f49
updating changelogfe2fcc4
Merge pull request #3127 from motiondivision/fix/pointer-capturec752886
Latestfeadd98
Fixing press6d170a0
Removing capturePointer utilUpdates builder-util-runtime
from 9.2.10 to 9.3.1
Sourced from builder-util-runtime\'s changelog.
\\n\\n\\n9.3.1
\\nPatch Changes
\\n\\n
\\n- \\n
\\n#8815
\\n8e7811d1
Thanks@mmaietta
! - chore: \\"organize imports\\" + changeObjectMap
=>Record
for non-external properties (i.e. things that don\'t get processed forscheme.json
)- \\n
\\n#8813
\\n07429661
Thanks@mmaietta
! - chore: extract commonundefined | null
to reuse current (unexported) typeNullish
. ExposeFileMatcher
instead of@internal
flag9.3.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#8741
\\neacbbf59
Thanks@0xlau
! - AddforcePathStyle
option to S3Options- \\n
\\n#8711
\\n6f0fb8e4
Thanks@hrueger
! - Addhost
property to support self-hosted Keygen instances9.3.0-alpha.0
\\nMinor Changes
\\n\\n
Updates electron-updater
from 6.3.9 to 6.6.2
Sourced from electron-updater\'s releases.
\\n\\nelectron-updater@6.6.2
\\nPatch Changes
\\n\\n
\\n- #8933
\\n324032c5
Thanks@mmaietta
! - fix: re-exportCancellationToken
,PackageFileInfo
,ProgressInfo
,UpdateFileInfo
,UpdateInfo
from electron-updaterelectron-updater@6.6.1
\\nPatch Changes
\\n\\n
\\n- #8913
\\n065c6a45
Thanks@mmaietta
! - chore(refactor): refactoring code to reduce cyclical imports in order to migrate to rollup + vite (which have much more strict module resolutions)electron-updater@6.6.0
\\nMinor Changes
\\n\\nelectron-updater@6.5.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#8829
\\n14ee2d6b
Thanks@Julusian
! - feat: addisUpdateAvailable
property tocheckForUpdates
result- \\n
\\n#8692
\\n96c5d140
Thanks@mmaietta
! - feat: add support for customisUpdateSupported
hook for validatingUpdateInfo
, with fallback to previousminimumSystemVersion
logicelectron-updater@6.4.1
\\nPatch Changes
\\n
v0.4.0
\\n","description":"v0.4.0","guid":"https://github.com/RSSNext/Folo/pull/3326","author":"DIYgod","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-28T08:10:43.885Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"build(deps-dev): bump eas-cli from 15.0.15 to 16.1.0","url":"https://github.com/RSSNext/Folo/pull/3325","content":"Bumps eas-cli from 15.0.15 to 16.1.0.
\\nSourced from eas-cli\'s releases.
\\n\\n\\nv16.1.0
\\n🎉 New features
\\n\\n
\\n- Add environment flag to
\\neas fingerprint:generate
. (#2951 by@quinlanj
)- Add
\\ncorepack
field toeas.json
. (#2964 by@szdziedzic
)v16.0.1
\\n🐛 Bug fixes
\\n\\n
\\n- Make
\\neas update:configure
re-apply configuration from app.json /app.config.js when run multiple times. (#2957 by@brentvatne
)v16.0.0
\\n🛠 Breaking changes
\\n\\n
\\n- Add support for
\\n.easignore
whenrequireCommit
is set totrue
. (#2942 by@sjchmiela
)\\n\\n
\\n- Up to 15.0.0, if
\\nrequireCommit
wastrue
,.easignore
was silently ignored.- Versions 15.0.0-15.0.13 started using
\\n.easignore
to skip files from being bundled into a tarball whenrequireCommit
wastrue
. This was an unexpected change in behavior.- To clear this up, versions 15.0.13-15.0.15 were erroring if
\\n.easignore
was present whenrequireCommit
wastrue
.- \\n
eas-cli@16.0.0
formalizes the 15.0.0-15.0.13 behavior by adhering to.easignore
even whenrequireCommit
is set totrue
.- If you know what you\'re doing and you want to suppress a warning printed, you can do so by setting
\\nEAS_SUPPRESS_REQUIRE_COMMIT_EASIGNORE_WARNING
environment variable totrue
.🎉 New features
\\n\\n
\\n- Add requestId to ApiV2Error. (#2941 by
\\n@wschurman
)- Release
\\neas fingerprint:generate
in hidden mode (#2937 by@quinlanj
)🐛 Bug fixes
\\n\\n
\\n- Use correct logic to determine whether artifacts have expired in
\\neas build:run
command. (#2931 by@szdziedzic
)
Sourced from eas-cli\'s changelog.
\\n\\n\\n16.1.0 - 2025-03-26
\\n🎉 New features
\\n\\n
\\n- Add environment flag to
\\neas fingerprint:generate
. (#2951 by@quinlanj
)- Add
\\ncorepack
field toeas.json
. (#2964 by@szdziedzic
)16.0.1 - 2025-03-20
\\n🐛 Bug fixes
\\n\\n
\\n- Make
\\neas update:configure
re-apply configuration from app.json /app.config.js when run multiple times. (#2957 by@brentvatne
)16.0.0 - 2025-03-19
\\n🛠 Breaking changes
\\n\\n
\\n- Add support for
\\n.easignore
whenrequireCommit
is set totrue
. (#2942 by@sjchmiela
)\\n\\n
\\n- Up to 15.0.0, if
\\nrequireCommit
wastrue
,.easignore
was silently ignored.- Versions 15.0.0-15.0.13 started using
\\n.easignore
to skip files from being bundled into a tarball whenrequireCommit
wastrue
. This was an unexpected change in behavior.- To clear this up, versions 15.0.13-15.0.15 were erroring if
\\n.easignore
was present whenrequireCommit
wastrue
.- \\n
eas-cli@16.0.0
formalizes the 15.0.0-15.0.13 behavior by adhering to.easignore
even whenrequireCommit
is set totrue
.- If you know what you\'re doing and you want to suppress a warning printed, you can do so by setting
\\nEAS_SUPPRESS_REQUIRE_COMMIT_EASIGNORE_WARNING
environment variable totrue
.🎉 New features
\\n\\n
\\n- Add requestId to ApiV2Error. (#2941 by
\\n@wschurman
)- Release
\\neas fingerprint:generate
in hidden mode (#2937 by@quinlanj
)🐛 Bug fixes
\\n\\n
\\n- Use correct logic to determine whether artifacts have expired in
\\neas build:run
command. (#2931 by@szdziedzic
)
66c6c8a
v16.1.0552ef1a
[eas-cli] add corepack field to eas.json (#2964)b35a4ef
Upgrade eas-build dependencies (#2961)7244fc8
Upgrade eas-build dependencies (#2956)1da9573
[eas-cli] add support for build profiles in fingerprint generation (#2951)4e8fc05
update CHANGELOG.md6bb3dd9
v16.0.1079328c
[eas-cli] Always sync update configuration to native with eas update:configur...4ff8415
Bump @babel/runtime
from 7.12.5 to 7.26.10 (#2949)e8d1455
update CHANGELOG.mdDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps the patch group with 18 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
@types/node | \\n22.13.13 | \\n22.13.14 | \\n
@sentry/vite-plugin | \\n3.2.2 | \\n3.2.3 | \\n
@better-auth/expo | \\n1.2.4 | \\n1.2.5 | \\n
@react-native-firebase/analytics | \\n21.12.0 | \\n21.12.3 | \\n
@react-native-firebase/app | \\n21.12.0 | \\n21.12.3 | \\n
@react-native-firebase/app-check | \\n21.12.0 | \\n21.12.3 | \\n
@react-native-firebase/crashlytics | \\n21.12.0 | \\n21.12.3 | \\n
better-auth | \\n1.2.4 | \\n1.2.5 | \\n
expo | \\n52.0.40 | \\n52.0.41 | \\n
expo-image | \\n2.0.6 | \\n2.0.7 | \\n
expo-sqlite | \\n15.1.2 | \\n15.1.3 | \\n
react-native | \\n0.77.1 | \\n0.77.2 | \\n
react-native-ios-utilities | \\n5.1.2 | \\n5.1.3 | \\n
react-native-webview | \\n13.13.4 | \\n13.13.5 | \\n
drizzle-kit | \\n0.30.5 | \\n0.30.6 | \\n
satori | \\n0.12.1 | \\n0.12.2 | \\n
sonner | \\n2.0.1 | \\n2.0.2 | \\n
electron-log | \\n5.3.2 | \\n5.3.3 | \\n
Updates @types/node
from 22.13.13 to 22.13.14
Updates @sentry/vite-plugin
from 3.2.2 to 3.2.3
3bd3bb3
release: 3.2.32a4d298
meta: Update changelog for 3.2.3
(#705)e7251f8
feat(core): Use path instead of debug IDs as artifact names for debug ID uplo...368add4
feat(webpack): Primarily use contentHash
for debug ID hash (#702)e00a472
docs: Warn about risks of reactComponentAnnotation
(#699)9a7257d
typo: Turborepo instead of TruboRepo (#697)d55ca96
feat: Detect Vercel commits and env (#694)186a0d5
feat: Default to automatically setting commits on release (#692)1d5a8ca
Merge branch \'release/3.2.2\'Updates @better-auth/expo
from 1.2.4 to 1.2.5
Updates @react-native-firebase/analytics
from 21.12.0 to 21.12.3
Sourced from @react-native-firebase/analytics
\'s releases.
\\n\\nv5.6.0 - Sign-in with Apple support, react-native 0.60+ only
\\nPlease note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can\'t move to v6 yet.
\\nThis change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.
\\nBreaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+
\\nYou may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.
\\nIt works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you\'ll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md
\\nSee discussion in the related issue: invertase/react-native-firebase#2884
\\n\\n
Sourced from @react-native-firebase/analytics
\'s changelog.
\\n\\n21.12.3 (2025-03-26)
\\nBug Fixes
\\n\\n
\\n- crashlytics): Revert \\"fix(crashlytics: convert internal API usage to modular\\" (4f7fb2e)
\\n- crashlytics: disable deprecation warnings for analytics in crashlytics (b600a20)
\\n21.12.2 (2025-03-23)
\\nBug Fixes
\\n\\n21.12.1 (2025-03-22)
\\nBug Fixes
\\n\\n
\\n- android: adopt firebase-android-sdk 33.11.0 (8271231)
\\n- app, sdks: firebase-ios-sdk 11.9.0 / firebase-android-sdk 33.10.0 (df24ed6)
\\n- app: App type def fix (#8365) (068a924)
\\n- database: define increment in modular API (#8377) (e13598b)
\\n- firestore, ios: use correct key to cache instance (#8404) (e6642ec)
\\n- ios: adopt firebase-ios-sdk 11.10.0 (ffc7b4c)
\\n- performance: initializePerformance settings param is optional (#8385) (d9b7175)
\\n- storage: Type defs storage (#8387) (12ddc18)
\\n
ea8aeec
chore(release): release packagescbd1216
docs(app-check): update initializeApp
example to include proper params (#8426)df65f5c
docs(tips-n-tricks): update new arch to note no current problemsb600a20
fix(crashlytics): disable deprecation warnings for analytics in crashlytics4f7fb2e
fix(crashlytics): Revert \\"fix(crashlytics): convert internal API usage to mod...6f0524a
test: make custom manual tests easy to add to e2e app8592e65
test: alter test UI structure for modularity / safe areaefa573a
test(deps): update Podfile.lock with latest releasede2503b
docs(app): install doc preening (#8420)31e9239
chore(release): release packagesUpdates @react-native-firebase/app
from 21.12.0 to 21.12.3
Sourced from @react-native-firebase/app
\'s releases.
\\n\\nv5.6.0 - Sign-in with Apple support, react-native 0.60+ only
\\nPlease note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can\'t move to v6 yet.
\\nThis change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.
\\nBreaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+
\\nYou may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.
\\nIt works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you\'ll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md
\\nSee discussion in the related issue: invertase/react-native-firebase#2884
\\n\\n
Sourced from @react-native-firebase/app
\'s changelog.
\\n\\n21.12.3 (2025-03-26)
\\nBug Fixes
\\n\\n
\\n- crashlytics): Revert \\"fix(crashlytics: convert internal API usage to modular\\" (4f7fb2e)
\\n- crashlytics: disable deprecation warnings for analytics in crashlytics (b600a20)
\\n21.12.2 (2025-03-23)
\\nBug Fixes
\\n\\n21.12.1 (2025-03-22)
\\nBug Fixes
\\n\\n
\\n- android: adopt firebase-android-sdk 33.11.0 (8271231)
\\n- app, sdks: firebase-ios-sdk 11.9.0 / firebase-android-sdk 33.10.0 (df24ed6)
\\n- app: App type def fix (#8365) (068a924)
\\n- database: define increment in modular API (#8377) (e13598b)
\\n- firestore, ios: use correct key to cache instance (#8404) (e6642ec)
\\n- ios: adopt firebase-ios-sdk 11.10.0 (ffc7b4c)
\\n- performance: initializePerformance settings param is optional (#8385) (d9b7175)
\\n- storage: Type defs storage (#8387) (12ddc18)
\\n
ea8aeec
chore(release): release packagescbd1216
docs(app-check): update initializeApp
example to include proper params (#8426)df65f5c
docs(tips-n-tricks): update new arch to note no current problemsb600a20
fix(crashlytics): disable deprecation warnings for analytics in crashlytics4f7fb2e
fix(crashlytics): Revert \\"fix(crashlytics): convert internal API usage to mod...6f0524a
test: make custom manual tests easy to add to e2e app8592e65
test: alter test UI structure for modularity / safe areaefa573a
test(deps): update Podfile.lock with latest releasede2503b
docs(app): install doc preening (#8420)31e9239
chore(release): release packagesUpdates @react-native-firebase/app-check
from 21.12.0 to 21.12.3
Sourced from @react-native-firebase/app-check
\'s releases.
\\n\\nv5.6.0 - Sign-in with Apple support, react-native 0.60+ only
\\nPlease note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can\'t move to v6 yet.
\\nThis change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.
\\nBreaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+
\\nYou may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.
\\nIt works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you\'ll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md
\\nSee discussion in the related issue: invertase/react-native-firebase#2884
\\n\\n
Sourced from @react-native-firebase/app-check
\'s changelog.
\\n\\n21.12.3 (2025-03-26)
\\nBug Fixes
\\n\\n
\\n- crashlytics): Revert \\"fix(crashlytics: convert internal API usage to modular\\" (4f7fb2e)
\\n- crashlytics: disable deprecation warnings for analytics in crashlytics (b600a20)
\\n21.12.2 (2025-03-23)
\\nBug Fixes
\\n\\n21.12.1 (2025-03-22)
\\nBug Fixes
\\n\\n
\\n- android: adopt firebase-android-sdk 33.11.0 (8271231)
\\n- app, sdks: firebase-ios-sdk 11.9.0 / firebase-android-sdk 33.10.0 (df24ed6)
\\n- app: App type def fix (#8365) (068a924)
\\n- database: define increment in modular API (#8377) (e13598b)
\\n- firestore, ios: use correct key to cache instance (#8404) (e6642ec)
\\n- ios: adopt firebase-ios-sdk 11.10.0 (ffc7b4c)
\\n- performance: initializePerformance settings param is optional (#8385) (d9b7175)
\\n- storage: Type defs storage (#8387) (12ddc18)
\\n
ea8aeec
chore(release): release packagescbd1216
docs(app-check): update initializeApp
example to include proper params (#8426)df65f5c
docs(tips-n-tricks): update new arch to note no current problemsb600a20
fix(crashlytics): disable deprecation warnings for analytics in crashlytics4f7fb2e
fix(crashlytics): Revert \\"fix(crashlytics): convert internal API usage to mod...6f0524a
test: make custom manual tests easy to add to e2e app8592e65
test: alter test UI structure for modularity / safe areaefa573a
test(deps): update Podfile.lock with latest releasede2503b
docs(app): install doc preening (#8420)31e9239
chore(release): release packagesUpdates @react-native-firebase/crashlytics
from 21.12.0 to 21.12.3
Sourced from @react-native-firebase/crashlytics
\'s releases.
\\n\\nv5.6.0 - Sign-in with Apple support, react-native 0.60+ only
\\nPlease note v5 is still seeing releases, but they are for breaking ecosystem changes only - just enough so it remains relevant for those that can\'t move to v6 yet.
\\nThis change allows use of Sign-in with Apple, an iOS13+ requirement to avoid rejection by the App Store if you use any forms of social authentication.
\\nBreaking: Note that iOS13+ is only supported with Xcode 11+, which requires react-native 0.60+
\\nYou may find that react-native-firebase v5.6.x still works on react-native 0.59 (the test suite still does), but you will not be able to integrate Sign-in with Apple until you upgrade as that library is react-native 0.60+ only.
\\nIt works well with https://github.com/invertase/react-native-apple-authentication including a guide specifically for integrating with react-native-firebase, though note the import statements are for v6, you\'ll need to import auth in the v5 style to use it: https://github.com/invertase/react-native-apple-authentication/blob/master/docs/FIREBASE.md
\\nSee discussion in the related issue: invertase/react-native-firebase#2884
\\n\\n
Sourced from @react-native-firebase/crashlytics
\'s changelog.
\\n\\n21.12.3 (2025-03-26)
\\nBug Fixes
\\n\\n
\\n- crashlytics): Revert \\"fix(crashlytics: convert internal API usage to modular\\" (4f7fb2e)
\\n- crashlytics: disable deprecation warnings for analytics in crashlytics (b600a20)
\\n21.12.2 (2025-03-23)
\\nBug Fixes
\\n\\n21.12.1 (2025-03-22)
\\nBug Fixes
\\n\\n
\\n- android: adopt firebase-android-sdk 33.11.0 (8271231)
\\n- app, sdks: firebase-ios-sdk 11.9.0 / firebase-android-sdk 33.10.0 (df24ed6)
\\n- app: App type def fix (#8365) (068a924)
\\n- database: define increment in modular API (#8377) (e13598b)
\\n- firestore, ios: use correct key to cache instance (#8404) (e6642ec)
\\n- ios: adopt firebase-ios-sdk 11.10.0 (ffc7b4c)
\\n- performance: initializePerformance settings param is optional (#8385) (d9b7175)
\\n- storage: Type defs storage (#8387) (12ddc18)
\\n
ea8aeec
chore(release): release packagescbd1216
docs(app-check): update initializeApp
example to include proper params (#8426)df65f5c
docs(tips-n-tricks): update new arch to note no current problemsb600a20
fix(crashlytics): disable deprecation warnings for analytics in crashlytics4f7fb2e
fix(crashlytics): Revert \\"fix(crashlytics): convert internal API usage to mod...6f0524a
test: make custom manual tests easy to add to e2e app8592e65
test: alter test UI structure for modularity / safe areaefa573a
test(deps): update Podfile.lock with latest releasede2503b
docs(app): install doc preening (#8420)31e9239
chore(release): release packagesUpdates better-auth
from 1.2.4 to 1.2.5
Sourced from better-auth\'s releases.
\\n\\n\\nv1.2.5
\\n🚀 Features
\\n\\n
\\n- Add onEmailVerification callback - by
\\n@Bekacru
(3a4bb)- Disabled paths - by
\\n@Bekacru
in better-auth/better-auth#1918 (cf4bd)- Refresh token endpoint - by
\\n@Kinfe123
in better-auth/better-auth#1779 (06193)- account: Add option to allow unlinking all accounts - by
\\n@Bekacru
in better-auth/better-auth#1818 (e157e)- admin: Allow creating users without admin session on server api - by
\\n@Bekacru
(f2520)- oidc: Allow passing additional user claims - by
\\n@Bekacru
in better-auth/better-auth#1933 (093f9)🐞 Bug Fixes
\\n\\n
\\n\\n- Allow plus signs in relative callback URLs - by
\\n@javawizard
in better-auth/better-auth#1823 (a448c)- Multiple issues with openapi types and references - by
\\n@Ehesp
in better-auth/better-auth#1811 (6e1a4)- Typescript cannot be named without reference error - by
\\n@Bekacru
in better-auth/better-auth#1827 (16e71)- Get session cookie helper should use better url retrieval and read config overrides - by
\\n@Bekacru
in better-auth/better-auth#1828 (0b821)- Get session cookie should check for both secure and non secure cookies - by
\\n@Bekacru
(67a95)- Access of undefined in runtime that does have great support of instanceof - by
\\n@jamesone
in better-auth/better-auth#1838 (62f3e)- Use instead of relying on instanceOf for incoming request type checks - by
\\n@Bekacru
(6c88e)- Double matcher on username plugin - by
\\n@Kinfe123
in better-auth/better-auth#1915 (f2187)- Trigger session refetch on verify email - by
\\n@Bekacru
in better-auth/better-auth#1932 (fb312)- Support numeric user IDs - by
\\n@benkingcode
in better-auth/better-auth#1936 (6cd74)- UnlinkAccount should support optional accountId - by
\\n@Bekacru
in better-auth/better-auth#1952 (6b47e)- Respect disable signup on social providers - by
\\n@Bekacru
in better-auth/better-auth#1981 (d7419)- Only delete verification token on password reset after succesful db query - by
\\n@moshetanzer
in better-auth/better-auth#1995 (ba2e5)- Additional fields type inference breaking on default value - by
\\n@Bekacru
(4afcb)- admin:\\n
\\n\\n
\\n- Remove undefined type from list-users openapi documentation - by
\\n@Ehesp
in better-auth/better-auth#1845 (a2748)- api-key:\\n
\\n\\n
\\n- Delete keys on client should use POST method instead - by
\\n@ping-maxwell
in better-auth/better-auth#1858 (cd828)- cli:\\n
\\n\\n
\\n- Invalid prisma init config - by
\\n@pnodet
in better-auth/better-auth#1964 (43ab2)- expo:\\n
\\n\\n
\\n- Better fetch type mismatch causing type error on expo client plugin - by
\\n@Bekacru
in better-auth/better-auth#1825 (54bdb)- generic-oauth:\\n
\\n\\n
\\n- Added basic auth param in oAuth2Callback - by
\\n@beermonsterdota
in better-auth/better-auth#1810 (765dd)- oauth:\\n
\\n\\n
\\n- Support passing prompt, access_type, type_hint and additional params when constructing authorization URL - by
\\n@waleedlatif1
in better-auth/better-auth#1888 (3d36a)- organization:\\n
\\n\\n
\\n- Trigger session refetch on set-active - by
\\n@Bekacru
(d7890)- Client infer for Member is using incorrect type - by
\\n@ping-maxwell
in better-auth/better-auth#1857 (cc688)- Membership limit incorrect usage breaks list organizations - by
\\n@Bekacru
in better-auth/better-auth#1961 (ae78d)- rate-limiter:\\n
\\n\\n
\\n- Handle missing IP address in rate limit function - by
\\n@Bekacru
in better-auth/better-auth#1959 (4a310)- Custom rate limiing table name breaking db query - by
\\n@Bekacru
in better-auth/better-auth#1960 (09830)- stripe:\\n
\\n\\n
\\n- Allow plan retrieval by annual discount price ID - by
\\n@Lionvsx
in better-auth/better-auth#1941 (3c60c)- username:\\n\\n
\\n- web:
\\n
... (truncated)
\\n9b97962
chore: release v1.2.506193a3
feat: refresh token endpoint (#1779)128cca8
chore(deps): bump next from 15.2.1 to 15.2.3 (#1982)4c304a9
chore: release v1.2.5-beta.104afcb8e
fix: additional fields type inference breaking on default valueba2e58e
fix: only delete verification token on password reset after succesful db quer...48a6417
chore: remove dead code (#1989)3b6ca15
chore(jsdoc): field attribute for required
should be true
(#1986)b2c7d8f
chore: release v1.2.5-beta.9d74199f
fix: respect disable signup on social providers (#1981)Updates expo
from 52.0.40 to 52.0.41
Updates expo-image
from 2.0.6 to 2.0.7
Updates expo-sqlite
from 15.1.2 to 15.1.3
Updates react-native
from 0.77.1 to 0.77.2
Sourced from react-native\'s releases.
\\n\\n\\nv0.77.2
\\nAdded
\\niOS specific
\\n\\n
\\n- Codegen: Add the
\\nsource
parameter to generate-codegen-artifacts to avoid generating files not needed by libraries. (98b8f17811 by@cipolleschi
)Fixed
\\n\\n
\\n- DevTools: Fix disconnections of DevTools when the network is under significant strain. (b0974135bf by
\\n@vzaidman
)- CLI: Fix registering of
\\nstart
andbundle
commands with community CLI and isolated node_modules. (1f002f9999 by@robhogan
)- Metro: Bump minimum Metro to 0.81.3, fix \\"_interopRequireDefault is not a function\\" with enablePackageExports (b335436113 by
\\n@robhogan
)Android specific
\\n\\n
\\n- Fabric: Avoid NPE when touch event is triggered before SurfaceManager is initiated (b8095f4692 by
\\n@CHOIMINSEOK
)- Image: Fix defaultSource runtime error (1c51b77868 by
\\n@fbp93
)iOS specific
\\n\\n
\\n- Interop Layer: Properly pass
\\nnil
for nullable parameters instead ofNSNull
for legacy modules (619d5dfbb2 by@cipolleschi
)- TextInput: Fix crashes when any text is entered while running as iOS app on apple silicon mac (8d7aca30e7 by
\\n@zhongwuzw
)
\\nHermes dSYMS:
\\n\\n
\\nYou can file issues or pick requests against this release here.
\\n
\\nTo help you upgrade to this version, you can use the Upgrade Helper ⚛️.
\\n
\\nView the whole changelog in the CHANGELOG.md file.
\\n
Sourced from react-native\'s changelog.
\\n\\n\\nv0.77.2
\\nAdded
\\niOS specific
\\n\\n
\\n- Codegen: Add the
\\nsource
parameter to generate-codegen-artifacts to avoid generating files not needed by libraries. (98b8f17811 by@cipolleschi
)Fixed
\\n\\n
\\n- DevTools: Fix disconnections of DevTools when the network is under significant strain. (b0974135bf by
\\n@vzaidman
)- CLI: Fix registering of
\\nstart
andbundle
commands with community CLI and isolated node_modules. (1f002f9999 by@robhogan
)- Metro: Bump minimum Metro to 0.81.3, fix \\"_interopRequireDefault is not a function\\" with enablePackageExports (b335436113 by
\\n@robhogan
)Android specific
\\n\\n
\\n- Fabric: Avoid NPE when touch event is triggered before SurfaceManager is initiated (b8095f4692 by
\\n@CHOIMINSEOK
)- Image: Fix defaultSource runtime error (1c51b77868 by
\\n@fbp93
)iOS specific
\\n\\n
\\n- Interop Layer: Properly pass
\\nnil
for nullable parameters instead ofNSNull
for legacy modules (619d5dfbb2 by@cipolleschi
)- TextInput: Fix crashes when any text is entered while running as iOS app on apple silicon mac (8d7aca30e7 by
\\n@zhongwuzw
)
7ea8af8
Release 0.77.21e9f118
Convert to JSException only NSException from sync methods (#50193)b335436
Bump minimum Metro to 0.81.3, remove import/require from always-asserted reso...a133967
Handle null params in the Interop TM layer (#49873)4e5da2e
Add extra parameter to define whether codegen is invoked by lib or app (#48995)1f002f9
community-cli-plugin: resolve cli-server-api via peer dependency on cli (#50096)f7720b3
Avoid NPE when touch event is triggered before SurfaceManager is initiated (#...adc5c3a
Fixes TextInput crashes when any text is entered while running as iOS app on ...7c50b5e
Fix Android Image defaultSource
runtime error (#49097) (#49890)Updates react-native-ios-utilities
from 5.1.2 to 5.1.3
Sourced from react-native-ios-utilities\'s releases.
\\n\\nRelease 5.1.3
\\n\\n
- 📦 Package: Upgrade
\\nrelease-it
(5dbb0f0)- ⚙️ Chore: Ex - Enable New Architecture (5af6b18)
\\n- 🐞 Fix: Paper Build Errors (18aa934)
\\n- ⚙️ Chore: Ex - Disable New Architecture (10fe025)
\\n- ⚙️ Chore: Bump Node Version (135d5ea)
\\n- ⚙️ Chore: Update Package Scripts (83e6241)
\\n- 📝 Docs: README - Update Acknowledgements (4b14a77)
\\n- 💄 Gloss: Update PR Comment (f3ccc3e)
\\n- ⚙️ Chore: Update Package Scripts (db89eb7)
\\n- ⚙️ Chore: CI - Update
\\nbuild-example-ios
(289f87c)- ⚙️ Chore: Update
\\nbuild-ios.sh
Script (19d2186)- ⚙️ Chore: Update Package Scrip...\\n
Description has been truncated
\\n
Bumps the minor group with 7 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
electron | \\n34.3.4 | \\n34.4.1 | \\n
es-toolkit | \\n1.33.0 | \\n1.34.1 | \\n
react-native-screens | \\n4.9.2 | \\n4.10.0 | \\n
@sentry/react | \\n9.9.0 | \\n9.10.0 | \\n
framer-motion | \\n12.5.0 | \\n12.6.2 | \\n
builder-util-runtime | \\n9.2.10 | \\n9.3.1 | \\n
electron-updater | \\n6.3.9 | \\n6.6.2 | \\n
Updates electron
from 34.3.4 to 34.4.1
Sourced from electron\'s releases.
\\n\\n\\nelectron v34.4.1
\\nRelease Notes for v34.4.1
\\nFixes
\\n\\n
\\n- Fixed an issue where
\\nnavigationHistory.restore()
failed to restore theuserAgent
if it was overridden. #46298 (Also in 35, 36)Other Changes
\\n\\n
\\n- Security: backported fix for CVE-2025-2783. #46304
\\nelectron v34.4.0
\\nRelease Notes for v34.4.0
\\nFeatures
\\n\\nFixes
\\n\\n
\\n- Fixed NODE_OPTIONS parsing for child processes on macOS. #46242 (Also in 35, 36)
\\n- Fixed an issue where
\\nsystem-context-menu
incorrectly fired for all regions in frameless windows. #46175 (Also in 33, 35, 36)- Fixed an issue where
\\nwebContents.printToPDF()
didn\'t work as expected with cross-process subframes. #46258 (Also in 35, 36)- Fixed an issue where the resizing border didn\'t work as expected on Wayland windows. #46223 (Also in 33, 35, 36)
\\n- Fixed an issue with token formatting for tokens received after calling
\\npushNotifications.registerForAPNSNotifications()
. #46150 (Also in 35, 36)- Fixed build failure when building with printing disabled. #46286 (Also in 35, 36)
\\n- Fixed crash with out-of-bounds string read when parsing NODE_OPTIONS. #46246 (Also in 35, 36)
\\nOther Changes
\\n\\n
e87dc57
build: roll build-images SHAs (#46318)cd7644f
chore: cherry-pick 1 changes from 3-M134 (#46304)8d77d66
fix: set userAgent
on navigationHistory.restore()
(#46298)3d51ce2
perf: avoid std::map
temporaries in `WebContents::DevToolsRequestFileSyste...5daff54
perf: avoid redundant map lookup in AddComponentResourceEntries()
(#46289)09a9b41
perf: avoid redundant map lookup in WebContents::DevToolsIndexPath()
(#46297)9049d01
fix: build failure when printing is disabled (#46286)42c8938
perf: avoid redundant map lookup in WebFrameMain
constructor (#46277)b5f8c75
perf: avoid std::map
temporaries in IsDevToolsFileSystemAdded()
(#46266)0b34f5b
build: fixup windows source cache for release (#46269)Updates es-toolkit
from 1.33.0 to 1.34.1
Sourced from es-toolkit\'s releases.
\\n\\n\\nv1.34.1
\\nReleased on March 27th, 2025.
\\n\\n
\\n- Fixed a bug in isBrowser and isNode that caused them to not work properly in Deno environments.
\\nv1.34.0
\\nReleased on March 27th, 2025.
\\n\\n
\\n- Added support for isBrowser, isNode, attempt, attemptAsync.
\\n- Introduced compatibility functions for functionsIn, meanBy, minBy, mean, sortedIndexOf.
\\n- Fixed compatibility with lodash for set, add, subtract.
\\nWe sincerely thank
\\n@dayongkr
,@D-Sketon
,@seongminn
,@Kyujenius
for their contributions. We appreciate your great efforts!
Sourced from es-toolkit\'s changelog.
\\n\\n\\nVersion v1.34.1
\\nReleased on March 27th, 2025.
\\n\\n
\\n- Fixed a bug in isBrowser and isNode that caused them to not work properly in Deno environments.
\\nVersion v1.34.0
\\nReleased on March 27th, 2025.
\\n\\n
\\n- Added support for isBrowser, isNode, attempt, attemptAsync.
\\n- Introduced compatibility functions for functionsIn, meanBy, minBy, mean, sortedIndexOf.
\\n- Fixed compatibility with lodash for set, add, subtract.
\\nWe sincerely thank
\\n@dayongkr
,@D-Sketon
,@seongminn
,@Kyujenius
for their contributions. We appreciate your great efforts!
4b5b9d1
v1.34.12cd49ea
fix(isBrowser, isNode): Fix problem in nodecbf270e
v1.34.089551e3
chore(eslint): Restrict console usage in source code (#1086)faafc4c
feat(predicate): Add isBrowser
and isNode
(#1085)1cad9ef
docs(functionsIn): Update docs of functionsIn & add tests0e3e979
docs: Update CONTRIBUTING.md
to include our coding conventions (#1090)a1015bd
Update docs of sortedIndexOf (#1089)fd026ec
feat(functionsIn): Add functionsIn
to compat/object (#1077)17c236b
style(meanBy): Fix ESLintUpdates react-native-screens
from 4.9.2 to 4.10.0
Sourced from react-native-screens\'s releases.
\\n\\n\\n4.10.0
\\nMinor release adding support for
\\nformSheet
+ScrollView
+ sticky header layout on iOS (requires specific view hierarchy to work, see: #2747. The release includes also series of important fixes.There are a lot of big internal changes in this release - we kindly ask you to report any bug issues and especially regressions we didn\'t catch.
\\nCheers!
\\nWhat\'s Changed
\\n⚠️ Important
\\n\\n
\\n- chore: update iOS min supported version to 15.1 by
\\n@kkafar
in software-mansion/react-native-screens#2799Please note that this change only aligns the library with the behaviour of min. supported
\\nreact-native
version, which is 0.76 (old arch) and 0.77 (new arch). This should not affect your apps unless you\'re using olderreact-native
version + custom patches.🟢 Improvements
\\n\\n
\\n- feat(iOS): add experimental support for scrollview header when using formsheet by
\\n@kkafar
in software-mansion/react-native-screens#2747🐞 Bug fixes
\\n\\n
\\n- fix(Android,Fabric): prevent header subviews from disappearing after hot-reload by
\\n@kkafar
in software-mansion/react-native-screens#2807- fix(Android,Fabric): prevent Yoga from stretch-fitting height of header subview by
\\n@kkafar
in software-mansion/react-native-screens#2811- fix(Android,Fabric): prevent header subview disappearance when using
\\nsetOptions
by@kkafar
in software-mansion/react-native-screens#2812- fix(Android): pressables under sheets dimming view intercept gesture events by
\\n@kkafar
in software-mansion/react-native-screens#2740- fix(Android): missing content when using flex for formsheet contents by
\\n@kkafar
in software-mansion/react-native-screens#2748- fix(Android): prevent crash by properly managing lifecycle of the dimming view by
\\n@kkafar
in software-mansion/react-native-screens#2750- fix(Android): findTitleTextViewInToolbar couldn\'t find the correct view in certain cases by
\\n@herlihalim
in software-mansion/react-native-screens#2757- fix(Android,native-stack): fix check for
\\nsheetAllowedDetents
value & apply appropriate styles by@kkafar
in software-mansion/react-native-screens#2762- fix(Android):
\\nformSheet
not visible when going back frompush
in parent stack by@kkafar
in software-mansion/react-native-screens#2767- fix: FullWindowOverlay not working with dynamic frameworks by
\\n@war-in
in software-mansion/react-native-screens#2769- fix: update workaround preventing React Native from hiding frozen screens to work with RN 0.78 by
\\n@kligarski
in software-mansion/react-native-screens#2778- fix(Android): adapt header insets when interface orientation changes by
\\n@kkafar
in software-mansion/react-native-screens#2756- fix(Android): fix drawing order when dismissing multiple stacked sheets by
\\n@kkafar
in software-mansion/react-native-screens#2771- fix(Android,Paper): header config blocks gestures close to the top of the screen by
\\n@kkafar
in software-mansion/react-native-screens#2781- fix(Android): keep
\\nformSheet
selected detent index after fragment reattachment by@kkafar
in software-mansion/react-native-screens#2782- fix(Android,Fabric): pressables losing focus on screens with
\\nformSheet
presentation by@kkafar
in software-mansion/react-native-screens#2788- fix(Android):
\\nformSheet
withfitToContents
does not have correct height after goBack by@kkafar
in software-mansion/react-native-screens#2789- fix(Android): implement ReactPointerEventsView to prevent header config from intercepting touches by
\\n@kkafar
in software-mansion/react-native-screens#2796- fix(iOS): use prefersPageSizing for modal on iOS 18.0+ by
\\n@kligarski
in software-mansion/react-native-screens#2797- fix(Android): fix backward compat with K1 compiler by
\\n@kligarski
in software-mansion/react-native-screens#2808🔢 Misc
\\n\\n
\\n\\n- chore: add test examples do example app by
\\n@kkafar
in software-mansion/react-native-screens#2735- fix(TVOS): update dependencies to fix TVOSExample by
\\n@kligarski
in software-mansion/react-native-screens#2751- refactor(Android): kotlinize
\\nScreenStack.onUpdate
method by@kkafar
in software-mansion/react-native-screens#2763- chore(examples): adjust metro config to allow for easier modify-test loop with react-navigation submodule by
\\n@kkafar
in software-mansion/react-native-screens#2765- chore(Android): remove unused NativeDismissalObserver interface by
\\n@kkafar
in software-mansion/react-native-screens#2768- chore: remove unnecessary enableFreeze from Example.tsx by
\\n@kligarski
in software-mansion/react-native-screens#2779
... (truncated)
\\n6b47580
Release 4.10.0ab2a303
fix(Android,Fabric): prevent header subview disappearance when using `setOpti...b1e9c71
fix(Android,Fabric): prevent Yoga from stretch-fitting height of header subvi...29c3ae2
fix(Android,Fabric): prevent header subviews from disappearing after hot-relo...e427d72
fix(Android): fix backward compat with K1 compiler (#2808)2f7b5f6
chore: update iOS min supported version to 15.1 (#2799)82f1124
refactor(iOS): cleanup no. 1 in `RNSScreenStackHeaderConfig.updateViewControl...ac7154c
fix(iOS): use prefersPageSizing for modal on iOS 18.0+ (#2797)da2c028
fix(Android): implement ReactPointerEventsView to prevent header config from ...91400bc
fix(Android): formSheet
with fitToContents
does not have correct height a...Updates @sentry/react
from 9.9.0 to 9.10.0
Sourced from @sentry/react
\'s releases.
\\n\\n9.10.0
\\nImportant Changes
\\n\\n
\\n\\n- \\n
\\nfeat: Add support for logs
\\n\\n
\\n- feat(node): Add logging public APIs to Node SDKs (#15764)
\\n- feat(core): Add support for
\\nbeforeSendLog
(#15814)- feat(core): Add support for parameterizing logs (#15812)
\\n- fix: Remove critical log severity level (#15824)
\\nAll JavaScript SDKs other than
\\n@sentry/cloudflare
and@sentry/deno
now support sending logs via dedicated methods as part of Sentry\'s upcoming logging product.Logging is gated by an experimental option,
\\n_experiments.enableLogs
.\\nSentry.init({\\n dsn: \'PUBLIC_DSN\',\\n // `enableLogs` must be set to true to use the logging features\\n _experiments: { enableLogs: true },\\n});\\n
const { trace, debug, info, warn, error, fatal, fmt } = Sentry.logger;
\\ntrace(\'Starting database connection\', { database: \'users\' });\\ndebug(\'Cache miss for user\', { userId: 123 });\\nerror(\'Failed to process payment\', { orderId: \'order_123\', amount: 99.99 });\\nfatal(\'Database connection pool exhausted\', { database: \'users\', activeConnections: 100 });
\\n// Structured logging via the
\\nfmt
helper function. When you usefmt
, the string template and parameters are sent separately so they can be queried independently in Sentry.
info(fmt(
Updated profile for user ${userId}
));\\nwarn(fmt(Rate limit approaching for endpoint ${endpoint}. Requests: ${requests}, Limit: ${limit}
));\\nWith server-side SDKs like
\\n@sentry/node
,@sentry/bun
or server-side of@sentry/nextjs
or@sentry/sveltekit
, you can do structured logging without needing thefmt
helper function.\\nconst { info, warn } = Sentry.logger;\\n
info(\'User %s logged in successfully\', [123]);\\nwarn(\'Failed to load user %s data\', [123], { errorCode: 404 });\\n
To filter logs, or update them before they are sent to Sentry, you can use the
\\n_experiments.beforeSendLog
option.- \\n
\\nfeat(browser): Add
\\ndiagnoseSdkConnectivity()
function to programmatically detect possible connectivity issues (#15821)The
\\ndiagnoseSdkConnectivity()
function can be used to programmatically detect possible connectivity issues with the Sentry SDK.\\n
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.10.0
\\nImportant Changes
\\n\\n
\\n\\n- \\n
\\nfeat: Add support for logs
\\n\\n
\\n- feat(node): Add logging public APIs to Node SDKs (#15764)
\\n- feat(core): Add support for
\\nbeforeSendLog
(#15814)- feat(core): Add support for parameterizing logs (#15812)
\\n- fix: Remove critical log severity level (#15824)
\\nAll JavaScript SDKs other than
\\n@sentry/cloudflare
and@sentry/deno
now support sending logs via dedicated methods as part of Sentry\'s upcoming logging product.Logging is gated by an experimental option,
\\n_experiments.enableLogs
.\\nSentry.init({\\n dsn: \'PUBLIC_DSN\',\\n // `enableLogs` must be set to true to use the logging features\\n _experiments: { enableLogs: true },\\n});\\n
const { trace, debug, info, warn, error, fatal, fmt } = Sentry.logger;
\\ntrace(\'Starting database connection\', { database: \'users\' });\\ndebug(\'Cache miss for user\', { userId: 123 });\\nerror(\'Failed to process payment\', { orderId: \'order_123\', amount: 99.99 });\\nfatal(\'Database connection pool exhausted\', { database: \'users\', activeConnections: 100 });
\\n// Structured logging via the
\\nfmt
helper function. When you usefmt
, the string template and parameters are sent separately so they can be queried independently in Sentry.
info(fmt(
Updated profile for user ${userId}
));\\nwarn(fmt(Rate limit approaching for endpoint ${endpoint}. Requests: ${requests}, Limit: ${limit}
));\\nWith server-side SDKs like
\\n@sentry/node
,@sentry/bun
or server-side of@sentry/nextjs
or@sentry/sveltekit
, you can do structured logging without needing thefmt
helper function.\\nconst { info, warn } = Sentry.logger;\\n
info(\'User %s logged in successfully\', [123]);\\nwarn(\'Failed to load user %s data\', [123], { errorCode: 404 });\\n
To filter logs, or update them before they are sent to Sentry, you can use the
\\n_experiments.beforeSendLog
option.- \\n
\\nfeat(browser): Add
\\ndiagnoseSdkConnectivity()
function to programmatically detect possible connectivity issues (#15821)The
\\ndiagnoseSdkConnectivity()
function can be used to programmatically detect possible connectivity issues with the Sentry SDK.
... (truncated)
\\ne383fff
release: 9.10.003d4ab1
Merge pull request #15867 from getsentry/prepare-release/9.10.0d430d96
meta(changelog): Update changelog for 9.10.0ef2f35d
ref(opentelemetry): Avoid sampling work for non-root spans (#15820)2284e81
deps: Bump bundler plugins to 3.2.3
(#15829)b0a1b06
test: Add browser and nodejs integration tests for logs (#15815)7191ebd
feat: Always truncate stored breadcrumb messages to 2kb (#15819)05391d0
feat(node): Only add span listeners for instrumentation when used (#15802)c38315e
chore(jest): Final Jest cleanup (#15549)12c5e73
test(google-serverless): Migrate to Vitest (#15567)Updates framer-motion
from 12.5.0 to 12.6.2
Sourced from framer-motion\'s changelog.
\\n\\n\\n[12.6.2] 2025-03-26
\\nFixed
\\n\\n
\\n- Fixing hardware acceleration for non-
\\ntransform
values when amotion
component has a definedtransformTemplate
.[12.6.1] 2025-03-26
\\nFixed
\\n\\n
\\n- Reverting pointer capture for press gesture.
\\n[12.6.0] 2025-03-25
\\nChanged
\\n\\n
\\n- Renamed
\\nview
toanimateView
.Added
\\n\\n
\\n- New
\\ninterrupt: \\"wait\\"
mode asanimateView
default.
25839ac
v12.6.28562e5a
Latest0cd5acc
Merge pull request #3128 from motiondivision/feature/optimise-transform-template782ee2c
Fixing acceleration on non-transform values with transformTemplate304abfe
v12.6.16f88f49
updating changelogfe2fcc4
Merge pull request #3127 from motiondivision/fix/pointer-capturec752886
Latestfeadd98
Fixing press6d170a0
Removing capturePointer utilUpdates builder-util-runtime
from 9.2.10 to 9.3.1
Sourced from builder-util-runtime\'s changelog.
\\n\\n\\n9.3.1
\\nPatch Changes
\\n\\n
\\n- \\n
\\n#8815
\\n8e7811d1
Thanks@mmaietta
! - chore: \\"organize imports\\" + changeObjectMap
=>Record
for non-external properties (i.e. things that don\'t get processed forscheme.json
)- \\n
\\n#8813
\\n07429661
Thanks@mmaietta
! - chore: extract commonundefined | null
to reuse current (unexported) typeNullish
. ExposeFileMatcher
instead of@internal
flag9.3.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#8741
\\neacbbf59
Thanks@0xlau
! - AddforcePathStyle
option to S3Options- \\n
\\n#8711
\\n6f0fb8e4
Thanks@hrueger
! - Addhost
property to support self-hosted Keygen instances9.3.0-alpha.0
\\nMinor Changes
\\n\\n
Updates electron-updater
from 6.3.9 to 6.6.2
Sourced from electron-updater\'s releases.
\\n\\n\\nelectron-updater@6.6.2
\\nPatch Changes
\\n\\n
\\n- #8933
\\n324032c5
Thanks@mmaietta
! - fix: re-exportCancellationToken
,PackageFileInfo
,ProgressInfo
,UpdateFileInfo
,UpdateInfo
from electron-updaterelectron-updater@6.6.1
\\nPatch Changes
\\n\\n
\\n- #8913
\\n065c6a45
Thanks@mmaietta
! - chore(refactor): refactoring code to reduce cyclical imports in order to migrate to rollup + vite (which have much more strict module resolutions)electron-updater@6.6.0
\\nMinor Changes
\\n\\nelectron-updater@6.5.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#8829
\\n14ee2d6b
Thanks@Julusian
! - feat: addisUpdateAvailable
property tocheckForUpdates
result- \\n
\\n#8692
\\n96c5d140
Thanks@mmaietta
! - feat: add support for customisUpdateSupported
hook for validatingUpdateInfo
, with fallback to previousminimumSystemVersion
logicelectron-updater@6.4.1
\\nPatch Changes
\\n\\nelectron-updater@6.4.0
\\nMinor Changes
\\n\\n
\\n- #8711
\\n6f0fb8e4
Thanks@hrueger
! - Addhost
property to support self-hosted Keygen instances- #8633
\\n96f5c3eb
Thanks@mmaietta
! - feat(updater): allow usage ofautoRunAppAfterInstall
on mac updater- #8394
\\nae9221d9
Thanks@xyloflake
! - feat: Implement autoupdates for pacmanPatch Changes
\\n\\n
\\n- #8802
\\n4a68fd2d
Thanks@erijo
! - fix(linux): AppImage update fails when filename contains spaces- #8623
\\ncfa67c01
Thanks@DamonYu6
! - fix: copyFileSync operation will block the main thread- #8695
\\n819eff7b
Thanks@peter-sanderson
! - fix: respectdisableDifferentialDownload
flag for AppImageelectron-updater@6.4.0-alpha.4
\\nPatch Changes
\\n\\n
\\n- #8802
\\n4a68fd2d
Thanks@erijo
! - fix(linux): AppImage update fails when filename contains spaceselectron-updater@6.4.0-alpha.3
\\nPatch Changes
\\n\\n
\\n\\n- #8695
\\n819eff7b
Thanks@peter-sanderson
! - fix: respectdisableDifferentialDownload
flag for AppImage
... (truncated)
\\nSourced from electron-updater\'s changelog.
\\n\\n\\n6.6.2
\\nPatch Changes
\\n\\n
\\n- #8933
\\n324032c5
Thanks@mmaietta
! - fix: re-exportCancellationToken
,PackageFileInfo
,ProgressInfo
,UpdateFileInfo
,UpdateInfo
from electron-updater6.6.1
\\nPatch Changes
\\n\\n
\\n- #8913
\\n065c6a45
Thanks@mmaietta
! - chore(refactor): refactoring code to reduce cyclical imports in order to migrate to rollup + vite (which have much more strict module resolutions)6.6.0
\\nMinor Changes
\\n\\n6.5.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#8829
\\n14ee2d6b
Thanks@Julusian
! - feat: addisUpdateAvailable
property tocheckForUpdates
result- \\n
\\n#8692
\\n96c5d140
Thanks@mmaietta
! - feat: add support for customisUpdateSupported
hook for validatingUpdateInfo
, with fallback to previousminimumSystemVersion
logic6.4.1
\\nPatch Changes
\\n\\n6.4.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#8711
\\n6f0fb8e4
Thanks@hrueger
! - Addhost
property to support self-hosted Keygen instances- \\n
\\n#8633
\\n96f5c3eb
Thanks@mmaietta
! - feat(updater): allow usage ofautoRunAppAfterInstall
on mac updater- \\n
\\n#8394
\\nae9221d9
Thanks@xyloflake
! - feat: Implement autoupdates for pacmanPatch Changes
\\n\\n
\\n\\n- \\n
\\n#8802
\\n4a68fd2d
Thanks@erijo
! - fix(linux): AppImage update fails when filename contains spaces- \\n
\\n#8623
\\ncfa67c01
Thanks@DamonYu6
! - fix: copyFileSync operation will block the main thread- \\n
\\n#8695
\\n819eff7b
Thanks@peter-sanderson
! - fix: respectdisableDifferentialDownload
flag for AppImage
... (truncated)
\\ne4d00c6
chore(deploy): Release v26.0.11 (electron-updater@6.6.2) (#8930)324032c
fix: re-export various types from electron-updater (#8933)3792826
chore(deploy): Release v26.0.10 (electron-updater@6.6.1) (#8912)065c6a4
chore(refactor): electron-updater cyclical imports (#8913)9bca417
chore(deploy): Release v26.0.7 (electron-updater@6.6.0) (#8866)ea3e0f5
feat(updater): Dispatch error in updater if spawnSyncLog
fails (#8817)198551a
chore(deploy): Release v26.0.2 (electron-updater@6.5.0) (#8831)96c5d14
feat(updater): add custom isUpdateSupported
hook for validating update down...14ee2d6
feat: add isUpdateAvailable
property to checkForUpdates
result (#8829)353174e
chore(deploy): Release v26.0.1 (electron-updater@6.4.1) (#8814)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsresolve FOL-1824\\nresolve FOL-1559
\\nNormal article:
\\nAudio:
\\nBumps the minor group with 25 updates in the / directory:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
simple-git-hooks | \\n2.11.1 | \\n2.12.1 | \\n
vite-bundle-analyzer | \\n0.17.3 | \\n0.18.1 | \\n
@electron-forge/cli | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-appx | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-dmg | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-pkg | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-squirrel | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-zip | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/plugin-fuses | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/publisher-github | \\n7.7.0 | \\n7.8.0 | \\n
drizzle-orm | \\n0.40.0 | \\n0.41.0 | \\n
electron | \\n34.2.0 | \\n34.3.4 | \\n
electron-vite | \\n3.0.0 | \\n3.1.0 | \\n
@tanstack/query-sync-storage-persister | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query-persist-client | \\n5.68.0 | \\n5.69.0 | \\n
lru-cache | \\n11.0.2 | \\n11.1.0 | \\n
react-native-video | \\n6.10.2 | \\n6.11.0 | \\n
@sentry/react | \\n9.5.0 | \\n9.9.0 | \\n
react-router | \\n7.3.0 | \\n7.4.0 | \\n
@hono/node-server | \\n1.13.8 | \\n1.14.0 | \\n
@sentry/electron | \\n6.1.0 | \\n6.3.0 | \\n
@tanstack/react-query-devtools | \\n5.68.0 | \\n5.69.0 | \\n
firebase | \\n11.4.0 | \\n11.5.0 | \\n
react-scan | \\n0.2.14 | \\n0.3.3 | \\n
Updates simple-git-hooks
from 2.11.1 to 2.12.1
Sourced from simple-git-hooks\'s releases.
\\n\\n\\n2.12.1
\\nWhat\'s Changed
\\n\\n
\\n- feat: support esm format configs by
\\n@JounQin
in toplenboren/simple-git-hooks#120Full Changelog: https://github.com/toplenboren/simple-git-hooks/compare/2.11.1...2.12.1
\\n
f3bcd00
chore: add missing repo
option for changeset changelogfc2acfc
feat: support esm format configs (#120)72edba9
ci: enable automatic release via changesets (#123)0433a04
Update README.mdb859665
rename funding.json to FUNDING.jsonb32d3cc
add funding.json2594148
add tea.yamlUpdates vite-bundle-analyzer
from 0.17.3 to 0.18.1
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.18.1
\\n\\n
\\n- Reduce installer size.
\\n0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
3a877c0
chore: release v0.18.113edfdb
chore: release v0.18.08bbc216
feat: using mri replace commander.jsUpdates @electron-forge/cli
from 7.7.0 to 7.8.0
Sourced from @electron-forge/cli
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-appx
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-appx
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-dmg
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-dmg
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-pkg
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-pkg
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-squirrel
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-squirrel
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-zip
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-zip
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/plugin-fuses
from 7.7.0 to 7.8.0
Sourced from @electron-forge/plugin-fuses
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/publisher-github
from 7.7.0 to 7.8.0
Sourced from @electron-forge/publisher-github
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates drizzle-orm
from 0.40.0 to 0.41.0
Sourced from drizzle-orm\'s releases.
\\n\\n\\n0.41.0
\\n\\n
\\n- \\n
bigint
,number
modes forSQLite
,MySQL
,PostgreSQL
,SingleStore
decimal
&numeric
column types- Changed behavior of
\\nsql-js
query preparation to query prebuild instead of db-side prepare due to need to manually free prepared queries, removed.free()
method- Fixed
\\nMySQL
,SingleStore
varchar
allowing not specifyinglength
in config- Fixed
\\nMySQL
,SingleStore
binary
,varbinary
data\\\\type mismatches- Fixed
\\nnumeric
\\\\decimal
data\\\\type mismatches: #1290, #1453- Fixed
\\ndrizzle-studio
+AWS Data Api
connection issue: #3224- Fixed
\\nisConfig
utility function checking types of wrong fields- Enabled
\\nsupportBigNumbers
in auto-createdmysql2
driver instances- Fixed custom schema tables querying in RQBv1: #4060
\\n- Removed in-driver mapping for postgres types
\\n1231
(numeric[]
),1115
(timestamp[]
),1185
(timestamp_with_timezone[]
),1187
(interval[]
),1182
(date[]
), preventing precision loss and data\\\\type mismatches- Fixed
\\nSQLite
buffer
-modeblob
sometimes returningnumber[]
0.40.1
\\nUpdates to
\\nneon-http
for@neondatabase/serverless@1.0.0
- thanks@jawj
Starting from this version, drizzle-orm will be compatible with both
\\n@neondatabase/serverless
1.0
f39f885
Various fixes, features bundled for v0.41.0 (#4293)a270acb
Merge pull request #4287 from drizzle-team/optimize-int-tests1946324
Remove gel-relational44a19a9
Disable singlestore-relational3379afd
Split relational tests552fef4
Remove awaite37b1f5
Fix testbfc6bc3
Update latest pipeline007df99
Fix command67f0b33
Split unit testsUpdates electron
from 34.2.0 to 34.3.4
Sourced from electron\'s releases.
\\n\\nelectron v34.3.4
\\nRelease Notes for v34.3.4
\\nFixes
\\n\\n
- Fixed an issue where Web Workers crashed on unhandled rejections. #46019 (Also in 35, 36)
\\n- Fixed an issue where snapped windows in Windows may sometimes be improperly restored. #46039 (Also in 33, 35, 36)
\\n- Fixed incorrect titlebar in file save dialogs. #46076 (Also in 33, 35, 36)
\\n- Fixed title changes to not occur while navigating within a page. #46034
Streamline the order of toolbar actions using a Set, add a customization option for toolbar actions in settings, and ensure only the main action displays in mobile view.
\\nResolve FOL-1773
\\nRefine the flex styles in the NavigationHeader component to improve layout consistency and responsiveness.
\\n","description":"Resolve FOL-1773 Refine the flex styles in the NavigationHeader component to improve layout consistency and responsiveness.","guid":"https://github.com/RSSNext/Folo/pull/3282","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-25T06:54:48.796Z","media":[{"url":"https://github.com/user-attachments/assets/9d919d59-4f61-4ff8-ade4-5f1334698c9f","type":"photo","width":790,"height":792,"blurhash":"L45E$[4n_3oL00_3D%t7~q4n-;WB"},{"url":"https://github.com/user-attachments/assets/84637c9a-0892-4f98-84a9-b38f222e8df6","type":"photo","width":808,"height":644,"blurhash":"L03IYJ-;?HIU?b9F%MIUM{4n?bM{"}],"categories":null,"attachments":null,"extra":null,"language":null},{"title":"build(deps): bump the minor group across 1 directory with 24 updates","url":"https://github.com/RSSNext/Folo/pull/3281","content":"Bumps the minor group with 24 updates in the / directory:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
simple-git-hooks | \\n2.11.1 | \\n2.12.1 | \\n
vite-bundle-analyzer | \\n0.17.3 | \\n0.18.1 | \\n
@electron-forge/cli | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-appx | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-dmg | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-pkg | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-squirrel | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/maker-zip | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/plugin-fuses | \\n7.7.0 | \\n7.8.0 | \\n
@electron-forge/publisher-github | \\n7.7.0 | \\n7.8.0 | \\n
drizzle-orm | \\n0.40.0 | \\n0.41.0 | \\n
electron | \\n34.2.0 | \\n34.3.4 | \\n
@tanstack/query-sync-storage-persister | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query-persist-client | \\n5.68.0 | \\n5.69.0 | \\n
lru-cache | \\n11.0.2 | \\n11.1.0 | \\n
react-native-video | \\n6.10.2 | \\n6.11.0 | \\n
@sentry/react | \\n9.5.0 | \\n9.9.0 | \\n
react-router | \\n7.3.0 | \\n7.4.0 | \\n
@hono/node-server | \\n1.13.8 | \\n1.14.0 | \\n
@sentry/electron | \\n6.1.0 | \\n6.2.0 | \\n
@tanstack/react-query-devtools | \\n5.68.0 | \\n5.69.0 | \\n
firebase | \\n11.4.0 | \\n11.5.0 | \\n
react-scan | \\n0.2.14 | \\n0.3.3 | \\n
Updates simple-git-hooks
from 2.11.1 to 2.12.1
Sourced from simple-git-hooks\'s releases.
\\n\\n\\n2.12.1
\\nWhat\'s Changed
\\n\\n
\\n- feat: support esm format configs by
\\n@JounQin
in toplenboren/simple-git-hooks#120Full Changelog: https://github.com/toplenboren/simple-git-hooks/compare/2.11.1...2.12.1
\\n
f3bcd00
chore: add missing repo
option for changeset changelogfc2acfc
feat: support esm format configs (#120)72edba9
ci: enable automatic release via changesets (#123)0433a04
Update README.mdb859665
rename funding.json to FUNDING.jsonb32d3cc
add funding.json2594148
add tea.yamlUpdates vite-bundle-analyzer
from 0.17.3 to 0.18.1
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.18.1
\\n\\n
\\n- Reduce installer size.
\\n0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
3a877c0
chore: release v0.18.113edfdb
chore: release v0.18.08bbc216
feat: using mri replace commander.jsUpdates @electron-forge/cli
from 7.7.0 to 7.8.0
Sourced from @electron-forge/cli
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-appx
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-appx
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-dmg
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-dmg
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-pkg
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-pkg
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-squirrel
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-squirrel
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/maker-zip
from 7.7.0 to 7.8.0
Sourced from @electron-forge/maker-zip
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/plugin-fuses
from 7.7.0 to 7.8.0
Sourced from @electron-forge/plugin-fuses
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates @electron-forge/publisher-github
from 7.7.0 to 7.8.0
Sourced from @electron-forge/publisher-github
\'s releases.
\\n\\nv7.8.0
\\nWhat\'s Changed
\\nNew Features
\\n\\n
\\n- feat(cli): show template sources when initializing by
\\n@erickzhao
in electron/forge#3895- feat(cli): add
\\n--skip-git
option by@erickzhao
in electron/forge#3860Bug Fixes and Improvements
\\n\\n
\\n- fix(maker-wix): version with pre-release tag breaks app start by
\\n@ShGKme
in electron/forge#3855- fix(maker-wix): inherit config types from
\\nelectron-wix-msi
by@erickzhao
in electron/forge#3858- fix(core-utils): trim
\\nspawnPackageManager
output by@rahulptl165
in electron/forge#3866- fix(start): pass app args with correct amount of
\\n--
by@erickzhao
in electron/forge#3879- fix(cli): correctly wire up
\\n--skip-git
opt by@erickzhao
in electron/forge#3886- fix(core-utils): correctly fall back package manager lockfile by
\\n@erickzhao
in electron/forge#3885- fix(template-base): properly add
\\n.npmrc
to template files by@erickzhao
in electron/forge#3891- fix(cli): add descriptive error for unsupported node version by
\\n@knqu
in electron/forge#3894Other Changes
\\n\\n
\\n- build(deps): bump axios from 1.7.6 to 1.8.4 by
\\n@dependabot
in electron/forge#3897- test(core-utils): add test coverage for spawnPackageManager by
\\n@dsanders11
in electron/forge#3868New Contributors
\\n\\n
\\n- \\n
@ShGKme
made their first contribution in electron/forge#3855- \\n
@rahulptl165
made their first contribution in electron/forge#3866- \\n
@knqu
made their first contribution in electron/forge#3894Full Changelog: https://github.com/electron/forge/compare/v7.7.0...v7.8.0
\\n
f3af7b8
v7.8.0d80b22c
build(deps): bump axios from 1.7.6 to 1.8.4 (#3897)de1ab07
fix(cli): add descriptive error for unsupported node version (#3894)d3900ee
feat(cli): show template sources when initializing (#3895)5329eca
fix(template-base): properly add .npmrc
to template files (#3891)aae17fc
fix(core-utils): correctly fall back package manager lockfile (#3885)a604f66
fix(cli): correctly wire up --skip-git
opt (#3886)d9323d7
fix(start): pass app args with correct amount of --
(#3879)aee077f
test(core-utils): add test coverage for spawnPackageManager (#3868)632117e
fix(core-utils): trim spawnPackageManager
output (#3866)Updates drizzle-orm
from 0.40.0 to 0.41.0
Sourced from drizzle-orm\'s releases.
\\n\\n\\n0.41.0
\\n\\n
\\n- \\n
bigint
,number
modes forSQLite
,MySQL
,PostgreSQL
,SingleStore
decimal
&numeric
column types- Changed behavior of
\\nsql-js
query preparation to query prebuild instead of db-side prepare due to need to manually free prepared queries, removed.free()
method- Fixed
\\nMySQL
,SingleStore
varchar
allowing not specifyinglength
in config- Fixed
\\nMySQL
,SingleStore
binary
,varbinary
data\\\\type mismatches- Fixed
\\nnumeric
\\\\decimal
data\\\\type mismatches: #1290, #1453- Fixed
\\ndrizzle-studio
+AWS Data Api
connection issue: #3224- Fixed
\\nisConfig
utility function checking types of wrong fields- Enabled
\\nsupportBigNumbers
in auto-createdmysql2
driver instances- Fixed custom schema tables querying in RQBv1: #4060
\\n- Removed in-driver mapping for postgres types
\\n1231
(numeric[]
),1115
(timestamp[]
),1185
(timestamp_with_timezone[]
),1187
(interval[]
),1182
(date[]
), preventing precision loss and data\\\\type mismatches- Fixed
\\nSQLite
buffer
-modeblob
sometimes returningnumber[]
0.40.1
\\nUpdates to
\\nneon-http
for@neondatabase/serverless@1.0.0
- thanks@jawj
Starting from this version, drizzle-orm will be compatible with both
\\n@neondatabase/serverless
1.0
f39f885
Various fixes, features bundled for v0.41.0 (#4293)a270acb
Merge pull request #4287 from drizzle-team/optimize-int-tests1946324
Remove gel-relational44a19a9
Disable singlestore-relational3379afd
Split relational tests552fef4
Remove awaite37b1f5
Fix testbfc6bc3
Update latest pipeline007df99
Fix command67f0b33
Split unit testsUpdates electron
from 34.2.0 to 34.3.4
Sourced from electron\'s releases.
\\n\\nelectron v34.3.4
\\nRelease Notes for v34.3.4
\\nFixes
\\n\\n
- Fixed an issue where Web Workers crashed on unhandled rejections. #46019 (Also in 35, 36)
\\n- Fixed an issue where snapped windows in Windows may sometimes be improperly restored. #46039 (Also in 33, 35, 36)
\\n- Fixed incorrect titlebar in file save dialogs. #46076 (Also in 33, 35, 36)
\\n- Fixed title changes to not occur while navigating within a page. #46034 (Also in
Part of #3249
\\nAfter:
\\nhttps://github.com/user-attachments/assets/589afa8f-a014-4fad-a7ba-664ce4325815
\\n","description":"Part of #3249 After:\\n\\nhttps://github.com/user-attachments/assets/589afa8f-a014-4fad-a7ba-664ce4325815","guid":"https://github.com/RSSNext/Folo/pull/3266","author":"kovsu","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-24T08:03:10.843Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat: add PDF export functionality","url":"https://github.com/RSSNext/Folo/pull/3264","content":"I\'ve added a new action (Export as PDF) to the toolbar. Clicking this option will open the print dialog, allowing users to save the article as a PDF. All the contents(texts, links, images, tables...) in the article are made available as it is.
\\n(A demo video will be added below for better clarity.)
\\nwindow.print()
, which prints only the article, as all other components have data-hide-print
.https://github.com/user-attachments/assets/79896f1f-170f-4fd2-889c-dd13a6c067e7
\\nSame as #3148
\\n","description":"Same as #3148","guid":"https://github.com/RSSNext/Folo/pull/3259","author":"kovsu","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-24T02:59:15.505Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"ci: more runner","url":"https://github.com/RSSNext/Folo/pull/3256","content":"Cause the login form check not as expected
\\n\\nWhen not logged in, in the login form, clicking the Sign up button causes a form submission. This is clearly attributable to an incorrect button type setting or the utilization of the default value.
\\nJust added a type
attribute with the value \\"button\\" to the Sign up button.
I suggest for future development, consider using lint to prevent this issue. Or, specify a default type
to replace the standard default \\"submit\\", only explicitly triggering the submit action when submission is actually needed, or detach the button from the form.
Bumps the minor group with 15 updates in the / directory:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
simple-git-hooks | \\n2.11.1 | \\n2.12.1 | \\n
vite-bundle-analyzer | \\n0.17.3 | \\n0.18.1 | \\n
drizzle-orm | \\n0.40.0 | \\n0.41.0 | \\n
electron | \\n34.2.0 | \\n34.3.4 | \\n
@tanstack/query-sync-storage-persister | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query-persist-client | \\n5.68.0 | \\n5.69.0 | \\n
react-native-video | \\n6.10.2 | \\n6.11.0 | \\n
@sentry/react | \\n9.5.0 | \\n9.8.0 | \\n
react-router | \\n7.3.0 | \\n7.4.0 | \\n
@hono/node-server | \\n1.13.8 | \\n1.14.0 | \\n
@sentry/electron | \\n6.1.0 | \\n6.2.0 | \\n
@tanstack/react-query-devtools | \\n5.68.0 | \\n5.69.0 | \\n
firebase | \\n11.4.0 | \\n11.5.0 | \\n
react-scan | \\n0.2.14 | \\n0.3.3 | \\n
Updates simple-git-hooks
from 2.11.1 to 2.12.1
Sourced from simple-git-hooks\'s releases.
\\n\\n\\n2.12.1
\\nWhat\'s Changed
\\n\\n
\\n- feat: support esm format configs by
\\n@JounQin
in toplenboren/simple-git-hooks#120Full Changelog: https://github.com/toplenboren/simple-git-hooks/compare/2.11.1...2.12.1
\\n
f3bcd00
chore: add missing repo
option for changeset changelogfc2acfc
feat: support esm format configs (#120)72edba9
ci: enable automatic release via changesets (#123)0433a04
Update README.mdb859665
rename funding.json to FUNDING.jsonb32d3cc
add funding.json2594148
add tea.yamlUpdates vite-bundle-analyzer
from 0.17.3 to 0.18.1
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.18.1
\\n\\n
\\n- Reduce installer size.
\\n0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
3a877c0
chore: release v0.18.113edfdb
chore: release v0.18.08bbc216
feat: using mri replace commander.jsUpdates drizzle-orm
from 0.40.0 to 0.41.0
Sourced from drizzle-orm\'s releases.
\\n\\n\\n0.41.0
\\n\\n
\\n- \\n
bigint
,number
modes forSQLite
,MySQL
,PostgreSQL
,SingleStore
decimal
&numeric
column types- Changed behavior of
\\nsql-js
query preparation to query prebuild instead of db-side prepare due to need to manually free prepared queries, removed.free()
method- Fixed
\\nMySQL
,SingleStore
varchar
allowing not specifyinglength
in config- Fixed
\\nMySQL
,SingleStore
binary
,varbinary
data\\\\type mismatches- Fixed
\\nnumeric
\\\\decimal
data\\\\type mismatches: #1290, #1453- Fixed
\\ndrizzle-studio
+AWS Data Api
connection issue: #3224- Fixed
\\nisConfig
utility function checking types of wrong fields- Enabled
\\nsupportBigNumbers
in auto-createdmysql2
driver instances- Fixed custom schema tables querying in RQBv1: #4060
\\n- Removed in-driver mapping for postgres types
\\n1231
(numeric[]
),1115
(timestamp[]
),1185
(timestamp_with_timezone[]
),1187
(interval[]
),1182
(date[]
), preventing precision loss and data\\\\type mismatches- Fixed
\\nSQLite
buffer
-modeblob
sometimes returningnumber[]
0.40.1
\\nUpdates to
\\nneon-http
for@neondatabase/serverless@1.0.0
- thanks@jawj
Starting from this version, drizzle-orm will be compatible with both
\\n@neondatabase/serverless
1.0
f39f885
Various fixes, features bundled for v0.41.0 (#4293)a270acb
Merge pull request #4287 from drizzle-team/optimize-int-tests1946324
Remove gel-relational44a19a9
Disable singlestore-relational3379afd
Split relational tests552fef4
Remove awaite37b1f5
Fix testbfc6bc3
Update latest pipeline007df99
Fix command67f0b33
Split unit testsUpdates electron
from 34.2.0 to 34.3.4
Sourced from electron\'s releases.
\\n\\n\\nelectron v34.3.4
\\nRelease Notes for v34.3.4
\\nFixes
\\n\\n
\\n- Fixed an issue where Web Workers crashed on unhandled rejections. #46019 (Also in 35, 36)
\\n- Fixed an issue where snapped windows in Windows may sometimes be improperly restored. #46039 (Also in 33, 35, 36)
\\n- Fixed incorrect titlebar in file save dialogs. #46076 (Also in 33, 35, 36)
\\n- Fixed title changes to not occur while navigating within a page. #46034 (Also in 35, 36)
\\nOther Changes
\\n\\n
\\n- Security: backported fix for 382005099. #46009
\\n- Security: backported fix for 390743124. #46008
\\n- Security: backported fix for CVE-2025-1920. #46011
\\nelectron v34.3.3
\\nRelease Notes for v34.3.3
\\nFixes
\\n\\n
\\n- Backported fix for 391907157, 361370195. #45966
\\nOther Changes
\\n\\n
\\n- Fixed an issue where Electron could fail to load on some older Linux distributions. #45982 (Also in 35, 36)
\\nelectron v34.3.2
\\nRelease Notes for v34.3.2
\\nFixes
\\n\\n
\\n- Improved webContents loading time when resolving fonts for uncommon scripts. #45917 (Also in 35, 36)
\\nOther Changes
\\n\\nelectron v34.3.1
\\nRelease Notes for v34.3.1
\\nFixes
\\n\\n
\\n- Fixed an issue where
\\ncontextmenu
events wouldn\'t be correctly dispatched in draggable regions on Linux. #45840 (Also in 35)- Fixed an issue where
\\nsetContentProtection(true)
was reverted when a given window was hidden. #45890 (Also in 35)- Fixed invalid memory access in pdf viewer which lead to random crashes. #45880 (Also in 35)
\\nOther Changes
\\n\\n
\\n- Fixed an issue where native Node.js addons including
\\nuv.h
beforenode.h
don\'t compile as expected. #45870electron v34.3.0
\\nRelease Notes for v34.3.0
\\n\\n
... (truncated)
\\nbc9b5af
build: fix compound bash conditional in patchup (#46057)952b9c0
fix: warning in file picker UI (#46076)5705ce1
fix: take Snapped status into account when showing a window (#46039)c8ac7b0
perf: avoid redundant map lookup in ElectronBrowserContext::From() (#46060)dbeed26
fix: ElectronBrowserContext
raw_ptr
bug + remove dead code (#46054)99e589c
fix: prevent title change for within page navigation (#46034)3782fe5
fix: don\'t crash Web Workers on unhandled rejections (#46019)be7b061
refactor: make a variadic gin_helper::internal::InvokeFactory()
(#46029)6b956d0
chore: cherry-pick 1 changes from 3-M133 (#46008)370ffe0
chore: cherry-pick 3 changes from 0-M134 (#46009)Updates @tanstack/query-sync-storage-persister
from 5.68.0 to 5.69.0
Sourced from @tanstack/query-sync-storage-persister
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates @tanstack/react-query
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates @tanstack/react-query-persist-client
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query-persist-client
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates react-native-video
from 6.10.2 to 6.11.0
Sourced from react-native-video\'s releases.
\\n\\n\\nv6.11.0
\\nWhat\'s Changed
\\nFeatures ✨
\\n\\n
\\n- feat: enhance react-native-video plugins [Plugins API Breaking] by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4366iOS
\\n\\n
\\n- refactor(ios): add audio session manager by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4466Bug Fixes 🐛
\\nAndroid
\\n\\n
\\n- fix(android): prevent ratio calculations before loading video by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4442- fix(android): fix bugs related Android PIP listeners by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4441- fix(android): call startForeground() immediately to prevent ForegroundServiceDidNotStartInTimeException by
\\n@mobily
in TheWidlarzGroup/react-native-video#4453iOS
\\n\\n
\\n- fix(iOS): handle allowsPictureInPicturePlayback for tvOS by
\\n@kot331107
in TheWidlarzGroup/react-native-video#4448- fix(ios): invalid metadata by
\\n@aleksandar9999a
in TheWidlarzGroup/react-native-video#4422Windows
\\n\\n
\\n- fix(windows): event name not matches with SPEC by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4455- feat(windows): add topSeek event params as mentioned in docs by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4456Other
\\n\\n
\\n- docs: update structure by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4454- docs: update meta by
\\n@moskalakamil
in TheWidlarzGroup/react-native-video#4462- chore(ios): remove duplicated code by
\\n@freeboub
in TheWidlarzGroup/react-native-video#4439- docs: update examples by
\\n@emmanuel-ferdman
in TheWidlarzGroup/react-native-video#4468New Contributors
\\n\\n
\\n- \\n
@kot331107
made their first contribution in TheWidlarzGroup/react-native-video#4448- \\n
@aleksandar9999a
made their first contribution in TheWidlarzGroup/react-native-video#4422- \\n
@mobily
made their first contribution in TheWidlarzGroup/react-native-video#4453- \\n
@Lyqqt
made their first contribution in TheWidlarzGroup/react-native-video#4455- \\n
@emmanuel-ferdman
made their first contribution in TheWidlarzGroup/react-native-video#4468Full Changelog: https://github.com/TheWidlarzGroup/react-native-video/compare/v6.10.2...v6.11.0
\\n
Sourced from react-native-video\'s changelog.
\\n\\n\\n6.11.0 (2025-03-16)
\\nBug Fixes
\\n\\n
\\n- android: call
\\nstartForeground()
immediately to preventForegroundServiceDidNotStartInTimeException
(#4453) (b510374)- android: fix bugs related Android PIP listeners (#4441) (82f5f3d)
\\n- android: prevent ratio calculations before loading video (#4442) (235c281)
\\n- ios: invalid metadata handling (#4422) (bc533e5)
\\n- tvOS: handle allowsPictureInPicturePlayback for tvOS (#4448) (057c287)
\\n- windows: event name not matches with SPEC (#4455) (fa20223)
\\nFeatures
\\n\\n
ede502b
chore: release v6.11.0044e08a
docs: update examples (#4468)d902c1b
feat(windows): add topSeek parms mentioned in docs (#4456)9f02614
refactor(ios): add audio session manager (#4466)fa20223
fix(windows): event name not matches with SPEC (#4455)6e6f915
feat: enhance react-native-video plugins [Plugins API Breaking] (#4366)b510374
fix(android): call startForeground()
immediately to prevent `ForegroundServ...f9d3878
chore(ios): remove duplicated code (#4439)b11c1f3
docs: remove ga (#4462)bc533e5
fix(ios): invalid metadata handling (#4422)Updates @sentry/react
from 9.5.0 to 9.8.0
Sourced from @sentry/react
\'s releases.
\\n\\n9.8.0
\\n\\n
\\n- feat(node): Implement new continuous profiling API spec (#15635)
\\n- feat(profiling): Add platform to chunk envelope (#15758)
\\n- feat(react): Export captureReactException method (#15746)
\\n- fix(node): Check for
\\nres.end
before passing to Proxy (#15776)- perf(core): Add short-circuits to
\\neventFilters
integration (#15752)- perf(node): Short circuit flushing on Vercel only for Vercel (#15734)
\\nBundle size 📦
\\n\\n\\n
\\n\\n \\n\\n\\nPath \\nSize \\n\\n \\n\\n @sentry/browser
23.29 KB \\n\\n \\n\\n @sentry/browser
- with treeshaking flags23.11 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing)36.34 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay)73.51 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay) - with treeshaking flags66.94 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay with Canvas)78.15 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay, Feedback)90.71 KB \\n\\n \\n\\n @sentry/browser
(incl. Feedback)40.43 KB \\n\\n \\n\\n @sentry/browser
(incl. sendFeedback)27.94 KB \\n\\n \\n\\n @sentry/browser
(incl. FeedbackAsync)32.73 KB \\n\\n \\n\\n @sentry/react
25.1 KB \\n\\n \\n\\n @sentry/react
(incl. Tracing)38.26 KB \\n\\n \\n\\n @sentry/vue
27.53 KB \\n\\n \\n\\n @sentry/vue
(incl. Tracing)38.04 KB \\n\\n \\n\\n @sentry/svelte
23.33 KB \\n\\n \\nCDN Bundle \\n24.52 KB \\n\\n \\nCDN Bundle (incl. Tracing) \\n36.38 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) \\n71.41 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) \\n76.61 KB \\n\\n \\nCDN Bundle - uncompressed \\n71.68 KB \\n\\n \\nCDN Bundle (incl. Tracing) - uncompressed \\n108.06 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) - uncompressed \\n219.32 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed \\n231.88 KB \\n\\n \\n\\n @sentry/nextjs
(client)39.56 KB \\n\\n \\n\\n @sentry/sveltekit
(client)36.76 KB \\n\\n \\n\\n @sentry/node
142.65 KB \\n\\n \\n\\n @sentry/node
- without tracing96.04 KB \\n\\n \\n\\n\\n @sentry/aws-serverless
120.41 KB \\n9.7.0
\\n\\n
\\n- feat(core): Add
\\ncaptureLog
method (#15717)- feat(remix/cloudflare): Export
\\nsentryHandleError
(#15726)- fix(node): Always flush on Vercel before Lambda freeze (#15602)
\\n- fix(node): Ensure incoming traces are propagated without HttpInstrumentation (#15732)
\\n- fix(node): Use
\\nfatal
level for unhandled rejections instrict
mode (#15720)- fix(nuxt): Delete Nuxt server template injection (#15749)
\\nBundle size 📦
\\n\\n
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.8.0
\\n\\n
\\n- feat(node): Implement new continuous profiling API spec (#15635)
\\n- feat(profiling): Add platform to chunk envelope (#15758)
\\n- feat(react): Export captureReactException method (#15746)
\\n- fix(node): Check for
\\nres.end
before passing to Proxy (#15776)- perf(core): Add short-circuits to
\\neventFilters
integration (#15752)- perf(node): Short circuit flushing on Vercel only for Vercel (#15734)
\\n9.7.0
\\n\\n
\\n- feat(core): Add
\\ncaptureLog
method (#15717)- feat(remix/cloudflare): Export
\\nsentryHandleError
(#15726)- fix(node): Always flush on Vercel before Lambda freeze (#15602)
\\n- fix(node): Ensure incoming traces are propagated without HttpInstrumentation (#15732)
\\n- fix(node): Use
\\nfatal
level for unhandled rejections instrict
mode (#15720)- fix(nuxt): Delete Nuxt server template injection (#15749)
\\n9.6.1
\\n\\n
\\n- feat(deps): bump
\\n@prisma/instrumentation
from 6.4.1 to 6.5.0 (#15714)- feat(deps): bump
\\n@sentry/cli
from 2.42.2 to 2.42.3 (#15711)- fix(nextjs): Re-patch router if it is overridden by Next.js (#15721)
\\n- fix(nuxt): Add Nitro Rollup plugin to inject Sentry server config (#15710)
\\n- chore(deps): Bump rollup to 4.35.0 (#15651)
\\n9.6.0
\\nImportant Changes
\\n\\n
\\n- \\n
\\nfeat(tanstackstart): Add
\\n@sentry/tanstackstart-react
package and make@sentry/tanstackstart
package a utility package (#15629)Since TanStack Start is supposed to be a generic framework that supports libraries like React and Solid, the
\\n@sentry/tanstackstart
SDK package was renamed to@sentry/tanstackstart-react
to reflect that the SDK is specifically intended to be used for React TanStack Start applications.\\nNote that the TanStack Start SDK is still in alpha status and may be subject to breaking changes in non-major package updates.Other Changes
\\n\\n
\\n- feat(astro): Accept all vite-plugin options (#15638)
\\n- feat(deps): bump
\\n@sentry/webpack-plugin
from 3.2.1 to 3.2.2 (#15627)- feat(tanstackstart): Refine initial API (#15574)
\\n- fix(core): Ensure
\\nfill
only patches functions (#15632)- fix(nextjs): Consider
\\npageExtensions
when looking for instrumentation file (#15701)- fix(remix): Null-check
\\noptions
(#15610)- fix(sveltekit): Correctly parse angle bracket type assertions for auto instrumentation (#15578)
\\n- fix(sveltekit): Guard process variable (#15605)
\\nWork in this release was contributed by
\\n@angelikatyborska
and@nwalters512
. Thank you for your contributions!
14f3eb9
release: 9.8.0f633beb
Merge pull request #15777 from getsentry/prepare-release/9.8.06ce989c
meta(changelog): Update changelog for 9.8.0f4cd540
perf(node): Short circuit flushing on Vercel only for Vercel (#15734)d9260cf
fix(node): Check for res.end
before passing to Proxy (#15776)3d63621
profiling: add platform to chunk envelope (#15758)4bc89bd
Merge pull request #15756 from getsentry/mastere9248e0
feat(react): Export captureReactException method (#15746)46eff72
perf(core): Add short-circuits to eventFilters
integration (#15752)f2b861c
Merge branch \'release/9.7.0\'Updates react-router
from 7.3.0 to 7.4.0
Sourced from react-router\'s releases.
\\n\\n\\nv7.4.0
\\nSee the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v740
\\n
Sourced from react-router\'s changelog.
\\n\\n\\n7.4.0
\\nPatch Changes
\\n\\n
\\n- Fix root loader data on initial load redirects in SPA mode (#13222)
\\n- Load ancestor pathless/index routes in lazy route discovery for upwards non-eager-discoery routing (#13203)
\\n- Fix
\\nshouldRevalidate
behavior forclientLoader
-only routes inssr:true
apps (#13221)- UNSTABLE: Fix
\\nRequestHandler
loadContext
parameter type when middleware is enabled (#13204)- UNSTABLE: Update
\\nRoute.unstable_MiddlewareFunction
to have a return value ofResponse | undefined
instead ofResponse | void
becaue you should not return anything if you aren\'t returning theResponse
(#13199)- UNSTABLE(BREAKING): If a middleware throws an error, ensure we only bubble the error itself via
\\nnext()
and are no longer leaking theMiddlewareError
implementation detail (#13180)
1f7fdd5
chore: Update version for release (#13262)8423891
chore: Update version for release (pre) (#13244)22f027c
Merge branch \'main\' into release-nextbc43707
Fix root loader data on initial load redirects in SPA mode (#13222)5de9a21
Ensure ancestor pathless/index routes are loaded via manifest requests (#13203)a354db5
Fix shoulRevalidate behavior in clientLoader-only routes (#13221)99551ae
Stop leaking internal MiddlewareError implementation detail (#13180)cd50dc6
Fix RequestHandler
loadContext
type when middleware is enabled (#13204)0519530
Change middleware return type from void to undefined (#13199)bb81a9a
Fix error message typoUpdates @hono/node-server
from 1.13.8 to 1.14.0
Sourced from @hono/node-server
\'s releases.
\\n\\nv1.14.0
\\nWhat\'s Changed
\\n\\n
\\n- chore: use Bun as a package manager by
\\n@yusukebe
in honojs/node-server#224- fix: #230 use node:fs specifier prefix vs. fs import by
\\n@firxworx
in honojs/node-server#231- feat: accept absolute-form URI for request-target by
\\n@usualoma
in honojs/node-server#232- fix: fix the return type of
\\nresponseViaCache
by@yusukebe
in honojs/node-server#234New Contributors
\\n\\n
\\n- \\n
@firxworx
made their first contribution in honojs/node-server#231Full Changelog: https://github.com/honojs/node-server/compare/v1.13.8...v1.14.0
\\n
Updates @sentry/electron
from 6.1.0 to 6.2.0
Fix FOL-1774
\\nIntroduce an active prop to the SubscriptionList component to ensure proper scrolling behavior in the subscription tab.
\\n","description":"Fix FOL-1774 Introduce an active prop to the SubscriptionList component to ensure proper scrolling behavior in the subscription tab.","guid":"https://github.com/RSSNext/Folo/pull/3225","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-21T10:24:39.603Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"build(deps): bump the minor group across 1 directory with 12 updates","url":"https://github.com/RSSNext/Folo/pull/3224","content":"Bumps the minor group with 12 updates in the / directory:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
simple-git-hooks | \\n2.11.1 | \\n2.12.1 | \\n
vite-bundle-analyzer | \\n0.17.3 | \\n0.18.1 | \\n
electron | \\n34.2.0 | \\n34.3.4 | \\n
@tanstack/query-sync-storage-persister | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query-persist-client | \\n5.68.0 | \\n5.69.0 | \\n
react-native-video | \\n6.10.2 | \\n6.11.0 | \\n
react-router | \\n7.3.0 | \\n7.4.0 | \\n
@sentry/electron | \\n6.1.0 | \\n6.2.0 | \\n
@tanstack/react-query-devtools | \\n5.68.0 | \\n5.69.0 | \\n
firebase | \\n11.4.0 | \\n11.5.0 | \\n
react-scan | \\n0.2.14 | \\n0.3.2 | \\n
Updates simple-git-hooks
from 2.11.1 to 2.12.1
Sourced from simple-git-hooks\'s releases.
\\n\\n\\n2.12.1
\\nWhat\'s Changed
\\n\\n
\\n- feat: support esm format configs by
\\n@JounQin
in toplenboren/simple-git-hooks#120Full Changelog: https://github.com/toplenboren/simple-git-hooks/compare/2.11.1...2.12.1
\\n
f3bcd00
chore: add missing repo
option for changeset changelogfc2acfc
feat: support esm format configs (#120)72edba9
ci: enable automatic release via changesets (#123)0433a04
Update README.mdb859665
rename funding.json to FUNDING.jsonb32d3cc
add funding.json2594148
add tea.yamlUpdates vite-bundle-analyzer
from 0.17.3 to 0.18.1
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.18.1
\\n\\n
\\n- Reduce installer size.
\\n0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
3a877c0
chore: release v0.18.113edfdb
chore: release v0.18.08bbc216
feat: using mri replace commander.jsUpdates electron
from 34.2.0 to 34.3.4
Sourced from electron\'s releases.
\\n\\n\\nelectron v34.3.4
\\nRelease Notes for v34.3.4
\\nFixes
\\n\\n
\\n- Fixed an issue where Web Workers crashed on unhandled rejections. #46019 (Also in 35, 36)
\\n- Fixed an issue where snapped windows in Windows may sometimes be improperly restored. #46039 (Also in 33, 35, 36)
\\n- Fixed incorrect titlebar in file save dialogs. #46076 (Also in 33, 35, 36)
\\n- Fixed title changes to not occur while navigating within a page. #46034 (Also in 35, 36)
\\nOther Changes
\\n\\n
\\n- Security: backported fix for 382005099. #46009
\\n- Security: backported fix for 390743124. #46008
\\n- Security: backported fix for CVE-2025-1920. #46011
\\nelectron v34.3.3
\\nRelease Notes for v34.3.3
\\nFixes
\\n\\n
\\n- Backported fix for 391907157, 361370195. #45966
\\nOther Changes
\\n\\n
\\n- Fixed an issue where Electron could fail to load on some older Linux distributions. #45982 (Also in 35, 36)
\\nelectron v34.3.2
\\nRelease Notes for v34.3.2
\\nFixes
\\n\\n
\\n- Improved webContents loading time when resolving fonts for uncommon scripts. #45917 (Also in 35, 36)
\\nOther Changes
\\n\\nelectron v34.3.1
\\nRelease Notes for v34.3.1
\\nFixes
\\n\\n
\\n- Fixed an issue where
\\ncontextmenu
events wouldn\'t be correctly dispatched in draggable regions on Linux. #45840 (Also in 35)- Fixed an issue where
\\nsetContentProtection(true)
was reverted when a given window was hidden. #45890 (Also in 35)- Fixed invalid memory access in pdf viewer which lead to random crashes. #45880 (Also in 35)
\\nOther Changes
\\n\\n
\\n- Fixed an issue where native Node.js addons including
\\nuv.h
beforenode.h
don\'t compile as expected. #45870electron v34.3.0
\\nRelease Notes for v34.3.0
\\n\\n
... (truncated)
\\nbc9b5af
build: fix compound bash conditional in patchup (#46057)952b9c0
fix: warning in file picker UI (#46076)5705ce1
fix: take Snapped status into account when showing a window (#46039)c8ac7b0
perf: avoid redundant map lookup in ElectronBrowserContext::From() (#46060)dbeed26
fix: ElectronBrowserContext
raw_ptr
bug + remove dead code (#46054)99e589c
fix: prevent title change for within page navigation (#46034)3782fe5
fix: don\'t crash Web Workers on unhandled rejections (#46019)be7b061
refactor: make a variadic gin_helper::internal::InvokeFactory()
(#46029)6b956d0
chore: cherry-pick 1 changes from 3-M133 (#46008)370ffe0
chore: cherry-pick 3 changes from 0-M134 (#46009)Updates @tanstack/query-sync-storage-persister
from 5.68.0 to 5.69.0
Sourced from @tanstack/query-sync-storage-persister
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates @tanstack/react-query
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates @tanstack/react-query-persist-client
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query-persist-client
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates react-native-video
from 6.10.2 to 6.11.0
Sourced from react-native-video\'s releases.
\\n\\n\\nv6.11.0
\\nWhat\'s Changed
\\nFeatures ✨
\\n\\n
\\n- feat: enhance react-native-video plugins [Plugins API Breaking] by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4366iOS
\\n\\n
\\n- refactor(ios): add audio session manager by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4466Bug Fixes 🐛
\\nAndroid
\\n\\n
\\n- fix(android): prevent ratio calculations before loading video by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4442- fix(android): fix bugs related Android PIP listeners by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4441- fix(android): call startForeground() immediately to prevent ForegroundServiceDidNotStartInTimeException by
\\n@mobily
in TheWidlarzGroup/react-native-video#4453iOS
\\n\\n
\\n- fix(iOS): handle allowsPictureInPicturePlayback for tvOS by
\\n@kot331107
in TheWidlarzGroup/react-native-video#4448- fix(ios): invalid metadata by
\\n@aleksandar9999a
in TheWidlarzGroup/react-native-video#4422Windows
\\n\\n
\\n- fix(windows): event name not matches with SPEC by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4455- feat(windows): add topSeek event params as mentioned in docs by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4456Other
\\n\\n
\\n- docs: update structure by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4454- docs: update meta by
\\n@moskalakamil
in TheWidlarzGroup/react-native-video#4462- chore(ios): remove duplicated code by
\\n@freeboub
in TheWidlarzGroup/react-native-video#4439- docs: update examples by
\\n@emmanuel-ferdman
in TheWidlarzGroup/react-native-video#4468New Contributors
\\n\\n
\\n- \\n
@kot331107
made their first contribution in TheWidlarzGroup/react-native-video#4448- \\n
@aleksandar9999a
made their first contribution in TheWidlarzGroup/react-native-video#4422- \\n
@mobily
made their first contribution in TheWidlarzGroup/react-native-video#4453- \\n
@Lyqqt
made their first contribution in TheWidlarzGroup/react-native-video#4455- \\n
@emmanuel-ferdman
made their first contribution in TheWidlarzGroup/react-native-video#4468Full Changelog: https://github.com/TheWidlarzGroup/react-native-video/compare/v6.10.2...v6.11.0
\\n
Sourced from react-native-video\'s changelog.
\\n\\n\\n6.11.0 (2025-03-16)
\\nBug Fixes
\\n\\n
\\n- android: call
\\nstartForeground()
immediately to preventForegroundServiceDidNotStartInTimeException
(#4453) (b510374)- android: fix bugs related Android PIP listeners (#4441) (82f5f3d)
\\n- android: prevent ratio calculations before loading video (#4442) (235c281)
\\n- ios: invalid metadata handling (#4422) (bc533e5)
\\n- tvOS: handle allowsPictureInPicturePlayback for tvOS (#4448) (057c287)
\\n- windows: event name not matches with SPEC (#4455) (fa20223)
\\nFeatures
\\n\\n
ede502b
chore: release v6.11.0044e08a
docs: update examples (#4468)d902c1b
feat(windows): add topSeek parms mentioned in docs (#4456)9f02614
refactor(ios): add audio session manager (#4466)fa20223
fix(windows): event name not matches with SPEC (#4455)6e6f915
feat: enhance react-native-video plugins [Plugins API Breaking] (#4366)b510374
fix(android): call startForeground()
immediately to prevent `ForegroundServ...f9d3878
chore(ios): remove duplicated code (#4439)b11c1f3
docs: remove ga (#4462)bc533e5
fix(ios): invalid metadata handling (#4422)Updates react-router
from 7.3.0 to 7.4.0
Sourced from react-router\'s releases.
\\n\\n\\nv7.4.0
\\nSee the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v740
\\n
Sourced from react-router\'s changelog.
\\n\\n\\n7.4.0
\\nPatch Changes
\\n\\n
\\n- Fix root loader data on initial load redirects in SPA mode (#13222)
\\n- Load ancestor pathless/index routes in lazy route discovery for upwards non-eager-discoery routing (#13203)
\\n- Fix
\\nshouldRevalidate
behavior forclientLoader
-only routes inssr:true
apps (#13221)- UNSTABLE: Fix
\\nRequestHandler
loadContext
parameter type when middleware is enabled (#13204)- UNSTABLE: Update
\\nRoute.unstable_MiddlewareFunction
to have a return value ofResponse | undefined
instead ofResponse | void
becaue you should not return anything if you aren\'t returning theResponse
(#13199)- UNSTABLE(BREAKING): If a middleware throws an error, ensure we only bubble the error itself via
\\nnext()
and are no longer leaking theMiddlewareError
implementation detail (#13180)
1f7fdd5
chore: Update version for release (#13262)8423891
chore: Update version for release (pre) (#13244)22f027c
Merge branch \'main\' into release-nextbc43707
Fix root loader data on initial load redirects in SPA mode (#13222)5de9a21
Ensure ancestor pathless/index routes are loaded via manifest requests (#13203)a354db5
Fix shoulRevalidate behavior in clientLoader-only routes (#13221)99551ae
Stop leaking internal MiddlewareError implementation detail (#13180)cd50dc6
Fix RequestHandler
loadContext
type when middleware is enabled (#13204)0519530
Change middleware return type from void to undefined (#13199)bb81a9a
Fix error message typoUpdates @sentry/electron
from 6.1.0 to 6.2.0
6b26852
release: 6.2.02ec0eed
chore: changelog for v6.2.0 release (#1101)6f990ba
feat: Update JavaScript SDKs to v9.6.0 (#1100)ce0c675
feat: Parse crashpad metadata from minidumps and include in electron
contex...3e2a2e4
feat: Add gpuContextIntegration
(#1097)5d67cc7
feat: Use registerPreloadScript
in Electron >= v35 (#1098)9210c89
test: New Electron versions (#1088)9a99315
test: New Sentry SDK version (#1092)e79c824
feat: Update to v9.3.0 of JavaScript SDKs (#1090)d31b1d2
feat: Update to v9.2.0 of JavaScript SDKs (#1089)Updates @tanstack/react-query-devtools
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query-devtools
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates firebase
from 11.4.0 to 11.5.0
Sourced from firebase\'s releases.
\\n\\n\\nfirebase@11.5.0
\\nFor more detailed release notes, see Firebase JavaScript SDK Release Notes.
\\nWhat\'s Changed
\\nfirebase@11.5.0
\\nMinor Changes
\\n\\nPatch Changes
\\n\\n
\\n- \\n
\\n\\n
5611175
#8814 (fixes #8813) - Modify the retry mechanism to stop when remaining tries is less than or equal to zero, improving the robustness of the retry handling.- \\n
\\n\\n
feb2c9d
#8787 - Use lazy encoding in UTF-8 encoded byte comparison for strings.- \\n
\\nUpdated dependencies [
\\n25985ac
,5611175
,95b4fc6
,feb2c9d
,113c965
,058afa2
,43d6b67
]:- \\n
\\n\\n
@firebase/app
@0
.11.3- \\n
\\n\\n
@firebase/vertexai
@1
.2.0- \\n
\\n\\n
@firebase/performance
@0
.7.2- \\n
\\n\\n
@firebase/app-check
@0
.8.13- \\n
\\n\\n
@firebase/firestore
@4
.7.10- \\n
\\n\\n
@firebase/database-compat
@2
.0.5- \\n
\\n\\n
@firebase/database
@1
.0.14- \\n
\\n\\n
@firebase/data-connect
@0
.3.2- \\n
\\n\\n
@firebase/app-compat
@0
.2.52- \\n
\\n\\n
@firebase/performance-compat
@0
.2.15- \\n
\\n\\n
@firebase/app-check-compat
@0
.3.20- \\n
\\n\\n
@firebase/firestore-compat
@0
.3.45\\n
@firebase/vertexai
@1
.2.0Minor Changes
\\n\\n
\\n- \\n
\\n\\n
25985ac
#8827 - AddsystemInstruction
,tools
, andgenerationConfig
toCountTokensRequest
.- \\n
\\n\\n
058afa2
#8741 - Added missingBlockReason
andFinishReason
enum values.\\n
@firebase/app
@0
.11.3Patch Changes
\\n\\n
\\n- Update SDK_VERSION.
\\n\\n
@firebase/app-check
@0
.8.13Patch Changes
\\n\\n\\n
... (truncated)
\\n202c732
Version Packages (#8849) - v11.5.05887660
Merge main into releasee8865f2
Grant Create PR content write permissions. (#8848)4f6439f
Merge main into releasecf3c8fb
Grant Create PR workflow pull-request write perms. (#8846)8ec9376
Merge main into release95b4fc6
Surface all App Check errors in public getToken() method (#8842)a512bc6
fix golden files test (#8843)feb2c9d
Fix: sort strings in UTF-8 encoded byte order with lazy encoding (#8787)51465ce
Give check-changeset
job pull request write permissions (#8833)Updates react-scan
from 0.2.14 to 0.3.2
Sourced from react-scan\'s releases.
\\n\\n\\nv0.3.2
\\nFixes a bug causing the re-render outline disable state to not persist across browser refresh when options are passed to
\\nscan()
Full Changelog: https://github.com/aidenybai/react-scan/compare/v0.3.1...v0.3.2
\\nv0.3.1
\\nWhat\'s Changed
\\n\\n
\\n- minor typo fix
\\nv0.3.0
\\nRelease v0.3.0
\\n\\n
\\n\\n- fixes a bug causing the \\"whats changed\\" view in the inspect tool to incorrectly report changes\\n
\\n\\n
\\n- we have temporarily removed the state change timeline feature to patch the what\'s changed view. We will add it back in a future release. The reasoning was it\'s better to have a working partial feature than a broken full feature released
\\n- adds the ability to see the parents of rendered components in the notification view\\n
\\n\\n
\\n- this helps resolve the problem of not knowing where components that show as slow in the notification view are in your component tree
\\n\\n\\nin this image, notice how the DndContext render is expandable, allowing you to see who rendered that component
\\n\\n
\\n\\n- removes the view that showed all the props/state/context of a component\\n
\\n\\n
\\n- we found this was noisy and confusing for users when they were trying to interpret the \\"whats changed\\" view above it. We may add this back in a future release
\\n\\n\\nthis image shows the updated UI without the view that showed all the props/state/context of a component
\\n\\n
\\n- adds
\\nshowNotificationCount
option, which allows you to disable the red notification count in the toolbar- notification counts shown in the toolbar are cleared after you view them\\n
\\n\\n
\\n- it was annoying to have the number keep increasing even if you already know about the slowdowns, so now it automatically resets after you view them
\\n- fixes an issue causing the toolbar to appear blurry
\\n- notifications no longer reports FPS slowdowns caused by the toolbar itself\\n
\\n\\n
\\n- this frequently happened when hovering the render bar chart, since drawing outlines over components can be an expensive operation when there are a lot of components
\\n- increases the threshold before we consider a slowdown important enough to report it as a FPS drop by 50%\\n
\\n\\n
\\n- the previous configuration resulted in too many false positives. In a future release we will allow this to be configured in the toolbar
\\nWhat\'s Changed
\\n\\n
\\n- feat: extension v1.0.8 by
\\n@pivanov
in aidenybai/react-scan#322- feat: show rendered parents in notifications view by
\\n@RobPruzan
in aidenybai/react-scan#328Full Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.14...v0.3.0
\\n
59919b1
bump to 0.3.2e619a3e
fix: persist previous enabled state when options are passed5e0530a
bump to 0.3.18b06209
chore: fix typofddabfe
bump to 0.3.0a8e6788
fix: whats changed shows incorrect changes (#337)1fd1ba0
feat: show rendered parents in notifications view (#328)Description has been truncated
\\nBumps the minor group with 13 updates in the / directory:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
simple-git-hooks | \\n2.11.1 | \\n2.12.1 | \\n
vite-bundle-analyzer | \\n0.17.3 | \\n0.18.0 | \\n
electron | \\n34.2.0 | \\n34.3.4 | \\n
@tanstack/query-sync-storage-persister | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query | \\n5.68.0 | \\n5.69.0 | \\n
@tanstack/react-query-persist-client | \\n5.68.0 | \\n5.69.0 | \\n
react-native-video | \\n6.10.2 | \\n6.11.0 | \\n
@sentry/react | \\n9.5.0 | \\n9.7.0 | \\n
react-router | \\n7.3.0 | \\n7.4.0 | \\n
@sentry/electron | \\n6.1.0 | \\n6.2.0 | \\n
@tanstack/react-query-devtools | \\n5.68.0 | \\n5.69.0 | \\n
firebase | \\n11.4.0 | \\n11.5.0 | \\n
react-scan | \\n0.2.14 | \\n0.3.2 | \\n
Updates simple-git-hooks
from 2.11.1 to 2.12.1
Sourced from simple-git-hooks\'s releases.
\\n\\n\\n2.12.1
\\nWhat\'s Changed
\\n\\n
\\n- feat: support esm format configs by
\\n@JounQin
in toplenboren/simple-git-hooks#120Full Changelog: https://github.com/toplenboren/simple-git-hooks/compare/2.11.1...2.12.1
\\n
f3bcd00
chore: add missing repo
option for changeset changelogfc2acfc
feat: support esm format configs (#120)72edba9
ci: enable automatic release via changesets (#123)0433a04
Update README.mdb859665
rename funding.json to FUNDING.jsonb32d3cc
add funding.json2594148
add tea.yamlUpdates vite-bundle-analyzer
from 0.17.3 to 0.18.0
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
13edfdb
chore: release v0.18.08bbc216
feat: using mri replace commander.jsUpdates electron
from 34.2.0 to 34.3.4
Sourced from electron\'s releases.
\\n\\n\\nelectron v34.3.4
\\nRelease Notes for v34.3.4
\\nFixes
\\n\\n
\\n- Fixed an issue where Web Workers crashed on unhandled rejections. #46019 (Also in 35, 36)
\\n- Fixed an issue where snapped windows in Windows may sometimes be improperly restored. #46039 (Also in 33, 35, 36)
\\n- Fixed incorrect titlebar in file save dialogs. #46076 (Also in 33, 35, 36)
\\n- Fixed title changes to not occur while navigating within a page. #46034 (Also in 35, 36)
\\nOther Changes
\\n\\n
\\n- Security: backported fix for 382005099. #46009
\\n- Security: backported fix for 390743124. #46008
\\n- Security: backported fix for CVE-2025-1920. #46011
\\nelectron v34.3.3
\\nRelease Notes for v34.3.3
\\nFixes
\\n\\n
\\n- Backported fix for 391907157, 361370195. #45966
\\nOther Changes
\\n\\n
\\n- Fixed an issue where Electron could fail to load on some older Linux distributions. #45982 (Also in 35, 36)
\\nelectron v34.3.2
\\nRelease Notes for v34.3.2
\\nFixes
\\n\\n
\\n- Improved webContents loading time when resolving fonts for uncommon scripts. #45917 (Also in 35, 36)
\\nOther Changes
\\n\\nelectron v34.3.1
\\nRelease Notes for v34.3.1
\\nFixes
\\n\\n
\\n- Fixed an issue where
\\ncontextmenu
events wouldn\'t be correctly dispatched in draggable regions on Linux. #45840 (Also in 35)- Fixed an issue where
\\nsetContentProtection(true)
was reverted when a given window was hidden. #45890 (Also in 35)- Fixed invalid memory access in pdf viewer which lead to random crashes. #45880 (Also in 35)
\\nOther Changes
\\n\\n
\\n- Fixed an issue where native Node.js addons including
\\nuv.h
beforenode.h
don\'t compile as expected. #45870electron v34.3.0
\\nRelease Notes for v34.3.0
\\n\\n
... (truncated)
\\nbc9b5af
build: fix compound bash conditional in patchup (#46057)952b9c0
fix: warning in file picker UI (#46076)5705ce1
fix: take Snapped status into account when showing a window (#46039)c8ac7b0
perf: avoid redundant map lookup in ElectronBrowserContext::From() (#46060)dbeed26
fix: ElectronBrowserContext
raw_ptr
bug + remove dead code (#46054)99e589c
fix: prevent title change for within page navigation (#46034)3782fe5
fix: don\'t crash Web Workers on unhandled rejections (#46019)be7b061
refactor: make a variadic gin_helper::internal::InvokeFactory()
(#46029)6b956d0
chore: cherry-pick 1 changes from 3-M133 (#46008)370ffe0
chore: cherry-pick 3 changes from 0-M134 (#46009)Updates @tanstack/query-sync-storage-persister
from 5.68.0 to 5.69.0
Sourced from @tanstack/query-sync-storage-persister
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates @tanstack/react-query
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates @tanstack/react-query-persist-client
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query-persist-client
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates react-native-video
from 6.10.2 to 6.11.0
Sourced from react-native-video\'s releases.
\\n\\n\\nv6.11.0
\\nWhat\'s Changed
\\nFeatures ✨
\\n\\n
\\n- feat: enhance react-native-video plugins [Plugins API Breaking] by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4366iOS
\\n\\n
\\n- refactor(ios): add audio session manager by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4466Bug Fixes 🐛
\\nAndroid
\\n\\n
\\n- fix(android): prevent ratio calculations before loading video by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4442- fix(android): fix bugs related Android PIP listeners by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4441- fix(android): call startForeground() immediately to prevent ForegroundServiceDidNotStartInTimeException by
\\n@mobily
in TheWidlarzGroup/react-native-video#4453iOS
\\n\\n
\\n- fix(iOS): handle allowsPictureInPicturePlayback for tvOS by
\\n@kot331107
in TheWidlarzGroup/react-native-video#4448- fix(ios): invalid metadata by
\\n@aleksandar9999a
in TheWidlarzGroup/react-native-video#4422Windows
\\n\\n
\\n- fix(windows): event name not matches with SPEC by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4455- feat(windows): add topSeek event params as mentioned in docs by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4456Other
\\n\\n
\\n- docs: update structure by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4454- docs: update meta by
\\n@moskalakamil
in TheWidlarzGroup/react-native-video#4462- chore(ios): remove duplicated code by
\\n@freeboub
in TheWidlarzGroup/react-native-video#4439- docs: update examples by
\\n@emmanuel-ferdman
in TheWidlarzGroup/react-native-video#4468New Contributors
\\n\\n
\\n- \\n
@kot331107
made their first contribution in TheWidlarzGroup/react-native-video#4448- \\n
@aleksandar9999a
made their first contribution in TheWidlarzGroup/react-native-video#4422- \\n
@mobily
made their first contribution in TheWidlarzGroup/react-native-video#4453- \\n
@Lyqqt
made their first contribution in TheWidlarzGroup/react-native-video#4455- \\n
@emmanuel-ferdman
made their first contribution in TheWidlarzGroup/react-native-video#4468Full Changelog: https://github.com/TheWidlarzGroup/react-native-video/compare/v6.10.2...v6.11.0
\\n
Sourced from react-native-video\'s changelog.
\\n\\n\\n6.11.0 (2025-03-16)
\\nBug Fixes
\\n\\n
\\n- android: call
\\nstartForeground()
immediately to preventForegroundServiceDidNotStartInTimeException
(#4453) (b510374)- android: fix bugs related Android PIP listeners (#4441) (82f5f3d)
\\n- android: prevent ratio calculations before loading video (#4442) (235c281)
\\n- ios: invalid metadata handling (#4422) (bc533e5)
\\n- tvOS: handle allowsPictureInPicturePlayback for tvOS (#4448) (057c287)
\\n- windows: event name not matches with SPEC (#4455) (fa20223)
\\nFeatures
\\n\\n
ede502b
chore: release v6.11.0044e08a
docs: update examples (#4468)d902c1b
feat(windows): add topSeek parms mentioned in docs (#4456)9f02614
refactor(ios): add audio session manager (#4466)fa20223
fix(windows): event name not matches with SPEC (#4455)6e6f915
feat: enhance react-native-video plugins [Plugins API Breaking] (#4366)b510374
fix(android): call startForeground()
immediately to prevent `ForegroundServ...f9d3878
chore(ios): remove duplicated code (#4439)b11c1f3
docs: remove ga (#4462)bc533e5
fix(ios): invalid metadata handling (#4422)Updates @sentry/react
from 9.5.0 to 9.7.0
Sourced from @sentry/react
\'s releases.
\\n\\n9.7.0
\\n\\n
\\n- feat(core): Add
\\ncaptureLog
method (#15717)- feat(remix/cloudflare): Export
\\nsentryHandleError
(#15726)- fix(node): Always flush on Vercel before Lambda freeze (#15602)
\\n- fix(node): Ensure incoming traces are propagated without HttpInstrumentation (#15732)
\\n- fix(node): Use
\\nfatal
level for unhandled rejections instrict
mode (#15720)- fix(nuxt): Delete Nuxt server template injection (#15749)
\\nBundle size 📦
\\n\\n\\n
\\n\\n \\n\\n\\nPath \\nSize \\n\\n \\n\\n @sentry/browser
23.28 KB \\n\\n \\n\\n @sentry/browser
- with treeshaking flags23.09 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing)36.33 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay)73.5 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay) - with treeshaking flags66.93 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay with Canvas)78.13 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay, Feedback)90.69 KB \\n\\n \\n\\n @sentry/browser
(incl. Feedback)40.42 KB \\n\\n \\n\\n @sentry/browser
(incl. sendFeedback)27.91 KB \\n\\n \\n\\n @sentry/browser
(incl. FeedbackAsync)32.7 KB \\n\\n \\n\\n @sentry/react
25.08 KB \\n\\n \\n\\n @sentry/react
(incl. Tracing)38.23 KB \\n\\n \\n\\n @sentry/vue
27.52 KB \\n\\n \\n\\n @sentry/vue
(incl. Tracing)38.02 KB \\n\\n \\n\\n @sentry/svelte
23.3 KB \\n\\n \\nCDN Bundle \\n24.49 KB \\n\\n \\nCDN Bundle (incl. Tracing) \\n36.37 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) \\n71.39 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) \\n76.57 KB \\n\\n \\nCDN Bundle - uncompressed \\n71.56 KB \\n\\n \\nCDN Bundle (incl. Tracing) - uncompressed \\n107.94 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) - uncompressed \\n219.2 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed \\n231.77 KB \\n\\n \\n\\n @sentry/nextjs
(client)39.52 KB \\n\\n \\n\\n @sentry/sveltekit
(client)36.73 KB \\n\\n \\n\\n @sentry/node
142.62 KB \\n\\n \\n\\n @sentry/node
- without tracing96.01 KB \\n\\n \\n\\n\\n @sentry/aws-serverless
120.37 KB \\n9.7.0-alpha.0
\\nThis is an alpha release that includes experimental features which are subject to breaking changes.
\\n\\n
\\n- fix(node): Ensure httpIntegration propagates traces #15735
\\n- feat(browser): Attach top-level domain to \\"Failed to fetch\\" errors #15729
\\nBundle size 📦
\\n| Path | Size |
\\n\\n
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.7.0
\\n\\n
\\n- feat(core): Add
\\ncaptureLog
method (#15717)- feat(remix/cloudflare): Export
\\nsentryHandleError
(#15726)- fix(node): Always flush on Vercel before Lambda freeze (#15602)
\\n- fix(node): Ensure incoming traces are propagated without HttpInstrumentation (#15732)
\\n- fix(node): Use
\\nfatal
level for unhandled rejections instrict
mode (#15720)- fix(nuxt): Delete Nuxt server template injection (#15749)
\\n9.6.1
\\n\\n
\\n- feat(deps): bump
\\n@prisma/instrumentation
from 6.4.1 to 6.5.0 (#15714)- feat(deps): bump
\\n@sentry/cli
from 2.42.2 to 2.42.3 (#15711)- fix(nextjs): Re-patch router if it is overridden by Next.js (#15721)
\\n- fix(nuxt): Add Nitro Rollup plugin to inject Sentry server config (#15710)
\\n- chore(deps): Bump rollup to 4.35.0 (#15651)
\\n9.6.0
\\nImportant Changes
\\n\\n
\\n- \\n
\\nfeat(tanstackstart): Add
\\n@sentry/tanstackstart-react
package and make@sentry/tanstackstart
package a utility package (#15629)Since TanStack Start is supposed to be a generic framework that supports libraries like React and Solid, the
\\n@sentry/tanstackstart
SDK package was renamed to@sentry/tanstackstart-react
to reflect that the SDK is specifically intended to be used for React TanStack Start applications.\\nNote that the TanStack Start SDK is still in alpha status and may be subject to breaking changes in non-major package updates.Other Changes
\\n\\n
\\n- feat(astro): Accept all vite-plugin options (#15638)
\\n- feat(deps): bump
\\n@sentry/webpack-plugin
from 3.2.1 to 3.2.2 (#15627)- feat(tanstackstart): Refine initial API (#15574)
\\n- fix(core): Ensure
\\nfill
only patches functions (#15632)- fix(nextjs): Consider
\\npageExtensions
when looking for instrumentation file (#15701)- fix(remix): Null-check
\\noptions
(#15610)- fix(sveltekit): Correctly parse angle bracket type assertions for auto instrumentation (#15578)
\\n- fix(sveltekit): Guard process variable (#15605)
\\nWork in this release was contributed by
\\n@angelikatyborska
and@nwalters512
. Thank you for your contributions!
526ed8e
release: 9.7.03b7ec8c
Merge pull request #15755 from getsentry/prepare-release/9.7.00614d95
meta(changelog): Update changelog for 9.7.098c12a3
fix(nuxt): Delete Nuxt server template injection (#15749)57e9654
chore(docs): Add note on alpha releases to docs (#15741)fc0af38
feat(core): Add captureLog
method (#15717)aa1548f
fix(node): Use fatal
level for unhandled rejections in strict
mode (#15720)d76a165
ref(node): Avoid unnecessary array parsing for incoming requests (#15736)fa8e043
fix(node): Ensure incoming traces are propagated without HttpInstrumentation ...d0300e6
Merge pull request #15728 from getsentry/masterUpdates react-router
from 7.3.0 to 7.4.0
Sourced from react-router\'s releases.
\\n\\n\\nv7.4.0
\\nSee the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v740
\\n
Sourced from react-router\'s changelog.
\\n\\n\\n7.4.0
\\nPatch Changes
\\n\\n
\\n- Fix root loader data on initial load redirects in SPA mode (#13222)
\\n- Load ancestor pathless/index routes in lazy route discovery for upwards non-eager-discoery routing (#13203)
\\n- Fix
\\nshouldRevalidate
behavior forclientLoader
-only routes inssr:true
apps (#13221)- UNSTABLE: Fix
\\nRequestHandler
loadContext
parameter type when middleware is enabled (#13204)- UNSTABLE: Update
\\nRoute.unstable_MiddlewareFunction
to have a return value ofResponse | undefined
instead ofResponse | void
becaue you should not return anything if you aren\'t returning theResponse
(#13199)- UNSTABLE(BREAKING): If a middleware throws an error, ensure we only bubble the error itself via
\\nnext()
and are no longer leaking theMiddlewareError
implementation detail (#13180)
1f7fdd5
chore: Update version for release (#13262)8423891
chore: Update version for release (pre) (#13244)22f027c
Merge branch \'main\' into release-nextbc43707
Fix root loader data on initial load redirects in SPA mode (#13222)5de9a21
Ensure ancestor pathless/index routes are loaded via manifest requests (#13203)a354db5
Fix shoulRevalidate behavior in clientLoader-only routes (#13221)99551ae
Stop leaking internal MiddlewareError implementation detail (#13180)cd50dc6
Fix RequestHandler
loadContext
type when middleware is enabled (#13204)0519530
Change middleware return type from void to undefined (#13199)bb81a9a
Fix error message typoUpdates @sentry/electron
from 6.1.0 to 6.2.0
6b26852
release: 6.2.02ec0eed
chore: changelog for v6.2.0 release (#1101)6f990ba
feat: Update JavaScript SDKs to v9.6.0 (#1100)ce0c675
feat: Parse crashpad metadata from minidumps and include in electron
contex...3e2a2e4
feat: Add gpuContextIntegration
(#1097)5d67cc7
feat: Use registerPreloadScript
in Electron >= v35 (#1098)9210c89
test: New Electron versions (#1088)9a99315
test: New Sentry SDK version (#1092)e79c824
feat: Update to v9.3.0 of JavaScript SDKs (#1090)d31b1d2
feat: Update to v9.2.0 of JavaScript SDKs (#1089)Updates @tanstack/react-query-devtools
from 5.68.0 to 5.69.0
Sourced from @tanstack/react-query-devtools
\'s releases.
\\n\\nv5.69.0
\\nVersion 5.69.0 - 3/18/25, 11:11 AM
\\nChanges
\\nFeat
\\n\\n
\\n- core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister
\\nTest
\\n\\n
\\n- query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by
\\n@manudeli
- query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by
\\n@manudeli
- query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by
\\n@manudeli
- query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by
\\n@manudeli
Docs
\\n\\n
\\n- fix eslint links (f03b109) by TkDodo
\\n- fix internal links (4b7fd0e) by TkDodo
\\n- fix links in ssr guide (980d08d) by TkDodo
\\n- remove extra link (ff788ac) by TkDodo
\\n- add .md to links (84b1bed) by TkDodo
\\n- Fix broken link some example path (#8813) (21c5e09) by HYUNJOON
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.69.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.69.0- \\n
@tanstack/query-persist-client-core
@5
.69.0- \\n
@tanstack/query-sync-storage-persister
@5
.69.0- \\n
@tanstack/react-query
@5
.69.0- \\n
@tanstack/react-query-devtools
@5
.69.0- \\n
@tanstack/react-query-persist-client
@5
.69.0- \\n
@tanstack/react-query-next-experimental
@5
.69.0- \\n
@tanstack/solid-query
@5
.69.0- \\n
@tanstack/solid-query-devtools
@5
.69.0- \\n
@tanstack/solid-query-persist-client
@5
.69.0- \\n
@tanstack/svelte-query
@5
.69.0- \\n
@tanstack/svelte-query-devtools
@5
.69.0- \\n
@tanstack/svelte-query-persist-client
@5
.69.0- \\n
@tanstack/vue-query
@5
.69.0- \\n
@tanstack/vue-query-devtools
@5
.69.0- \\n
@tanstack/angular-query-experimental
@5
.69.0- \\n
@tanstack/query-async-storage-persister
@5
.69.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.69.0v5.68.1
\\nVersion 5.68.1 - 3/17/25, 12:21 AM
\\n\\n
... (truncated)
\\n03fe8cd
release: v5.69.0Updates firebase
from 11.4.0 to 11.5.0
Sourced from firebase\'s releases.
\\n\\nfirebase@11.5.0
\\nFor more detailed release notes, see Firebase JavaScript SDK Release Notes.
\\nWhat\'s Changed
\\nfirebase@11.5.0
\\nMinor Changes
\\n\\nPatch Changes
\\n
When you quit the app, though it has stored currentTime
value. currentTime
will be 0 after you click the play button.
Before:
\\nhttps://github.com/user-attachments/assets/153ec89e-becb-48bc-a447-36fdae166d4c
\\nAfter:
\\nhttps://github.com/user-attachments/assets/5736fb7e-f99d-4bac-9631-fd97105383a3
\\n","description":"When you quit the app, though it has stored currentTime value. currentTime will be 0 after you click the play button. Before:\\n\\nhttps://github.com/user-attachments/assets/153ec89e-becb-48bc-a447-36fdae166d4c\\n\\nAfter:\\n\\nhttps://github.com/user-attachments/assets/5736fb7e-f99d-4bac-9631…","guid":"https://github.com/RSSNext/Follow/pull/3203","author":"kovsu","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-20T09:17:55.933Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: hide video preview\'s action overlay","url":"https://github.com/RSSNext/Follow/pull/3201","content":"#3200
\\n#3200
\\nv0.3.13
\\n","description":"v0.3.13","guid":"https://github.com/RSSNext/Folo/pull/3199","author":"DIYgod","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-20T06:19:48.991Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"release(desktop): Release v0.3.13","url":"https://github.com/RSSNext/Follow/pull/3199","content":"v0.3.13
\\n","description":"v0.3.13","guid":"https://github.com/RSSNext/Follow/pull/3199","author":"DIYgod","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-20T06:19:48.945Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"refactor: remove unnecessary ItemSeparator from SectionTitle component","url":"https://github.com/RSSNext/Follow/pull/3193","content":"Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsfix #3184
\\nBefore:
\\nAfter:
\\nBefore:
\\nAfter:
\\nBumps actions/checkout from 3 to 4.
\\nSourced from actions/checkout\'s releases.
\\n\\n\\nv4.0.0
\\nWhat\'s Changed
\\n\\n
\\n- Update default runtime to node20 by
\\n@takost
in actions/checkout#1436- Support fetching without the --progress option by
\\n@simonbaird
in actions/checkout#1067- Release 4.0.0 by
\\n@takost
in actions/checkout#1447New Contributors
\\n\\n
\\n- \\n
@takost
made their first contribution in actions/checkout#1436- \\n
@simonbaird
made their first contribution in actions/checkout#1067Full Changelog: https://github.com/actions/checkout/compare/v3...v4.0.0
\\nv3.6.0
\\nWhat\'s Changed
\\n\\n
\\n- Mark test scripts with Bash\'isms to be run via Bash by
\\n@dscho
in actions/checkout#1377- Add option to fetch tags even if fetch-depth > 0 by
\\n@RobertWieczoreck
in actions/checkout#579- Release 3.6.0 by
\\n@luketomlinson
in actions/checkout#1437New Contributors
\\n\\n
\\n- \\n
@RobertWieczoreck
made their first contribution in actions/checkout#579- \\n
@luketomlinson
made their first contribution in actions/checkout#1437Full Changelog: https://github.com/actions/checkout/compare/v3.5.3...v3.6.0
\\nv3.5.3
\\nWhat\'s Changed
\\n\\n
\\n- Fix: Checkout Issue in self hosted runner due to faulty submodule check-ins by
\\n@megamanics
in actions/checkout#1196- Fix typos found by codespell by
\\n@DimitriPapadopoulos
in actions/checkout#1287- Add support for sparse checkouts by
\\n@dscho
and@dfdez
in actions/checkout#1369- Release v3.5.3 by
\\n@TingluoHuang
in actions/checkout#1376New Contributors
\\n\\n
\\n- \\n
@megamanics
made their first contribution in actions/checkout#1196- \\n
@DimitriPapadopoulos
made their first contribution in actions/checkout#1287- \\n
@dfdez
made their first contribution in actions/checkout#1369Full Changelog: https://github.com/actions/checkout/compare/v3...v3.5.3
\\nv3.5.2
\\nWhat\'s Changed
\\n\\n
\\n- Fix: Use correct API url / endpoint in GHES by
\\n@fhammerl
in actions/checkout#1289 based on #1286 by@1newsr
Full Changelog: https://github.com/actions/checkout/compare/v3.5.1...v3.5.2
\\nv3.5.1
\\nWhat\'s Changed
\\n\\n
\\n- Improve checkout performance on Windows runners by upgrading
\\n@actions/github
dependency by@BrettDong
in actions/checkout#1246New Contributors
\\n\\n
\\n\\n- \\n
@BrettDong
made their first contribution in actions/checkout#1246
... (truncated)
\\nSourced from actions/checkout\'s changelog.
\\n\\n\\nChangelog
\\nv4.2.2
\\n\\n
\\n- \\n
url-helper.ts
now leverages well-known environment variables by@jww3
in actions/checkout#1941- Expand unit test coverage for
\\nisGhes
by@jww3
in actions/checkout#1946v4.2.1
\\n\\n
\\n- Check out other refs/* by commit if provided, fall back to ref by
\\n@orhantoy
in actions/checkout#1924v4.2.0
\\n\\n
\\n- Add Ref and Commit outputs by
\\n@lucacome
in actions/checkout#1180- Dependency updates by
\\n@dependabot
- actions/checkout#1777, actions/checkout#1872v4.1.7
\\n\\n
\\n- Bump the minor-npm-dependencies group across 1 directory with 4 updates by
\\n@dependabot
in actions/checkout#1739- Bump actions/checkout from 3 to 4 by
\\n@dependabot
in actions/checkout#1697- Check out other refs/* by commit by
\\n@orhantoy
in actions/checkout#1774- Pin actions/checkout\'s own workflows to a known, good, stable version. by
\\n@jww3
in actions/checkout#1776v4.1.6
\\n\\n
\\n- Check platform to set archive extension appropriately by
\\n@cory-miller
in actions/checkout#1732v4.1.5
\\n\\n
\\n- Update NPM dependencies by
\\n@cory-miller
in actions/checkout#1703- Bump github/codeql-action from 2 to 3 by
\\n@dependabot
in actions/checkout#1694- Bump actions/setup-node from 1 to 4 by
\\n@dependabot
in actions/checkout#1696- Bump actions/upload-artifact from 2 to 4 by
\\n@dependabot
in actions/checkout#1695- README: Suggest
\\nuser.email
to be41898282+github-actions[bot]@users.noreply.github.com
by@cory-miller
in actions/checkout#1707v4.1.4
\\n\\n
\\n- Disable
\\nextensions.worktreeConfig
when disablingsparse-checkout
by@jww3
in actions/checkout#1692- Add dependabot config by
\\n@cory-miller
in actions/checkout#1688- Bump the minor-actions-dependencies group with 2 updates by
\\n@dependabot
in actions/checkout#1693- Bump word-wrap from 1.2.3 to 1.2.5 by
\\n@dependabot
in actions/checkout#1643v4.1.3
\\n\\n
\\n- Check git version before attempting to disable
\\nsparse-checkout
by@jww3
in actions/checkout#1656- Add SSH user parameter by
\\n@cory-miller
in actions/checkout#1685- Update
\\nactions/checkout
version inupdate-main-version.yml
by@jww3
in actions/checkout#1650v4.1.2
\\n\\n
\\n- Fix: Disable sparse checkout whenever
\\nsparse-checkout
option is not present@dscho
in actions/checkout#1598v4.1.1
\\n\\n
\\n- Correct link to GitHub Docs by
\\n@peterbe
in actions/checkout#1511- Link to release page from what\'s new section by
\\n@cory-miller
in actions/checkout#1514v4.1.0
\\n\\n\\n
... (truncated)
\\n11bd719
Prepare 4.2.2 Release (#1953)e3d2460
Expand unit test coverage (#1946)163217d
url-helper.ts
now leverages well-known environment variables. (#1941)eef6144
Prepare 4.2.1 release (#1925)6b42224
Add workflow file for publishing releases to immutable action package (#1919)de5a000
Check out other refs/* by commit if provided, fall back to ref (#1924)d632683
Prepare 4.2.0 release (#1878)6d193bf
Bump braces from 3.0.2 to 3.0.3 (#1777)db0cee9
Bump the minor-npm-dependencies group across 1 directory with 4 updates (#1872)b684943
Add Ref and Commit outputs (#1180)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps redhat-plumbers-in-action/advanced-issue-labeler from 2 to 3.
\\nSourced from redhat-plumbers-in-action/advanced-issue-labeler\'s releases.
\\n\\n\\nv3.0.0
\\nWhat\'s Changed
\\nBreaking
\\n\\n
\\n- Use zod for input validation :supervillain: (#275)
\\n@jamacku
- Use octokit instead of probot :wastebasket: (#274)
\\n@jamacku
New
\\n\\n
\\n- Add support for GitHub Enterprise :classical_building: (#277)
\\n@jamacku
- Add option to set custom config file path (#278)
\\n@jamacku
Bug Fixes
\\n\\nMaintenance
\\n\\nDependency Updates
\\n\\n
\\n- chore(deps): update dependency
\\n@vercel/ncc
to v0.38.1 (#269)@renovatebot
- chore(deps): update dependency eslint-plugin-prettier to v5.0.1 (#270)
\\n@renovatebot
- chore(deps): update dependency
\\n@types/node
to v18.18.9 (#268)@renovatebot
Full Changelog: https://github.com/redhat-plumbers-in-action/advanced-issue-labeler/compare/v2.0.7...v3.0.0
\\nv2.1.0
\\nWhat\'s Changed
\\n\\n
\\n- Use octokit instead of probot :wastebasket: by
\\n@jamacku
in redhat-plumbers-in-action/advanced-issue-labeler#274- chore(deps): update dependency
\\n@types/node
to v18.18.9 by@renovatebot
in redhat-plumbers-in-action/advanced-issue-labeler#268- chore(deps): update dependency eslint-plugin-prettier to v5.0.1 by
\\n@renovatebot
in redhat-plumbers-in-action/advanced-issue-labeler#270- Use zod for input validation :supervillain: by
\\n@jamacku
in redhat-plumbers-in-action/advanced-issue-labeler#275- chore(deps): update dependency
\\n@vercel/ncc
to v0.38.1 by@renovatebot
in redhat-plumbers-in-action/advanced-issue-labeler#269- Add option to set custom config file path by
\\n@jamacku
in redhat-plumbers-in-action/advanced-issue-labeler#278- Improve and update tests :test_tube: by
\\n@jamacku
in redhat-plumbers-in-action/advanced-issue-labeler#279- Add support for GitHub Enterprise :classical_building: by
\\n@jamacku
in redhat-plumbers-in-action/advanced-issue-labeler#277- Use node16 for v2; the node20 will be used by v3 by
\\n@jamacku
in redhat-plumbers-in-action/advanced-issue-labeler#281Full Changelog: https://github.com/redhat-plumbers-in-action/advanced-issue-labeler/compare/v2.0.7...v2.1.0
\\nv2.0.7
\\nWhat\'s Changed
\\nMaintenance
\\n\\n\\n
... (truncated)
\\n39087a4
doc: update real-life examplesc13d188
deps: update yarn and dependenciescc25a0a
chore(deps): update dependency typescript to v5.7.26787aad
chore(deps): update dependency prettier to v3.4.26287cf6
chore(deps): update vitest monorepo to v2.1.81398272
chore(deps): update dependency @types/node
to v22.10.5f442862
chore(deps): update dependency @types/node
to v22.10.130f05cb
chore(deps): update yarn to v4.5.3693c668
chore(deps): update vitest monorepo to v2.1.6625917b
chore(deps): update dependency @vercel/ncc
to v0.38.3Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps the patch group with 6 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
@iconify/tools | \\n4.1.1 | \\n4.1.2 | \\n
vitest | \\n3.0.8 | \\n3.0.9 | \\n
drizzle-orm | \\n0.40.0 | \\n0.40.1 | \\n
expo-router | \\n4.0.18 | \\n4.0.19 | \\n
expo-updates | \\n0.27.3 | \\n0.27.4 | \\n
nanoid | \\n5.1.3 | \\n5.1.4 | \\n
Updates @iconify/tools
from 4.1.1 to 4.1.2
Updates vitest
from 3.0.8 to 3.0.9
Sourced from vitest\'s releases.
\\n\\n\\nv3.0.9
\\n🐞 Bug Fixes
\\n\\n
\\n- Typings of
\\nctx.skip()
asnever
- by@sirlancelot
in vitest-dev/vitest#7608 (09f35)- Cleanup vitest in public
\\nresolveConfig
API - by@hi-ogawa
in vitest-dev/vitest#7623 (db14a)- Fix
\\ntoHaveBeenCalledWith(asymmetricMatcher)
withundefined
arguments - by@hi-ogawa
in vitest-dev/vitest#7624 (0fb21)- Race condition in RPC filesystem cache. - by
\\n@dts
in vitest-dev/vitest#7531 (b7f55)- Fix
\\ngetState().testPath
during collection with no isolation - by@hi-ogawa
in vitest-dev/vitest#7640 (3fb3f)- Support custom toString method in %s format - by
\\n@pengooseDev
in vitest-dev/vitest#7637 (46d93)- browser:\\n
\\n\\n
\\n- Fail playwright timeouts earlier than a test timeout - by
\\n@sheremet-va
and@hi-ogawa
in vitest-dev/vitest#7565 (5eb4c)- Remove
\\n@testing-library/dom
from dependencies #7555)\\" - by@sheremet-va
in vitest-dev/vitest#7628 and vitest-dev/vitest#7555 (94b27)- coverage:\\n
\\n\\n
\\n- Browser mode +
\\ncoverage.all
- by@AriPerkkio
in vitest-dev/vitest#7597 (422ba)- runner:\\n
\\n\\n
\\n- Show stacktrace on hook timeout error - by
\\n@hi-ogawa
in vitest-dev/vitest#7502 (268a1)- vite-node:\\n
\\n\\n
\\n- Fix source map of inlined node_modules - by
\\n@hi-ogawa
in vitest-dev/vitest#7557 (34aa3)- Fix missing
\\nbuildStart
- by@hi-ogawa
in vitest-dev/vitest#7652 (29f5a)- web-worker:\\n
\\n\\n
\\n- Ensure
\\nremoveEventListener
is bound to worker - by@joelgallant
in vitest-dev/vitest#7631 (ff42b)View changes on GitHub
\\n
8ea9e14
chore: release v3.0.9422ba66
fix(coverage): browser mode + coverage.all
(#7597)3fdee3d
chore: fix various typos (#7663)4b0451d
chore(deps): update dependency @antfu/eslint-config
to v4 (#7407)fcf3cf5
refactor: coverage types to avoid mixing node and runtime types (#7627)3fb3fbf
fix: fix getState().testPath
during collection with no isolation (#7640)7155aef
chore: use pnpm catalog (#7590)c0cf65f
chore: use unplugin-isolated-decl
with oxc-transform
for dts build (#7609)5eb4cd1
fix(browser): fail playwright timeouts earlier than a test timeout (#7565)b7f5526
fix: race condition in RPC filesystem cache. (#7531)Updates drizzle-orm
from 0.40.0 to 0.40.1
Sourced from drizzle-orm\'s releases.
\\n\\n\\n0.40.1
\\nUpdates to
\\nneon-http
for@neondatabase/serverless@1.0.0
- thanks@jawj
Starting from this version, drizzle-orm will be compatible with both
\\n@neondatabase/serverless
1.0
f07c427
Add release notes1fe7362
Updates to neon-http for @neondatabase/serverless@1.0.0
, when released (#4237)Updates expo-router
from 4.0.18 to 4.0.19
Sourced from expo-router\'s changelog.
\\n\\n\\n4.0.19 - 2025-03-14
\\nThis version does not introduce any user-facing changes.
\\n
Updates expo-updates
from 0.27.3 to 0.27.4
Sourced from expo-updates\'s changelog.
\\n\\n\\nChangelog
\\nUnpublished
\\n🛠 Breaking changes
\\n\\n
\\n- upgrade RN to 0.78 (#35050 by
\\n@vonovak
)- Remove a few long-deprecated typescript types. (#34215 by
\\n@wschurman
)🎉 New features
\\n\\n
\\n- Add new state machine context about startup procedure. (#32433 by
\\n@wschurman
)- Support brownfield apps with EX_UPDATES_CUSTOM_INIT flag. (#35391 by
\\n@douglowder
)- Support for updates.useNativeDebug. (#35468 by
\\n@douglowder
)🐛 Bug fixes
\\n\\n
\\n- [android] Use more robust mechanism for determining empty multipart bodies. (#33977 by
\\n@wschurman
)- fix E2E tests in Detox debug build (#32951 by
\\n@matejkriz
)- Fix runtime version validation warning (#35188 by
\\n@gabrieldonadel
)💡 Others
\\n\\n
\\n- [Android] Made ReactNativeFeatureFlags a parameter to the constructor of the ErrorRecovery class to be able to make tests pass (#34363 by
\\n@chrfalch
)- [iOS] Inject logger from controllers down to dependent objects. (#34035 by
\\n@wschurman
)- [apple] Migrate remaining
\\nexpo-module.config.json
to unified platform syntax. (#34445 by@reichhartd
)- Fixed build error on iOS Expo Go. (#34485 by
\\n@kudo
)- Fixed Android unit test errors in BuilDataTest. (#34510 by
\\n@kudo
)- [Android] Started using expo modules gradle plugin. (#34806 by
\\n@lukmccall
)- Drop
\\nfs-extra
in favor offs
. (#35036 by@kitten
)- Drop
\\nfast-glob
in favor ofglob
. (#35082 by@kitten
)- Drop
\\nfbemitter
in favor of custom emitter. (#35317 by@kitten
)
Updates nanoid
from 5.1.3 to 5.1.4
Sourced from nanoid\'s releases.
\\n\\n\\n5.1.4
\\n\\n
\\n- Fixed latest version on npm after 3.x release.
\\n
Sourced from nanoid\'s changelog.
\\n\\n\\n5.1.4
\\n\\n
\\n- Fixed latest version on npm after 3.x release.
\\n
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsBumps the minor group with 5 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
vite-bundle-analyzer | \\n0.17.3 | \\n0.18.0 | \\n
electron | \\n34.2.0 | \\n34.3.3 | \\n
react-native-video | \\n6.10.2 | \\n6.11.0 | \\n
@sentry/react | \\n9.5.0 | \\n9.6.0 | \\n
react-scan | \\n0.2.14 | \\n0.3.2 | \\n
Updates vite-bundle-analyzer
from 0.17.3 to 0.18.0
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.18.0
\\n\\n
\\n- Use mri to replace commander.js
\\n
13edfdb
chore: release v0.18.08bbc216
feat: using mri replace commander.jsUpdates electron
from 34.2.0 to 34.3.3
Sourced from electron\'s releases.
\\n\\n\\nelectron v34.3.3
\\nRelease Notes for v34.3.3
\\nFixes
\\n\\n
\\n- Backported fix for 391907157, 361370195. #45966
\\nOther Changes
\\n\\n
\\n- Fixed an issue where Electron could fail to load on some older Linux distributions. #45982 (Also in 35, 36)
\\nelectron v34.3.2
\\nRelease Notes for v34.3.2
\\nFixes
\\n\\n
\\n- Improved webContents loading time when resolving fonts for uncommon scripts. #45917 (Also in 35, 36)
\\nOther Changes
\\n\\nelectron v34.3.1
\\nRelease Notes for v34.3.1
\\nFixes
\\n\\n
\\n- Fixed an issue where
\\ncontextmenu
events wouldn\'t be correctly dispatched in draggable regions on Linux. #45840 (Also in 35)- Fixed an issue where
\\nsetContentProtection(true)
was reverted when a given window was hidden. #45890 (Also in 35)- Fixed invalid memory access in pdf viewer which lead to random crashes. #45880 (Also in 35)
\\nOther Changes
\\n\\n
\\n- Fixed an issue where native Node.js addons including
\\nuv.h
beforenode.h
don\'t compile as expected. #45870electron v34.3.0
\\nRelease Notes for v34.3.0
\\nFeatures
\\n\\n
\\n- Added support for
\\nroundedCorners
BrowserWindow constructor option on Windows. #45739 (Also in 35)Fixes
\\n\\n
\\n\\n- Backported fix for a upstream bug that cause Offscreen Rendering to stutter. #45659 (Also in 32, 33, 35)
\\n- Fixed WebFrameMain crash related to accessing speculative frames that have been destroyed. #45687 (Also in 33, 35)
\\n- Fixed
\\nv8.setHeapSnapshotNearHeapLimit
api in main and utility process, along with support for--diagnostic-dir
Node.js cli flag to specify the directory to save the heap snapshots. #45644 (Also in 33, 35)- Fixed a crash that could occur in OSR on window close. #45629 (Also in 35)
\\n- Fixed a potential crash when calling legacy
\\ngetUserMedia
with an invalidchromeMediaSourceId
. #45756 (Also in 35)- Fixed a potential issues permissions in the Pointer Lock API after focus loss and regain. #45627 (Also in 35)
\\n- Fixed an issue where Electron may experience crashes on Linux with 16KiB pages. #45571 (Also in 33)
\\n- Fixed crash on startup with asan build on macOS. #45567 (Also in 33, 35)
\\n- Fixed drag and drop icons not showing on Windows. #45778 (Also in 35)
\\n
... (truncated)
\\nac5b599
build: roll sysroots to pick up glibc fix (#45982)5ccd41c
test: fix timing issue in utilityProcess
test fixtures (#45976)060cfb9
fix: cherry-pick 3a72ebf7ec6f0 from chromium (#45966)587e115
fix: remove redundant MediaCaptureDevicesDispatcher::GetInstance()
call (#4...a56b2ac
fix: race condition in utilityProcess tests (#45954)5847984
refactor: eliminate duplicate code in spec/api-process-spec.ts (#45949)ba2cad1
perf: prefer base::SplitStringPiece()
over base::SplitString()
(#45948)f985013
chore: cherry-pick 521faebc8a7c from chromium (#45944)1d9f1a4
chore: cherry-pick 9dacf5694dfd from chromium (#45939)7d01169
fix: resolve font list in default prefernce values (#45917)Updates react-native-video
from 6.10.2 to 6.11.0
Sourced from react-native-video\'s releases.
\\n\\n\\nv6.11.0
\\nWhat\'s Changed
\\nFeatures ✨
\\n\\n
\\n- feat: enhance react-native-video plugins [Plugins API Breaking] by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4366iOS
\\n\\n
\\n- refactor(ios): add audio session manager by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4466Bug Fixes 🐛
\\nAndroid
\\n\\n
\\n- fix(android): prevent ratio calculations before loading video by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4442- fix(android): fix bugs related Android PIP listeners by
\\n@YangJonghun
in TheWidlarzGroup/react-native-video#4441- fix(android): call startForeground() immediately to prevent ForegroundServiceDidNotStartInTimeException by
\\n@mobily
in TheWidlarzGroup/react-native-video#4453iOS
\\n\\n
\\n- fix(iOS): handle allowsPictureInPicturePlayback for tvOS by
\\n@kot331107
in TheWidlarzGroup/react-native-video#4448- fix(ios): invalid metadata by
\\n@aleksandar9999a
in TheWidlarzGroup/react-native-video#4422Windows
\\n\\n
\\n- fix(windows): event name not matches with SPEC by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4455- feat(windows): add topSeek event params as mentioned in docs by
\\n@Lyqqt
in TheWidlarzGroup/react-native-video#4456Other
\\n\\n
\\n- docs: update structure by
\\n@KrzysztofMoch
in TheWidlarzGroup/react-native-video#4454- docs: update meta by
\\n@moskalakamil
in TheWidlarzGroup/react-native-video#4462- chore(ios): remove duplicated code by
\\n@freeboub
in TheWidlarzGroup/react-native-video#4439- docs: update examples by
\\n@emmanuel-ferdman
in TheWidlarzGroup/react-native-video#4468New Contributors
\\n\\n
\\n- \\n
@kot331107
made their first contribution in TheWidlarzGroup/react-native-video#4448- \\n
@aleksandar9999a
made their first contribution in TheWidlarzGroup/react-native-video#4422- \\n
@mobily
made their first contribution in TheWidlarzGroup/react-native-video#4453- \\n
@Lyqqt
made their first contribution in TheWidlarzGroup/react-native-video#4455- \\n
@emmanuel-ferdman
made their first contribution in TheWidlarzGroup/react-native-video#4468Full Changelog: https://github.com/TheWidlarzGroup/react-native-video/compare/v6.10.2...v6.11.0
\\n
Sourced from react-native-video\'s changelog.
\\n\\n\\n6.11.0 (2025-03-16)
\\nBug Fixes
\\n\\n
\\n- android: call
\\nstartForeground()
immediately to preventForegroundServiceDidNotStartInTimeException
(#4453) (b510374)- android: fix bugs related Android PIP listeners (#4441) (82f5f3d)
\\n- android: prevent ratio calculations before loading video (#4442) (235c281)
\\n- ios: invalid metadata handling (#4422) (bc533e5)
\\n- tvOS: handle allowsPictureInPicturePlayback for tvOS (#4448) (057c287)
\\n- windows: event name not matches with SPEC (#4455) (fa20223)
\\nFeatures
\\n\\n
ede502b
chore: release v6.11.0044e08a
docs: update examples (#4468)d902c1b
feat(windows): add topSeek parms mentioned in docs (#4456)9f02614
refactor(ios): add audio session manager (#4466)fa20223
fix(windows): event name not matches with SPEC (#4455)6e6f915
feat: enhance react-native-video plugins [Plugins API Breaking] (#4366)b510374
fix(android): call startForeground()
immediately to prevent `ForegroundServ...f9d3878
chore(ios): remove duplicated code (#4439)b11c1f3
docs: remove ga (#4462)bc533e5
fix(ios): invalid metadata handling (#4422)Updates @sentry/react
from 9.5.0 to 9.6.0
Sourced from @sentry/react
\'s releases.
\\n\\n9.6.0
\\nImportant Changes
\\n\\n
\\n- \\n
\\nfeat(tanstackstart): Add
\\n@sentry/tanstackstart-react
package and make@sentry/tanstackstart
package a utility package (#15629)Since TanStack Start is supposed to be a generic framework that supports libraries like React and Solid, the
\\n@sentry/tanstackstart
SDK package was renamed to@sentry/tanstackstart-react
to reflect that the SDK is specifically intended to be used for React TanStack Start applications.\\nNote that the TanStack Start SDK is still in alpha status and may be subject to breaking changes in non-major package updates.Other Changes
\\n\\n
\\n- feat(astro): Accept all vite-plugin options (#15638)
\\n- feat(deps): bump
\\n@sentry/webpack-plugin
from 3.2.1 to 3.2.2 (#15627)- feat(tanstackstart): Refine initial API (#15574)
\\n- fix(core): Ensure
\\nfill
only patches functions (#15632)- fix(nextjs): Consider
\\npageExtensions
when looking for instrumentation file (#15701)- fix(remix): Null-check
\\noptions
(#15610)- fix(sveltekit): Correctly parse angle bracket type assertions for auto instrumentation (#15578)
\\n- fix(sveltekit): Guard process variable (#15605)
\\nWork in this release was contributed by
\\n@angelikatyborska
and@nwalters512
. Thank you for your contributions!Bundle size 📦
\\n\\n\\n
\\n\\n\\n \\n\\n\\nPath \\nSize \\n\\n \\n\\n @sentry/browser
23.15 KB \\n\\n \\n\\n @sentry/browser
- with treeshaking flags22.94 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing)36.21 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay)73.39 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay) - with treeshaking flags66.8 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay with Canvas)78.01 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay, Feedback)90.57 KB \\n\\n \\n\\n @sentry/browser
(incl. Feedback)40.3 KB \\n\\n \\n\\n @sentry/browser
(incl. sendFeedback)27.79 KB \\n\\n \\n\\n @sentry/browser
(incl. FeedbackAsync)32.58 KB \\n\\n \\n\\n @sentry/react
24.97 KB \\n\\n \\n\\n @sentry/react
(incl. Tracing)38.1 KB \\n\\n \\n\\n @sentry/vue
27.4 KB \\n\\n \\n\\n @sentry/vue
(incl. Tracing)37.9 KB \\n\\n \\n\\n @sentry/svelte
23.18 KB \\n\\n \\nCDN Bundle \\n24.36 KB \\n\\n \\nCDN Bundle (incl. Tracing) \\n36.26 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) \\n71.27 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) \\n76.45 KB \\n\\n \\nCDN Bundle - uncompressed \\n71.19 KB \\n\\n \\nCDN Bundle (incl. Tracing) - uncompressed \\n107.57 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) - uncompressed \\n218.84 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed \\n231.4 KB \\n\\n \\n\\n @sentry/nextjs
(client)39.27 KB \\n\\n \\n\\n\\n @sentry/sveltekit
(client)36.63 KB \\n
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.6.0
\\nImportant Changes
\\n\\n
\\n- \\n
\\nfeat(tanstackstart): Add
\\n@sentry/tanstackstart-react
package and make@sentry/tanstackstart
package a utility package (#15629)Since TanStack Start is supposed to be a generic framework that supports libraries like React and Solid, the
\\n@sentry/tanstackstart
SDK package was renamed to@sentry/tanstackstart-react
to reflect that the SDK is specifically intended to be used for React TanStack Start applications.\\nNote that the TanStack Start SDK is still in alpha status and may be subject to breaking changes in non-major package updates.Other Changes
\\n\\n
\\n- feat(astro): Accept all vite-plugin options (#15638)
\\n- feat(deps): bump
\\n@sentry/webpack-plugin
from 3.2.1 to 3.2.2 (#15627)- feat(tanstackstart): Refine initial API (#15574)
\\n- fix(core): Ensure
\\nfill
only patches functions (#15632)- fix(nextjs): Consider
\\npageExtensions
when looking for instrumentation file (#15701)- fix(remix): Null-check
\\noptions
(#15610)- fix(sveltekit): Correctly parse angle bracket type assertions for auto instrumentation (#15578)
\\n- fix(sveltekit): Guard process variable (#15605)
\\nWork in this release was contributed by
\\n@angelikatyborska
and@nwalters512
. Thank you for your contributions!
6ec4602
release: 9.6.05ba80bc
Merge pull request #15703 from getsentry/prepare-release/9.6.08dc6e50
Remove unnecessary changelog item7889768
meta(changelog): Update changelog for 9.6.02b55265
fix(nextjs): Consider pageExtensions
when looking for instrumentation file ...7d88266
chore(ci): Remove type
from canary failure template (#15698)48ed271
chore(deps): bump esbuild from 0.20.0 to 0.25.0 in /dev-packages/e2e-tests/te...e15988c
chore: Add external contributor to CHANGELOG.md (#15642)5c4cab7
chore(deps): Deduplicate @babel
dependencies (#15639)ce1ced8
chore: Add external contributor to CHANGELOG.md (#15640)Updates react-scan
from 0.2.14 to 0.3.2
Sourced from react-scan\'s releases.
\\n\\n\\nv0.3.2
\\nFixes a bug causing the re-render outline disable state to not persist across browser refresh when options are passed to
\\nscan()
Full Changelog: https://github.com/aidenybai/react-scan/compare/v0.3.1...v0.3.2
\\nv0.3.1
\\nWhat\'s Changed
\\n\\n
\\n- minor typo fix
\\nv0.3.0
\\nRelease v0.3.0
\\n\\n
\\n\\n- fixes a bug causing the \\"whats changed\\" view in the inspect tool to incorrectly report changes\\n
\\n\\n
\\n- we have temporarily removed the state change timeline feature to patch the what\'s changed view. We will add it back in a future release. The reasoning was it\'s better to have a working partial feature than a broken full feature released
\\n- adds the ability to see the parents of rendered components in the notification view\\n
\\n\\n
\\n- this helps resolve the problem of not knowing where components that show as slow in the notification view are in your component tree
\\n\\n\\nin this image, notice how the DndContext render is expandable, allowing you to see who rendered that component
\\n\\n
\\n\\n- removes the view that showed all the props/state/context of a component\\n
\\n\\n
\\n- we found this was noisy and confusing for users when they were trying to interpret the \\"whats changed\\" view above it. We may add this back in a future release
\\n\\n\\nthis image shows the updated UI without the view that showed all the props/state/context of a component
\\n\\n
\\n- adds
\\nshowNotificationCount
option, which allows you to disable the red notification count in the toolbar- notification counts shown in the toolbar are cleared after you view them\\n
\\n\\n
\\n- it was annoying to have the number keep increasing even if you already know about the slowdowns, so now it automatically resets after you view them
\\n- fixes an issue causing the toolbar to appear blurry
\\n- notifications no longer reports FPS slowdowns caused by the toolbar itself\\n
\\n\\n
\\n- this frequently happened when hovering the render bar chart, since drawing outlines over components can be an expensive operation when there are a lot of components
\\n- increases the threshold before we consider a slowdown important enough to report it as a FPS drop by 33%\\n
\\n\\n
\\n- the previous configuration resulted in too many false positives. In a future release we will allow this to be configured in the toolbar
\\nWhat\'s Changed
\\n\\n
\\n- feat: extension v1.0.8 by
\\n@pivanov
in aidenybai/react-scan#322- feat: show rendered parents in notifications view by
\\n@RobPruzan
in aidenybai/react-scan#328Full Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.14...v0.3.0
\\n
59919b1
bump to 0.3.2e619a3e
fix: persist previous enabled state when options are passed5e0530a
bump to 0.3.18b06209
chore: fix typofddabfe
bump to 0.3.0a8e6788
fix: whats changed shows incorrect changes (#337)1fd1ba0
feat: show rendered parents in notifications view (#328)140639d
fix: website typodd32796
chore: update extension builds [skip ci]3e028fc
feat: extension v1.0.8 (#322)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsFor some reason, the name of the favicon.svg
, which was supposed to be the main favicon resource for this project, was changed. For a long time, the project had been using a fallback .ico
icon.
However, it seems that Firefox did not handle compatibility well, even when the fetched SVG was missing or incorrect, it did not fallback to the .ico
icon.
\\n
#3139
\\nI found the format of duration_in_seconds
is not correct here.
After:
\\nThe previous hyphen modification missed the description section of the article list.
\\n#2846
\\nBumps the patch group with 2 updates: expo and lightningcss.
\\nUpdates expo
from 52.0.38 to 52.0.39
Sourced from expo\'s changelog.
\\n\\n\\n52.0.39 - 2025-03-14
\\nThis version does not introduce any user-facing changes.
\\n
Updates lightningcss
from 1.29.2 to 1.29.3
Sourced from lightningcss\'s releases.
\\n\\n\\nv1.29.3
\\n\\n
\\n- Support for
\\n::details-content
and::target-text
selectors –@philipp-spiess
in parcel-bundler/lightningcss#930- Update
\\n:placeholder-shown
selector name across browsers –@Marukome0743
in parcel-bundler/lightningcss#929- Support
\\n/* cssmodules-pure-no-check */
comments –@jantimon
in parcel-bundler/lightningcss#898- Update browser compatibility data – c03a7e7f7cfe7a8d487f9402e3194a1d732f9a04
\\n
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsBumps the minor group with 5 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
@tanstack/query-sync-storage-persister | \\n5.67.3 | \\n5.68.0 | \\n
@tanstack/react-query | \\n5.67.3 | \\n5.68.0 | \\n
@tanstack/react-query-persist-client | \\n5.67.3 | \\n5.68.0 | \\n
@tanstack/react-query-devtools | \\n5.67.3 | \\n5.68.0 | \\n
cmdk | \\n1.0.4 | \\n1.1.1 | \\n
Updates @tanstack/query-sync-storage-persister
from 5.67.3 to 5.68.0
Sourced from @tanstack/query-sync-storage-persister
\'s releases.
\\n\\nv5.68.0
\\nVersion 5.68.0 - 3/14/25, 10:00 AM
\\nChanges
\\nFeat
\\n\\n
\\n- eslint-plugin-query: enhance no-rest-destructuring rule to detect spread operations (#8802) (796032d) by Eliya Cohen
\\nTest
\\n\\n
\\n- remove unnecessary async keywords (#8784) (4a89814) by
\\n@dngur9801
- query-core: add hashQueryKeyByOptions test code (#8736) (e86c395) by
\\n@dngur9801
Docs
\\n\\n
\\n- Fix broken links in query-options.md (#8800) (d7f4cb0) by
\\n@dngur9801
- Fix broken links on ssr.md (#8792) (edbb304) by Julien Piron
\\nPackages
\\n\\n
\\n- \\n
@tanstack/eslint-plugin-query
@5
.68.0- \\n
@tanstack/query-core
@5
.68.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.68.0- \\n
@tanstack/query-persist-client-core
@5
.68.0- \\n
@tanstack/query-sync-storage-persister
@5
.68.0- \\n
@tanstack/react-query
@5
.68.0- \\n
@tanstack/react-query-devtools
@5
.68.0- \\n
@tanstack/react-query-persist-client
@5
.68.0- \\n
@tanstack/react-query-next-experimental
@5
.68.0- \\n
@tanstack/solid-query
@5
.68.0- \\n
@tanstack/solid-query-devtools
@5
.68.0- \\n
@tanstack/solid-query-persist-client
@5
.68.0- \\n
@tanstack/svelte-query
@5
.68.0- \\n
@tanstack/svelte-query-devtools
@5
.68.0- \\n
@tanstack/svelte-query-persist-client
@5
.68.0- \\n
@tanstack/vue-query
@5
.68.0- \\n
@tanstack/vue-query-devtools
@5
.68.0- \\n
@tanstack/angular-query-experimental
@5
.68.0- \\n
@tanstack/query-async-storage-persister
@5
.68.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.68.0
1dba812
release: v5.68.0Updates @tanstack/react-query
from 5.67.3 to 5.68.0
Sourced from @tanstack/react-query
\'s releases.
\\n\\nv5.68.0
\\nVersion 5.68.0 - 3/14/25, 10:00 AM
\\nChanges
\\nFeat
\\n\\n
\\n- eslint-plugin-query: enhance no-rest-destructuring rule to detect spread operations (#8802) (796032d) by Eliya Cohen
\\nTest
\\n\\n
\\n- remove unnecessary async keywords (#8784) (4a89814) by
\\n@dngur9801
- query-core: add hashQueryKeyByOptions test code (#8736) (e86c395) by
\\n@dngur9801
Docs
\\n\\n
\\n- Fix broken links in query-options.md (#8800) (d7f4cb0) by
\\n@dngur9801
- Fix broken links on ssr.md (#8792) (edbb304) by Julien Piron
\\nPackages
\\n\\n
\\n- \\n
@tanstack/eslint-plugin-query
@5
.68.0- \\n
@tanstack/query-core
@5
.68.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.68.0- \\n
@tanstack/query-persist-client-core
@5
.68.0- \\n
@tanstack/query-sync-storage-persister
@5
.68.0- \\n
@tanstack/react-query
@5
.68.0- \\n
@tanstack/react-query-devtools
@5
.68.0- \\n
@tanstack/react-query-persist-client
@5
.68.0- \\n
@tanstack/react-query-next-experimental
@5
.68.0- \\n
@tanstack/solid-query
@5
.68.0- \\n
@tanstack/solid-query-devtools
@5
.68.0- \\n
@tanstack/solid-query-persist-client
@5
.68.0- \\n
@tanstack/svelte-query
@5
.68.0- \\n
@tanstack/svelte-query-devtools
@5
.68.0- \\n
@tanstack/svelte-query-persist-client
@5
.68.0- \\n
@tanstack/vue-query
@5
.68.0- \\n
@tanstack/vue-query-devtools
@5
.68.0- \\n
@tanstack/angular-query-experimental
@5
.68.0- \\n
@tanstack/query-async-storage-persister
@5
.68.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.68.0
1dba812
release: v5.68.0Updates @tanstack/react-query-persist-client
from 5.67.3 to 5.68.0
Sourced from @tanstack/react-query-persist-client
\'s releases.
\\n\\nv5.68.0
\\nVersion 5.68.0 - 3/14/25, 10:00 AM
\\nChanges
\\nFeat
\\n\\n
\\n- eslint-plugin-query: enhance no-rest-destructuring rule to detect spread operations (#8802) (796032d) by Eliya Cohen
\\nTest
\\n\\n
\\n- remove unnecessary async keywords (#8784) (4a89814) by
\\n@dngur9801
- query-core: add hashQueryKeyByOptions test code (#8736) (e86c395) by
\\n@dngur9801
Docs
\\n\\n
\\n- Fix broken links in query-options.md (#8800) (d7f4cb0) by
\\n@dngur9801
- Fix broken links on ssr.md (#8792) (edbb304) by Julien Piron
\\nPackages
\\n\\n
\\n- \\n
@tanstack/eslint-plugin-query
@5
.68.0- \\n
@tanstack/query-core
@5
.68.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.68.0- \\n
@tanstack/query-persist-client-core
@5
.68.0- \\n
@tanstack/query-sync-storage-persister
@5
.68.0- \\n
@tanstack/react-query
@5
.68.0- \\n
@tanstack/react-query-devtools
@5
.68.0- \\n
@tanstack/react-query-persist-client
@5
.68.0- \\n
@tanstack/react-query-next-experimental
@5
.68.0- \\n
@tanstack/solid-query
@5
.68.0- \\n
@tanstack/solid-query-devtools
@5
.68.0- \\n
@tanstack/solid-query-persist-client
@5
.68.0- \\n
@tanstack/svelte-query
@5
.68.0- \\n
@tanstack/svelte-query-devtools
@5
.68.0- \\n
@tanstack/svelte-query-persist-client
@5
.68.0- \\n
@tanstack/vue-query
@5
.68.0- \\n
@tanstack/vue-query-devtools
@5
.68.0- \\n
@tanstack/angular-query-experimental
@5
.68.0- \\n
@tanstack/query-async-storage-persister
@5
.68.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.68.0
1dba812
release: v5.68.0Updates @tanstack/react-query-devtools
from 5.67.3 to 5.68.0
Sourced from @tanstack/react-query-devtools
\'s releases.
\\n\\nv5.68.0
\\nVersion 5.68.0 - 3/14/25, 10:00 AM
\\nChanges
\\nFeat
\\n\\n
\\n- eslint-plugin-query: enhance no-rest-destructuring rule to detect spread operations (#8802) (796032d) by Eliya Cohen
\\nTest
\\n\\n
\\n- remove unnecessary async keywords (#8784) (4a89814) by
\\n@dngur9801
- query-core: add hashQueryKeyByOptions test code (#8736) (e86c395) by
\\n@dngur9801
Docs
\\n\\n
\\n- Fix broken links in query-options.md (#8800) (d7f4cb0) by
\\n@dngur9801
- Fix broken links on ssr.md (#8792) (edbb304) by Julien Piron
\\nPackages
\\n\\n
\\n- \\n
@tanstack/eslint-plugin-query
@5
.68.0- \\n
@tanstack/query-core
@5
.68.0- \\n
@tanstack/query-broadcast-client-experimental
@5
.68.0- \\n
@tanstack/query-persist-client-core
@5
.68.0- \\n
@tanstack/query-sync-storage-persister
@5
.68.0- \\n
@tanstack/react-query
@5
.68.0- \\n
@tanstack/react-query-devtools
@5
.68.0- \\n
@tanstack/react-query-persist-client
@5
.68.0- \\n
@tanstack/react-query-next-experimental
@5
.68.0- \\n
@tanstack/solid-query
@5
.68.0- \\n
@tanstack/solid-query-devtools
@5
.68.0- \\n
@tanstack/solid-query-persist-client
@5
.68.0- \\n
@tanstack/svelte-query
@5
.68.0- \\n
@tanstack/svelte-query-devtools
@5
.68.0- \\n
@tanstack/svelte-query-persist-client
@5
.68.0- \\n
@tanstack/vue-query
@5
.68.0- \\n
@tanstack/vue-query-devtools
@5
.68.0- \\n
@tanstack/angular-query-experimental
@5
.68.0- \\n
@tanstack/query-async-storage-persister
@5
.68.0- \\n
@tanstack/angular-query-devtools-experimental
@5
.68.0
1dba812
release: v5.68.0Updates cmdk
from 1.0.4 to 1.1.1
Sourced from cmdk\'s releases.
\\n\\n\\nv1.1.1
\\nWhat\'s Changed
\\n\\n
\\n- Fix unintended double triggering of key bindings during IME composition by
\\n@JaeSeoKim
in pacocoursey/cmdk#339New Contributors
\\n\\n
\\n- \\n
@JaeSeoKim
made their first contribution in pacocoursey/cmdk#339Full Changelog: https://github.com/pacocoursey/cmdk/compare/v1.1.0...v1.1.1
\\nv1.1.0
\\nWhat\'s Changed
\\n\\n
\\n- fix useCmdk return type by
\\n@lsmurray
in pacocoursey/cmdk#329- fix: update the type of the defaultFilter by
\\n@muZk
in pacocoursey/cmdk#338- [Accessibility] Use id instead of children by
\\n@UltimateGG
in pacocoursey/cmdk#254- Use
\\n@radix-ui/react-compose-refs
to merge refs, save on bundle size- Use React built-in
\\nuseSyncExternalStore
and remove shim. Note that React 18 has always been a required peerDependency ofcmdk
New Contributors
\\n\\n
\\n- \\n
@lsmurray
made their first contribution in pacocoursey/cmdk#329- \\n
@muZk
made their first contribution in pacocoursey/cmdk#338- \\n
@UltimateGG
made their first contribution in pacocoursey/cmdk#254Full Changelog: https://github.com/pacocoursey/cmdk/compare/v1.0.4...v1.1.0
\\n
fb4ea04
v1.1.1f34d463
Fix unintended double triggering of key bindings during IME composition (#339)2814a00
v1.1.0d46ed21
use built-in React uSESec02b5e
use composeRefs from radixe5444d2
remove unused code34f3074
[Accessibility] Use id instead of children (#254)b2d94bd
fix: update the type of the defaultFilter (#338)9827edf
fix useCmdk return type (#329)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsclose #3125
\\n⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps the patch group with 9 updates in the / directory:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
@vercel/node | \\n5.1.13 | \\n5.1.14 | \\n
postcss | \\n8.5.2 | \\n8.5.3 | \\n
vite | \\n6.2.1 | \\n6.2.2 | \\n
vite-bundle-analyzer | \\n0.17.1 | \\n0.17.3 | \\n
vite-plugin-mkcert | \\n1.17.7 | \\n1.17.8 | \\n
expo-dev-client | \\n5.0.12 | \\n5.0.14 | \\n
i18next | \\n24.2.2 | \\n24.2.3 | \\n
daisyui | \\n4.12.23 | \\n4.12.24 | \\n
@tanstack/react-virtual | \\n3.13.3 | \\n3.13.4 | \\n
Updates @vercel/node
from 5.1.13 to 5.1.14
Sourced from @vercel/node
\'s releases.
\\n\\n\\n
@vercel/node
@5
.1.14Patch Changes
\\n\\n
\\n- Updated dependencies [
\\n9c5bcad83a8e8b75bd7371649d1287890f33bb47
,6ada3b30626582e9bad11a450a6b79bb387d6d49
]:\\n\\n
\\n- \\n
@vercel/build-utils
@10
.5.1
Sourced from @vercel/node
\'s changelog.
\\n\\n5.1.14
\\nPatch Changes
\\n\\n
\\n- Updated dependencies [
\\n9c5bcad83a8e8b75bd7371649d1287890f33bb47
,6ada3b30626582e9bad11a450a6b79bb387d6d49
]:\\n\\n
\\n- \\n
@vercel/build-utils
@10
.5.1
336ee03
Version PackagesUpdates postcss
from 8.5.2 to 8.5.3
Sourced from postcss\'s releases.
\\n\\n\\n8.5.3
\\n\\n
\\n- Added more details to
\\nUnknown word
error (by@hiepxanh
).- Fixed types (by
\\n@romainmenke
).- Fixed docs (by
\\n@catnipan
).
Sourced from postcss\'s changelog.
\\n\\n\\n8.5.3
\\n\\n
\\n- Added more details to
\\nUnknown word
error (by@hiepxanh
).- Fixed types (by
\\n@romainmenke
).- Fixed docs (by
\\n@catnipan
).
Updates vite
from 6.2.1 to 6.2.2
Sourced from vite\'s releases.
\\n\\n\\nv6.2.2
\\nPlease refer to CHANGELOG.md for details.
\\n
Sourced from vite\'s changelog.
\\n\\n\\n6.2.2 (2025-03-14)
\\n\\n
\\n- fix: await client buildStart on top level buildStart (#19624) (b31faab), closes #19624
\\n- fix(css): inline css correctly for double quote use strict (#19590) (d0aa833), closes #19590
\\n- fix(deps): update all non-major dependencies (#19613) (363d691), closes #19613
\\n- fix(indexHtml): ensure correct URL when querying module graph (#19601) (dc5395a), closes #19601
\\n- fix(preview): use preview https config, not server (#19633) (98b3160), closes #19633
\\n- fix(ssr): use optional chaining to prevent \\"undefined is not an object\\" happening in `ssrRewriteStac (4309755), closes #19612
\\n- feat: show friendly error for malformed
\\nbase
(#19616) (2476391), closes #19616- feat(worker): show asset filename conflict warning (#19591) (367d968), closes #19591
\\n- chore: extend commit hash correctly when ambigious with a non-commit object (#19600) (89a6287), closes #19600
\\n
b12911e
release: v6.2.298b3160
fix(preview): use preview https config, not server (#19633)b31faab
fix: await client buildStart on top level buildStart (#19624)dc5395a
fix(indexHtml): ensure correct URL when querying module graph (#19601)2476391
feat: show friendly error for malformed base
(#19616)4309755
fix(ssr): use optional chaining to prevent \\"undefined is not an object\\" happe...363d691
fix(deps): update all non-major dependencies (#19613)d0aa833
fix(css): inline css correctly for double quote use strict (#19590)367d968
feat(worker): show asset filename conflict warning (#19591)89a6287
chore: extend commit hash correctly when ambigious with a non-commit object (...Updates vite-bundle-analyzer
from 0.17.1 to 0.17.3
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.17.3
\\n\\n
\\n- Respect Cli parse.
\\nv0.17.2
\\n\\n
\\n- Fix cli wrong option passing.
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.17.3
\\n\\n
\\n- Respect Cli parse.
\\n0.17.2
\\n\\n
\\n- Fix cli wrong option passing.
\\n
fe2d8e0
chore: release v0.17.3be37969
chore: release v0.17.2Updates vite-plugin-mkcert
from 1.17.7 to 1.17.8
Sourced from vite-plugin-mkcert\'s releases.
\\n\\n\\nv1.17.8
\\n1.17.8 (2025-03-14)
\\nBug Fixes
\\n\\n
Sourced from vite-plugin-mkcert\'s changelog.
\\n\\n\\n1.17.8 (2025-03-14)
\\nBug Fixes
\\n\\n
7e6b558
chore(release): 1.17.8 [skip ci]935a13a
fix: upgrade axios to fix security issue44f3f2d
chore: update distUpdates expo-dev-client
from 5.0.12 to 5.0.14
Sourced from expo-dev-client\'s changelog.
\\n\\n\\nChangelog
\\nUnpublished
\\n🛠 Breaking changes
\\n🎉 New features
\\n🐛 Bug fixes
\\n💡 Others
\\n\\n
\\n- [Android] Started using expo modules gradle plugin. (#34176 by
\\n@lukmccall
)- [apple] Migrate remaining
\\nexpo-module.config.json
to unified platform syntax. (#34445 by@reichhartd
)5.0.13 - 2025-03-11
\\nThis version does not introduce any user-facing changes.
\\n
Updates i18next
from 24.2.2 to 24.2.3
Sourced from i18next\'s releases.
\\n\\n\\nv24.2.3
\\n\\n
\\n- Upgrade
\\n@babel/runtime
package to version v7.26.10 2293
Sourced from i18next\'s changelog.
\\n\\n\\n24.2.3
\\n\\n
\\n- Upgrade
\\n@babel/runtime
package to version v7.26.10 2293
Updates daisyui
from 4.12.23 to 4.12.24
Sourced from daisyui\'s releases.
\\n\\n\\nv4.12.24
\\n🌼 Read changelog: https://daisyui.com/docs/changelog/
\\n📦 Install this update:
\\n\\nnpm i -D daisyui@4.12.24\\n
💚 Thank you for using daisyUI!
\\n
Updates @tanstack/react-virtual
from 3.13.3 to 3.13.4
Sourced from @tanstack/react-virtual
\'s releases.
\\n\\n\\n
@tanstack/react-virtual
@3
.13.4Patch Changes
\\n\\n
Sourced from @tanstack/react-virtual
\'s changelog.
\\n\\n3.13.4
\\nPatch Changes
\\n\\n
1a25b16
ci: Version Packages (#956)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsBumps the patch group with 9 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
@vercel/node | \\n5.1.13 | \\n5.1.14 | \\n
postcss | \\n8.5.2 | \\n8.5.3 | \\n
vite | \\n6.2.1 | \\n6.2.2 | \\n
vite-bundle-analyzer | \\n0.17.1 | \\n0.17.3 | \\n
@shopify/flash-list | \\n1.7.3 | \\n1.7.5 | \\n
expo-dev-client | \\n5.0.12 | \\n5.0.14 | \\n
i18next | \\n24.2.2 | \\n24.2.3 | \\n
daisyui | \\n4.12.23 | \\n4.12.24 | \\n
@tanstack/react-virtual | \\n3.13.3 | \\n3.13.4 | \\n
Updates @vercel/node
from 5.1.13 to 5.1.14
Sourced from @vercel/node
\'s releases.
\\n\\n\\n
@vercel/node
@5
.1.14Patch Changes
\\n\\n
\\n- Updated dependencies [
\\n9c5bcad83a8e8b75bd7371649d1287890f33bb47
,6ada3b30626582e9bad11a450a6b79bb387d6d49
]:\\n\\n
\\n- \\n
@vercel/build-utils
@10
.5.1
Sourced from @vercel/node
\'s changelog.
\\n\\n5.1.14
\\nPatch Changes
\\n\\n
\\n- Updated dependencies [
\\n9c5bcad83a8e8b75bd7371649d1287890f33bb47
,6ada3b30626582e9bad11a450a6b79bb387d6d49
]:\\n\\n
\\n- \\n
@vercel/build-utils
@10
.5.1
336ee03
Version PackagesUpdates postcss
from 8.5.2 to 8.5.3
Sourced from postcss\'s releases.
\\n\\n\\n8.5.3
\\n\\n
\\n- Added more details to
\\nUnknown word
error (by@hiepxanh
).- Fixed types (by
\\n@romainmenke
).- Fixed docs (by
\\n@catnipan
).
Sourced from postcss\'s changelog.
\\n\\n\\n8.5.3
\\n\\n
\\n- Added more details to
\\nUnknown word
error (by@hiepxanh
).- Fixed types (by
\\n@romainmenke
).- Fixed docs (by
\\n@catnipan
).
Updates vite
from 6.2.1 to 6.2.2
Sourced from vite\'s releases.
\\n\\n\\nv6.2.2
\\nPlease refer to CHANGELOG.md for details.
\\n
Sourced from vite\'s changelog.
\\n\\n\\n6.2.2 (2025-03-14)
\\n\\n
\\n- fix: await client buildStart on top level buildStart (#19624) (b31faab), closes #19624
\\n- fix(css): inline css correctly for double quote use strict (#19590) (d0aa833), closes #19590
\\n- fix(deps): update all non-major dependencies (#19613) (363d691), closes #19613
\\n- fix(indexHtml): ensure correct URL when querying module graph (#19601) (dc5395a), closes #19601
\\n- fix(preview): use preview https config, not server (#19633) (98b3160), closes #19633
\\n- fix(ssr): use optional chaining to prevent \\"undefined is not an object\\" happening in `ssrRewriteStac (4309755), closes #19612
\\n- feat: show friendly error for malformed
\\nbase
(#19616) (2476391), closes #19616- feat(worker): show asset filename conflict warning (#19591) (367d968), closes #19591
\\n- chore: extend commit hash correctly when ambigious with a non-commit object (#19600) (89a6287), closes #19600
\\n
b12911e
release: v6.2.298b3160
fix(preview): use preview https config, not server (#19633)b31faab
fix: await client buildStart on top level buildStart (#19624)dc5395a
fix(indexHtml): ensure correct URL when querying module graph (#19601)2476391
feat: show friendly error for malformed base
(#19616)4309755
fix(ssr): use optional chaining to prevent \\"undefined is not an object\\" happe...363d691
fix(deps): update all non-major dependencies (#19613)d0aa833
fix(css): inline css correctly for double quote use strict (#19590)367d968
feat(worker): show asset filename conflict warning (#19591)89a6287
chore: extend commit hash correctly when ambigious with a non-commit object (...Updates vite-bundle-analyzer
from 0.17.1 to 0.17.3
Sourced from vite-bundle-analyzer\'s releases.
\\n\\n\\nv0.17.3
\\n\\n
\\n- Respect Cli parse.
\\nv0.17.2
\\n\\n
\\n- Fix cli wrong option passing.
\\n
Sourced from vite-bundle-analyzer\'s changelog.
\\n\\n\\n0.17.3
\\n\\n
\\n- Respect Cli parse.
\\n0.17.2
\\n\\n
\\n- Fix cli wrong option passing.
\\n
fe2d8e0
chore: release v0.17.3be37969
chore: release v0.17.2Updates @shopify/flash-list
from 1.7.3 to 1.7.5
Sourced from @shopify/flash-list
\'s releases.
\\n\\nv1.7.5
\\nWhat\'s Changed
\\n\\n
\\n- Resolve React 19 ref warnings (fix is in RLV 4.2.2) by
\\n@naqvitalha
in Shopify/flash-list#1554Full Changelog: https://github.com/Shopify/flash-list/compare/v1.7.3...v1.7.5
\\n
Sourced from @shopify/flash-list
\'s changelog.
\\n\\n[1.7.5] - 2025-03-13
\\n\\n
\\n- Fix React 19 ref error\\n
\\n\\n
\\n- Shopify/flash-list#1554
\\n
Updates expo-dev-client
from 5.0.12 to 5.0.14
Sourced from expo-dev-client\'s changelog.
\\n\\n\\nChangelog
\\nUnpublished
\\n🛠 Breaking changes
\\n🎉 New features
\\n🐛 Bug fixes
\\n💡 Others
\\n\\n
\\n- [Android] Started using expo modules gradle plugin. (#34176 by
\\n@lukmccall
)- [apple] Migrate remaining
\\nexpo-module.config.json
to unified platform syntax. (#34445 by@reichhartd
)5.0.13 - 2025-03-11
\\nThis version does not introduce any user-facing changes.
\\n
Updates i18next
from 24.2.2 to 24.2.3
Sourced from i18next\'s releases.
\\n\\n\\nv24.2.3
\\n\\n
\\n- Upgrade
\\n@babel/runtime
package to version v7.26.10 2293
Sourced from i18next\'s changelog.
\\n\\n\\n24.2.3
\\n\\n
\\n- Upgrade
\\n@babel/runtime
package to version v7.26.10 2293
Updates daisyui
from 4.12.23 to 4.12.24
Sourced from daisyui\'s releases.
\\n\\n\\nv4.12.24
\\n🌼 Read changelog: https://daisyui.com/docs/changelog/
\\n📦 Install this update:
\\n\\nnpm i -D daisyui@4.12.24\\n
💚 Thank you for using daisyUI!
\\n
Updates @tanstack/react-virtual
from 3.13.3 to 3.13.4
Sourced from @tanstack/react-virtual
\'s releases.
\\n\\n\\n
@tanstack/react-virtual
@3
.13.4Patch Changes
\\n\\n
Sourced from @tanstack/react-virtual
\'s changelog.
\\n\\n3.13.4
\\nPatch Changes
\\n\\n
1a25b16
ci: Version Packages (#956)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsIntroduce language detection to provide users with preset feeds tailored to their language preferences during onboarding. English users receive a specific set of feeds, while others access a different collection.
\\n","description":"Introduce language detection to provide users with preset feeds tailored to their language preferences during onboarding. English users receive a specific set of feeds, while others access a different collection.","guid":"https://github.com/RSSNext/Follow/pull/3109","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-13T18:39:51.438Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"build: bring unist-util-visit-parents overide back","url":"https://github.com/RSSNext/Follow/pull/3108","content":"Bumps the minor group with 6 updates in the / directory:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
@better-auth/expo | \\n1.1.18 | \\n1.2.3 | \\n
better-auth | \\n1.1.18 | \\n1.2.3 | \\n
@sentry/react | \\n9.1.0 | \\n9.5.0 | \\n
@mozilla/readability | \\n0.5.0 | \\n0.6.0 | \\n
plain-shiki | \\n0.1.1 | \\n0.2.0 | \\n
react-scan | \\n0.1.3 | \\n0.2.14 | \\n
Updates @better-auth/expo
from 1.1.18 to 1.2.3
Updates better-auth
from 1.1.18 to 1.2.3
Sourced from better-auth\'s releases.
\\n\\n\\nv1.2.3
\\n🐞 Bug Fixes
\\n\\n
\\n- admin:\\n
\\n\\n
\\n- Missing options parameter on hasPermission checks - by
\\n@jslno
in better-auth/better-auth#1666 (50637)- Require adminRoles option for a role to be considered an admin role - by
\\n@Bekacru
(31c97)- jwt:\\n\\n
\\n- multi-session:\\n\\n
\\n- stripe:\\n\\n
\\nView changes on GitHub
\\nv1.2.3-beta.3
\\n🐞 Bug Fixes
\\n\\n
\\n- admin: Require adminRoles option for a role to be considered an admin role - by
\\n@Bekacru
(31c97)View changes on GitHub
\\nv1.2.3-beta.2
\\n🐞 Bug Fixes
\\n\\nView changes on GitHub
\\nv1.2.3-beta.1
\\n🐞 Bug Fixes
\\n\\n
\\n- admin: Missing options parameter on hasPermission checks - by
\\n@jslno
in better-auth/better-auth#1666 (50637)- jwt: Fallback to newSession when retrieving session token - by
\\n@Bekacru
(f8f13)- multi-session: Use small cased token name for multi-session cookie management - by
\\n@Bekacru
(650d5)- stripe: Improve handling of multiple subscriptions in webhook - by
\\n@Bekacru
(c5c74)View changes on GitHub
\\nv1.2.2
\\n🐞 Bug Fixes
\\n\\n\\n
... (truncated)
\\n7d3440a
chore: release v1.2.3225d94f
chore: release v1.2.3-beta.3c1216a9
demo: add impersonation stop button and admin user configuration31c974a
fix(admin): require adminRoles option for a role to be considered an admin role6851451
chore: release v1.2.3-beta.207b1195
test(multi-session): remove filtered test casese89ec93
test(multi-session): update test cases with improved session handling9863bbe
chore: release v1.2.3-beta.1f8f1340
fix(jwt): fallback to newSession when retrieving session token650d58d
fix(multi-session): use small cased token name for multi-session cookie manag...Updates @sentry/react
from 9.1.0 to 9.5.0
Sourced from @sentry/react
\'s releases.
\\n\\n9.5.0
\\nImportant Changes
\\nWe found some issues with the new feedback screenshot annotation where screenshots are not being generated properly. Due to this issue, we are reverting the feature.
\\n\\nOther Changes
\\n\\n
\\n- Add cloudflare adapter detection and path generation (#15603)
\\n- deps(nextjs): Bump rollup to
\\n4.34.9
(#15589)- feat(bun): Automatically add performance integrations (#15586)
\\n- feat(replay): Bump rrweb to 2.34.0 (#15580)
\\n- fix(browser): Call original function on early return from patched history API (#15576)
\\n- fix(nestjs): Copy metadata in custom decorators (#15598)
\\n- fix(react-router): Fix config type import (#15583)
\\n- fix(remix): Use correct types export for
\\n@sentry/remix/cloudflare
(#15599)- fix(vue): Attach Pinia state only once per event (#15588)
\\nWork in this release was contributed by
\\n@msurdi-a8c
,@namoscato
, and@rileyg98
. Thank you for your contributions!Bundle size 📦
\\n\\n\\n
\\n\\n\\n \\n\\n\\nPath \\nSize \\n\\n \\n\\n @sentry/browser
23.14 KB \\n\\n \\n\\n @sentry/browser
- with treeshaking flags22.93 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing)36.2 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay)73.38 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay) - with treeshaking flags66.79 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay with Canvas)78 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay, Feedback)90.56 KB \\n\\n \\n\\n @sentry/browser
(incl. Feedback)40.29 KB \\n\\n \\n\\n @sentry/browser
(incl. sendFeedback)27.78 KB \\n\\n \\n\\n @sentry/browser
(incl. FeedbackAsync)32.57 KB \\n\\n \\n\\n @sentry/react
24.96 KB \\n\\n \\n\\n @sentry/react
(incl. Tracing)38.09 KB \\n\\n \\n\\n @sentry/vue
27.38 KB \\n\\n \\n\\n @sentry/vue
(incl. Tracing)37.89 KB \\n\\n \\n\\n @sentry/svelte
23.17 KB \\n\\n \\nCDN Bundle \\n24.35 KB \\n\\n \\nCDN Bundle (incl. Tracing) \\n36.25 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) \\n71.26 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) \\n76.43 KB \\n\\n \\nCDN Bundle - uncompressed \\n71.14 KB \\n\\n \\nCDN Bundle (incl. Tracing) - uncompressed \\n107.52 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) - uncompressed \\n218.79 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed \\n231.36 KB \\n\\n \\n\\n @sentry/nextjs
(client)39.26 KB \\n\\n \\n\\n\\n @sentry/sveltekit
(client)36.62 KB \\n
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.5.0
\\nImportant Changes
\\nWe found some issues with the new feedback screenshot annotation where screenshots are not being generated properly. Due to this issue, we are reverting the feature.
\\n\\nOther Changes
\\n\\n
\\n- Add cloudflare adapter detection and path generation (#15603)
\\n- deps(nextjs): Bump rollup to
\\n4.34.9
(#15589)- feat(bun): Automatically add performance integrations (#15586)
\\n- feat(replay): Bump rrweb to 2.34.0 (#15580)
\\n- fix(browser): Call original function on early return from patched history API (#15576)
\\n- fix(nestjs): Copy metadata in custom decorators (#15598)
\\n- fix(react-router): Fix config type import (#15583)
\\n- fix(remix): Use correct types export for
\\n@sentry/remix/cloudflare
(#15599)- fix(vue): Attach Pinia state only once per event (#15588)
\\nWork in this release was contributed by
\\n@msurdi-a8c
,@namoscato
, and@rileyg98
. Thank you for your contributions!9.4.0
\\n\\n
\\n- feat(core): Add types for logs protocol and envelope (#15530)
\\n- feat(deps): Bump
\\n@sentry/cli
from 2.41.1 to 2.42.2 (#15510)- feat(deps): Bump
\\n@sentry/webpack-plugin
from 3.1.2 to 3.2.1 (#15512)- feat(feedback) Allowing annotation via highlighting & masking (#15484)
\\n- feat(nextjs): Add
\\nuse client
directive to client SDK entrypoints (#15575)- feat(nextjs): Allow silencing of instrumentation warning (#15555)
\\n- feat(sveltekit): Ensure
\\nAsyncLocalStorage
async context strategy is used in Cloudflare Pages (#15557)- fix(cloudflare): Make
\\n@cloudflare/workers-types
an optional peer dependency (#15554)- fix(core): Don\'t reverse values in event filters (#15584)
\\n- fix(core): Handle normalization of null prototypes correctly (#15556)
\\n- fix(nextjs): Only warn on missing
\\nonRequestError
in version 15 (#15553)- fix(node): Allow for
\\nundefined
transport to be passed in (#15560)- fix(wasm): Fix wasm integration stacktrace parsing for filename (#15572)
\\n- perf(node): Store normalized request for processing (#15570)
\\n9.3.0
\\nImportant Changes
\\nWith this release we\'re publishing two new SDKs in experimental alpha stage:
\\n\\n
\\n- feat(tanstackstart): Add TanStack Start SDK (#15523)
\\nFor details please refer to the README
\\n\\n
\\n\\n- feat(react-router): Add React Router SDK (#15524)
\\n
... (truncated)
\\n0bf31c8
release: 9.5.0aba909b
Merge pull request #15611 from getsentry/prepare-release/9.5.079a1eef
meta(changelog): Update changelog for 9.5.08d9f523
Revert \\"feat(feedback) Allowing annotation via highlighting & masking (#15484...44a3507
chore: Add external contributor to CHANGELOG.md (#15606)a4371a2
chore: Add external contributor to CHANGELOG.md (#15595)e3692a4
Add cloudflare adapter detection and path generation (#15603)e68cbec
chore: Add external contributor to CHANGELOG.md (#15604)07d23bf
fix(react-router): Fix config type import (#15583)f377496
fix(remix): Use correct types export for @sentry/remix/cloudflare
(#15599)Updates @mozilla/readability
from 0.5.0 to 0.6.0
Sourced from @mozilla/readability
\'s changelog.
\\n\\n[0.6.0] - 2025-03-03
\\n\\n
\\n- Add Parsely tags as a fallback metadata source
\\n- Fix the case that jsonld parse process is ignored when context url include the trailing slash
\\n- Improve data table support
\\n- Fixed situations where short paragraphs of legitimate content would be excluded
\\n- Add an option to modify link density value
\\n- Byline metadata should lead to not deleting lookalike non-byline content
\\n- Avoid removing headers on gitlab
\\n- Improved HTML character unescaping
\\n- Various performance improvements: #894,\\n#892, #893,\\n#915,
\\n- Fix broken JSONLD context handling
\\n- Include Jekyll footnotes in output
\\n- Handle schema.org context objects
\\n- Fix invalid attributes breaking parsing
\\n- Include article:author metadata
\\n- Handle itemprop=name for author metadata
\\n- Improve typescript definitions
\\n- Handle JSONLD Arrays
\\n
04fd32f
Release 0.6.04d5dd0b
Include recent changes in CHANGELOG.md1c4d63b
Make use of regular expressions in title processing more effective. (#959)04abc79
Bump the npm_and_yarn group with 2 updates (#953)118f015
Handle JSONLD arrays (fixes #908) (#947)8c0ff87
Add null | undefined to parse results. Fixes #937 (#944)706c3d1
Extract author name from itemprop=\'name\'. (#943)af54155
Drop flagged key copied from public website.fbcc3bc
More changelog goodness.b6ff1b6
Handle article:author meta tag. Fixes #938 (#942)Updates plain-shiki
from 0.1.1 to 0.2.0
Sourced from plain-shiki\'s releases.
\\n\\n\\nv0.2.0
\\nChores
\\n\\n
\\n- update deps
\\n
925c083
release: v0.2.0b904827
chore: update depsUpdates react-scan
from 0.1.3 to 0.2.14
Sourced from react-scan\'s releases.
\\n\\n\\nv0.2.14
\\nFixes React Scan not activating or infinite reloading when using the CLI
\\nnpx react-scan@latest
\\n<url>
Full Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.13...v0.2.14
\\nv0.2.13
\\nWhat\'s Changed
\\nSignificantly lowers react-scan overhead by removing some expensive regex parsing in render detection
\\nFull Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.12...v0.2.13
\\nv0.2.12
\\nFixes a bug that causes react scan to crash if you have <v0.2.10 of monitoring when using the script tag installation
\\nFull Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.11...v0.2.12
\\nv0.2.11
\\nFixes an issue where conditional CSS styles would get incorrectly applied, causing some visual bugs in the UI
\\nv0.2.10
\\nRelease v0.2.10
\\nWe\'ve made a lot of bug fixes & improvements since our 0.2.0 release. Importantly:
\\n\\n
\\n- added render tracking to items in the component tree inspector view
\\n- up to a 10x drop in overhead from react-scan
\\n- fixed a bug that prevented users on safari from turning off outlines with the switch in the toolbar
\\n- fixed a bug that caused audio notifications to stay on after disabling
\\n- fixed some bugs causing incorrect reporting FPS drops
\\n- fixed a bug causing interactions to be tracked multiple times in notifications
\\nFull set of changes
\\n\\n
\\n\\n- chore: bump extension to v1.0.4 by
\\n@pivanov
in aidenybai/react-scan#230- feat: add
\\n@pivanov
vite plugin to the repo by@pivanov
in aidenybai/react-scan#236- feat: components tree by
\\n@pivanov
in aidenybai/react-scan#240- fix: playwright and react 18 compat by
\\n@lxsmnsyc
in aidenybai/react-scan#238- fix: react-scan README by
\\n@lxsmnsyc
in aidenybai/react-scan#237- perf: monitoring by
\\n@lxsmnsyc
in aidenybai/react-scan#227- feat: Add
\\nchangeset
by@lxsmnsyc
in aidenybai/react-scan#219- chore: improve readme by
\\n@pivanov
in aidenybai/react-scan#243- feat: vite plugin 0.1.3 by
\\n@pivanov
in aidenybai/react-scan#249- fix: remove unused refs by
\\n@lxsmnsyc
in aidenybai/react-scan#241- fix: useSignalEffect instead of subscribe by
\\n@lxsmnsyc
in aidenybai/react-scan#247- fix: toolbar schedule by
\\n@lxsmnsyc
in aidenybai/react-scan#250- feat: what changed section UI improvements by
\\n@pivanov
in aidenybai/react-scan#256- make copyright year dynamic in footer by
\\n@ursmahi
in aidenybai/react-scan#262- Add Bun instructions in the README by
\\n@igor9silva
in aidenybai/react-scan#260
... (truncated)
\\n380c387
bump to 0.2.149156832
fix: remove init script that blocks react scan from injecting in cli64d2046
bump dependencies for website04fe679
fix: use react scan logo as faviconfac4fd1
bump to 0.2.13aa4e59d
chore: remove props ordering based on source code in change detectiona0b980c
perf: outlines (#215)d870fa7
bump to 0.2.128431a86
fix: bump bippy to 0.3.8613d6ee
fix: temporary footer color so toolbar is visibleDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsBumps electron from 34.2.0 to 35.0.1.
\\nSourced from electron\'s releases.
\\n\\n\\nelectron v35.0.1
\\nRelease Notes for v35.0.1
\\nFixes
\\n\\n
\\n- Fixed an issue where Node.js OOM errors terminate the process directly without raising an OOM exception. #45911 (Also in 36)
\\n- Fixed an issue where
\\nsetContentProtection(true)
was reverted when a given window was hidden. #45889 (Also in 34)- Fixed invalid memory access in pdf viewer which lead to random crashes. #45879 (Also in 34)
\\n- Improved webContents loading time when resolving fonts for uncommon scripts. #45918 (Also in 34, 36)
\\nOther Changes
\\n\\nelectron v35.0.0
\\nRelease Notes for v35.0.0
\\nStack Upgrades
\\n\\n
\\n- Chromium
\\n134.0.6998.44
\\n\\n
\\n- New in 134
\\n- New in 133
\\n- Node
\\n22.14.0
\\n\\n
\\n- Node 22.14.0 blog post
\\n- V8
\\n13.4
Breaking Changes
\\n\\n
\\n- Added excludeUrls to webRequest filter and deprecated the use of empty arrays in urls property. #45678
\\n- Added
\\nfromVersionID
onServiceWorkers
to get an instance ofServiceWorkerMain
. #45341- Deprecated
\\ngetPreloads
andsetPreloads
onSession
. #45329- Fixed file chooser dialogs for flaptak applications. #44426 (Also in 34)
\\n- Moved \'console-message\' arguments into event object. #43617
\\n- The
\\nsystemPreferences.isAeroGlassEnabled()
API has been deprecated and will be removed without replacement. #45554Features
\\nAdditions
\\n\\n
\\n\\n- Added APIs to manage shared dictionaries for compression efficiency using Brotli or ZStandard. The new APIs are
\\nsession.getSharedDictionaryUsageInfo()
,session.getSharedDictionaryInfo(options)
,session.clearSharedDictionaryCache()
, andsession.clearSharedDictionaryCacheForIsolationKey(options)
. #44750 (Also in 33, 34)- Added
\\nNSPrefersDisplaySafeAreaCompatibilityMode
=false
to Info.plist to remove \\"Scale to fit below built-in camera.\\" from app options. #45357 (Also in 33, 34)- Added
\\nServiceWorkerMain
class to interact with service workers in the main process. #45341\\n\\n
\\n- Added
\\nrunning-status-changed
event onServiceWorkers
to indicate when a service worker\'s running status has changed.- Added
\\nstartWorkerForScope
onServiceWorkers
to start a worker that may have been previously stopped.- Added
\\nWebFrameMain.collectJavaScriptCallStack()
for accessing the JavaScript call stack of unresponsive renderers. #44204 (Also in 33, 34)- Added
\\ncontextBridge.executeInMainWorld
to safely execute code across world boundaries. #45330- Added
\\nframe
to \'console-message\' event. #43617- Added
\\nquery-session-end
event and improvedsession-end
events on Windows. #44598- Added
\\nview.getVisible()
. #45409 (Also in 34)- Added
\\nwebContents.navigationHistory.restore(index, entries)
API that allows restoration of navigation history. #45583 (Also in 34)- Added optional animation parameter to BrowserWindow.setVibrancy. #35987
\\n- Added permission support for
\\ndocument.executeCommand(\\"paste\\")
. #45471 (Also in 33, 34)
... (truncated)
\\n079b2bb
chore: cherry-pick 521faebc8a7c from chromium (#45943)5b15c34
chore: cherry-pick 9dacf5694dfd from chromium (#45938)10da0d6
fix: javascript heap OOM is not raised (#45911)463031b
fix: resolve font list in default prefernce values (#45918)53d7bd6
chore: emphasize documentation style guide (#45909)6eb4932
fix: setContentProtection(true)
after hide on Windows (#45889)179fde9
fix: correct electron gin embedder indices (#45879)107b3f8
fix: rework and improve legacyMainResolve
patch (#45878)d98d95b
docs: update timelines for E36 (#45849)5874ec7
docs: update breaking-changes.md for 35.0.0 (#45847)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps the patch group with 5 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
postcss | \\n8.5.2 | \\n8.5.3 | \\n
expo-dev-client | \\n5.0.12 | \\n5.0.13 | \\n
react-native-screens | \\n4.9.1 | \\n4.9.2 | \\n
zeego | \\n3.0.3 | \\n3.0.5 | \\n
lightningcss | \\n1.29.1 | \\n1.29.2 | \\n
Updates postcss
from 8.5.2 to 8.5.3
Sourced from postcss\'s releases.
\\n\\n\\n8.5.3
\\n\\n
\\n- Added more details to
\\nUnknown word
error (by@hiepxanh
).- Fixed types (by
\\n@romainmenke
).- Fixed docs (by
\\n@catnipan
).
Sourced from postcss\'s changelog.
\\n\\n\\n8.5.3
\\n\\n
\\n- Added more details to
\\nUnknown word
error (by@hiepxanh
).- Fixed types (by
\\n@romainmenke
).- Fixed docs (by
\\n@catnipan
).
Updates expo-dev-client
from 5.0.12 to 5.0.13
Sourced from expo-dev-client\'s changelog.
\\n\\n\\n5.0.13 - 2025-03-11
\\nThis version does not introduce any user-facing changes.
\\n
Updates react-native-screens
from 4.9.1 to 4.9.2
973e05b
Release 4.9.24e96bcc
fix: FullWindowOverlay not working with dynamic frameworks (#2769)Updates zeego
from 3.0.3 to 3.0.5
Sourced from zeego\'s releases.
\\n\\n\\n3.0.5
\\nFix up 3.0.4 logic a bit, allow numbers and handle nullish checks for children
\\n3.0.4
\\nSimple fix:
\\n\\n<DropdownMenu.ItemTitle>Block {username}</DropdownMenu.ItemTitle>\\n
This syntax of using a variable as a child of
\\nItemTitle
used to throw an error. Now it works.
Updates lightningcss
from 1.29.1 to 1.29.2
Sourced from lightningcss\'s releases.
\\n\\n\\nv1.29.2
\\n\\n
\\n- Update detect-libc for better compatibility by
\\n@nicksrandall
in parcel-bundler/lightningcss#923- Fix broken minification for non-opaque oklab colors by
\\n@lfesp
in parcel-bundler/lightningcss#901- Bump browserslist-rs 0.17.0 by
\\n@chenjiahan
in parcel-bundler/lightningcss#912- Add wasm compilation cfg for
\\nBrowsers::load_browserslist
by@CPunisher
in parcel-bundler/lightningcss#895- Fix parsing style container queries without a value – 22846530a008baf7a0985e9b87d90c6ae5c4047b
\\n
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsBumps the minor group with 8 updates:
\\nPackage | \\nFrom | \\nTo | \\n
---|---|---|
typescript | \\n5.7.3 | \\n5.8.2 | \\n
@better-auth/expo | \\n1.1.18 | \\n1.2.3 | \\n
better-auth | \\n1.1.18 | \\n1.2.3 | \\n
@sentry/react | \\n9.1.0 | \\n9.5.0 | \\n
@auth/core | \\n0.37.4 | \\n0.38.0 | \\n
@mozilla/readability | \\n0.5.0 | \\n0.6.0 | \\n
plain-shiki | \\n0.1.1 | \\n0.2.0 | \\n
react-scan | \\n0.1.3 | \\n0.2.14 | \\n
Updates typescript
from 5.7.3 to 5.8.2
Sourced from typescript\'s releases.
\\n\\n\\nTypeScript 5.8
\\nFor release notes, check out the release announcement.
\\n\\n
\\n- fixed issues query for Typescript 5.8.0 (Beta).
\\n- fixed issues query for Typescript 5.8.1 (RC).
\\n- fixed issues query for Typescript 5.8.2 (Stable).
\\nDownloads are available on:
\\n\\n
\\n- npm
\\nTypeScript 5.8 RC
\\nFor release notes, check out the release announcement.
\\n\\n
\\n- fixed issues query for Typescript 5.8.0 (Beta).
\\n- fixed issues query for Typescript 5.8.1 (RC).
\\nDownloads are available on:
\\n\\n
\\n- npm
\\nTypeScript 5.8 Beta
\\nFor release notes, check out the release announcement.
\\n\\nDownloads are available on:
\\n\\n
\\n- npm
\\n
beb69e4
Bump version to 5.8.2 and LKG8fdbd54
🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...f4a3a8a
🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...420ff06
Bump version to 5.8.1-rc and LKG48eb13f
Update LKGfb59c19
Merge remote-tracking branch \'origin/main\' into release-5.8df342b7
Fixed rewriteRelativeImportExtensions
for import()
within call expression...775412a
Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...e1629e5
Pass ignoreErrors=true to more resolveEntityName callers (#61144)6fd1799
Update LKGUpdates @better-auth/expo
from 1.1.18 to 1.2.3
Updates better-auth
from 1.1.18 to 1.2.3
Sourced from better-auth\'s releases.
\\n\\n\\nv1.2.3
\\n🐞 Bug Fixes
\\n\\n
\\n- admin:\\n
\\n\\n
\\n- Missing options parameter on hasPermission checks - by
\\n@jslno
in better-auth/better-auth#1666 (50637)- Require adminRoles option for a role to be considered an admin role - by
\\n@Bekacru
(31c97)- jwt:\\n\\n
\\n- multi-session:\\n\\n
\\n- stripe:\\n\\n
\\nView changes on GitHub
\\nv1.2.3-beta.3
\\n🐞 Bug Fixes
\\n\\n
\\n- admin: Require adminRoles option for a role to be considered an admin role - by
\\n@Bekacru
(31c97)View changes on GitHub
\\nv1.2.3-beta.2
\\n🐞 Bug Fixes
\\n\\nView changes on GitHub
\\nv1.2.3-beta.1
\\n🐞 Bug Fixes
\\n\\n
\\n- admin: Missing options parameter on hasPermission checks - by
\\n@jslno
in better-auth/better-auth#1666 (50637)- jwt: Fallback to newSession when retrieving session token - by
\\n@Bekacru
(f8f13)- multi-session: Use small cased token name for multi-session cookie management - by
\\n@Bekacru
(650d5)- stripe: Improve handling of multiple subscriptions in webhook - by
\\n@Bekacru
(c5c74)View changes on GitHub
\\nv1.2.2
\\n🐞 Bug Fixes
\\n\\n\\n
... (truncated)
\\n7d3440a
chore: release v1.2.3225d94f
chore: release v1.2.3-beta.3c1216a9
demo: add impersonation stop button and admin user configuration31c974a
fix(admin): require adminRoles option for a role to be considered an admin role6851451
chore: release v1.2.3-beta.207b1195
test(multi-session): remove filtered test casese89ec93
test(multi-session): update test cases with improved session handling9863bbe
chore: release v1.2.3-beta.1f8f1340
fix(jwt): fallback to newSession when retrieving session token650d58d
fix(multi-session): use small cased token name for multi-session cookie manag...Updates @sentry/react
from 9.1.0 to 9.5.0
Sourced from @sentry/react
\'s releases.
\\n\\n9.5.0
\\nImportant Changes
\\nWe found some issues with the new feedback screenshot annotation where screenshots are not being generated properly. Due to this issue, we are reverting the feature.
\\n\\nOther Changes
\\n\\n
\\n- Add cloudflare adapter detection and path generation (#15603)
\\n- deps(nextjs): Bump rollup to
\\n4.34.9
(#15589)- feat(bun): Automatically add performance integrations (#15586)
\\n- feat(replay): Bump rrweb to 2.34.0 (#15580)
\\n- fix(browser): Call original function on early return from patched history API (#15576)
\\n- fix(nestjs): Copy metadata in custom decorators (#15598)
\\n- fix(react-router): Fix config type import (#15583)
\\n- fix(remix): Use correct types export for
\\n@sentry/remix/cloudflare
(#15599)- fix(vue): Attach Pinia state only once per event (#15588)
\\nWork in this release was contributed by
\\n@msurdi-a8c
,@namoscato
, and@rileyg98
. Thank you for your contributions!Bundle size 📦
\\n\\n\\n
\\n\\n\\n \\n\\n\\nPath \\nSize \\n\\n \\n\\n @sentry/browser
23.14 KB \\n\\n \\n\\n @sentry/browser
- with treeshaking flags22.93 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing)36.2 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay)73.38 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay) - with treeshaking flags66.79 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay with Canvas)78 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay, Feedback)90.56 KB \\n\\n \\n\\n @sentry/browser
(incl. Feedback)40.29 KB \\n\\n \\n\\n @sentry/browser
(incl. sendFeedback)27.78 KB \\n\\n \\n\\n @sentry/browser
(incl. FeedbackAsync)32.57 KB \\n\\n \\n\\n @sentry/react
24.96 KB \\n\\n \\n\\n @sentry/react
(incl. Tracing)38.09 KB \\n\\n \\n\\n @sentry/vue
27.38 KB \\n\\n \\n\\n @sentry/vue
(incl. Tracing)37.89 KB \\n\\n \\n\\n @sentry/svelte
23.17 KB \\n\\n \\nCDN Bundle \\n24.35 KB \\n\\n \\nCDN Bundle (incl. Tracing) \\n36.25 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) \\n71.26 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) \\n76.43 KB \\n\\n \\nCDN Bundle - uncompressed \\n71.14 KB \\n\\n \\nCDN Bundle (incl. Tracing) - uncompressed \\n107.52 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) - uncompressed \\n218.79 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed \\n231.36 KB \\n\\n \\n\\n @sentry/nextjs
(client)39.26 KB \\n\\n \\n\\n\\n @sentry/sveltekit
(client)36.62 KB \\n
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.5.0
\\nImportant Changes
\\nWe found some issues with the new feedback screenshot annotation where screenshots are not being generated properly. Due to this issue, we are reverting the feature.
\\n\\nOther Changes
\\n\\n
\\n- Add cloudflare adapter detection and path generation (#15603)
\\n- deps(nextjs): Bump rollup to
\\n4.34.9
(#15589)- feat(bun): Automatically add performance integrations (#15586)
\\n- feat(replay): Bump rrweb to 2.34.0 (#15580)
\\n- fix(browser): Call original function on early return from patched history API (#15576)
\\n- fix(nestjs): Copy metadata in custom decorators (#15598)
\\n- fix(react-router): Fix config type import (#15583)
\\n- fix(remix): Use correct types export for
\\n@sentry/remix/cloudflare
(#15599)- fix(vue): Attach Pinia state only once per event (#15588)
\\nWork in this release was contributed by
\\n@msurdi-a8c
,@namoscato
, and@rileyg98
. Thank you for your contributions!9.4.0
\\n\\n
\\n- feat(core): Add types for logs protocol and envelope (#15530)
\\n- feat(deps): Bump
\\n@sentry/cli
from 2.41.1 to 2.42.2 (#15510)- feat(deps): Bump
\\n@sentry/webpack-plugin
from 3.1.2 to 3.2.1 (#15512)- feat(feedback) Allowing annotation via highlighting & masking (#15484)
\\n- feat(nextjs): Add
\\nuse client
directive to client SDK entrypoints (#15575)- feat(nextjs): Allow silencing of instrumentation warning (#15555)
\\n- feat(sveltekit): Ensure
\\nAsyncLocalStorage
async context strategy is used in Cloudflare Pages (#15557)- fix(cloudflare): Make
\\n@cloudflare/workers-types
an optional peer dependency (#15554)- fix(core): Don\'t reverse values in event filters (#15584)
\\n- fix(core): Handle normalization of null prototypes correctly (#15556)
\\n- fix(nextjs): Only warn on missing
\\nonRequestError
in version 15 (#15553)- fix(node): Allow for
\\nundefined
transport to be passed in (#15560)- fix(wasm): Fix wasm integration stacktrace parsing for filename (#15572)
\\n- perf(node): Store normalized request for processing (#15570)
\\n9.3.0
\\nImportant Changes
\\nWith this release we\'re publishing two new SDKs in experimental alpha stage:
\\n\\n
\\n- feat(tanstackstart): Add TanStack Start SDK (#15523)
\\nFor details please refer to the README
\\n\\n
\\n\\n- feat(react-router): Add React Router SDK (#15524)
\\n
... (truncated)
\\n0bf31c8
release: 9.5.0aba909b
Merge pull request #15611 from getsentry/prepare-release/9.5.079a1eef
meta(changelog): Update changelog for 9.5.08d9f523
Revert \\"feat(feedback) Allowing annotation via highlighting & masking (#15484...44a3507
chore: Add external contributor to CHANGELOG.md (#15606)a4371a2
chore: Add external contributor to CHANGELOG.md (#15595)e3692a4
Add cloudflare adapter detection and path generation (#15603)e68cbec
chore: Add external contributor to CHANGELOG.md (#15604)07d23bf
fix(react-router): Fix config type import (#15583)f377496
fix(remix): Use correct types export for @sentry/remix/cloudflare
(#15599)Updates @auth/core
from 0.37.4 to 0.38.0
Sourced from @auth/core
\'s releases.
\\n\\n\\n
@auth/core
@0
.38.0Features
\\n\\n
\\n- core: add default cache control headers for GET endpoints (#11667) (af2cceac)
\\n- provider: add Figma provider (#12529) (14dfaf36)
\\n- provider: add Logto provider (#12534) (dcaaf1ab)
\\n- provider: add Bitbucket provider (#12198) (6a72f3d0)
\\n- provider: add Frontegg provider (#11342) (517c877e)
\\n- providers: Add Loops Email Provider and Documentation (#11197) (3ec06842)
\\nBugfixes
\\n\\n
\\n- core: handle an error inside
\\nparseProviders()
whenproviderId
not found in config (#12438) (80a2c147)- pages: recouple button theme to colorScheme and fix appearance for some logos in dark mode (#12537) (b0f15383)
\\n- ts: make User interface overridable using module augmentation (#12472) (77723759)
\\n- \\"state is not specified\\" error when using LINE provider (#12703)
\\n- add a missed instance of allowInsecureRequests (#12276)
\\n- More descriptive error in case that discovery endpoint returns an invalid issuer (#12611)
\\n- improve client-side submodules (#12249)
\\nOther
\\n\\n
\\n- deps: bump oauth4webapi from 3.1.4 to 3.3.0 (#12698) (5a2f595c)
\\n- deps: bump jose from 5.9.6 to 6.0.6 (#12699) (6aefefd3)
\\n- deps: bump oauth4webapi from 3.1.3 to 3.1.4 (#12359) (e2311681)
\\n- deps: bump oauth4webapi from 3.1.1 to 3.1.3 (#12261) (9411046e)
\\n- docs: fixes appearance for some logos in dark mode (#12379) (2f86dfdc)
\\n- docs: add missing bracket and run
\\nformat
(#12302) (7c20f022)- providers: formatting tiktok (507aadda)
\\n- providers: Downgrade requested OAuth scope of TikTok provider (#12608) (2465101a)
\\n- providers: remove console.log in WeChat provider (#12431) (9dbc9ba7)
\\n- Fix incorrect URL in error page documentation comment (#12502)
\\n- exclude inherits, update deps (#12628)
\\n- Revert \\"docs: exclude inherits, update deps (#12628)\\" (#12645)
\\n
3664aa5
chore(release): bump package version(s) [skip ci]e17fc74
docs: GitHub and TypeScript typo (#12678)887c28c
fix: \\"state is not specified\\" error when using LINE provider (#12703)5a2f595
chore(deps): bump oauth4webapi from 3.1.4 to 3.3.0 (#12698)6aefefd
chore(deps): bump jose from 5.9.6 to 6.0.6 (#12699)fdbc96a
fix: Correct name of Adapter (#12648)af2ccea
feat(core): add default cache control headers for GET endpoints (#11667)ec57440
docs: Update README.md4234129
fix(docs): broken link for Postmark API key (#12651)d47bb20
Revert \\"docs: exclude inherits, update deps (#12628)\\" (#12645)Updates @mozilla/readability
from 0.5.0 to 0.6.0
Sourced from @mozilla/readability
\'s changelog.
\\n\\n[0.6.0] - 2025-03-03
\\n\\n
\\n- Add Parsely tags as a fallback metadata source
\\n- Fix the case that jsonld parse process is ignored when context url include the trailing slash
\\n- Improve data table support
\\n- Fixed situations where short paragraphs of legitimate content would be excluded
\\n- Add an option to modify link density value
\\n- Byline metadata should lead to not deleting lookalike non-byline content
\\n- Avoid removing headers on gitlab
\\n- Improved HTML character unescaping
\\n- Various performance improvements: #894,\\n#892, #893,\\n#915,
\\n- Fix broken JSONLD context handling
\\n- Include Jekyll footnotes in output
\\n- Handle schema.org context objects
\\n- Fix invalid attributes breaking parsing
\\n- Include article:author metadata
\\n- Handle itemprop=name for author metadata
\\n- Improve typescript definitions
\\n- Handle JSONLD Arrays
\\n
04fd32f
Release 0.6.04d5dd0b
Include recent changes in CHANGELOG.md1c4d63b
Make use of regular expressions in title processing more effective. (#959)04abc79
Bump the npm_and_yarn group with 2 updates (#953)118f015
Handle JSONLD arrays (fixes #908) (#947)8c0ff87
Add null | undefined to parse results. Fixes #937 (#944)706c3d1
Extract author name from itemprop=\'name\'. (#943)af54155
Drop flagged key copied from public website.fbcc3bc
More changelog goodness.b6ff1b6
Handle article:author meta tag. Fixes #938 (#942)Updates plain-shiki
from 0.1.1 to 0.2.0
Sourced from plain-shiki\'s releases.
\\n\\n\\nv0.2.0
\\nChores
\\n\\n
\\n- update deps
\\n
925c083
release: v0.2.0b904827
chore: update depsUpdates react-scan
from 0.1.3 to 0.2.14
Sourced from react-scan\'s releases.
\\n\\n\\nv0.2.14
\\nFixes React Scan not activating or infinite reloading when using the CLI
\\nnpx react-scan@latest
\\n<url>
Full Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.13...v0.2.14
\\nv0.2.13
\\nWhat\'s Changed
\\nSignificantly lowers react-scan overhead by removing some expensive regex parsing in render detection
\\nFull Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.12...v0.2.13
\\nv0.2.12
\\nFixes a bug that causes react scan to crash if you have <v0.2.10 of monitoring when using the script tag installation
\\nFull Changelog: https://github.com/aidenybai/react-scan/compare/v0.2.11...v0.2.12
\\nv0.2.11
\\nFixes an issue where conditional CSS styles would get incorrectly applied, causing some visual bugs in the UI
\\nv0.2.10
\\nRelease v0.2.10
\\nWe\'ve made a lot of bug fixes & improvements since our 0.2.0 release. Importantly:
\\n\\n
\\n- added render tracking to items in the component tree inspector view
\\n- up to a 10x drop in overhead from react-scan
\\n- fixed a bug that prevented users on safari from turning off outlines with the switch in the toolbar
\\n- fixed a bug that caused audio notifications to stay on after disabling
\\n- fixed some bugs causing incorrect reporting FPS drops
\\n- fixed a bug causing interactions to be tracked multiple times in notifications
\\nFull set of changes
\\n\\n
\\n\\n- chore: bump extension to v1.0.4 by
\\n@pivanov
in aidenybai/react-scan#230- feat: add
\\n@pivanov
vite plugin to the repo by@pivanov
in aidenybai/react-scan#236- feat: components tree by
\\n@pivanov
in aidenybai/react-scan#240- fix: playwright and react 18 compat by
\\n@lxsmnsyc
in aidenybai/react-scan#238- fix: react-scan README by
\\n@lxsmnsyc
in aidenybai/react-scan#237- perf: monitoring by
\\n@lxsmnsyc
in aidenybai/react-scan#227- feat: Add
\\nchangeset
by@lxsmnsyc
in aidenybai/react-scan#219- chore: improve readme by
\\n@pivanov
in aidenybai/react-scan#243- feat: vite plugin 0.1.3 by
\\n@pivanov
in aidenybai/react-scan#249- fix: remove unused refs by
\\n@lxsmnsyc
in aidenybai/react-scan#241- fix: useSignalEffect instead of subscribe by
\\n@lxsmnsyc
in aidenybai/react-scan#247- fix: toolbar schedule by
\\n@lxsmnsyc
in aidenybai/react-scan#250- feat: what changed section UI improvements by
\\n@pivanov
in aidenybai/react-scan#256- make copyright year dynamic in footer by
\\n@ursmahi
in aidenybai/react-scan#262- Add Bun instructions in the README by
\\n@igor9silva
in aidenybai/react-scan#260
... (truncated)
\\n380c387
bump to 0.2.149156832
fix: remove init script that blocks react scan from injecting in cli64d2046
bump dependencies for website04fe679
fix: use react scan logo as faviconfac4fd1
bump to 0.2.13aa4e59d
chore: remove props ordering based on source code in change detectiona0b980c
perf: outlines (#215)d870fa7
bump to 0.2.128431a86
fix: bump bippy to 0.3.8613d6ee
fix: temporary footer color so toolbar is visibleDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s major version (unless you unignore this specific dependency\'s major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency\'s minor version (unless you unignore this specific dependency\'s minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditionsBumps @tanstack/query-sync-storage-persister from 5.66.4 to 5.67.3.
\\nSourced from @tanstack/query-sync-storage-persister
\'s releases.
\\n\\nv5.67.3
\\nVersion 5.67.3 - 3/11/25, 5:19 PM
\\nChanges
\\nRefactor
\\n\\n
\\n- types: restore missing readonly (#8783) (79496dd) by Yoomin Kang
\\nTest
\\n\\n
\\n- query-core: use fake timers for infiniteQueryObserver.test.tsx (#8775) (36eca99) by
\\n@manudeli
- query-core: use fake timers for queryCache.test.tsx (#8779) (2c8cf3c) by
\\n@manudeli
- query-core: use fake timer for notifyManager.test.tsx (#8773) (dcfc100) by
\\n@manudeli
- query-core: use fake timers for query.test.tsx (#8727) (0511c82) by
\\n@manudeli
- query-core: add test case for queryClient.isMutating (#8726) (4140898) by
\\n@manudeli
- react-query: add test case for useQuery (#8729) (887820c) by
\\n@manudeli
Docs
\\n\\n
\\n- angular-query: angular examples improvements (#8782) (79608f3) by Arnoud
\\n- react-query: fix incorrect link in documentation (#8699) (8bfa77b) by Harry
\\n- Fix community resource links in important Defaults page. (#8697) (4fb781f) by Raj Suhail
\\n- Fix 404 link for Query Keys in useQuery.md (#8769) (67e52cf) by Joseph Markus
\\n- Update ssr.md (#8770) (d85ee75) by Sina Sepahvand
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.67.3- \\n
@tanstack/react-query
@5
.67.3- \\n
@tanstack/query-broadcast-client-experimental
@5
.67.3- \\n
@tanstack/query-persist-client-core
@5
.67.3- \\n
@tanstack/query-sync-storage-persister
@5
.67.3- \\n
@tanstack/react-query-devtools
@5
.67.3- \\n
@tanstack/react-query-persist-client
@5
.67.3- \\n
@tanstack/react-query-next-experimental
@5
.67.3- \\n
@tanstack/solid-query
@5
.67.3- \\n
@tanstack/solid-query-devtools
@5
.67.3- \\n
@tanstack/solid-query-persist-client
@5
.67.3- \\n
@tanstack/svelte-query
@5
.67.3- \\n
@tanstack/svelte-query-devtools
@5
.67.3- \\n
@tanstack/svelte-query-persist-client
@5
.67.3- \\n
@tanstack/vue-query
@5
.67.3- \\n
@tanstack/vue-query-devtools
@5
.67.3- \\n
@tanstack/angular-query-experimental
@5
.67.3- \\n
@tanstack/query-async-storage-persister
@5
.67.3- \\n
@tanstack/angular-query-devtools-experimental
@5
.67.3v5.67.2
\\nVersion 5.67.2 - 3/7/25, 10:56 AM
\\n\\n
... (truncated)
\\nDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @iconify-json/simple-icons from 1.2.25 to 1.2.28.
\\nDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @fastify/request-context from 6.0.2 to 6.1.0.
\\nSourced from @fastify/request-context
\'s releases.
\\n\\nv6.1.0
\\nWhat\'s Changed
\\n\\n
\\n- build(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.0.1 by
\\n@dependabot
in fastify/fastify-request-context#209- build(dependabot): reduce npm updates to monthly by
\\n@Fdawgs
in fastify/fastify-request-context#210- chore: rename master to main by
\\n@Fdawgs
in fastify/fastify-request-context#212- test: moved everything to node test runner by
\\n@ilteoood
in fastify/fastify-request-context#214- feat: expose getStore() by
\\n@Eomm
in fastify/fastify-request-context#215New Contributors
\\n\\n
\\n- \\n
@ilteoood
made their first contribution in fastify/fastify-request-context#214Full Changelog: https://github.com/fastify/fastify-request-context/compare/v6.0.2...v6.1.0
\\n
05b3a07
Bumped v6.1.00244b63
feat: expose getStore() (#215)150564a
test: moved everything to node test runner (#214)194a5a7
chore: rename master to main (#212)02d9baa
build(dependabot): reduce npm updates to monthly (#210)a0feac9
build(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.0.1 (#209)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps unist-util-visit-parents from 5.1.3 to 6.0.1.
\\nSourced from unist-util-visit-parents\'s releases.
\\n\\n\\n6.0.1
\\nFix
\\n\\n
\\n- 48f0dc0 Fix TSC generating broken
\\n.d.ts
filesFull Changelog: https://github.com/syntax-tree/unist-util-visit-parents/compare/6.0.0...6.0.1
\\n6.0.0
\\nChange
\\n\\n
\\n- 04a70a3 Update
\\n@types/unist
\\nmigrate: update too- 8beaeb8 Change to require Node.js 16\\nmigrate: update too
\\n- 002ffa4 Change to use
\\nexport
map\\nmigrate: don’t use private APIs- 323984d Change to remove
\\ncomplex-types.d.ts
\\nmigrate: use the main export instead- adf39ed Add support for inferring type of parents\\nmigrate: let TS infer types
\\nFix
\\n\\n
\\n- 766107b Fix performance of
\\nInclusiveDescendant
typeFull Changelog: https://github.com/syntax-tree/unist-util-visit-parents/compare/5.1.3...6.0.0
\\n
58e20d8
6.0.148f0dc0
Fix TSC generating broken .d.ts
filesd8e1388
6.0.004a70a3
Update @types/unist
8beaeb8
Change to require Node.js 16002ffa4
Change to use export
mapc5a927c
Refactor docs433b009
Remove xo
rulesadf39ed
Add support for inferring type of parents323984d
Change to remove complex-types.d.ts
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps remark-directive from 3.0.1 to 4.0.0.
\\nSourced from remark-directive\'s releases.
\\n\\n\\n4.0.0
\\n\\n
\\n- 0171c8a Update
\\nmicromark-extension-directive
\\nmigrate: if you handle labels, and do not want trailing whitespace, you can.trimEnd()
Full Changelog: https://github.com/remarkjs/remark-directive/compare/3.0.1...4.0.0
\\n
23b8f41
4.0.0b72e967
Refactor docs0171c8a
Update micromark-extension-directive
a467d46
Update dev-dependenciesDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps tldts from 6.1.77 to 6.1.84.
\\nSourced from tldts\'s releases.
\\n\\n\\nv6.1.84
\\n:scroll: Update Public Suffix List
\\n\\nAuthors: 1
\\n\\n
\\n- Rémi (
\\n@remusao
)v6.1.83
\\n:scroll: Update Public Suffix List
\\n\\nAuthors: 1
\\n\\n
\\n- Rémi (
\\n@remusao
)v6.1.82
\\n:scroll: Update Public Suffix List
\\n\\n
\\n- \\n
tldts-tests
\\n\\n- \\n
tldts-tests
,tldts-utils
\\n\\nAuthors: 1
\\n\\n
\\n- Rémi (
\\n@remusao
)v6.1.80
\\n:scroll: Update Public Suffix List
\\n\\n
\\n- \\n
tldts-experimental
,tldts-icann
,tldts
\\n\\n:nut_and_bolt: Dependencies
\\n\\n
\\n- Bump rollup from 4.32.1 to 4.34.8 #2280 (
\\n@dependabot[bot]
)- Bump lerna from 8.1.9 to 8.2.0 #2281 (
\\n@dependabot[bot]
)- Bump
\\n@types/node
from 22.12.0 to 22.13.5 #2285 (@dependabot[bot]
)Authors: 2
\\n\\n
\\n\\n- \\n
@dependabot[bot]
- Rémi (
\\n@remusao
)
... (truncated)
\\nSourced from tldts\'s changelog.
\\n\\n\\nv6.1.84 (Mon Mar 10 2025)
\\n:scroll: Update Public Suffix List
\\n\\nAuthors: 1
\\n\\n
\\n- Rémi (
\\n@remusao
)
\\nv6.1.83 (Thu Mar 06 2025)
\\n:scroll: Update Public Suffix List
\\n\\nAuthors: 1
\\n\\n
\\n- Rémi (
\\n@remusao
)
\\nv6.1.81 (Sat Mar 01 2025)
\\n:scroll: Update Public Suffix List
\\n\\n
\\n- \\n
tldts-tests
\\n\\n- \\n
tldts-tests
,tldts-utils
\\n\\nAuthors: 1
\\n\\n
\\n- Rémi (
\\n@remusao
)
\\nv6.1.80 (Sat Mar 01 2025)
\\n:scroll: Update Public Suffix List
\\n\\n
\\n- \\n
tldts-experimental
,tldts-icann
,tldts
\\n\\n:nut_and_bolt: Dependencies
\\n\\n
... (truncated)
\\n2f1a257
Bump version to: v6.1.84 [skip ci]5199326
Update CHANGELOG.md [skip ci]895f308
Update upstream public suffix list (#2298)64f7b07
Bump version to: v6.1.83 [skip ci]6e7bd94
Update CHANGELOG.md [skip ci]b84cd4d
Update upstream public suffix list (#2297)73ad604
Bump version to: v6.1.82 [skip ci]b9cafc9
Update CHANGELOG.md [skip ci]1ceedc7
Fix scope (#2291)6895423
Fix bundle (#2290)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps @sentry/react from 9.1.0 to 9.5.0.
\\nSourced from @sentry/react
\'s releases.
\\n\\n9.5.0
\\nImportant Changes
\\nWe found some issues with the new feedback screenshot annotation where screenshots are not being generated properly. Due to this issue, we are reverting the feature.
\\n\\nOther Changes
\\n\\n
\\n- Add cloudflare adapter detection and path generation (#15603)
\\n- deps(nextjs): Bump rollup to
\\n4.34.9
(#15589)- feat(bun): Automatically add performance integrations (#15586)
\\n- feat(replay): Bump rrweb to 2.34.0 (#15580)
\\n- fix(browser): Call original function on early return from patched history API (#15576)
\\n- fix(nestjs): Copy metadata in custom decorators (#15598)
\\n- fix(react-router): Fix config type import (#15583)
\\n- fix(remix): Use correct types export for
\\n@sentry/remix/cloudflare
(#15599)- fix(vue): Attach Pinia state only once per event (#15588)
\\nWork in this release was contributed by
\\n@msurdi-a8c
,@namoscato
, and@rileyg98
. Thank you for your contributions!Bundle size 📦
\\n\\n\\n
\\n\\n\\n \\n\\n\\nPath \\nSize \\n\\n \\n\\n @sentry/browser
23.14 KB \\n\\n \\n\\n @sentry/browser
- with treeshaking flags22.93 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing)36.2 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay)73.38 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay) - with treeshaking flags66.79 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay with Canvas)78 KB \\n\\n \\n\\n @sentry/browser
(incl. Tracing, Replay, Feedback)90.56 KB \\n\\n \\n\\n @sentry/browser
(incl. Feedback)40.29 KB \\n\\n \\n\\n @sentry/browser
(incl. sendFeedback)27.78 KB \\n\\n \\n\\n @sentry/browser
(incl. FeedbackAsync)32.57 KB \\n\\n \\n\\n @sentry/react
24.96 KB \\n\\n \\n\\n @sentry/react
(incl. Tracing)38.09 KB \\n\\n \\n\\n @sentry/vue
27.38 KB \\n\\n \\n\\n @sentry/vue
(incl. Tracing)37.89 KB \\n\\n \\n\\n @sentry/svelte
23.17 KB \\n\\n \\nCDN Bundle \\n24.35 KB \\n\\n \\nCDN Bundle (incl. Tracing) \\n36.25 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) \\n71.26 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) \\n76.43 KB \\n\\n \\nCDN Bundle - uncompressed \\n71.14 KB \\n\\n \\nCDN Bundle (incl. Tracing) - uncompressed \\n107.52 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay) - uncompressed \\n218.79 KB \\n\\n \\nCDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed \\n231.36 KB \\n\\n \\n\\n @sentry/nextjs
(client)39.26 KB \\n\\n \\n\\n\\n @sentry/sveltekit
(client)36.62 KB \\n
... (truncated)
\\nSourced from @sentry/react
\'s changelog.
\\n\\n9.5.0
\\nImportant Changes
\\nWe found some issues with the new feedback screenshot annotation where screenshots are not being generated properly. Due to this issue, we are reverting the feature.
\\n\\nOther Changes
\\n\\n
\\n- Add cloudflare adapter detection and path generation (#15603)
\\n- deps(nextjs): Bump rollup to
\\n4.34.9
(#15589)- feat(bun): Automatically add performance integrations (#15586)
\\n- feat(replay): Bump rrweb to 2.34.0 (#15580)
\\n- fix(browser): Call original function on early return from patched history API (#15576)
\\n- fix(nestjs): Copy metadata in custom decorators (#15598)
\\n- fix(react-router): Fix config type import (#15583)
\\n- fix(remix): Use correct types export for
\\n@sentry/remix/cloudflare
(#15599)- fix(vue): Attach Pinia state only once per event (#15588)
\\nWork in this release was contributed by
\\n@msurdi-a8c
,@namoscato
, and@rileyg98
. Thank you for your contributions!9.4.0
\\n\\n
\\n- feat(core): Add types for logs protocol and envelope (#15530)
\\n- feat(deps): Bump
\\n@sentry/cli
from 2.41.1 to 2.42.2 (#15510)- feat(deps): Bump
\\n@sentry/webpack-plugin
from 3.1.2 to 3.2.1 (#15512)- feat(feedback) Allowing annotation via highlighting & masking (#15484)
\\n- feat(nextjs): Add
\\nuse client
directive to client SDK entrypoints (#15575)- feat(nextjs): Allow silencing of instrumentation warning (#15555)
\\n- feat(sveltekit): Ensure
\\nAsyncLocalStorage
async context strategy is used in Cloudflare Pages (#15557)- fix(cloudflare): Make
\\n@cloudflare/workers-types
an optional peer dependency (#15554)- fix(core): Don\'t reverse values in event filters (#15584)
\\n- fix(core): Handle normalization of null prototypes correctly (#15556)
\\n- fix(nextjs): Only warn on missing
\\nonRequestError
in version 15 (#15553)- fix(node): Allow for
\\nundefined
transport to be passed in (#15560)- fix(wasm): Fix wasm integration stacktrace parsing for filename (#15572)
\\n- perf(node): Store normalized request for processing (#15570)
\\n9.3.0
\\nImportant Changes
\\nWith this release we\'re publishing two new SDKs in experimental alpha stage:
\\n\\n
\\n- feat(tanstackstart): Add TanStack Start SDK (#15523)
\\nFor details please refer to the README
\\n\\n
\\n\\n- feat(react-router): Add React Router SDK (#15524)
\\n
... (truncated)
\\n0bf31c8
release: 9.5.0aba909b
Merge pull request #15611 from getsentry/prepare-release/9.5.079a1eef
meta(changelog): Update changelog for 9.5.08d9f523
Revert \\"feat(feedback) Allowing annotation via highlighting & masking (#15484...44a3507
chore: Add external contributor to CHANGELOG.md (#15606)a4371a2
chore: Add external contributor to CHANGELOG.md (#15595)e3692a4
Add cloudflare adapter detection and path generation (#15603)e68cbec
chore: Add external contributor to CHANGELOG.md (#15604)07d23bf
fix(react-router): Fix config type import (#15583)f377496
fix(remix): Use correct types export for @sentry/remix/cloudflare
(#15599)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @better-auth/expo from 1.1.18 to 1.2.3.
\\n\\nDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps vitest from 3.0.6 to 3.0.8.
\\nSourced from vitest\'s releases.
\\n\\n\\nv3.0.8
\\n🐞 Bug Fixes
\\n\\n
\\n- Fix fetch cache multiple writes - by
\\n@hi-ogawa
in vitest-dev/vitest#7546 (1a8b4)- Use browser.isolate instead of config.isolate - by
\\n@sheremet-va
in vitest-dev/vitest#7560 (4b5ed)- Remove vestigial spy stub, import directly from
\\n@vitest/spy
- by@mrginglymus
in vitest-dev/vitest#7575 (7f7ff)- Correctly split the argv string - by
\\n@btea
in vitest-dev/vitest#7533 (4325a)- browser:\\n
\\n\\n
\\n- Remove
\\n@testing-library/dom
from dependencies - by@sheremet-va
in vitest-dev/vitest#7555 (5387a)- Improve source map handling for bundled files - by
\\n@sheremet-va
in vitest-dev/vitest#7534 (e2c57)- Print related test file and potential test in unhandled errors - by
\\n@sheremet-va
in vitest-dev/vitest#7564 (fee90)- runner:\\n
\\n\\n
\\n- Fix
\\nbeforeEach/All
cleanup callback timeout - by@hi-ogawa
in vitest-dev/vitest#7500 (0c292)- Fix and simplify
\\nTask.suite
initialization - by@hi-ogawa
in vitest-dev/vitest#7414 (ca9ff)- snapshot:\\n
\\n\\n
\\n- Allow inline snapshot calls on same location with same snapshot - by
\\n@jycouet
and@hi-ogawa
in vitest-dev/vitest#7464 (d5cb8)- vite-node:\\n
\\n\\n
\\n- Fix
\\nbuildStart
on Vite 6 - by@hi-ogawa
in vitest-dev/vitest#7480 (c0f47)View changes on GitHub
\\nv3.0.7
\\n🐞 Bug Fixes
\\n\\n
\\n- browser: Support webdriverio 9 - by
\\n@sheremet-va
in vitest-dev/vitest#7553 (b1949)- deps: Update all non-major dependencies - in vitest-dev/vitest#7543 (365ff)
\\n- expect: Correct generic MatchersObject this type in expect.extend - by
\\n@Workingstiff-s
in vitest-dev/vitest#7526 (d5765)- mocker: Include more modules to prefix-only module list - by
\\n@btea
in vitest-dev/vitest#7524 (a12ec)- spy: Clear/reset/restore mocks in stack order - by
\\n@hi-ogawa
in vitest-dev/vitest#7499 (f7100)🏎 Performance
\\n\\n
\\n- browser: Do wdio context switching only once per file - by
\\n@sheremet-va
in vitest-dev/vitest#7549 (aaa58)View changes on GitHub
\\n
814d5df
chore: release v3.0.857c3234
chore: remove hijackVitePluginInject (#7613)1a88b1b
chore(deps): update dependency strip-literal to v3 (#7601)4325ac6
fix: correctly split the argv string (#7533)7f7ff11
fix: remove vestigial spy stub, import directly from @vitest/spy
(#7575)fee90d8
fix(browser): print related test file and potential test in unhandled errors ...1a8b433
fix: fix fetch cache multiple writes (#7546)358cccf
chore: release v3.0.7365ffe6
fix(deps): update all non-major dependencies (#7543)aaa5855
perf(browser): do wdio context switching only once per file (#7549)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps vite-plugin-mkcert from 1.17.6 to 1.17.7.
\\nSourced from vite-plugin-mkcert\'s releases.
\\n\\n\\nv1.17.7
\\n1.17.7 (2025-02-28)
\\nBug Fixes
\\n\\n
Sourced from vite-plugin-mkcert\'s changelog.
\\n\\n\\n1.17.7 (2025-02-28)
\\nBug Fixes
\\n\\n
c5b68a4
chore(release): 1.17.7 [skip ci]c1b4468
fix: Remove @octokit/rest
to fix security vulnerabilityc6b10a4
chore: update dist28abe20
chore: rename script dir58dcd10
chore: remove packageManagerf25dd77
docs: remove nuxt.js quickstart in readme (#104)dd6a085
chore: fix exports out of order954e904
chore: updateDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @lottiefiles/dotlottie-react from 0.13.0 to 0.13.2.
\\nSourced from @lottiefiles/dotlottie-react
\'s releases.
\\n\\n\\n
@lottiefiles/dotlottie-react
@0
.13.2Patch Changes
\\n\\n
\\n- 956eedb: fix: TypeError caused by passing empty or incomplete
\\nlayout
props toDotLottieReact
component- Updated dependencies [956eedb]\\n
\\n\\n
\\n- \\n
@lottiefiles/dotlottie-web
@0
.41.0\\n
@lottiefiles/dotlottie-react
@0
.13.1-pre.0Patch Changes
\\n\\n
\\n- Updated dependencies [fd3ffbf]\\n
\\n\\n
\\n- \\n
@lottiefiles/dotlottie-web
@0
.41.0-pre.0
Sourced from @lottiefiles/dotlottie-react
\'s changelog.
\\n\\n0.13.2
\\nPatch Changes
\\n\\n
\\n- 956eedb: fix: TypeError caused by passing empty or incomplete
\\nlayout
props toDotLottieReact
component- Updated dependencies [956eedb]\\n
\\n\\n
\\n- \\n
@lottiefiles/dotlottie-web
@0
.41.00.13.1
\\nPatch Changes
\\n\\n
\\n- Updated dependencies [7e6b460]
\\n- Updated dependencies [7e6b460]\\n
\\n\\n
\\n- \\n
@lottiefiles/dotlottie-web
@0
.40.2
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps electron-log from 5.3.0 to 5.3.2.
\\n670685c
5.3.2dc90cc2
fix(main): Deprecation message after upgrading Electron to 35, fixes #4592bea837
5.3.11133619
fix(renderer): Inconsistent console.format callback type, fixes #45817e8e91
feat(docs): Use logger in preload, closes #453f7a20b5
fix(e2e): Downgrade vite to support old nodejsbf49ba7
5.3.06f1b4f8
fix(renderer): Renderer transport should support transforms, fixes #4525fbc131
fix: check web content is crashed or not before call ipc send (#448)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @auth/core from 0.37.4 to 0.38.0.
\\nSourced from @auth/core
\'s releases.
\\n\\n\\n
@auth/core
@0
.38.0Features
\\n\\n
\\n- core: add default cache control headers for GET endpoints (#11667) (af2cceac)
\\n- provider: add Figma provider (#12529) (14dfaf36)
\\n- provider: add Logto provider (#12534) (dcaaf1ab)
\\n- provider: add Bitbucket provider (#12198) (6a72f3d0)
\\n- provider: add Frontegg provider (#11342) (517c877e)
\\n- providers: Add Loops Email Provider and Documentation (#11197) (3ec06842)
\\nBugfixes
\\n\\n
\\n- core: handle an error inside
\\nparseProviders()
whenproviderId
not found in config (#12438) (80a2c147)- pages: recouple button theme to colorScheme and fix appearance for some logos in dark mode (#12537) (b0f15383)
\\n- ts: make User interface overridable using module augmentation (#12472) (77723759)
\\n- \\"state is not specified\\" error when using LINE provider (#12703)
\\n- add a missed instance of allowInsecureRequests (#12276)
\\n- More descriptive error in case that discovery endpoint returns an invalid issuer (#12611)
\\n- improve client-side submodules (#12249)
\\nOther
\\n\\n
\\n- deps: bump oauth4webapi from 3.1.4 to 3.3.0 (#12698) (5a2f595c)
\\n- deps: bump jose from 5.9.6 to 6.0.6 (#12699) (6aefefd3)
\\n- deps: bump oauth4webapi from 3.1.3 to 3.1.4 (#12359) (e2311681)
\\n- deps: bump oauth4webapi from 3.1.1 to 3.1.3 (#12261) (9411046e)
\\n- docs: fixes appearance for some logos in dark mode (#12379) (2f86dfdc)
\\n- docs: add missing bracket and run
\\nformat
(#12302) (7c20f022)- providers: formatting tiktok (507aadda)
\\n- providers: Downgrade requested OAuth scope of TikTok provider (#12608) (2465101a)
\\n- providers: remove console.log in WeChat provider (#12431) (9dbc9ba7)
\\n- Fix incorrect URL in error page documentation comment (#12502)
\\n- exclude inherits, update deps (#12628)
\\n- Revert \\"docs: exclude inherits, update deps (#12628)\\" (#12645)
\\n
3664aa5
chore(release): bump package version(s) [skip ci]e17fc74
docs: GitHub and TypeScript typo (#12678)887c28c
fix: \\"state is not specified\\" error when using LINE provider (#12703)5a2f595
chore(deps): bump oauth4webapi from 3.1.4 to 3.3.0 (#12698)6aefefd
chore(deps): bump jose from 5.9.6 to 6.0.6 (#12699)fdbc96a
fix: Correct name of Adapter (#12648)af2ccea
feat(core): add default cache control headers for GET endpoints (#11667)ec57440
docs: Update README.md4234129
fix(docs): broken link for Postmark API key (#12651)d47bb20
Revert \\"docs: exclude inherits, update deps (#12628)\\" (#12645)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps cookie-es from 1.2.2 to 2.0.0.
\\nSourced from cookie-es\'s releases.
\\n\\n\\nv2.0.0
\\n\\n📦 Build
\\n\\n
\\n- ⚠️ ESM-only dist (ec71b10)
\\n
Sourced from cookie-es\'s changelog.
\\n\\n\\nv2.0.0
\\n\\n📦 Build
\\n\\n
\\n- ⚠️ Esm-only dist (ec71b10)
\\n🏡 Chore
\\n\\n
\\n- Lint (8145628)
\\n- Update deps (90b3705)
\\n- Apply automated updates (2ec765a)
\\n- Update automd (bac21a6)
\\n- Update deps (9c768f9)
\\n- Update ci (ab64740)
\\n- Update readme (c639c55)
\\n⚠️ Breaking Changes
\\n\\n
\\n- ⚠️ Esm-only dist (ec71b10)
\\n❤️ Contributors
\\n\\n
\\n- Pooya Parsa (
\\n@pi0
)
06138ce
chore(release): v2.0.0c639c55
chore: update readme1920de8
chore(deps): update codecov/codecov-action action to v5 (#59)ec71b10
build!: esm-only distab64740
chore: update ci9c768f9
chore: update deps6a3455e
chore(deps): update devdependency eslint to ^9.19.0 (#69)fdd0d94
chore(deps): update all non-major dependencies (#67)79cb5c3
chore(deps): update autofix-ci/action digest to 551dded (#66)ae11212
chore(deps): update pnpm to v9.15.3 (#65)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps sonner from 2.0.0 to 2.0.1.
\\nSourced from sonner\'s releases.
\\n\\n\\nv2.0.1
\\nWhat\'s Changed
\\n\\n
\\n- fix: flush sync error by
\\n@emilkowalski
in emilkowalski/sonner#586- fix: allow users to select text after swipe gesture by
\\n@emilkowalski
in emilkowalski/sonner#587Full Changelog: https://github.com/emilkowalski/sonner/compare/v2.0.0...v2.0.1
\\n
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps unplugin-ast from 0.14.0 to 0.14.3.
\\nSourced from unplugin-ast\'s releases.
\\n\\n\\nv0.14.3
\\nNo significant changes
\\nView changes on GitHub
\\nv0.14.2
\\nNo significant changes
\\nView changes on GitHub
\\nv0.14.1
\\nNo significant changes
\\nView changes on GitHub
\\n
f655ab8
chore: release v0.14.310d2dc0
refactor: inline @antfu/utils
48fb2bd
chore: release v0.14.21d24e28
chore: upgrade deps4f968ac
chore: add author & funding linkefcede6
chore: release v0.14.1132dab3
chore: upgrade depsbb952cd
ci: type-checkDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps zeego from 3.0.3 to 3.0.5.
\\nSourced from zeego\'s releases.
\\n\\n\\n3.0.5
\\nFix up 3.0.4 logic a bit, allow numbers and handle nullish checks for children
\\n3.0.4
\\nSimple fix:
\\n\\n<DropdownMenu.ItemTitle>Block {username}</DropdownMenu.ItemTitle>\\n
This syntax of using a variable as a child of
\\nItemTitle
used to throw an error. Now it works.
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps hast-util-to-jsx-runtime from 2.3.2 to 2.3.6.
\\nSourced from hast-util-to-jsx-runtime\'s releases.
\\n\\n\\n2.3.6
\\n\\n
\\n- 90fde6c Refactor to externalize some code\\nby
\\n@remcohaszing
in syntax-tree/hast-util-to-jsx-runtime#11Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.5...2.3.6
\\n2.3.5
\\n\\n
\\n- d25e00a Remove no longer working type hack
\\nFull Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.4...2.3.5
\\n2.3.4
\\nTypes
\\n\\n
\\n- bf5ccaa Fix type error if
\\nJSX
is not definedFull Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.3...2.3.4
\\n2.3.3
\\n\\n
\\n- da03821 Update
\\nproperty-information
Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.2...2.3.3
\\n
b0920cd
2.3.690fde6c
Refactor to externalize some code09c32dc
2.3.5d25e00a
Remove no longer working type hack5271dd5
2.3.4bf5ccaa
Fix type error if JSX
is not defined4a0148e
2.3.31c5bb11
Refactor docs644db29
Update React in dev-dependenciesda03821
Update property-information
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps lint-staged from 15.4.3 to 15.5.0.
\\nSourced from lint-staged\'s releases.
\\n\\n\\nv15.5.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#1526
\\n630af5f
Thanks@iiroj
! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.Example with Prettier
\\nBy default Prettier prefers double quotes.
\\nPreviously
\\n\\n
\\n- Stage
\\nfile.js
with only double quotes\\"
changed to\'
- Run
\\ngit commit -am \\"I don\'t like double quotes\\"
- Lint-staged runs
\\nprettier --write file.js
, converting all the\'
back to\\"
- Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
\\n- Commit was not done, original state is restored and single quotes
\\n\'
are stagedNow
\\n\\n
\\n- Stage
\\nfile.js
with only double-quotes\\"
changed to\'
- Run
\\ngit commit -am \\"I don\'t like double quotes\\"
- Lint-staged runs
\\nprettier --write file.js
, converting all the\'
back to\\"
- Because there are now no changes, lint-staged fails and cancels the commit
\\n- Commit was not done, and there are no staged changes
\\n
Sourced from lint-staged\'s changelog.
\\n\\n\\n15.5.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\n#1526
\\n630af5f
Thanks@iiroj
! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.Example with Prettier
\\nBy default Prettier prefers double quotes.
\\nPreviously
\\n\\n
\\n- Stage
\\nfile.js
with only double quotes\\"
changed to\'
- Run
\\ngit commit -am \\"I don\'t like double quotes\\"
- Lint-staged runs
\\nprettier --write file.js
, converting all the\'
back to\\"
- Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
\\n- Commit was not done, original state is restored and single quotes
\\n\'
are stagedNow
\\n\\n
\\n- Stage
\\nfile.js
with only double-quotes\\"
changed to\'
- Run
\\ngit commit -am \\"I don\'t like double quotes\\"
- Lint-staged runs
\\nprettier --write file.js
, converting all the\'
back to\\"
- Because there are now no changes, lint-staged fails and cancels the commit
\\n- Commit was not done, and there are no staged changes
\\n
7e6abe4
chore(changeset): release0ebfa69
build(deps): update dependencies630af5f
feat: do not reset to original state when preventing empty commit7b8be70
chore: update default branch references from \\"master\\" to \\"main\\"362a78d
docs: add workaround for tsc ignoring tsconfig.json issue to README FAQ (#1523)e013823
fix: \\"node_modules\\" typo in eslint.config.js67019ee
test: add integration test to ensure unmodified merged files are not linted (...366f8bd
refactor: move TypeScript types to \\"index.d.ts\\" file85ea6a4
docs: adjust readme regarding monorepo setupDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps @tanstack/react-query from 5.66.7 to 5.67.3.
\\nSourced from @tanstack/react-query
\'s releases.
\\n\\nv5.67.3
\\nVersion 5.67.3 - 3/11/25, 5:19 PM
\\nChanges
\\nRefactor
\\n\\n
\\n- types: restore missing readonly (#8783) (79496dd) by Yoomin Kang
\\nTest
\\n\\n
\\n- query-core: use fake timers for infiniteQueryObserver.test.tsx (#8775) (36eca99) by
\\n@manudeli
- query-core: use fake timers for queryCache.test.tsx (#8779) (2c8cf3c) by
\\n@manudeli
- query-core: use fake timer for notifyManager.test.tsx (#8773) (dcfc100) by
\\n@manudeli
- query-core: use fake timers for query.test.tsx (#8727) (0511c82) by
\\n@manudeli
- query-core: add test case for queryClient.isMutating (#8726) (4140898) by
\\n@manudeli
- react-query: add test case for useQuery (#8729) (887820c) by
\\n@manudeli
Docs
\\n\\n
\\n- angular-query: angular examples improvements (#8782) (79608f3) by Arnoud
\\n- react-query: fix incorrect link in documentation (#8699) (8bfa77b) by Harry
\\n- Fix community resource links in important Defaults page. (#8697) (4fb781f) by Raj Suhail
\\n- Fix 404 link for Query Keys in useQuery.md (#8769) (67e52cf) by Joseph Markus
\\n- Update ssr.md (#8770) (d85ee75) by Sina Sepahvand
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.67.3- \\n
@tanstack/react-query
@5
.67.3- \\n
@tanstack/query-broadcast-client-experimental
@5
.67.3- \\n
@tanstack/query-persist-client-core
@5
.67.3- \\n
@tanstack/query-sync-storage-persister
@5
.67.3- \\n
@tanstack/react-query-devtools
@5
.67.3- \\n
@tanstack/react-query-persist-client
@5
.67.3- \\n
@tanstack/react-query-next-experimental
@5
.67.3- \\n
@tanstack/solid-query
@5
.67.3- \\n
@tanstack/solid-query-devtools
@5
.67.3- \\n
@tanstack/solid-query-persist-client
@5
.67.3- \\n
@tanstack/svelte-query
@5
.67.3- \\n
@tanstack/svelte-query-devtools
@5
.67.3- \\n
@tanstack/svelte-query-persist-client
@5
.67.3- \\n
@tanstack/vue-query
@5
.67.3- \\n
@tanstack/vue-query-devtools
@5
.67.3- \\n
@tanstack/angular-query-experimental
@5
.67.3- \\n
@tanstack/query-async-storage-persister
@5
.67.3- \\n
@tanstack/angular-query-devtools-experimental
@5
.67.3v5.67.2
\\nVersion 5.67.2 - 3/7/25, 10:56 AM
\\n\\n
... (truncated)
\\n4f76c7c
release: v5.67.379496dd
refactor(types): restore missing readonly (#8783)887820c
test(react-query): add test case for useQuery (#8729)40543e9
release: v5.67.2161f534
chore: ts 5.83ccfa6e
release: v5.67.1c0f27f6
release: v5.67.00bd5240
release: v5.66.112bf7ec6
fix(react-query): add warning when useBaseQuery is called without a queryFn (...0f7510d
release: v5.66.10Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps tsup from 8.3.6 to 8.4.0.
\\nSourced from tsup\'s releases.
\\n\\n\\nv8.4.0
\\n🚀 Features
\\n\\n
\\n- Upgrade svelte and css compiler - by
\\n@DaniAcu
in egoist/tsup#1288 (c3f32)🐞 Bug Fixes
\\n\\n
\\n- Upgrade esbuild to 0.25 - by
\\n@RobinTail
in egoist/tsup#1309 (89c47)View changes on GitHub
\\n
773d27e
chore: release v8.4.089c4780
fix: upgrade esbuild to 0.25 (#1309)0328fd6
chore(deps): update dependency @swc/core
to v1.10.18 (#1243)c3f320e
feat: upgrade svelte and css compiler (#1288)22e4860
chore: upgrade depsd4f133c
ci: remove corepack4066e73
chore: upgrade pnpm612ce12
chore: upgrade cross-spawn to 7.0.6 (#1275)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps turbo from 2.4.2 to 2.4.4.
\\nSourced from turbo\'s releases.
\\n\\n\\nTurborepo v2.4.4
\\n\\nWhat\'s Changed
\\nDocs
\\n\\n
\\n- feat(turborepo): --continue=dependencies-successful by
\\n@jenseng
in vercel/turborepo#10023Changelog
\\n\\n
\\n- fix: update oxc-resolver and fix windows bug by
\\n@NicholasLYang
in vercel/turborepo#9754- chore: add comment about trace fix by
\\n@NicholasLYang
in vercel/turborepo#10040New Contributors
\\n\\n
\\n- \\n
@jenseng
made their first contribution in vercel/turborepo#10023Full Changelog: https://github.com/vercel/turborepo/compare/v2.4.3...v2.4.4
\\nTurborepo v2.4.3
\\n\\nWhat\'s Changed
\\nDocs
\\n\\n
\\n- docs: update ESLint package docs by
\\n@anthonyshew
in vercel/turborepo#9833- docs: new page for examples by
\\n@anthonyshew
in vercel/turborepo#9843- docs: Fix broken link by
\\n@benwaffle
in vercel/turborepo#9857- docs:
\\nschema.json
innode_modules
by@anthonyshew
in vercel/turborepo#9832- docs: keybinds for tui by
\\n@anthonyshew
in vercel/turborepo#9831- docs: experimental flag for
\\nwatch
caching by@anthonyshew
in vercel/turborepo#9830- docs:
\\nboundaries
experimental page by@anthonyshew
in vercel/turborepo#9834- chore(docs): correct syntax error in ESLint configuration example by
\\n@brunocroh
in vercel/turborepo#9870- docs: fix dangling sentence by
\\n@anthonyshew
in vercel/turborepo#9902- docs(boundaries): boundaries tags docs by
\\n@NicholasLYang
in vercel/turborepo#9959- docs(repo): add section on filtering to include dependencies by
\\n@ddeltree
in vercel/turborepo#9964- docs(repo): add JSON Schema to
\\nturbo.json
ref insingle-package-workspaces.mdx
by@yamcodes
in vercel/turborepo#9926- docs: clarify login url usage by
\\n@anthonyshew
in vercel/turborepo#9963- docs: correct
\\n--affected
flag equivalent by@anthonyshew
in vercel/turborepo#9969- docs: update wording for using
\\n--affected
filter by@taesungh
in vercel/turborepo#9591- fix(docs): correct grammar in turborepo setup message by
\\n@Naresh-Khatri
in vercel/turborepo#9984- docs: update TypeScript wildcard recommendations by
\\n@anthonyshew
in vercel/turborepo#9983- feat(login): add
\\n--manual
flag by@chris-olszewski
in vercel/turborepo#9998- docs: add
\\n--manual
flag mention to self-hosting section by@anthonyshew
in vercel/turborepo#10009- docs: remove extra quotation mark by
\\n@anthonyshew
in vercel/turborepo#10010- docs: remove --continue mention with --parallel by
\\n@anthonyshew
in vercel/turborepo#10015- docs: more insightful leadin for Nx doc by
\\n@anthonyshew
in vercel/turborepo#10017- docs: corrections for Nx page by
\\n@anthonyshew
in vercel/turborepo#10019- docs(prune): document how prune differs from pnpm deploy by
\\n@chris-olszewski
in vercel/turborepo#10022- docs: update Nx page on dependency recommendations by
\\n@anthonyshew
in vercel/turborepo#10034create-turbo
\\n\\n
\\n- feat(create-turbo): fix official examples by
\\n@tknickman
in vercel/turborepo#9837- chore: move
\\ncreate-turbo
community note and format it better by@anthonyshew
in vercel/turborepo#9836- chore: update copyright year to 2025 by
\\n@wmjae
in vercel/turborepo#10026\\n\\n
@turbo/codemod
... (truncated)
\\nd195d73
publish 2.4.4 to registry565f90a
feat(turborepo): --continue=dependencies-successful (#10023)20736f9
chore: add comment about trace fix (#10040)3606f1d
fix: update oxc-resolver and fix windows bug (#9754)453637f
release(turborepo): 2.4.3 (#10039)ba2c758
release(turborepo): 2.4.3-canary.4 (#10037)5c2a23c
chore: bump Svelte example to Svelte v5 (#9981)4b1d04e
fix(proxy): make proxy task persistent (#10036)67cf6ad
refactor(spaces): no more spaces (#9961)7c991a0
docs: update Nx page on dependency recommendations (#10034)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps nanoid from 5.1.0 to 5.1.3.
\\nSourced from nanoid\'s releases.
\\n\\n\\n5.1.3
\\n\\n
\\n- Fixed React Native support (by
\\n@steida
).5.1.2
\\n\\n
\\n- Fixed module docs.
\\n5.1.1
\\n\\n
\\n- Fixed opaque types support for non-secure generator.
\\n- Added JSR support.
\\n
Sourced from nanoid\'s changelog.
\\n\\n\\n5.1.3
\\n\\n
\\n- Fixed React Native support (by
\\n@steida
).5.1.2
\\n\\n
\\n- Fixed module docs.
\\n5.1.1
\\n\\n
\\n- Fixed opaque types support for non-secure generator.
\\n- Added JSR support.
\\n
32bc9bf
Release 5.1.3 versionfdf72e9
Add 3.x release note8754817
Update dependencies27ee2c4
Fix React Native with Metroc0b7b0c
JSR release only for ESM-only branch4c1e6b0
Release 5.1.2 versiond4fb377
Move module docs to .d.tsa0a1c85
Rename jobb66602e
Release 5.1.1 version6f27f1e
Remove Deno since we support it by JSRDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps autoprefixer from 10.4.20 to 10.4.21.
\\nSourced from autoprefixer\'s releases.
\\n\\n\\n10.4.21
\\n\\n
\\n- Fixed old
\\n-moz-
prefix for:placeholder-shown
(by@Marukome0743
).
Sourced from autoprefixer\'s changelog.
\\n\\n\\n10.4.21
\\n\\n
\\n- Fixed old
\\n-moz-
prefix for:placeholder-shown
(by@Marukome0743
).
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @tanstack/react-query-devtools from 5.66.7 to 5.67.3.
\\nSourced from @tanstack/react-query-devtools
\'s releases.
\\n\\nv5.67.3
\\nVersion 5.67.3 - 3/11/25, 5:19 PM
\\nChanges
\\nRefactor
\\n\\n
\\n- types: restore missing readonly (#8783) (79496dd) by Yoomin Kang
\\nTest
\\n\\n
\\n- query-core: use fake timers for infiniteQueryObserver.test.tsx (#8775) (36eca99) by
\\n@manudeli
- query-core: use fake timers for queryCache.test.tsx (#8779) (2c8cf3c) by
\\n@manudeli
- query-core: use fake timer for notifyManager.test.tsx (#8773) (dcfc100) by
\\n@manudeli
- query-core: use fake timers for query.test.tsx (#8727) (0511c82) by
\\n@manudeli
- query-core: add test case for queryClient.isMutating (#8726) (4140898) by
\\n@manudeli
- react-query: add test case for useQuery (#8729) (887820c) by
\\n@manudeli
Docs
\\n\\n
\\n- angular-query: angular examples improvements (#8782) (79608f3) by Arnoud
\\n- react-query: fix incorrect link in documentation (#8699) (8bfa77b) by Harry
\\n- Fix community resource links in important Defaults page. (#8697) (4fb781f) by Raj Suhail
\\n- Fix 404 link for Query Keys in useQuery.md (#8769) (67e52cf) by Joseph Markus
\\n- Update ssr.md (#8770) (d85ee75) by Sina Sepahvand
\\nPackages
\\n\\n
\\n- \\n
@tanstack/query-core
@5
.67.3- \\n
@tanstack/react-query
@5
.67.3- \\n
@tanstack/query-broadcast-client-experimental
@5
.67.3- \\n
@tanstack/query-persist-client-core
@5
.67.3- \\n
@tanstack/query-sync-storage-persister
@5
.67.3- \\n
@tanstack/react-query-devtools
@5
.67.3- \\n
@tanstack/react-query-persist-client
@5
.67.3- \\n
@tanstack/react-query-next-experimental
@5
.67.3- \\n
@tanstack/solid-query
@5
.67.3- \\n
@tanstack/solid-query-devtools
@5
.67.3- \\n
@tanstack/solid-query-persist-client
@5
.67.3- \\n
@tanstack/svelte-query
@5
.67.3- \\n
@tanstack/svelte-query-devtools
@5
.67.3- \\n
@tanstack/svelte-query-persist-client
@5
.67.3- \\n
@tanstack/vue-query
@5
.67.3- \\n
@tanstack/vue-query-devtools
@5
.67.3- \\n
@tanstack/angular-query-experimental
@5
.67.3- \\n
@tanstack/query-async-storage-persister
@5
.67.3- \\n
@tanstack/angular-query-devtools-experimental
@5
.67.3v5.67.2
\\nVersion 5.67.2 - 3/7/25, 10:56 AM
\\n\\n
... (truncated)
\\nDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps plain-shiki from 0.1.1 to 0.2.0.
\\nSourced from plain-shiki\'s releases.
\\n\\n\\nv0.2.0
\\nChores
\\n\\n
\\n- update deps
\\n
925c083
release: v0.2.0b904827
chore: update depsDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps framer-motion from 12.4.7 to 12.5.0.
\\nSourced from framer-motion\'s changelog.
\\n\\n\\n[12.5.0] 2025-03-11
\\nAdded
\\n\\n
\\n- Added
\\nmotionValue
to vanilla JS entrypoint.Removed
\\n\\n
\\n- Removed
\\nframer-motion-3d
package.[12.4.13] 2025-03-11
\\nFixed
\\n\\n
\\n- Fixed reading initial transform values from elements.
\\n[12.4.12] 2025-03-11
\\nFixed
\\n\\n
\\n- Removed pointer capture from pan and drag gestures.
\\n[12.4.11] 2025-03-10
\\nFixed
\\n\\n
\\n- Preventing flattening of scroll animations when
\\ntype
orease
are explicitly set.[12.4.10] 2025-03-03
\\nFixed
\\n\\n
\\n- Adding UMD bundles for
\\nmotion-dom
andmotion-utils
.[12.4.9] 2025-03-03
\\nFixed
\\n\\n
\\n- Fixed
\\nReorder.Item
reordering causinglostpointercapture
event to fire.[12.4.8] 2025-02-26
\\nFixed
\\n\\n
\\n- Fixed exiting children with
\\nlayoutDependency
not animating layout changes because of a stale layout dependency.
cd754fc
v12.5.07a20d7c
Updating changelogbd8942c
Merge pull request #3111 from motiondivision/feature/vanilla-motion-value3cf5771
reverting rollup changes25ecde0
Latestc3c7d1b
Fixing testsd6494b3
Fixing paths in testsc8f0801
Adding vanilla motionValue2ad1dd7
Moving dependencies3326c0d
Adding vanilla motionValueDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps better-auth from 1.1.18 to 1.2.3.
\\nSourced from better-auth\'s releases.
\\n\\n\\nv1.2.3
\\n🐞 Bug Fixes
\\n\\n
\\n- admin:\\n
\\n\\n
\\n- Missing options parameter on hasPermission checks - by
\\n@jslno
in better-auth/better-auth#1666 (50637)- Require adminRoles option for a role to be considered an admin role - by
\\n@Bekacru
(31c97)- jwt:\\n\\n
\\n- multi-session:\\n\\n
\\n- stripe:\\n\\n
\\nView changes on GitHub
\\nv1.2.3-beta.3
\\n🐞 Bug Fixes
\\n\\n
\\n- admin: Require adminRoles option for a role to be considered an admin role - by
\\n@Bekacru
(31c97)View changes on GitHub
\\nv1.2.3-beta.2
\\n🐞 Bug Fixes
\\n\\nView changes on GitHub
\\nv1.2.3-beta.1
\\n🐞 Bug Fixes
\\n\\n
\\n- admin: Missing options parameter on hasPermission checks - by
\\n@jslno
in better-auth/better-auth#1666 (50637)- jwt: Fallback to newSession when retrieving session token - by
\\n@Bekacru
(f8f13)- multi-session: Use small cased token name for multi-session cookie management - by
\\n@Bekacru
(650d5)- stripe: Improve handling of multiple subscriptions in webhook - by
\\n@Bekacru
(c5c74)View changes on GitHub
\\nv1.2.2
\\n🐞 Bug Fixes
\\n\\n\\n
... (truncated)
\\n7d3440a
chore: release v1.2.3225d94f
chore: release v1.2.3-beta.3c1216a9
demo: add impersonation stop button and admin user configuration31c974a
fix(admin): require adminRoles option for a role to be considered an admin role6851451
chore: release v1.2.3-beta.207b1195
test(multi-session): remove filtered test casese89ec93
test(multi-session): update test cases with improved session handling9863bbe
chore: release v1.2.3-beta.1f8f1340
fix(jwt): fallback to newSession when retrieving session token650d58d
fix(multi-session): use small cased token name for multi-session cookie manag...Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps expo-dev-client from 5.0.12 to 5.0.13.
\\nSourced from expo-dev-client\'s changelog.
\\n\\n\\n5.0.13 - 2025-03-11
\\nThis version does not introduce any user-facing changes.
\\n
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps react-router from 7.2.0 to 7.3.0.
\\nSourced from react-router\'s releases.
\\n\\n\\nv7.3.0
\\nSee the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v730
\\n
Sourced from react-router\'s changelog.
\\n\\n\\n7.3.0
\\nMinor Changes
\\n\\n
\\n- \\n
\\nAdd
\\nfetcherKey
as a parameter topatchRoutesOnNavigation
(#13061)\\n
\\n- In framework mode, Lazy Route Discovery will now detect manifest version mismatches after a new deploy
\\n- On navigations to undiscovered routes, this mismatch will trigger a document reload of the destination path
\\n- On
\\nfetcher
calls to undiscovered routes, this mismatch will trigger a document reload of the current pathPatch Changes
\\n\\n
\\n\\n- \\n
\\nSkip resource route flow in dev server in SPA mode (#13113)
\\n- \\n
\\nSupport middleware on routes (unstable) (#12941)
\\nMiddleware is implemented behind a
\\nfuture.unstable_middleware
flag. To enable, you must enable the flag and the types in yourreact-router-config.ts
file:\\nimport type { Config } from \\"@react-router/dev/config\\";\\nimport type { Future } from \\"react-router\\";\\n
declare module \\"react-router\\" {\\ninterface Future {\\nunstable_middleware: true; // 👈 Enable middleware types\\n}\\n}
\\n
export default {\\nfuture: {\\nunstable_middleware: true, // 👈 Enable middleware\\n},\\n} satisfies Config;\\n
⚠️ Middleware is unstable and should not be adopted in production. There is at least one known de-optimization in route module loading for
\\nclientMiddleware
that we will be addressing this before a stable release.⚠️ Enabling middleware contains a breaking change to the
\\ncontext
parameter passed to yourloader
/action
functions - see below for more information.Once enabled, routes can define an array of middleware functions that will run sequentially before route handlers run. These functions accept the same parameters as
\\nloader
/action
plus an additionalnext
parameter to run the remaining data pipeline. This allows middlewares to perform logic before and after handlers execute.\\n// Framework mode\\nexport const unstable_middleware = [serverLogger, serverAuth]; // server\\nexport const unstable_clientMiddleware = [clientLogger]; // client\\n
// Library mode\\nconst routes = [\\n{\\npath: \\"/\\",\\n
... (truncated)
\\nd3bed18
chore: Update version for release (#13175)c24bc42
chore: Update version for release (pre) (#13174)180d99a
Fix JSDoc types for context (#13170)fb014ce
Remove middleware depth restrictions (#13172)754c304
chore: Update version for release (pre) (#13157)5f6b341
Add support for client context and middleware (unstable) (#12941)57b9ff4
Fix types for loaderData
and actionData
that contain Record
s (#13139)2c5d54d
Skip resource route flow in dev mode when SPA mode is enabled (#13113)05f812b
Detect lazy route discovery manifest version mismatches and trigger reloads (...54147a3
Fix critical CSS with custom Vite.DevEnvironment
(#13066)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @mozilla/readability from 0.5.0 to 0.6.0.
\\nSourced from @mozilla/readability
\'s changelog.
\\n\\n[0.6.0] - 2025-03-03
\\n\\n
\\n- Add Parsely tags as a fallback metadata source
\\n- Fix the case that jsonld parse process is ignored when context url include the trailing slash
\\n- Improve data table support
\\n- Fixed situations where short paragraphs of legitimate content would be excluded
\\n- Add an option to modify link density value
\\n- Byline metadata should lead to not deleting lookalike non-byline content
\\n- Avoid removing headers on gitlab
\\n- Improved HTML character unescaping
\\n- Various performance improvements: #894,\\n#892, #893,\\n#915,
\\n- Fix broken JSONLD context handling
\\n- Include Jekyll footnotes in output
\\n- Handle schema.org context objects
\\n- Fix invalid attributes breaking parsing
\\n- Include article:author metadata
\\n- Handle itemprop=name for author metadata
\\n- Improve typescript definitions
\\n- Handle JSONLD Arrays
\\n
04fd32f
Release 0.6.04d5dd0b
Include recent changes in CHANGELOG.md1c4d63b
Make use of regular expressions in title processing more effective. (#959)04abc79
Bump the npm_and_yarn group with 2 updates (#953)118f015
Handle JSONLD arrays (fixes #908) (#947)8c0ff87
Add null | undefined to parse results. Fixes #937 (#944)706c3d1
Extract author name from itemprop=\'name\'. (#943)af54155
Drop flagged key copied from public website.fbcc3bc
More changelog goodness.b6ff1b6
Handle article:author meta tag. Fixes #938 (#942)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps vfile from 5.3.7 to 6.0.3.
\\nSourced from vfile\'s releases.
\\n\\n\\n6.0.3
\\n\\n
\\n- 467f480 Remove unused dependency\\nby
\\n@bluwy
in vfile/vfile#91Full Changelog: https://github.com/vfile/vfile/compare/6.0.2...6.0.3
\\n6.0.2
\\nPerformance
\\n\\n
\\n- aeae47e Refactor to prevent calling
\\ncwd
if not neededMiscellaneous
\\n\\n
\\n- f364b8f Refactor to use import maps
\\nTypes
\\n\\n
\\n- 9370bac Add declaration maps
\\n- 7a42da4 Refactor types
\\nFull Changelog: https://github.com/vfile/vfile/compare/6.0.1...6.0.2
\\n6.0.1
\\nTypes
\\n\\n
\\n- f9f3c8f Update
\\n@types/unist
Full Changelog: https://github.com/vfile/vfile/compare/6.0.0...6.0.1
\\n6.0.0
\\nChange
\\n\\n
\\n- 46dd635 Change to require Node.js 16\\nmigrate: update Node
\\n- f72469b Change to use export map\\nmigrate: don’t use private APIs
\\n- f4edd0d Change to replace
\\nBuffer
withUint8Array
\\nmigrate: this will mostly work, but might break if you use weird ancient encodings\\nby@wooorm
in vfile/vfile#85- af5eada Update
\\nvfile-message
\\nmigrate: if you used.position
on messages, switch that to.place
\\noptionally use the nicer options parameter to pass your thingsMisc
\\n\\n
\\n\\n- 47eec44 Refactor to match current Node internals
\\n- ab764ab Refactor docs
\\n- bc0332c Change to use
\\nnode:
prefix- 5d00341 Change to use global
\\nURL
in types- 6b8fdb4 4800e34 Refactor types
\\n
... (truncated)
\\n51177d2
6.0.368e779b
Refactor code-style2aea1ee
Refactor Actionsdb06963
Update dev-dependencies467f480
Remove unused dependency40d23b0
6.0.2aeae47e
Refactor to prevent calling cwd
if not needed1b3beb8
Refactor code-style1786a8b
Refactor .npmrc
28f0a2e
Refactor .editorconfig
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @sentry/electron from 5.11.0 to 6.1.0.
\\nSourced from @sentry/electron
\'s releases.
\\n\\n6.1.0
\\n\\n
\\n- feat: Update from v9.0.1 to v9.1.0 (#1080)
\\n- feat: Support
\\n@sentry/profiling-node
(#1084)- fix: Renderer ANR detection (#1083)
\\n6.0.0
\\nThis release updates the underlying Sentry JavaScript SDKs to v9 which includes\\nsome breaking changes. Check out the the migration guide for\\nmore details.
\\n\\n
\\n- feat: Update JavaScript SDKs to v9.0.0 (#1072)
\\nSupported Electron Versions
\\nThe Sentry Node SDK now requires Node >= 18.0.0 which means the Sentry Electron\\nSDK now supports Electron >= 23.0.0.
\\nThe
\\nautoSessionTracking
option has been removedWhereas in v5, session tracking was disabled by setting
\\nautoSessionTracking
to\\nfalse
, in v6 session tracking can be disabled by removing theMainProcessSession
integration\\nimport * as Sentry from \\"@sentry/electron/main\\";\\n
Sentry.init({
\\ndsn: \\"DSN\\",
\\n// autoSessionTracking: false,
\\nintegrations: (defaults) => defaults.filter((i) => i.name !== \\"MainProcessSession\\"),
\\n});
\\n
Sourced from @sentry/electron
\'s changelog.
\\n\\n6.1.0
\\n\\n
\\n- feat: Update from\\nv9.0.1 to\\nv9.1.0\\n(#1080)
\\n- feat: Support
\\n@sentry/profiling-node
(#1084)- fix: Renderer ANR detection (#1083)
\\n6.0.0
\\nThis release updates the underlying Sentry JavaScript SDKs to v9 which includes\\nsome breaking changes. Check out the the migration guide for\\nmore details.
\\n\\n
\\n- feat: Update JavaScript SDKs to v9.0.0 (#1072)
\\nSupported Electron Versions
\\nThe Sentry Node SDK now requires Node >= 18.0.0 which means the Sentry Electron\\nSDK now supports Electron >= 23.0.0.
\\nThe
\\nautoSessionTracking
option has been removedWhereas in v5, session tracking was disabled by setting
\\nautoSessionTracking
to\\nfalse
, in v6 session tracking can be disabled by removing theMainProcessSession
integration\\nimport * as Sentry from \\"@sentry/electron/main\\";\\n
Sentry.init({
\\ndsn: \\"DSN\\",
\\n// autoSessionTracking: false,
\\nintegrations: (defaults) => defaults.filter((i) => i.name !== \\"MainProcessSession\\"),
\\n});
\\n
719d015
release: 6.1.079a9d54
meta: Changelog for v6.1.0 release (#1086)9b798a5
feat: Support @sentry/profiling-node
(#1084)0589e8d
fix: Renderer ANR detection (#1083)643947d
Merge branch \'release/6.0.0\'805470d
test: Add Electron Forge Vite test (#1085)b77df77
test: New Electron versions (#1082)bf30ddf
feat: Update to v9.1.0 of JavaScript SDKs (#1080)9664f46
release: 6.0.09175622
fix: Only set ip.address: \'{{auto}}\'
when sendDefaultPii: true
(#1079)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps @hookform/resolvers from 4.1.0 to 4.1.3.
\\nSourced from @hookform/resolvers
\'s releases.
\\n\\nv4.1.3
\\n4.1.3 (2025-03-03)
\\nBug Fixes
\\n\\nv4.1.2
\\n4.1.2 (2025-02-24)
\\nBug Fixes
\\n\\nv4.1.1
\\n4.1.1 (2025-02-22)
\\nBug Fixes
\\n\\n
Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps re-resizable from 6.10.3 to 6.11.2.
\\nSourced from re-resizable\'s changelog.
\\n\\n\\nChangelog
\\n\\n\\n6.11.2 (2025-02-23)
\\n:nail_care: Enhancement
\\n\\n
\\n- fix: Add z-index: 1 for edge resizer
\\n- fix: Use stored delta in onResizeStop
\\n6.10.4 (2025-02-23)
\\n:nail_care: Enhancement
\\n\\n
\\n- fix: generated JSX namespace not working with React 19
\\n6.10.1 (2024-11-06)
\\n:bug: Bug Fix
\\n\\n
\\n- Revert #827 because regression
\\n6.10.0 (2024-09-22)
\\n:nail_care: Enhancement
\\n\\n
\\n- Match focus order to visual order #827
\\n6.9.18 (2024-09-10)
\\n\\n
... (truncated)
\\nDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps react-native-screens from 4.9.1 to 4.9.2.
\\n973e05b
Release 4.9.24e96bcc
fix: FullWindowOverlay not working with dynamic frameworks (#2769)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)⚠️ Dependabot is rebasing this PR ⚠️
\\nRebasing might not happen immediately, so don\'t worry if this takes some time.
\\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.
\\nBumps vite from 6.1.0 to 6.2.1.
\\nSourced from vite\'s releases.
\\n\\n\\ncreate-vite@6.2.1
\\nPlease refer to CHANGELOG.md for details.
\\nv6.2.1
\\nPlease refer to CHANGELOG.md for details.
\\ncreate-vite@6.2.0
\\nPlease refer to CHANGELOG.md for details.
\\nv6.2.0
\\nPlease refer to CHANGELOG.md for details.
\\nv6.2.0-beta.1
\\nPlease refer to CHANGELOG.md for details.
\\nv6.2.0-beta.0
\\nPlease refer to CHANGELOG.md for details.
\\ncreate-vite@6.1.1
\\nPlease refer to CHANGELOG.md for details.
\\nv6.1.1
\\nPlease refer to CHANGELOG.md for details.
\\n
Sourced from vite\'s changelog.
\\n\\n\\n6.2.1 (2025-03-07)
\\n\\n
\\n- refactor: remove
\\nisBuild
check from preAliasPlugin (#19587) (c9e086d), closes #19587- refactor: restore endsWith usage (#19554) (6113a96), closes #19554
\\n- refactor: use
\\napplyToEnvironment
in internal plugins (#19588) (f678442), closes #19588- fix(css): stabilize css module hashes with lightningcss in dev mode (#19481) (92125b4), closes #19481
\\n- fix(deps): update all non-major dependencies (#19555) (f612e0f), closes #19555
\\n- fix(reporter): fix incorrect bundle size calculation with non-ASCII characters (#19561) (437c0ed), closes #19561
\\n- fix(sourcemap): combine sourcemaps with multiple sources without matched source (#18971) (e3f6ae1), closes #18971
\\n- fix(ssr): named export should overwrite export all (#19534) (2fd2fc1), closes #19534
\\n- feat: add
\\n*?url&no-inline
type and warning for.json?inline
/.json?no-inline
(#19566) (c0d3667), closes #19566- test: add glob import test case (#19516) (aa1d807), closes #19516
\\n- test: convert config playground to unit tests (#19568) (c0e68da), closes #19568
\\n- test: convert resolve-config playground to unit tests (#19567) (db5fb48), closes #19567
\\n- perf: flush compile cache after 10s (#19537) (6c8a5a2), closes #19537
\\n- chore(css): move environment destructuring after condition check (#19492) (c9eda23), closes #19492
\\n- chore(html): remove unnecessary value check (#19491) (797959f), closes #19491
\\n6.2.0 (2025-02-25)
\\n\\n
\\n- fix(deps): update all non-major dependencies (#19501) (c94c9e0), closes #19501
\\n- fix(worker): string interpolation in dynamic worker options (#19476) (07091a1), closes #19476
\\n- chore: use unicode cross icon instead of x (#19497) (5c70296), closes #19497
\\n6.2.0-beta.1 (2025-02-21)
\\n\\n
\\n- fix(css): temporary add
\\n?.
afterthis.getModuleInfo
invite:css-post
(#19478) (12b0b8a), closes #194786.2.0-beta.0 (2025-02-21)
\\n\\n
\\n- feat: show
\\nmode
on server start and add env debugger (#18808) (c575b82), closes #18808- feat: use host url to open browser (#19414) (f6926ca), closes #19414
\\n- feat(css): allow scoping css to importers exports (#19418) (3ebd838), closes #19418
\\n- chore: bump esbuild to 0.25.0 (#19389) (73987f2), closes #19389
\\n6.1.1 (2025-02-19)
\\n\\n
\\n\\n- fix: ensure
\\n.[cm]?[tj]sx?
static assets are JS mime (#19453) (e7ba55e), closes #19453- fix: ignore
\\n*.ipv4
address in cert (#19416) (973283b), closes #19416- fix(css): run rewrite plugin if postcss plugin exists (#19371) (bcdb51a), closes #19371
\\n- fix(deps): bump tsconfck (#19375) (746a583), closes #19375
\\n- fix(deps): update all non-major dependencies (#19392) (60456a5), closes #19392
\\n
... (truncated)
\\nd8461b5
release: v6.2.0c94c9e0
fix(deps): update all non-major dependencies (#19501)5c70296
chore: use unicode cross icon instead of x (#19497)07091a1
fix(worker): string interpolation in dynamic worker options (#19476)e01573a
release: v6.2.0-beta.112b0b8a
fix(css): temporary add ?.
after this.getModuleInfo
in vite:css-post
(#...d686252
release: v6.2.0-beta.03ebd838
feat(css): allow scoping css to importers exports (#19418)f6926ca
feat: use host url to open browser (#19414)c575b82
feat: show mode
on server start and add env debugger (#18808)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Bumps daisyui from 4.12.23 to 5.0.3.
\\nSourced from daisyui\'s releases.
\\n\\n\\nv5.0.3
\\n🌼 Read changelog: https://daisyui.com/docs/changelog/
\\n📦 Install this update:
\\n\\nnpm i -D daisyui@5.0.3\\n
💚 Thank you for using daisyUI!
\\nv5.0.2
\\n🌼 Read changelog: https://daisyui.com/docs/changelog/
\\n📦 Install this update:
\\n\\nnpm i -D daisyui@5.0.2\\n
💚 Thank you for using daisyUI!
\\nv5.0.0
\\n🌼 Read changelog: https://daisyui.com/docs/changelog/
\\n📦 Install this update:
\\n\\nnpm i -D daisyui@5.0.0\\n
💚 Thank you for using daisyUI!
\\nv4.12.24
\\n🌼 Read changelog: https://daisyui.com/docs/changelog/
\\n📦 Install this update:
\\n\\nnpm i -D daisyui@4.12.24\\n
💚 Thank you for using daisyUI!
\\n
Sourced from daisyui\'s changelog.
\\n\\n\\n5.0.3 (2025-03-12)
\\nBug Fixes
\\n\\n
\\n- fix: CDN color opacity utilities
\\n- fix: dropdown-end position
\\n- fix: diff outline
\\n- fix: diff-resizer size and placement
\\n- fix: checked button style
\\n5.0.2 (2025-03-11)
\\nBug Fixes
\\n\\n
\\n- tailwindplay issue (24cd382)
\\n5.0.1 (2025-03-11)
\\nBug Fixes
\\n\\n
\\n- bug: (v5) I can\'t override inline the font-size of a button without using important. closes: #3641
\\n- bug: text content in the alert component isn\'t responsive. closes: #3638
\\n- bug: code in prose (typography plugin) is not styled by daisy. closes: #3631
\\n- bug: Modal looses backdrop transition after build. closes: #3628
\\n- bug: (v5) unintended outline when using join and radio button. closes: #3615
\\n- bug: fieldset + select + icon. closes: #3613
\\n- bug: (v5) Text opacity and custom fonts not working in daisyUI v5 CDN version. closes: #3612
\\n- bug: \\"join\\" applies incorrect border radius when used with a single item. closes: #3611
\\n- bug: (v5) Button colors do not play well with typography. closes: #3606
\\n- bug: (v5) Collapse uses variable --rounded-box but it should use --radius-box. closes: #3600
\\n- bug: Deno requires with attribute on import. closes: #3597
\\n- bug: The development guides does not work on Windows machine. closes: #3567
\\n- docs: Badge component code highlight error. closes: #3627
\\n- docs: Add warning about Modal placement inside Dropdown components. closes: #3616
\\n5.0.0
\\n\\n\\nThis is the detailed list of changes per component. Most of these changes won\'t affect your project, so if you want to learn about the breaking changes only, check out the daisyUI 5 release notes
\\nAlert
\\n🆕 Additions
\\n\\n
\\n- Added
\\nalert-outline
,alert-dash
, andalert-soft
variants.- Added
\\nalert-vertical
andalert-horizontal
layout options.🔧 Changes
\\n\\n
\\n- Instead of hardcoded responsive breakpoints, you can now use the
\\nmax-sm:alert-horizontal
or any other responsive breakpoint.Artboard
\\n\\n
... (truncated)
\\na78f040
chore(release): 5.0.39a7c7e1
5.0.3617010a
chore(release): 5.0.224cd382
fix: tailwindplay issue2907968
chore(release): 5.0.1b93e0d9
all button font size customization using utility classes98f87ba
improve modal animation2754170
fix: add missing style for code in prose1f1d01f
fix alert vertical text overflow bug8699002
fix button underline inside proseDependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Before:\\n
After:\\n
Bumps react-native from 0.77.0 to 0.77.1.
\\nSourced from react-native\'s releases.
\\n\\n\\n0.77.1
\\nFixed
\\n\\n
\\n- Dev-Middleware: Add missing
\\ninvariant
dependency (877e82c1a9 by@tido64
)- style: Respect
\\nmaxFontSizeMultiplier
prop onText
andTextInput
components in New Architecture (8baa858412 by RickardZrinski)Android specific
\\n\\n
\\n- layout: Fix elevation prop on android has incorrect border-radius (55d5c44976 by
\\n@NickGerleman
)- Fabric: Fix execution of early InteropEvents (d8af0ae3f2 by mdvacca)
\\niOS specific
\\n\\n
\\n- Image: Load images even when the extension is implicit (bc35afefd5 by
\\n@cipolleschi
)- Interop Layer: Avoid crashing the app when the InteropLayer can\'t find some methods in the native implementation. (83b986d370 by
\\n@cipolleschi
)- Interop Layer: Properly handle
\\nnull
values coming from NativeModules. (475f797a51 by sammy-SC)Added
\\n\\n
\\n- DevX: Add opt in for legacy Metro log streaming via
\\n--client-logs
flag (969eb3f007 by huntie)
\\nHermes dSYMS:
\\n\\n
\\nYou can file issues or pick requests against this release here.
\\n
\\nTo help you upgrade to this version, you can use the Upgrade Helper ⚛️.
\\n
\\nView the whole changelog in the CHANGELOG.md file.
\\n
Sourced from react-native\'s changelog.
\\n\\n\\nv0.77.1
\\nFixed
\\n\\n
\\n- Dev-Middleware: Add missing
\\ninvariant
dependency (877e82c1a9 by@tido64
)- style: Respect
\\nmaxFontSizeMultiplier
prop onText
andTextInput
components in New Architecture (8baa858412 by RickardZrinski)Android specific
\\n\\n
\\n- layout: Fix elevation prop on android has incorrect border-radius (55d5c44976 by
\\n@NickGerleman
)- Fabric: Fix execution of early InteropEvents (d8af0ae3f2 by mdvacca)
\\niOS specific
\\n\\n
\\n- Image: Load images even when the extension is implicit (bc35afefd5 by
\\n@cipolleschi
)- Interop Layer: Avoid crashing the app when the InteropLayer can\'t find some methods in the native implementation. (83b986d370 by
\\n@cipolleschi
)- Interop Layer: Properly handle
\\nnull
values coming from NativeModules. (475f797a51 by sammy-SC)Added
\\n\\n
\\n- DevX: Add opt in for legacy Metro log streaming via
\\n--client-logs
flag (969eb3f007 by huntie)
1104501
Release 0.77.1969eb3f
Restore Metro log streaming via CLI flag (#49356)475f797
Properly handle null values coming from JS (#49250)d8af0ae
Fix execution of early InteropEvents (#48823)83b986d
Be less strict with method parsing of TurboModule Interop Layer (#49072)8baa858
Fix maxFontSizeMultiplier
prop on Text
and TextInput
components in new ...55d5c44
Fix elevation with border-radius set (#48982)bc35afe
Fix images not displayed when extension is implicit (#48888)Dependabot will resolve any conflicts with this PR as long as you don\'t alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
You can trigger Dependabot actions by commenting on this PR:
\\n@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Introduce a new onboarding flow with multiple steps, including a welcome screen, preferences selection, and interests selection.
\\nhttps://discord.com/channels/1243823539426033696/1265925366820765818/1348930877509337181
\\nhttps://github.com/user-attachments/assets/1bcbd581-e266-47a6-8059-d61ada0b3ffe
\\nClose: #3005
\\nExtract import and export logic into separate utility functions for better organization and maintainability.
\\nThis change simplifies the DataScreen component by delegating file handling responsibilities.
\\n","description":"Extract import and export logic into separate utility functions for better organization and maintainability. This change simplifies the DataScreen component by delegating file handling responsibilities.","guid":"https://github.com/RSSNext/Follow/pull/3015","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-10T10:54:50.451Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"refactor(mobile): rename sourceContent to readabilityContent","url":"https://github.com/RSSNext/Follow/pull/3013","content":"v0.3.11
\\n","description":"v0.3.11","guid":"https://github.com/RSSNext/Follow/pull/2999","author":"DIYgod","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-07T13:37:25.390Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat(mobile): add option to open videos in external apps","url":"https://github.com/RSSNext/Follow/pull/2998","content":"Resolves FOL-1679
\\nIntroduce a setting to allow users to open YouTube and Bilibili videos in their respective apps instead of the in-app browser. This includes updates to settings management and video handling logic.
\\n","description":"Resolves FOL-1679 Introduce a setting to allow users to open YouTube and Bilibili videos in their respective apps instead of the in-app browser. This includes updates to settings management and video handling logic.","guid":"https://github.com/RSSNext/Follow/pull/2998","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-07T12:31:14.023Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"Feature/protocol","url":"https://github.com/RSSNext/Follow/pull/2991","content":"resolves FOL-1706
\\nresolves FOL-1701
\\nResolved #2964.
\\n#2964
\\nI couldn\'t find the changelog/next.md
file, so I didn\'t make any changes.
https://discord.com/channels/1243823539426033696/1265925366820765818/1346525127558434937
\\nBefore:
\\nAfter:
\\nResolve FOL-1681
\\nImplement deep link handling to redirect users to the follow screen when the app is opened with a specific URI scheme.
\\nhttps://github.com/user-attachments/assets/8b30c04b-cf54-42a9-9e04-b5855b314182
\\n","description":"Resolve FOL-1681 Implement deep link handling to redirect users to the follow screen when the app is opened with a specific URI scheme.\\n\\nhttps://github.com/user-attachments/assets/8b30c04b-cf54-42a9-9e04-b5855b314182","guid":"https://github.com/RSSNext/Follow/pull/2948","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-03T13:35:56.939Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat(i18n): add image gallery localization support","url":"https://github.com/RSSNext/Follow/pull/2937","content":"No description","description":"No description","guid":"https://github.com/RSSNext/Follow/pull/2937","author":"kovsu","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-03-03T01:58:06.622Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: desktop dir","url":"https://github.com/RSSNext/Follow/pull/2924","content":"Before:
\\nAfter:
\\nImprove layout for video entries, introduce new components for video content, and refactor existing components for better structure and performance.
\\n","description":"Improve layout for video entries, introduce new components for video content, and refactor existing components for better structure and performance.","guid":"https://github.com/RSSNext/Follow/pull/2903","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-27T10:18:23.291Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix(mobile): make play icon center in audio cover","url":"https://github.com/RSSNext/Follow/pull/2901","content":"Before:
\\nAfter:
\\nBefore:
\\nAfter:
\\n#2869
\\nResolves FOL-1634
\\nIntroduce star functionality in image and video context menus, allowing users to star and unstar entries.
\\nRefactor code for improved type safety and clean up imports.
\\n","description":"Resolves FOL-1634 Introduce star functionality in image and video context menus, allowing users to star and unstar entries.\\n\\nRefactor code for improved type safety and clean up imports.","guid":"https://github.com/RSSNext/Follow/pull/2876","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-24T15:51:07.502Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat(mobile): toggle unread only","url":"https://github.com/RSSNext/Follow/pull/2873","content":"part of FOL-1572
\\nFix scroll to top not work when clicking tabbar
\\nBlame to https://github.com/RSSNext/Follow/pull/2855
\\nCurrently, the default right-click context menu in the Chinese language interface loads the translation for \'zh-CN\'. It would be great if it could support switching to \'zh-HK\' or \'zh-TW\' and load the corresponding translations as well.
\\nwarp with a button component to fix the issue
\\n\\nwarp with a button component to fix the issue
\\n\\nhttps://github.com/user-attachments/assets/59ea809c-940b-45d9-84f7-2677b8aa6e45
\\n#2847
\\nFixed a bug where the Follow window could not be reopened by clicking the Dock icon after closing it with CMD+W. This improves the macOS user experience by ensuring standard window management behavior.
\\nThis fix restores the expected macOS window management behavior where clicking the Dock icon should reopen a closed window.
\\nFixed a bug where the Follow window was always staying on top of other windows, which affected normal window management and user experience.
\\nThis fix ensures the Follow window follows normal window layering behavior.
\\npart of FOL-1626
\\nresolves FOL-1624
\\nv0.3.6
\\n","description":"v0.3.6","guid":"https://github.com/RSSNext/Follow/pull/2824","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-20T07:55:31.946Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"refactor(timeline): simplify timeline view rendering","url":"https://github.com/RSSNext/Follow/pull/2819","content":"Before | \\nAfter | \\n
---|---|
Before\\n\\nafter\\n
Closes #2812
\\nresolves FOL-1469
\\nhttps://github.com/user-attachments/assets/2410d621-0ed5-473c-95ad-570eb094d9ad
\\nResolved the issue of being unable to reset it to empty after using the proxy.
\\n#2786
\\nI would like to explain my method to fix the bug below.
\\nproxy
option in the ~/Library/Application Support/Follow/db.json
file is updated in real time.proxy
in db.json
stops updating.db.json
.Therefore, it can be concluded that the function setProxyConfig
handles both the empty string and invalid string inputs in the same way——not to update the db.json
file.
To differentiate between these two cases, I chose to modify the return value of the function normalizeProxyUri
called within function setProxyConfig
. Specifically, when the input is an empty string, I made the function normalizeProxyUri
return an empty string. This allows the function setProxyConfig
to update the proxy
field in db.json
to an empty string via store.set
.
Note: Since I haven’t set up the related environment on my computer, I hope someone else can help with building it and testing whether my method can actually resolve Issue #2786 without causing any other issues.
\\nFix FOL-1586
\\nresolves FOL-1466
\\nShow copy button directly in mobile.
\\nIf url is invalid show name\'s first character in preview area.
\\npart of FOL-1583
\\nThis pull request includes several enhancements to the EntryItem
component in the entry-list-social.tsx
file.
The changes focus on improving the user experience by adding unread support and preview images.
\\n","description":"This pull request includes several enhancements to the EntryItem component in the entry-list-social.tsx file. The changes focus on improving the user experience by adding unread support and preview images.","guid":"https://github.com/RSSNext/Follow/pull/2752","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-14T08:51:43.942Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: add eas build ci","url":"https://github.com/RSSNext/Follow/pull/2741","content":"No description","description":"No description","guid":"https://github.com/RSSNext/Follow/pull/2741","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-13T12:54:15.826Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: Release v0.3.4-beta.0","url":"https://github.com/RSSNext/Follow/pull/2737","content":"v0.3.4-beta.0
\\n","description":"v0.3.4-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2737","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-13T07:15:20.025Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: enhance action filtering and improve command retrieval","url":"https://github.com/RSSNext/Follow/pull/2735","content":"Before:
\\nAfter:
\\n\\n\\nI don\'t konw why the settings icon doesn\'t show in my local develpment. 😂
\\n
This pull request refactors the entry list components by creating separate components for different feed view types and updating the main entry list screen to use these new components.
\\nThe most important changes include the creation of EntryListContentArticle
, EntryListContentSocial
, and the update to EntryListScreen
to dynamically select the appropriate component based on the feed view type.
This pull request includes changes to the context-menu/entry.tsx
file to improve the handling of starring and unstarring entries.
Introduce a new collections table and provide services for managing collections, including starring and unstarring entries.
\\nUpdate relevant hooks and store actions to support collection functionality.
\\n","description":"Introduce a new collections table and provide services for managing collections, including starring and unstarring entries. Update relevant hooks and store actions to support collection functionality.","guid":"https://github.com/RSSNext/Follow/pull/2718","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-10T15:41:19.903Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat(mobile): entry list pagination support, remove deprecated views","url":"https://github.com/RSSNext/Follow/pull/2717","content":"Refactor the context menu implementation to use the zeego/context-menu
package, updating all relevant usages throughout the application.
This change enhances maintainability and aligns with the latest library standards.
\\n","description":"Refactor the context menu implementation to use the zeego/context-menu package, updating all relevant usages throughout the application. This change enhances maintainability and aligns with the latest library standards.","guid":"https://github.com/RSSNext/Follow/pull/2698","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-06T16:52:10.067Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"refactor: migrate dropdown menu to zeego/dropdown-menu","url":"https://github.com/RSSNext/Follow/pull/2696","content":"Integrate the Zeego dropdown menu into the Select and SortActionButton components, while removing the old DropdownMenu component and its dependency on react-native-context-menu-view.
\\nDoc: https://zeego.dev/components/dropdown-menu
\\n","description":"Integrate the Zeego dropdown menu into the Select and SortActionButton components, while removing the old DropdownMenu component and its dependency on react-native-context-menu-view. Doc: https://zeego.dev/components/dropdown-menu","guid":"https://github.com/RSSNext/Follow/pull/2696","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-02-05T16:43:53.182Z","media":[{"url":"https://github.com/user-attachments/assets/3461460f-9765-40ab-beff-0e800447e74c","type":"photo","width":600,"height":474,"blurhash":"L6Q9_@e-%2~p-.fRWCof9FoeM{-;"},{"url":"https://github.com/user-attachments/assets/6c8761fd-202f-4ce3-8a71-d412b2faf268","type":"photo","width":734,"height":620,"blurhash":"LBQ,L0X9xa.8~qV[R*oL%MV@Rkxu"}],"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat: delete user","url":"https://github.com/RSSNext/Follow/pull/2695","content":"update localization for korean
\\nv0.3.3-beta.0
\\n","description":"v0.3.3-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2654","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-24T13:13:39.329Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix(feed-column): correct sorting icon status","url":"https://github.com/RSSNext/Follow/pull/2652","content":"#2651
\\ntry fix #2473
\\nThe input value was initially empty. If it remains empty, it will now be filled with the feed\'s title. The value stays empty only if it has never been edited.
\\nThis pull request includes updates to several Japanese localization files to improve translation accuracy and add new translations. The most important changes focus on enhancing the user interface by correcting translations and adding support for two-factor authentication (2FA) messages.
\\nImprovements to translation accuracy:
\\nlocales/app/ja.json
: Corrected the translation for switching to \\"2-column mode\\" (entry_list_header.switch_to_normalmode
) and added translations for search results messages (discover.search.results_*
). [1] [2]locales/settings/ja.json
: Corrected the translations for clearing cache button and description (data_control.clean_cache.*
).Support for two-factor authentication (2FA) messages:
\\nlocales/errors/ja.json
: Added error messages for incorrect and required 2FA codes (4007
, 4008
).locales/external/ja.json
: Added translation for 2FA code input (login.two_factor.code
).locales/settings/ja.json
: Added multiple translations related to enabling, disabling, and managing 2FA (profile.totp_code.*
, profile.two_factor.*
).Before:
\\nAfter:
\\nv0.3.2-beta.0
\\n","description":"v0.3.2-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2598","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-17T13:12:16.507Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat: entry data sync","url":"https://github.com/RSSNext/Follow/pull/2597","content":"update copyright year
\\nhttps://discord.com/channels/1243823539426033696/1319455653005230191/1328696880154022010
\\n\\nBefore:
\\nAfter:
\\nMy language setting is zh
, but it renders en
at first time.
In Preferences > Lists > Manage Feeds, after adding a new feed, the add button can still be operated to add it again.\\n
Rename functions related to sticky item checks for improved readability and understanding.
\\nhttps://github.com/user-attachments/assets/eaf427e0-0d31-49e2-97c6-04d3a31b3e1b
\\n","description":"Rename functions related to sticky item checks for improved readability and understanding. https://github.com/user-attachments/assets/eaf427e0-0d31-49e2-97c6-04d3a31b3e1b","guid":"https://github.com/RSSNext/Follow/pull/2542","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-10T15:02:38.366Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat: 2fa","url":"https://github.com/RSSNext/Follow/pull/2540","content":"Currently, Session.setProxy
is not working for native fetch, which is used by readability.\\nSo we need to set proxy for native fetch manually, refer to https://stackoverflow.com/a/76503362/14676508
Close #2375
\\nv0.3.1-beta.0
","description":"v0.3.1-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2515","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-09T10:49:31.189Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat(mobile): improve podcast player","url":"https://github.com/RSSNext/Follow/pull/2514","content":"Close: #2432
\\nAfter:
\\nhttps://github.com/user-attachments/assets/60155c44-2f1f-4fec-8e06-891fb8bf5d83
\\n\\nReplace direct usage of entry actions with a new hook that sorts actions into main and more categories, improving organization and maintainability.
","description":"Replace direct usage of entry actions with a new hook that sorts actions into main and more categories, improving organization and maintainability.","guid":"https://github.com/RSSNext/Follow/pull/2511","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-09T06:59:51.543Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: update zh-cn translations","url":"https://github.com/RSSNext/Follow/pull/2510","content":"Before:
\\nAfter:
\\nThis pull request includes updates to the Japanese localization file locales/settings/ja.json
. The changes primarily focus on adding new translations and improving existing ones.
customizeToolbar.title
).lists.delete.success
).<!-- DO NOT IGNORE THE TEMPLATE!Thank you for contributing!
\\nBefore submitting the PR, please make sure you do the following:
\\nfixes #123
).--\x3e
\\nI tried Shared Element Transitions and this is what it looks like so far.
\\nhttps://github.com/user-attachments/assets/aa9191e3-c5a3-4700-b18b-cd21057aae36
\\nIt\'s very easy to implement in code, just set a unique sharedTransitionTag
. But it also has some limitations. See Remarks from reanimated docs.
I\'m not sure if I should keep this animation. I also looked for other solutions, like React Navigation Shared Element, but their maintenance status is even worse than reanimated.
\\nhttps://github.com/user-attachments/assets/03111854-38a7-4803-8b53-ffdb3c363dfd
\\n\\nLocalization updates:
\\nlocales/common/ja.json
: Added translation for \\"RSSHub\\".locales/errors/ja.json
: Added multiple new error messages related to RSSHub.Settings page improvements:
\\nlocales/settings/ja.json
: Updated the \\"about\\" and \\"general\\" section titles to be more descriptive and consistent. [1] [2]locales/settings/ja.json
: Added new descriptions and labels for RSSHub-related settings and export options. [1] [2]locales/settings/ja.json
: Added new email-related labels and messages for profile settings.These changes enhance the user experience by providing more comprehensive and accurate translations, particularly for new RSSHub features.
","description":"Description PR Type\\n[ ] Feature\\n[ ] Bugfix\\n[ ] Hotfix\\n[ ] Other (please describe):\\nLinked Issues\\nAdditional context\\nChangelog\\n[ ] I have updated the changelog/next.md with my changes. This pull request includes several updates to the Japanese localization files, with a…","guid":"https://github.com/RSSNext/Follow/pull/2474","author":"dai","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-06T05:39:52.709Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat: enhance RSSHub table with translations and tooltips","url":"https://github.com/RSSNext/Follow/pull/2471","content":"Fix https://github.com/RSSNext/Follow/issues/2414
\\nIntroduce a customizable toolbar modal that allows users to reorder actions using drag-and-drop
\\nhttps://github.com/user-attachments/assets/ae06cc85-9f40-41dd-8bf0-697195309629
","description":"Fix https://github.com/RSSNext/Follow/issues/2414 Introduce a customizable toolbar modal that allows users to reorder actions using drag-and-drop\\n\\nhttps://github.com/user-attachments/assets/ae06cc85-9f40-41dd-8bf0-697195309629","guid":"https://github.com/RSSNext/Follow/pull/2468","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-05T20:24:05.806Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: tray icon appears small and blurry on Windows, Close #2077","url":"https://github.com/RSSNext/Follow/pull/2461","content":"Close #2077
\\nThere are two main changes.
\\nAfter:\\n
#2077
\\nThis pull request fixed the #2435\\nFor readability, it may encounters the decoding error.
\\nbefore:\\n
After:\\n
The original code had some deficiencies in decoding the original webpage text. It only considered obtaining the charset attribute value from the content type, but did not consider the attribute value specified by meta in the webpage HTML.\\nSo I optimized the process of text encoding detection and decoding.
\\n原来的代码中,对原网页文本解码存在一些不足,它仅仅考虑了从content type 中获得charset属性值,而没有考虑到网页html中meta规定的属性值。\\n所以我优化了对文本编码检测和解码的流程。
\\nHere’s the optimized code flow for detecting the charset and decoding the document:
\\nContent-Type
response header.chardet
to detect the encoding.<meta>
tag to detect the charset and adjust the decoding if necessary.Get Charset from Content-Type
Header
charset
from the response header. This is the standard HTTP approach for specifying encoding.const httpCharset = contentType?.match(/charset=([\\\\w-]+)/i)?.[1];\\n
\\nFallback to chardet
Content-Type
charset is provided or if it’s ambiguous, use chardet
for charset detection.chardet
analyzes the byte distribution of the content to determine its encoding accurately.Parse <meta>
Tag for Charset
<meta charset>
or <meta http-equiv=\\"Content-Type\\">
tags if present.<meta>
charset with the previously detected charset and adjust if necessary.Stream Handling
\\nArrayBuffer
only once, ensuring the stream is not consumed multiple times.Fallback Mechanism
\\n[Start]\\n ↓\\nFetch content\\n ↓\\nCheck Content-Type header for charset\\n ↓\\nNo charset? → Use chardet to detect\\n ↓\\nDecode using detected charset\\n ↓\\nParse <meta> tag for charset\\n ↓\\nAdjust charset and re-decode if needed\\n ↓\\n[Done]\\n
\\n以下是优化后的代码流程,按照优先级获取编码方式并解码内容:
\\nContent-Type
响应头中获取编码方式。chardet
检测编码。<meta>
标签获取编码方式,并调整解码。从 Content-Type
获取字符集:
charset
,这是 HTTP 协议指定的标准方式。const httpCharset = contentType?.match(/charset=([\\\\w-]+)/i)?.[1];\\n
\\n结合 chardet
进行编码检测:
Content-Type
未指定字符集,或者内容中未提供 <meta charset>
,则使用 chardet
检测编码。chardet
通过统计方法分析内容的字节分布,准确性较高。解析 <meta>
标签调整编码:
<meta charset>
或 <meta http-equiv=\\"Content-Type\\">
,检查是否指定了字符集。<meta>
指定的字符集与之前检测到的字符集不一致,则重新解码。流的读取:
\\nArrayBuffer
一次,确保流未被重复消费。回退机制:
\\n[Start]\\n ↓\\nFetch content\\n ↓\\nCheck Content-Type header for charset\\n ↓\\nNo charset? → Use chardet to detect\\n ↓\\nDecode using detected charset\\n ↓\\nParse <meta> tag for charset\\n ↓\\nAdjust charset and re-decode if needed\\n ↓\\n[Done]\\n
\\n#2435
\\nIntroduce a feed drawer with collection and feed panels, along with hooks for managing drawer state and retrieving current view definitions.
\\nIntegrate the drawer into the tab layout and add necessary dependencies for navigation.
","description":"Introduce a feed drawer with collection and feed panels, along with hooks for managing drawer state and retrieving current view definitions. Integrate the drawer into the tab layout and add necessary dependencies for navigation.","guid":"https://github.com/RSSNext/Follow/pull/2443","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-04T07:23:09.901Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: exclude node_modules from Tailwind scanning","url":"https://github.com/RSSNext/Follow/pull/2425","content":"As shown in the screenshot
\\nhttps://tailwindcss.com/docs/content-configuration#pattern-recommendations
\\nhttps://github.com/tailwindlabs/tailwindcss/discussions/12892
\\n\\nBefore:
\\nAfter:
\\nexample
\\narticle[data-feed-url=\\"https://www.ifanr.com/feed\\"][data-view=\\"0\\"] > div:nth-child(2) > div * {\\n display: inline;\\n}\\narticle[data-feed-url=\\"https://www.ifanr.com/feed\\"][data-view=\\"0\\"] > div:nth-child(2) .absolute:nth-child(1) {\\n display: none;\\n}\\narticle[data-feed-url=\\"https://www.ifanr.com/feed\\"][data-view=\\"0\\"] > div:nth-child(2) .absolute:nth-child(2) {\\n position: unset;\\n}\\narticle[data-feed-url=\\"https://www.ifanr.com/feed\\"][data-view=\\"0\\"] > div:nth-child(2) img {\\n width: 1.2em;\\n height: 1.2em;\\n vertical-align: sub;\\n margin-right: 0.2em;\\n}\\n
\\nbefore\\n
after\\n
v0.3.0-beta.0
","description":"v0.3.0-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2411","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2025-01-02T11:17:29.043Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: `files.associations` settings for vscode","url":"https://github.com/RSSNext/Follow/pull/2409","content":"css file associations\\nbefore:
\\n\\nafter:
\\n
https://github.com/user-attachments/assets/ddef998c-be1b-485f-9418-644b5944d314
\\n\\nBefore:
\\nhttps://github.com/user-attachments/assets/87b4dd57-f0dd-4e66-8545-3fe31b2a0802
\\nAfter:
\\nhttps://github.com/user-attachments/assets/568228a0-5389-437b-8b27-2756bd926a57
\\nThis is a minor user experience issue that I have encountered a few times during usage, so I decided to submit a PR to optimize the behavior.
\\nFeature: If the user is already on the discover page and attempts to navigate to it again, the page will automatically scroll to the top.
\\nIssue scenario: When a source has been added and, after some time, I want to add another source, I often habitually click the “Add” button. However, the page appears unresponsive. Sometimes, I even clicked the “back” button at the top to return to the homepage and then navigate back to the discover page.
\\nv0.2.9-beta.0
","description":"v0.2.9-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2334","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-26T10:51:07.582Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: clicking a media should mark the social media item as read","url":"https://github.com/RSSNext/Follow/pull/2297","content":"This PR removes the e.stopPropagation()
for the Media
in social media items to allow items to be selected and marked as read when clicking the media, same as clicking other parts of the item.
Some english feeds has html entity in title.It should be decode\\nThe Steam Winter Sale includes some of 2024’s best games
to\\nThe Steam Winter Sale includes some of 2024\'s best games
#2251
\\nThe icon height is limited to max. 1.3em, which is perfect for me. May someone prefers to adjust it, just do it.
\\nv0.2.8-beta.0
","description":"v0.2.8-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2246","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-19T08:47:42.027Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix(animation): preserve exit transition for smoother animations","url":"https://github.com/RSSNext/Follow/pull/2237","content":"Motion component should use transition prop in reduce motion mode,\\nFor example,modal default animation type is \'spring\',but the exit animation type should be \'tween\'.
\\nThis pull request involves updates to Japanese translations across multiple JSON files, improving the clarity and consistency of various user interface elements.
\\nlocales/app/ja.json
: Added translations for \\"actions\\" under user_button
and words
sections. [1] [2]
locales/external/ja.json
: Improved translations for feed-related strings and added multiple new strings for login and registration processes. [1] [2]
locales/settings/ja.json
: Corrected translations for \\"or\\" and added new strings related to cache management and profile settings, including password and email management. [1] [2] [3]
Fix https://app.follow.is/share/feeds/89647144094736384
\\nSee https://github.com/WebReflection/linkedom/pull/293 for more details.
","description":"Fix https://app.follow.is/share/feeds/89647144094736384 See https://github.com/WebReflection/linkedom/pull/293 for more details.","guid":"https://github.com/RSSNext/Follow/pull/2185","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-16T19:30:05.385Z","media":[{"url":"https://github.com/user-attachments/assets/12db5985-dae4-440d-8443-d7cc4ddf4960","type":"photo","width":2252,"height":846,"blurhash":"LEBzC4t7j@t7-;kCazj[00ayfQay"}],"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: sync main","url":"https://github.com/RSSNext/Follow/pull/2184","content":"No description","description":"No description","guid":"https://github.com/RSSNext/Follow/pull/2184","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-16T17:11:15.068Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat(i18n): translations (zh-TW)","url":"https://github.com/RSSNext/Follow/pull/2166","content":"When reduceMotion is set to true, the feed column flickers when the feeds loads.
\\nFixed an issue where scrolling caused the header\'s bottom border to appear, leading to a slight 1px shift of its content.
\\nNo changes were made for mobile component since the element doesn\'t show after scrolling.
\\nBefore\\n
After\\n
v0.2.7-beta.0
","description":"v0.2.7-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2125","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-12T07:14:18.344Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: image error ui","url":"https://github.com/RSSNext/Follow/pull/2124","content":"Fix image error message container height\\nFix preview image error message text color in light mode\\n ->
The search button on the Discover page should become valid when user input
\\nThis pull request includes several updates to the Japanese localization files across different parts of the application. The changes primarily involve adding new translations and modifying existing ones to improve clarity and functionality.
\\nlocales/app/ja.json
: Added new translations for feed items and sidebar context menu options, including \\"クレームされたリスト\\" and \\"新規カテゴリーを作成\\" among others. [1] [2] [3]locales/external/ja.json
: Added new translations such as \\"作成者\\" and \\"プレビュー\\" to enhance the external feed descriptions.locales/settings/ja.json
: Included new descriptions and labels for settings related to social media and automatic grouping, such as \\"ソーシャルメディアを展開\\".Update dependencies
\\nAllows move feed to new category in context menu. This improves feed category setting on mobile, which does not allow drag and drop.
\\nIt also helps quickly create a new category.
\\nResolved issue where back navigation to the pending view would not behave correctly after changing orientation in some device.
\\nBefore: after changing the orientation, the BACK
button is navigate to previous feeds, which is expected to navigate to all feeds view.
https://github.com/user-attachments/assets/92237fe1-706a-44bd-9425-4bf9b1f3ca7a
\\nAfter: now the back navigation will be force pushed to previous feed list.
\\nhttps://github.com/user-attachments/assets/53278b62-bd29-4da9-9925-253d2ec8cf54
\\nFor some iPad users, using Landscape orientation to browser the list and preview on right, while using Portrait orientation for reading provides excellent experience. This PR will improve experience in this situation.
\\nI\'m so sorry for the pull-request #2000 , it solves the XSS security problem in electron, but also introduces another bug: in the new version of electron, DOMPurify
requires a Window environment. But I ignored this, so readability may fail to load when loading articles.
So I now emergently release a PR to fix this problem. This is a pr for fixing the bug of sanitizing that causes readability failed to fetch document content.
\\nI sincerely apologize.
\\nv0.2.6-beta.0
","description":"v0.2.6-beta.0","guid":"https://github.com/RSSNext/Follow/pull/2025","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-06T06:06:33.398Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: Update Japanese locale files and improve translations","url":"https://github.com/RSSNext/Follow/pull/2010","content":"This pull request includes several changes to the Japanese localization files to add new translations and update existing ones. The most important changes include adding translations for new features, updating existing translations for clarity, and fixing a typo.
\\nAdditions to localization:
\\nlocales/app/ja.json
: Added translations for \\"AI 要約に切り替え\\" (Toggle AI Summary), \\"AI 翻訳に切り替え\\" (Toggle AI Translation), \\"フィードを追加\\" (Add Feed), \\"入力する\\" (Fill Default), and \\"Zen モード\\" (Zen Mode). [1] [2] [3] [4]Updates to existing translations:
\\nlocales/app/ja.json
: Updated the translation for \\"resize.tooltip.double_click_to_collapse\\" to fix a typo.locales/settings/ja.json
: Updated the description for \\"general.show_unread_on_launch\\" and added new translations for \\"show_quick_timeline\\" and \\"translation_language\\".Fixes for translation labels:
\\nlocales/settings/ja.json
: Corrected the label for \\"Outline API Base URL\\" to \\"Outline API のベース URL\\".<!-- DO NOT IGNORE THE TEMPLATE!Thank you for contributing!
\\nBefore submitting the PR, please make sure you do the following:
\\nfixes #123
).Make code comments are in consistence with language, so as to make the code cleaner.
\\nclose #1035
\\nFix https://github.com/RSSNext/Follow/issues/734
\\nhttps://github.com/user-attachments/assets/e11560ac-f266-47b7-ab2b-f82ad8f8bd96
","description":"Fix https://github.com/RSSNext/Follow/issues/734 https://github.com/user-attachments/assets/e11560ac-f266-47b7-ab2b-f82ad8f8bd96","guid":"https://github.com/RSSNext/Follow/pull/2001","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-04T10:29:36.429Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix(security): add dompurify for raw document string pre-cleaning on readability to avoid xss attack","url":"https://github.com/RSSNext/Follow/pull/2000","content":"This pull-request is a fix for xss-security for readability.
\\nHere is the official declaration for readability xss security.
\\nIt mentioned,
\\n\\n\\nNote: as noted in the README.md file in this repository, readability itself does not intend to do security-related input sanitization, and you should use appropriate measures to sanitize input/output for your usecase.
\\n
So if the readability directly fetch the original html string, it may encounters the attack from potential vile xss code.
\\nTherefore, I added a preprocessing process for readability with DOMPurify. When reading the original web page text, it first performs a DOM purification preprocessing process to avoid XSS code attacks.
\\nEnhance the entry header by adding additional actions for improved functionality.
\\nWhen there is Chinese in the link, the audio src comparison is always false, causing the audio to play from the beginning
\\nCurrent version\\n
After modification\\n\\n
#1234
\\nAdded Readeck integration.
\\nTips:
\\nhttps://test.cors.workers.dev/?https://<your_readeck_domain>
.Fix SyntaxError
\\nglobalThis.__follow?.toast.error?.(,{\\"duration\\":1000})\\n// ^ missed undefined\\n
\\nAlso related to https://github.com/Migushthe2nd/MsEdgeTTS/issues/20
","description":"Fix SyntaxError globalThis.__follow?.toast.error?.(,{\\"duration\\":1000})\\n// ^ missed undefined\\n\\n\\nAlso related to https://github.com/Migushthe2nd/MsEdgeTTS/issues/20","guid":"https://github.com/RSSNext/Follow/pull/1958","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-12-01T11:41:54.784Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat: migrate to better auth","url":"https://github.com/RSSNext/Follow/pull/1951","content":"https://github.com/RSSNext/follow-server/pull/198
\\nDowngrade Electron from version 33.2.1 to 33.2.0 in the main and shared packages to resolve compatibility issues in the CI pipeline.
","description":"Downgrade Electron from version 33.2.1 to 33.2.0 in the main and shared packages to resolve compatibility issues in the CI pipeline.","guid":"https://github.com/RSSNext/Follow/pull/1943","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-30T10:13:42.101Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat(i18n): translations (zh-TW)","url":"https://github.com/RSSNext/Follow/pull/1942","content":"feat(i18n):
\\nThis project implements a simplified simulation of an operating system using Python. The goal is to demonstrate fundamental operating system concepts such as process management, scheduling, and basic concurrency. While this simulation does not interact with hardware or manage resources in the way a real operating system does, it provides a basic understanding of how processes are created, managed, and executed concurrently.
","description":"This project implements a simplified simulation of an operating system using Python. The goal is to demonstrate fundamental operating system concepts such as process management, scheduling, and basic concurrency. While this simulation does not interact with hardware or manage…","guid":"https://github.com/RSSNext/Follow/pull/1919","author":"vijayleo31","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-28T20:06:02.095Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: Release v0.2.5-beta.0","url":"https://github.com/RSSNext/Follow/pull/1912","content":"v0.2.5-beta.0
","description":"v0.2.5-beta.0","guid":"https://github.com/RSSNext/Follow/pull/1912","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-28T08:51:01.655Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: prevent default click behavior in Media","url":"https://github.com/RSSNext/Follow/pull/1905","content":"Fix https://github.com/RSSNext/Follow/issues/1757
\\nAlso related to https://github.com/RSSNext/Follow/pull/1760
\\nEnsure that the default click behavior is prevented in the Media component to enhance user interaction.
","description":"Fix https://github.com/RSSNext/Follow/issues/1757 Also related to https://github.com/RSSNext/Follow/pull/1760\\n\\nEnsure that the default click behavior is prevented in the Media component to enhance user interaction.","guid":"https://github.com/RSSNext/Follow/pull/1905","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-28T06:03:01.826Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: update and some ja.json files.","url":"https://github.com/RSSNext/Follow/pull/1898","content":"This pull request includes updates to the Japanese localization files across multiple sections of the application. The changes focus on adding new translations and correcting existing ones.
\\nLocalization updates:
\\nlocales/app/ja.json
: Added new translations for entry list headers and corrected the translation of \\"Follow fee\\" to \\"Follow 手数料\\". [1] [2]locales/app/ja.json
: Updated translation for the notification message \\"Click to reload page\\" to \\"クリックして再読み込み\\".locales/app/ja.json
: Added a new translation for continuing with a provider during sign-in.locales/external/ja.json
: Added a new translation for continuing with a provider during login.locales/settings/ja.json
: Added new translations for data file and log file settings, and corrected the translation for marking items as read on hover. [1] [2]Replace the deprecated useRouteParams hook with useRouteParamsSelector to optimize performance and prevent unnecessary re-renders.
\\nUpdate all relevant components to use the new hook.
","description":"Replace the deprecated useRouteParams hook with useRouteParamsSelector to optimize performance and prevent unnecessary re-renders. Update all relevant components to use the new hook.","guid":"https://github.com/RSSNext/Follow/pull/1872","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-26T17:30:17.892Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"feat: manual action","url":"https://github.com/RSSNext/Follow/pull/1867","content":"close #343
\\nThis pull request includes updates to the Japanese localization files to improve the accuracy and consistency of translations. The changes primarily involve modifications to existing translations and the addition of new entries.
\\nImprovements to translations:
\\nlocales/app/ja.json
: Updated various translation strings for better clarity and accuracy. For example, the translation for \\"entry_actions.copied_notify\\" was changed to include \\"しました\\" for a more complete sentence. [1] [2] [3] [4] [5] [6]locales/common/ja.json
: Added a new translation entry for the word \\"all\\" (\\"すべて\\").locales/settings/ja.json
: Added new translation entries for \\"subscription\\", \\"timeline\\", and \\"startup screen\\" settings.Fixes #1761
\\nFix the issue #1761
\\nThe before,
\\nhttps://github.com/user-attachments/assets/86ff5303-7cea-478a-8ece-4012117e37f9
\\nThe after effect,
\\nhttps://github.com/user-attachments/assets/2f42d011-e82a-44c1-a13c-00066c87b853
\\n#1761
\\nFixes #1757
\\n\\nTry to fix the issue #1757.
\\n#1757
\\nFix undefined image prop when clicking user image on the power page
\\nWaterfall view supports adjusting the number of columns.
\\nAdd dependencies to various command registration hooks to ensure proper functionality based on availability checks.
","description":"Add dependencies to various command registration hooks to ensure proper functionality based on availability checks.","guid":"https://github.com/RSSNext/Follow/pull/1696","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-21T18:12:12.479Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: package export path for tsconfig","url":"https://github.com/RSSNext/Follow/pull/1690","content":"Update paths in package.json for exports and enable composite in tsconfig for better project structure and build management. Add project references in the renderer\'s tsconfig for improved module resolution.
","description":"Update paths in package.json for exports and enable composite in tsconfig for better project structure and build management. Add project references in the renderer\'s tsconfig for improved module resolution.","guid":"https://github.com/RSSNext/Follow/pull/1690","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-21T08:38:01.362Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: Release v0.2.3-beta.0","url":"https://github.com/RSSNext/Follow/pull/1689","content":"v0.2.3-beta.0
","description":"v0.2.3-beta.0","guid":"https://github.com/RSSNext/Follow/pull/1689","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-21T07:10:26.772Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore(locales): enhance OPML import instructions in translations","url":"https://github.com/RSSNext/Follow/pull/1688","content":"This PR enhances the information text in the Migration Step by adding detailed instructions about the OPML import process.
\\n\\nclose #1514
\\nRename useRegisterCommandEffect
to useRegisterCommand
and simplify its implementation.
Remove the deprecated hook and update related imports accordingly. Introduce type safety improvements for command registration.
","description":"Rename useRegisterCommandEffect to useRegisterCommand and simplify its implementation. Remove the deprecated hook and update related imports accordingly. Introduce type safety improvements for command registration.","guid":"https://github.com/RSSNext/Follow/pull/1678","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-20T18:27:36.853Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: add type checking to test script","url":"https://github.com/RSSNext/Follow/pull/1666","content":"No description","description":"No description","guid":"https://github.com/RSSNext/Follow/pull/1666","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-19T10:41:42.962Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: update ja.json","url":"https://github.com/RSSNext/Follow/pull/1656","content":"Merge branch \'RSSNext:dev\' into dev
\\n\\nI believe the current translation isn\'t quite suitable, not aesthetically pleasing, so I made some slight adjustments.\\n
v0.2.2-beta.0
","description":"v0.2.2-beta.0","guid":"https://github.com/RSSNext/Follow/pull/1644","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-18T06:02:38.336Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore(i18n): improve zh-cn translations","url":"https://github.com/RSSNext/Follow/pull/1631","content":"「
, 」
) uniformly for quotation marks.\\n\\nStrongly request the use of a professional localization platform to complete the translation. The git lacks a glossary and cannot review and lock translation entries.
\\n
The Electron assigns the latin string \\"Yes\\" to the \\"Confirmation\\" action and \\"No\\" to the \\"Cancel\\" action. Although the display order of the buttons is reversed in the English UI, the value responded when pressing the ESC key is correct (index value of the \\"No\\" button). However, in the translated UI, the default value responded when pressing the ESC key is 0 (if the correct value is not assigned to cancelId
), which leads to the data being cleared after pressing the ESC key.
Therefore, explicitly assign a value to cancelId
.
In English UI (tested only on macOS), even if the button order is specified as \\"Yes, No\\", it will actually be displayed as \\"No, Yes\\" and the ESC key is assigned to \\"Yes\\", which leads to the data being cleared after pressing the ESC key.\\nTherefore, the button order is uniformly specified as \\"No, Yes\\", and values are explicitly assigned to cancelId
and defaultId
.
https://github.com/user-attachments/assets/a3f55b41-5ed2-422e-ab9b-7fc77454582e
\\nClose: #1246
\\n\\n#1246
\\nhttps://github.com/user-attachments/assets/dc709860-f76b-40aa-884e-ff13e5333237
\\n\\nchore: update app/ja.json and I tested local. // Can\'t wait for Monday.
\\nThis pull request includes updates to the Japanese localization file locales/app/ja.json
. The changes primarily involve adding new achievement descriptions and updating the categories and descriptions in the discovery section.
Localization updates:
\\nachievement.feed_booster
) and its description (achievement.feed_booster_description
).discover.category.*
). These changes also include updates to the default option, feed description, and feed maintainers text.Fix https://github.com/RSSNext/Follow/issues/789
\\nReplace entry actions with command buttons in the entry header and register follow commands in the search command context. Introduce command abstractions and hooks to streamline command management.
","description":"Fix https://github.com/RSSNext/Follow/issues/789 Replace entry actions with command buttons in the entry header and register follow commands in the search command context. Introduce command abstractions and hooks to streamline command management.","guid":"https://github.com/RSSNext/Follow/pull/1566","author":"lawvs","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-11T09:39:29.198Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore(ui/settings): prevent ui text from being selected","url":"https://github.com/RSSNext/Follow/pull/1557","content":"#1503
","description":"PR Type [ ] Feature\\n[ ] Bugfix\\n[ ] Hotfix\\n[x] Other (please describe):\\nLinked Issues\\n\\n#1503","guid":"https://github.com/RSSNext/Follow/pull/1545","author":"ericyzhu","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-10T07:57:08.180Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"chore: Release v0.2.0-beta.2 for hotfix","url":"https://github.com/RSSNext/Follow/pull/1530","content":"v0.2.0-beta.2
","description":"v0.2.0-beta.2","guid":"https://github.com/RSSNext/Follow/pull/1530","author":"Innei","authorUrl":null,"authorAvatar":null,"publishedAt":"2024-11-09T10:34:00.521Z","media":null,"categories":null,"attachments":null,"extra":null,"language":null},{"title":"fix: prevent right cilck on content menu","url":"https://github.com/RSSNext/Follow/pull/1525","content":"prevent right cilck on content menu
\\nBefore:\\n
After:\\n
AI daily report displays formatted information, looking better
\\n