chore(deps): update all non-major dependencies#1548
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update all non-major dependencies#1548renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
|
Contributor
Allure Test Report for this PR:✅ Allure Report | History |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
create-studiocms
effectify
studiocms
@studiocms/auth0
@studiocms/blog
@studiocms/cloudinary-image-service
@studiocms/devapps
@studiocms/discord
@studiocms/github
@studiocms/google
@studiocms/html
@studiocms/markdoc
@studiocms/markdown-remark
@studiocms/md
@studiocms/mdx
@studiocms/s3-storage
@studiocms/upgrade
@studiocms/wysiwyg
@withstudiocms/api-spec
@withstudiocms/auth-kit
@withstudiocms/cli-kit
@withstudiocms/component-registry
@withstudiocms/config-utils
@withstudiocms/effect
@withstudiocms/internal_helpers
@withstudiocms/kysely
@withstudiocms/sdk
@withstudiocms/template-lang
commit: |
cbfaa8c to
540d69c
Compare
9adc749 to
f02edcf
Compare
f02edcf to
b5cfb97
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^2.4.8→^2.4.10^1.53.3→^1.55.1^1.55.1→^1.60.2^0.80.0→^0.84.3^0.28.0→^0.29.0^2.38.0→^2.38.1^3.6.0→^3.7.0^3.6.0→^3.7.0^29.0.0→^29.0.2^5.88.0→^5.88.1Release Notes
biomejs/biome (@biomejs/biome)
v2.4.10Compare Source
Patch Changes
#8838
f3a6a6bThanks @baeseokjae! - Added new lint nursery rulenoImpliedEval.The rule detects implied
eval()usage through functions likesetTimeout,setInterval, andsetImmediatewhen called with string arguments.#9320
93c3b6cThanks @taberoajorge! - Fixed #7664:noUnusedVariablesno longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const,function, orclass) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.#9630
1dd4a56Thanks @raashish1601! - Fixed #9629:noNegationElsenow keeps ternary branch comments attached to the correct branch when applying its fixer.#9216
04243b0Thanks @FrederickStempfle! - Fixed #9061:noProcessEnvnow also detectsprocess.envwhenprocessis imported from the"process"or"node:process"modules.Previously, only the global
processobject was flagged:#9692
61b7ec5Thanks @mkosei! - Fixed Svelte#eachdestructuring parsing and formatting for nested patterns such as[key, { a, b }].#9627
06a0f35Thanks @ematipico! - Fixed #191: Improved the performance of how the Biome Language Server pulls code actions and diagnostics.Before, code actions were pulled and computed all at once in one request. This approach couldn't work in big files, and caused Biome to stale and have CPU usage spikes up to 100%.
Now, code actions are pulled and computed lazily, and Biome won't choke anymore in big files.
#9643
5bfee36Thanks @dyc3! - Fixed #9347:useVueValidVBindno longer reports valid object bindings likev-bind="props".#9627
06a0f35Thanks @ematipico! - Fixed assist diagnostics being invisible when using--diagnostic-level=error. Enforced assist violations (e.g.useSortedKeys) were filtered out before being promoted to errors, causingbiome checkto incorrectly return success.#9695
9856a87Thanks @dyc3! - Added the new nursery rulenoUnsafePlusOperands, which reports+and+=operations that use object-like,symbol,unknown, orneveroperands, or that mixnumberwithbigint.#9627
06a0f35Thanks @ematipico! - Fixed duplicate parse errors incheckandcioutput. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.#9627
06a0f35Thanks @ematipico! - Improved the performance of the commandslintandcheckwhen they are called with--write.#9627
06a0f35Thanks @ematipico! - Fixed--diagnostic-levelnot fully filtering diagnostics. Setting--diagnostic-level=errornow correctly excludes warnings and infos from both the output and the summary counts.#9623
13b3261Thanks @ematipico! - Fixed #9258:--skipno longer causessuppressions/unusedwarnings for suppression comments targeting skipped rules or domains.#9631
599dd04Thanks @raashish1601! - Fixed #9625:experimentalEmbeddedSnippetsEnabledno longer crashes when a file mixes formatable CSS-in-JS templates with tagged templates that the embedded formatter can't currently delegate, such as a styled-components interpolation returning `css```.v2.4.9Compare Source
Patch Changes
#9315
085d324Thanks @ematipico! - Added a new nursery CSS rulenoDuplicateSelectors, that disallows duplicate selector lists within the same at-rule context.For example, the following snippet triggers the rule because the second selector and the first selector are the same:
#9567
b7ab931Thanks @ematipico! - Fixed #7211:useOptionalChainnow detects negated logical OR chains. The following code is now considered invalid:#8670
607ebf9Thanks @tt-a1i! - Fixed #8345:useAdjacentOverloadSignaturesno longer reports false positives for static and instance methods with the same name. Static methods and instance methods are now treated as separate overload groups.#9476
97b80a8Thanks @masterkain! - Fixed#9475: Fixed a panic when Biome analyzed ambient TypeScript modules containing class constructor, getter, or setter signatures that reference local type aliases. Biome now handles these declarations without crashing during semantic analysis.#9553
0cd5298Thanks @dyc3! - Fixed a bug where enabling the rules of a whole group, would enable rules that belonged to a domain under the same group.For example,
linter.rules.correctness = "error"no longer enables React- or Qwik-specific correctness rules unlesslinter.domains.react,linter.domains.qwik, or an explicit rule config also enables them, or their relative dependencies are installed.#9586
4cafb71Thanks @dyc3! - Fixed #8828: Grit patterns usingexport { $foo } from $sourcenow match named re-exports in JavaScript and TypeScript files.#9550
d4e3d6eThanks @dyc3! - Fixed #9548: Biome now parses conditional expressions whose consequent is an arrow function returning a parenthesized object expression.#8696
a7c19ccThanks @Faizanq! - Fixed #8685 wherenoUselessLoneBlockStatementswould remove empty blocks containing comments. The rule now preserves these blocks since comments may contain important information like TODOs or commented-out code.#9557
6671ac5Thanks @datalek! - Fixed #9557: Biome's LSP server no longer crashes on startup when used with editors that don't sendworkspaceFoldersduring initialization. This affected any LSP client that only sendsrootUri, which is valid per the LSP specification.#9455
1710cf1Thanks @omar-y-abdi! - Fixed #9174:useExpectnow correctly rejects asymmetric matchers in Vitest or Jest likeexpect.stringContaining(),expect.objectContaining(), and utilities likeexpect.extend()that are not valid assertions. Previously these constructs caused false negatives, allowing tests without real assertions to pass the lint rule.#9584
956e367Thanks @ematipico! - Fixed a bug where Vue directive attribute values likev-bind:class="{'dynamic': true}"were incorrectly parsed as JavaScript statements instead of expressions. Object literals inside directive values like:class,v-if, andv-htmlare now correctly parsed as expressions, preventing spurious parse errors.#9474
e168494Thanks @ematipico! - Added the new nursery rulenoUntrustedLicenses. This rule disallows dependencies that ship with invalid licenses or licenses that don't meet the criteria of your project/organisation.The rule has the following options:
allow: a list of licenses that can be allowed. Useful to bypass possible invalid licenses from downstream dependencies.deny: a list of licenses that should trigger the rule. Useful to deny licenses that don't fit your project/organisation.When both
denyandalloware provided,denytakes precedence.requireOsiApproved: whether the licenses need to be approved by the Open Source Initiative.requireFsfLibre: whether the licenses need to be approved by the Free Software Foundation.#9544
723798bThanks @ViniciusDev26! - Added an unsafe fix touseConsistentMethodSignaturesthat automatically converts between method-style and property-style signatures.#9555
8a3647bThanks @ematipico! - Fixed#188: the Biome Language Server no longer panics when open files change abruptly, such as during git branch checkouts.#9605
f65c637Thanks @ematipico! - Fixed #9589. Now Biome correctly parses object expressions inside props and directives. The following code doesn't emit errors anymore:#9565
ccb249eThanks @eyupcanakman! - Fixed #9505:noUselessStringConcatno longer reports tagged template literals as useless string concatenations. Tagged templates invoke a function and can return non-string values, so combining them with+is not equivalent to a single template literal.#9534
4d050dfThanks @Netail! - Added the nursery rulenoInlineStyles. The rule disallows the use of inlinestyleattributes in HTML and thestyleprop in JSX, includingReact.createElementcalls. Inline styles make code harder to maintain and can interfere with Content Security Policy.#9611
cddaa44Thanks @gaauwe! - Fixed a regression where Biome LSP could misread editor settings sent throughworkspace/didChangeConfigurationwhen the payload was wrapped in a top-levelbiomekey. This causedrequireConfigurationand related settings to be ignored in some editors.crowdin/crowdin-api-client-js (@crowdin/crowdin-api-client)
v1.55.1Compare Source
What's Changed
Full Changelog: crowdin/crowdin-api-client-js@1.55.0...1.55.1
v1.55.0Compare Source
What's Changed
Full Changelog: crowdin/crowdin-api-client-js@1.54.0...1.55.0
v1.54.0Compare Source
What's Changed
Full Changelog: crowdin/crowdin-api-client-js@1.53.3...1.54.0
dotenvx/dotenvx (@dotenvx/dotenvx)
v1.60.2Compare Source
Changed
local keyandarmored key(for Ops stored keys) (#778)v1.60.1Compare Source
Added
+ key ⛨for Ops stored keys (#777)v1.60.0Compare Source
Added
injecting(run)encrypting(encrypt,set)decrypting(decrypt,get)rotating(rotate)retrieving(keypair)v1.59.1Compare Source
Added
HELLOkey to the kit sample to match most of our examples in the READMEv1.59.0Compare Source
Changed
encryptandsetnow create a.envfile if one does not exist (#771)--no-createto prevent file creationv1.58.0Compare Source
Changed
⟐ injecting env (N) from FILE · dotenvx@VERSION(#770)v1.57.5Compare Source
Changes
v1.57.4Compare Source
Changes
curlexample for install dotenvx.com/ops (#767)v1.57.3Compare Source
Changes
v1.57.2Compare Source
Changes
npm auditto update package-lock.json (#763)v1.57.1Compare Source
Changes
improved error logs and compacted most to a single line (#755)
introduced leading log glyphs as a visual status language:
◈success action (encrypted)◇success action (set plain value, decrypted)⟳success action (rotated)○informational no-op (no changes)▣success action for generated/updated support files⚠warning☠errorv1.57.0Compare Source
Changed
v1.56.0Compare Source
Changed
ops offflag — now respected byget,keypair,rotate, andencrypt(#750)--ppalias — added as shorthand for--pretty-print; toward sunsetting-pp(#750)Removed
.env.vaultfiles (#750)Effect-TS/language-service (@effect/language-service)
v0.84.3Compare Source
Patch Changes
#711
892984fThanks @mattiamanzati! - Report floatingStreamvalues in Effect projects by parsingStreamtypes in the diagnostic type parser and checking them infloatingEffectfor both v3 and v4 harnesses.#709
0372f58Thanks @mattiamanzati! - Fix the Effect v4 completion harness to coverServiceMapself-in-classes examples instead of the v3-onlyContext.Tagvariants.#712
b7554dfThanks @mattiamanzati! - Align Effect diagnostic messages with the reviewed neutral wording, preserving the existing version-specific API references while updating both v3 and v4 snapshot fixtures.v0.84.2Compare Source
Patch Changes
3c0bea6Thanks @mattiamanzati! - FixgetTypeAtLocationto ignore type-only heritage expressions likeinterface X extends Effect.Effect<...>so the language service no longer triggers bogus TS2689 diagnostics.v0.84.1Compare Source
Patch Changes
#703
dea43b8Thanks @mattiamanzati! - FixeffectFnImplicitAnyso it does not report false positives when anEffect.fnorEffect.fnUntracedcallback gets its contextual function type from a union member.For example, nested
HttpRouter.add(...)handlers now correctly recognize the inferredrequesttype and produce no diagnostics when the parameter is not actually implicitany.#702
0af9b98Thanks @mattiamanzati! - Add Effect v4 support for therunEffectInsideEffectdiagnostic so it suggests and fixesEffect.run*Withusage based onEffect.services.Update the generated metadata, schema, README entry, and v4 harness examples/snapshots to document and verify the new behavior.
v0.84.0Compare Source
Minor Changes
#696
78e78d5Thanks @cevr! - Add paired globalDate/globalDateInEffect, globalConsole/globalConsoleInEffect, globalFetch/globalFetchInEffect, globalRandom/globalRandomInEffect, and globalTimers/globalTimersInEffect diagnosticsTen new opt-in diagnostics that flag global/DOM APIs both outside and inside Effect generators:
globalFetch/globalFetchInEffect—fetch()→ HttpClientglobalDate/globalDateInEffect—Date.now(),new Date()→ Clock/DateTimeglobalConsole/globalConsoleInEffect—console.log/warn/error/info/debug/trace→ Effect.log/LoggerglobalRandom/globalRandomInEffect—Math.random()→ Random serviceglobalTimers/globalTimersInEffect—setTimeout/setInterval→ Effect.sleep/ScheduleAll default to
off. Enable both variants for full coverage inside and outside Effect generators. Shadow-safe (e.g.const console = yield* Consolewon't false-positive).v0.83.1Compare Source
Patch Changes
b11c184Thanks @mattiamanzati! - Update the Effect v4 workspace dependencies to4.0.0-beta.38.v0.83.0Compare Source
Minor Changes
#695
f057090Thanks @mattiamanzati! - Add aconfigCLI command for updating diagnostic rule severities without rerunning the full setup flow.#693
b5054e3Thanks @mattiamanzati! - Add setup CLI preset management for diagnostic severities, including preset metadata, preset-aware customization, and a dedicatedconfigcommand for adjusting rule severities without rerunning full setup.v0.82.0Compare Source
Minor Changes
#689
aed2074Thanks @f15u! - Adds ability to reference$schemafrom local installation#692
57fcf35Thanks @mattiamanzati! - Add theeffectFnImplicitAnydiagnostic to mirrornoImplicitAnyfor unannotatedEffect.fnandEffect.fnUntracedcallback parameters, and support// @​strictin diagnostic example files so test fixtures can enable strict compiler options.Patch Changes
#687
72827c0Thanks @mattiamanzati! - Allow the leaking requirements diagnostic to suppress specific leaked services with@effect-expect-leakingcomments on the enclosing declaration.#690
77906a9Thanks @mattiamanzati! - Fix the class self mismatch diagnostic so it also reports invalidServiceMap.Serviceself type parameters.#691
0e16db0Thanks @mattiamanzati! - Include start and end in json diagnostics commandv0.81.0Compare Source
Minor Changes
#684
d8d472eThanks @mattiamanzati! - Improve setup diagnostic configuration with grouped preview-driven metadata, richer interactive prompt rendering, and support for tsconfig files without compilerOptions.#685
d94f4adThanks @mattiamanzati! - Add a diagnostic for globalfetchusage that recommends the Effect HTTP client and include preview fixtures covering both direct and shadowed fetch calls.Patch Changes
#686
5f76175Thanks @mattiamanzati! - Extend the node built-in import diagnostic to also recommend the Effect HTTP client forhttpandhttpsimports.#682
75e1cbeThanks @mattiamanzati! - Add diagnostic groups to rule metadata and render the README diagnostics table grouped by those sections.Effect-TS/effect (@effect/vitest)
v0.29.0Compare Source
Patch Changes
f7bb09b,bd7552a,ad1a7eb,0d32048,0d32048]:allure-framework/allure-npm (allure-commandline)
v2.38.1Compare Source
Full Changelog: allure-framework/allure-npm@2.38.0...2.38.1
allure-framework/allure-js (allure-js-commons)
v3.7.0Compare Source
What's Changed
🐞 Bug Fixes
⬆️ Dependency Updates
10df4beby @renovate[bot] in #1432👻 Internal changes
Full Changelog: allure-framework/allure-js@v3.6.0...v3.7.0
jsdom/jsdom (jsdom)
v29.0.2Compare Source
getComputedStyle(). Computed value rules are now applied across a broader set of properties, and include fixes related to inheritance, defaulting keywords, custom properties, and color-related values such ascurrentcolorand system colors. (@asamuzaK)'background' and'border'shorthand parsing. (@asamuzaK)v29.0.1Compare Source
webpro-nl/knip (knip)
v5.88.1: Release 5.88.1Compare Source
bf2ffca) - thanks @deining!e034cbd)394bcba)--fixexit code (37b6f60)4d2cd9b)8c25e4b)Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 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 was generated by Mend Renovate. View the repository job log.