fix(deps): update non-major#99
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
e8f5305 to
cb7e31f
Compare
cb7e31f to
c5fc7cd
Compare
c5fc7cd to
96f5169
Compare
96f5169 to
d7433f5
Compare
d7433f5 to
32ebc29
Compare
32ebc29 to
3f93e29
Compare
3f93e29 to
8419b54
Compare
8419b54 to
3b0c096
Compare
3b0c096 to
9db52b0
Compare
d60026a to
2fb4cf5
Compare
2fb4cf5 to
8a8b84b
Compare
8a8b84b to
b2fdeff
Compare
b2fdeff to
2bd470e
Compare
2bd470e to
c78a0e2
Compare
c78a0e2 to
eca4e3c
Compare
eca4e3c to
1d37813
Compare
1d37813 to
34d32c1
Compare
34d32c1 to
c886cf4
Compare
|
Warning Review the following alerts detected in dependencies. According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.
|
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub. |
This PR contains the following updates:
^2.1.4→^2.1.5^7.22.0→^7.23.0^10.5.4→^10.8.2^3.0.2→^3.0.3^4.0.2→^4.3.0^8.59.2→^8.62.0^4.1.5→^4.1.9^4.1.5→^4.1.9^10.3.0→^10.6.0^5.5.5→^5.5.6^2.1.6→^2.1.9^5.1.11→^5.1.16^3.8.3→^3.9.1^4.21.0→^4.22.4^8.59.2→^8.62.0^4.1.5→^4.1.9^3.5.34→^3.5.39^5.19.0→^5.32.2Release Notes
isaacs/ttlcache (@isaacs/ttlcache)
v2.1.5Compare Source
sanity-io/client (@sanity/client)
v7.23.0Compare Source
Features
v7.22.1Compare Source
Bug Fixes
sanity-io/pkg-utils (@sanity/pkg-utils)
v10.8.2Compare Source
Patch Changes
#2934
d6cfe32Thanks @stipsan! - fix: preserve side-effect-only imports of external packagesTree-shaking no longer sets the equivalent of
moduleSideEffects: 'no-external'and instead relies on the bundler's default (moduleSideEffects: true). Previously, binding-less side-effect imports of external package subpaths — e.g.import 'react-time-ago/locale/en'— were stripped from the output, breaking consumers that depended on those side effects.package.jsonsideEffectsfields are still honored for bundled modules, so dead-code elimination is unaffected.v10.8.1Compare Source
Patch Changes
#2933
9f4550eThanks @filmaj! - fix: order of paths passed intofindCommonDirPathno longer matters.#2928
c6dde4fThanks @squiggler-app! - fix(deps): update dependency rolldown to v1.1.3v10.8.0Compare Source
Minor Changes
#2888
59fdc02Thanks @stipsan! - feat: add strict dependency placement checks for well-known packagesWhen running with
--strict,package.jsonis now validated to ensure these packages are declared in the correct dependency fields:react-isand@sanity/uishould not be inpeerDependencies(usedependenciesordevDependencies).sanity,styled-components,react, andreact-domshould not be independencies(usedevDependenciesand/orpeerDependencies).@types/react,@types/react-dom, and@types/nodeshould not be independencies(usedevDependenciesand/orpeerDependencies), and when listed inpeerDependenciesthe version range should be*.rxjsand@sanity/clientshould not be inpeerDependencies(usedependenciesordevDependencies).Each check is enabled by default at the
errorlevel and can be downgraded towarnor disabled viastrictOptionsinpackage.config.ts, e.g.:Patch Changes
#2903
296482aThanks @stipsan! - feat: disallow@sanity/iconsinpeerDependenciesWhen running with
--strict,package.jsonis now validated to ensure@sanity/iconsis not declared inpeerDependencies(usedependenciesordevDependenciesinstead). The check defaults toerrorand can be configured vianoSanityIconsPeerDependencyinstrictOptions.v10.7.2Compare Source
Patch Changes
#2897
de87bc9Thanks @stipsan! - fix: mirror the auto-addedbundle.cssexport intopublishConfig.exportsIn vanilla-extract compat mode, pkg-utils auto-writes the conditional
"./bundle.css"export topackage.json. It only updated the top-levelexports, so packages that also declarepublishConfig.exportsended up out of sync, and the next strict--checkfailed withpublishConfig.exports: missing export path "./bundle.css" that exists in exports.The conditional CSS export is now mirrored into
publishConfig.exportsas well (when that field exists), keeping the two in sync. The entry is identical in both places since the CSS export has nosource/development/monorepoconditions to strip.publishConfig.exportsis never created when it is absent.#2899
97cbc33Thanks @stipsan! - Emit a<css>.d.tsdeclaration alongside the vanilla-extract compat-mode CSS shim, so dts export checkers that resolve a.d.tsfor every export target don't crash on a missing declaration file.v10.7.1Compare Source
Patch Changes
ba964f1Thanks @stipsan! - Revert the upgrade of@babel/coreand@babel/preset-typescriptto v8, pinning them back to v7v10.7.0Compare Source
Minor Changes
#2890
c219497Thanks @stipsan! - feat: auto-wire the conditionalbundle.cssexport for vanilla-extractWhen
rollup.vanillaExtractis enabled, pkg-utils now (by default) bakes in the conditional CSS export pattern so userland no longer needs a manualrollup.output.intro+ shim plugin +package.jsonexport. This new "compat mode" (rollup.vanillaExtract.extract.compatMode, defaults totrue):import "<pkg-name>/<name>"into each entry chunk,<name>.jsshim for runtimes that cannot import.cssfiles, and"./<name>"export topackage.json(browser/style→ the real CSS,node/default→ the shim).The emitted CSS file name is configurable via
rollup.vanillaExtract.extract.name(default"bundle.css"), and thevanillaExtractoption is now fully typed (PkgVanillaExtractOptions) with its real defaults documented. Setextract.compatMode: falseto opt out and wire these up yourself.Patch Changes
c219497]:v10.6.0Compare Source
Minor Changes
#2887
a6adaa1Thanks @stipsan! - feat: support conditionalexportsfor CSS filesCSS subpath exports may now be declared as a conditional object (a flat map of condition name to path) instead of only a plain string. This enables re-adding a
import "<pkg>/bundle.css"statement that resolves to the real CSS file in bundler/browser environments, while resolving to a no-op JS shim in runtimes (like Node) that cannot import.cssfiles directly:{ "exports": { "./bundle.css": { "browser": "./dist/bundle.css", "style": "./dist/bundle.css", "node": "./dist/bundle.css.js", "default": "./dist/bundle.css.js" } } }Patch Changes
#2878
10e1150Thanks @renovate! - fix(deps): Update babel monorepo to v8#2883
c8c192fThanks @renovate! - fix(deps): update rollup packagesUpdated dependencies [
a6adaa1]:v10.5.8Compare Source
Patch Changes
#2875
8c1f3f3Thanks @renovate! - fix(deps): Update dependency rolldown to v1.1.2#2876
3948fd3Thanks @renovate! - fix(deps): Update dependency rolldown-plugin-dts to v0.26.0v10.5.7Compare Source
Patch Changes
94505ecThanks @renovate! - fix(deps): Update rollup packages to ^4.62.0v10.5.6Compare Source
Patch Changes
#2859
b7a6402Thanks @renovate! - fix(deps): Update dependency esbuild to ^0.28.1#2861
f3ca6b0Thanks @renovate! - fix(deps): Update dependency @microsoft/api-extractor to ^7.58.9v10.5.5Compare Source
Patch Changes
9d06a16Thanks @renovate! - fix(deps): Update dependency rolldown to v1.1.1sanity-io/uuid (@sanity/uuid)
v3.0.3Compare Source
shikijs/shiki (@shikijs/vitepress-twoslash)
v4.3.0Compare Source
🚀 Features
View changes on GitHub
v4.2.0Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v4.1.0Compare Source
🐞 Bug Fixes
tsModuletocreateTwoslasher- by @arthurfiorette in #1271 (be89a)View changes on GitHub
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.62.0Compare Source
🚀 Features
❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.61.1Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.61.0Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.60.1Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.60.0Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.59.4Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.59.3Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
vitest-dev/vitest (@vitest/coverage-v8)
v4.1.9Compare Source
🐞 Bug Fixes
importOriginalwith optimizer and query import [backport to v4] - by Hiroshi Ogawa, David Harris, Codexand Vladimir in #10546 (a5180)View changes on GitHub
v4.1.8Compare Source
🐞 Bug Fixes
cdpAPI whenallowWrite/allowExec: false[backport to v4] - by @hi-ogawa and Codex in #10450 (e4067)View changes on GitHub
v4.1.7Compare Source
🐞 Bug Fixes
View changes on GitHub
v4.1.6Compare Source
🐞 Bug Fixes
ToMatchScreenshotResolvePath- by @macarie and @sheremet-va in #10138 (31882)sequence.concurrent: truewith top-leveltest(..., { concurrent: false })+ depreactesequentialtest API and options - by @hi-ogawa, Codex and @sheremet-va in #10196 (2847d)🏎 Performance
View changes on GitHub
vitest-dev/vitest (@vitest/ui)
v4.1.9Compare Source
v4.1.8Compare Source
🐞 Bug Fixes
cdpAPI whenallowWrite/allowExec: false[backport to v4] - by @hi-ogawa and Codex in #10450 (e4067)View changes on GitHub
v4.1.7Compare Source
🐞 Bug Fixes
View changes on GitHub
v4.1.6Compare Source
🐞 Bug Fixes
ToMatchScreenshotResolvePath- by @macarie and @sheremet-va in #10138 (31882)sequence.concurrent: truewith top-leveltest(..., { concurrent: false })+ depreactesequentialtest API and options - by @hi-ogawa, Codex and @sheremet-va in #10196 (2847d)🏎 Performance
View changes on GitHub
eslint/eslint (eslint)
v10.6.0Compare Source
Features
b1f9106feat: detect Symbol() and BigInt() in no-constant-binary-expression (#20981) (Taejin Kim)f291007feat: add checkRelationalComparisons to no-constant-binary-expression (#20948) (sethamus)Bug Fixes
6b05784fix: prefer-exponentiation-operator invalid autofix at statement start (#20997) (Milos Djermanovic)bb9eb2afix: account for shadowedBooleaninno-extra-boolean-cast(#21013) (den$)8fd8741fix: don't report shadowed undefined inradixrule (#21011) (Pixel)5784980fix: don't report shadowed undefined in no-throw-literal (#21010) (Pixel)9cd1e6dfix: suppress invalid class suggestion in no-promise-executor-return (#21008) (Pixel)d4eb2dcfix: don't report shadowed undefined in prefer-promise-reject-errors (#21006) (Pixel)2360464fix: prefer-promise-reject-errors false positives for shadowed Promise (#21003) (den$)63d52d2fix: restore max-classes-per-file report range (#21002) (Pixel)7feaff0fix: callback detection logic for IIFEs in max-nested-callbacks (#20979) (fnx)399a2ecfix: don't report inner non-callbacks inmax-nested-callbacks(#20995) (Milos Djermanovic)Documentation
a83683ddocs: Update README (GitHub Actions Bot)f5449f9docs: document userland patterns for global assertionOptions in RuleT… (#20986) (playgirl)bea49f7docs: Update README (GitHub Actions Bot)e5f70f9docs: update code-path diagrams (#20984) (Tanuj Kanti)8890c2ddocs: add TypeScript config guidance for MCP server (#20796) (Pierluigi Lenoci)3eb3d9bdocs: Update README (GitHub Actions Bot)c5bb59cdocs: Update README (GitHub Actions Bot)eb3c97cdocs: fix grammar in prefer-const rule description (#20983) (lumir)Chores
6a42034ci: run ecosystem tests on main branch (#20891) (sethamus)3dbacdbci: bump actions/checkout from 6 to 7 (#21014) (dependabot[bot])c3abfcachore: correct JSDoc param types in html formatter (#21018) (Minseon Kim)a832320ci: split ecosystem tests into separate jobs (#21001) (xbinaryx)27166e7chore: update ecosystem plugins (#21005) (ESLint Bot)865d76eci: bump pnpm/action-setup from 6.0.8 to 6.0.9 (#20989) (dependabot[bot])27a88c9chore: update dependency markdown-it to v14 in root (#20994) (Milos Djermanovic)970cea6chore: update dependency markdown-it to v14 (#20993) (Milos Djermanovic)b482120chore: update dependency prettier to v3.8.4 (#20990) (renovate[bot])6993fb3chore: update ecosystem plugins (#20985) (ESLint Bot)v10.5.0Compare Source
Features
5ca8c52feat: correct stack tracking in max-nested-callbacks (#20973) (Pixel998)b565783feat: report no-with violations at the with keyword (#20971) (Pixel998)2ce032ffeat: report max-lines-per-function violations at function head (#20966) (Pixel998)732cb3efeat: report max-nested-callbacks violations at function head (#20967) (Pixel998)f9c138afeat: report max-depth violations on keywords (#20943) (Pixel998)bdb496cfeat: correct max-depth handling for else-if chains (#20944) (Pixel998)c296873feat: update error loc inmax-statementsto function header (#20907) (Taejin Kim)Documentation
8ae1b5bdocs: Update README (GitHub Actions Bot)ca7eb90docs: update Node.js prerequisites to include ICU support (#20962) (Francesco Trotta)f99b47adocs: Update README (GitHub Actions Bot)acf03d4docs: clarify precedence of parserOptions over languageOptions (#20926) (sethamus)Chores
b18bf58chore: update ecosystem plugins (#20959) (ESLint Bot)c2d1444refactor: replace areAllSegmentsUnreachable with !isAnySegmentReachable (#20951) (Taejin Kim)243b8c5chore: enhance config-rule to support oneOf, anyOf, and nested schemas (#20788) (kuldeep kumar)217b2a9test: add unit tests for ParserService (#20949) (Taejin Kim)72003e7test: add location information to error messages inmax-statements(#20945) (lumir)7797c26refactor: deduplicate isAnySegmentReachable across rules (#20890) (Taejin Kim)67c46fachore: update ecosystem plugins (#20938) (ESLint Bot)95d8c7achore: update dependency @eslint/json to v2 (#20934) (renovate[bot])cf9e496chore: update @arethetypeswrong/cli to 0.18.3 (#20933) (Pixel998)fb6d396test: run type tests with TypeScript 7 (#20868) (sethamus)v10.4.1Compare Source
Bug Fixes
e557467fix: update@eslint/plugin-kitversion to 0.7.2 (#20930) (Francesco Trotta)d4ce898fix: propagate failures from delegated commands (#20917) (Minh Vu)f4f3507fix: prefer-arrow-callback invalid autofix with newline afterasync(#20916) (kuldeep kumar)c5bc78bfix: false positive for reference infinallyblock (#20655) (Tanuj Kanti)27538c0fix: add missing CodePath and CodePathSegment types (#20853) (Pixel998)Documentation
61b0adddocs: remove deprecated rule from related rules ofmax-params(#20921) (Tanuj Kanti)305d5b9docs: remove deprecated rules from related rules section (#20911) (Tanuj Kanti)49b0202docs: fixdisplay: noneof ad (#20901) (Tanuj Kanti)9067f94docs: switch build to Node.js 24 (#20893) (Milos Djermanovic)c91b041docs: Update README (GitHub Actions Bot)e349265docs: clarify semver strings in rule deprecation objects (#20885) (Milos Djermanovic)Chores
b0e466btest: adddataproperty to invalid tests cases for rules (#20924) (Tanuj Kanti)f78838btest: add CodePath type coverage (#20904) (Pixel998)1daa4bdchore: updateeslint-plugin-eslint-commentstest data to latest commit (#20922) (Francesco Trotta)002942cci: declare contents:read on update-readme workflow (#20919) (Arpit Jain)64bca24chore: update ecosystem plugins (#20912) (ESLint Bot)6d7c832chore: ignore fflate updates in renovate (#20908) (Pixel998)b2c8638ci: bump pnpm/action-setup from 6.0.7 to 6.0.8 (#20889) (dependabot[bot])a9b8d7fchore: increase maxBuffer for ecosystem tests (#20881) (sethamus)b702eadchore: update ecosystemConfiguration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate using a curated preset maintained by
. View repository job log here