-
Notifications
You must be signed in to change notification settings - Fork 1
Update devDependencies #486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
titouanmathis
wants to merge
1
commit into
develop
Choose a base branch
from
renovate/dev-dependencies
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #486 +/- ##
=============================================
- Coverage 71.02% 70.81% -0.22%
Complexity 20 20
=============================================
Files 74 74
Lines 1850 1850
Branches 332 332
=============================================
- Hits 1314 1310 -4
- Misses 473 477 +4
Partials 63 63
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Export SizeUnchanged@studiometa/ui
|
326fab3 to
6636642
Compare
57b9e7b to
6e72331
Compare
ba14f6f to
1c03744
Compare
8b43242 to
8de1ec3
Compare
1d29076 to
f439b04
Compare
55d912b to
f91f3ed
Compare
f91f3ed to
96ec89d
Compare
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:
7.0.0-dev.20251108.1->7.0.0-dev.20251213.10.25.12->0.27.11.26.0->1.32.00.5.1->0.9.03.6.2->3.7.4Release Notes
microsoft/typescript-go (@typescript/native-preview)
v7.0.0-dev.20251213.1Compare Source
v7.0.0-dev.20251212.1Compare Source
v7.0.0-dev.20251211.1Compare Source
v7.0.0-dev.20251210.1Compare Source
v7.0.0-dev.20251209.1Compare Source
v7.0.0-dev.20251208.1Compare Source
v7.0.0-dev.20251207.1Compare Source
v7.0.0-dev.20251206.1Compare Source
v7.0.0-dev.20251205.1Compare Source
v7.0.0-dev.20251204.1Compare Source
v7.0.0-dev.20251203.1Compare Source
v7.0.0-dev.20251202.1Compare Source
v7.0.0-dev.20251201.1Compare Source
v7.0.0-dev.20251130.1Compare Source
v7.0.0-dev.20251129.1Compare Source
v7.0.0-dev.20251128.1Compare Source
v7.0.0-dev.20251127.1Compare Source
v7.0.0-dev.20251126.1Compare Source
v7.0.0-dev.20251125.1Compare Source
v7.0.0-dev.20251124.1Compare Source
v7.0.0-dev.20251123.1Compare Source
v7.0.0-dev.20251122.1Compare Source
v7.0.0-dev.20251121.1Compare Source
v7.0.0-dev.20251120.1Compare Source
v7.0.0-dev.20251119.1Compare Source
v7.0.0-dev.20251118.1Compare Source
v7.0.0-dev.20251117.1Compare Source
v7.0.0-dev.20251116.1Compare Source
v7.0.0-dev.20251115.1Compare Source
v7.0.0-dev.20251114.1Compare Source
v7.0.0-dev.20251113.1Compare Source
v7.0.0-dev.20251112.1Compare Source
v7.0.0-dev.20251111.1Compare Source
v7.0.0-dev.20251110.1Compare Source
v7.0.0-dev.20251109.1Compare Source
evanw/esbuild (esbuild)
v0.27.1Compare Source
Fix bundler bug with
varnested insideif(#4348)This release fixes a bug with the bundler that happens when importing an ES module using
require(which causes it to be wrapped) and there's a top-levelvarinside anifstatement without being wrapped in a{ ... }block (and a few other conditions). The bundling transform needed to hoist thesevardeclarations outside of the lazy ES module wrapper for correctness. See the issue for details.Fix minifier bug with
forinsidetryinside label (#4351)This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the
trystatement to address a problem with transforming labeledfor awaitloops to avoid theawait(the transformation involves converting thefor awaitloop into aforloop and wrapping it in atrystatement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply toforloops that esbuild itself generates internally as part of thefor awaittransform. Here is an example of some affected code:Inline IIFEs containing a single expression (#4354)
Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single
returnstatement. Now it should also work if the body contains a single expression statement instead:The minifier now strips empty
finallyclauses (#4353)This improvement means that
finallyclauses containing dead code can potentially cause the associatedtrystatement to be removed from the output entirely in minified builds:Allow tree-shaking of the
SymbolconstructorWith this release, calling
Symbolis now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:v0.27.0Compare Source
This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of
esbuildin yourpackage.jsonfile (recommended) or be using a version range syntax that only accepts patch upgrades such as^0.26.0or~0.26.0. See npm's documentation about semver for more information.Use
Uint8Array.fromBase64if available (#4286)With this release, esbuild's
binaryloader will now use the newUint8Array.fromBase64function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specifytargetwhen using this feature with Node (for example--target=node22) unless you're using Node v25+.Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)
This raises the operating system requirements for running esbuild:
v0.26.0Compare Source
Enable trusted publishing (#4281)
GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.
Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).
oxc-project/oxc (oxlint)
v1.32.0Compare Source
v1.31.0Compare Source
v1.30.0Compare Source
🚀 Features
595867aoxlint: Generate markdownDescription fields for oxlint JSON schema. (#15959) (connorshea)v1.29.0Compare Source
🚀 Features
84de1caoxlint,oxfmt: Allow comments and also commas for vscode-json-ls (#15612) (leaysgur)v1.28.0Compare Source
v1.27.0: oxlint v1.27.0 && oxfmt v0.12.0Compare Source
Oxlint v1.27.0
🚀 Features
222a8f0linter/plugins: ImplementSourceCode#isSpaceBetween(#15498) (overlookmotel)2f9735dlinter/plugins: Implementcontext.languageOptions(#15486) (overlookmotel)bc731fflinter/plugins: Stub out allContextAPIs (#15479) (overlookmotel)5822cb4linter/plugins: Addextendmethod toFILE_CONTEXT(#15477) (overlookmotel)7b1e6f3apps: Add pure rust binaries and release to github (#15469) (Boshen)2a89b43linter: Introduce debug assertions after fixes to assert validity (#15389) (camc314)ad3c45aeditor: Addoxc.path.nodeoption (#15040) (Sysix)🐛 Bug Fixes
6f3cd77linter/no-var: Incorrect warning for blocks (#15504) (Hamir Mahal)6957fb9linter/plugins: Do not allow access toContext#idincreateOnce(#15489) (overlookmotel)7409630linter/plugins: Allow access tocwdincreateOncein ESLint interop mode (#15488) (overlookmotel)732205eparser: Rejectusing/await usingin a switchcase/defaultclause (#15225) (sapphi-red)a17ca32linter/plugins: ReplaceContextclass (#15448) (overlookmotel)ecf2f7blanguage_server: Fail gracefully when tsgolint executable not found (#15436) (camc314)3c8d3a7lang-server: Improve logging in failure case for tsgolint (#15299) (camc314)ef71410linter: Use jsx if source type is JS in fix debug assertion (#15434) (camc314)e32bbf6linter/no-var: Handle TypeScript declare keyword in fixer (#15426) (camc314)6565dbelinter/switch-case-braces: Skip comments when searching for:token (#15425) (camc314)85bd19alinter/prefer-class-fields: Insert value after type annotation in fixer (#15423) (camc314)fde753elinter/plugins: Block access tocontext.settingsincreateOnce(#15394) (overlookmotel)ddd9f9flinter/forward-ref-uses-ref: Dont suggest removing wrapper in invalid positions (#15388) (camc314)dac2a9clinter/no-template-curly-in-string: Remove fixer (#15387) (camc314)989b8e3linter/no-var: Only fix toconstif the var has an initializer (#15385) (camc314)cc403f5linter/plugins: Return empty object for unimplemented parserServices (#15364) (magic-akari)⚡ Performance
25d577elanguage_server: Start tools in parallel (#15500) (Sysix)3c57291linter/plugins: Optimize loops (#15449) (overlookmotel)3166233linter/plugins: RemoveArcs (#15431) (overlookmotel)9de1322linter/plugins: Lazily deserialize settings JSON (#15395) (overlookmotel)3049ec2linter/plugins: OptimizedeepFreezeSettings(#15392) (overlookmotel)444ebfdlinter/plugins: Use single object forparserServices(#15378) (overlookmotel)📚 Documentation
97d2104linter: Update comment in lint.rs about default value for tsconfig path (#15530) (Connor Shea)2c6bd9elinter: Always refer as "ES2015" instead of "ES6" (#15411) (sapphi-red)a0c5203linter/import/named: Update "ES7" comment in examples (#15410) (sapphi-red)3dc24b5linter,minifier: Always refer as "ES Modules" instead of "ES6 Modules" (#15409) (sapphi-red)2ad77fblinter/no-this-before-super: Correct "Why is this bad?" section (#15408) (sapphi-red)57f0ce1linter: Add backquotes where appropriate (#15407) (sapphi-red)Oxfmt v0.12.0
🚀 Features
3251000oxfmt: Useprettierdirectly and bundleprettier(#15544) (Dunqing)7b1e6f3apps: Add pure rust binaries and release to github (#15469) (Boshen)33ad374oxfmt: Disable embedded formatting by default for alpha (#15402) (leaysgur)5708126formatter/sort_imports: Addoptions.newlinesBetween(#15369) (leaysgur)2dfc3bdformatter: RemoveTag::StartVerbatimandTag::EndVerbatim(#15370) (Dunqing)88c7530formatter: RemoveFormatElement::LocatedTokenText(#15367) (Dunqing)🐛 Bug Fixes
d32d22eformatter: CorrectFormatElementsize check (#15461) (Dunqing)b0f43f9formatter: Test call difference (#15356) (Dunqing)01f20f3formatter: Incorrect comment checking logic for grouping argument (#15354) (Dunqing)⚡ Performance
f4b75b6formatter: Pre-allocate enough space for the FormatElement buffer (#15422) (Dunqing)5a61189formatter: Avoid unnecessary allocation forBinaryLikeExpression(#15467) (Dunqing)064f835formatter: Optimize printing call arguments (#15464) (Dunqing)29f35b2formatter: Reuse previous indent stack inFitsMeasurer(#15416) (Dunqing)a6808a0oxfmt: UseAllocatorPoolto reuse allocator between threads (#15412) (leaysgur)2515045formatter: Use CodeBuffer's built-in print_indent to print indentation (#15406) (Dunqing)681607bformatter: Check theTextto see whether it has multiple lines based on its width (#15405) (Dunqing)b92deb4formatter: Replace String buffer with byte-oriented CodeBuffer (#14752) (Boshen)963b87fformatter: Addtext_without_whitespacefor text that can never have whitespace (#15403) (Dunqing)f30ce4bformatter: Optimize formatting literal string (#15380) (Dunqing)8f25a0eformatter: Memorize text width forFormatElement::Text(#15372) (Dunqing)f913543formatter: Avoid allocation forSyntaxTokenCowSlice(#15366) (Dunqing)98c9234formatter: OptimizeFormatElement::Tokenprinting (#15365) (Dunqing)oxc-project/tsgolint (oxlint-tsgolint)
v0.9.0Compare Source
What's Changed
032909dby @renovate[bot] in #50620bf4fcby @renovate[bot] in #50706abb77by @renovate[bot] in #508New Contributors
Full Changelog: oxc-project/tsgolint@v0.8.6...v0.9.0
v0.8.6Compare Source
What's Changed
5ac8497by @renovate[bot] in #500dcebe53by @renovate[bot] in #503cac2644by @renovate[bot] in #505Full Changelog: oxc-project/tsgolint@v0.8.5...v0.8.6
v0.8.5Compare Source
What's Changed
a767276by @renovate[bot] in #493dab8a33by @renovate[bot] in #497New Contributors
Full Changelog: oxc-project/tsgolint@v0.8.4...v0.8.5
v0.8.4Compare Source
What's Changed
ea6a3dcby @renovate[bot] in #473921184cby @renovate[bot] in #47839a5b7eby @renovate[bot] in #479dc6ce07by @renovate[bot] in #480545944bby @renovate[bot] in #48525d94f6by @renovate[bot] in #4861d138eaby @renovate[bot] in #487a568e20by @renovate[bot] in #490b9bed91by @renovate[bot] in #491Full Changelog: oxc-project/tsgolint@v0.8.3...v0.8.4
v0.8.3Compare Source
What's Changed
e34615cby @renovate[bot] in #465bd7c18dby @renovate[bot] in #466417387aby @renovate[bot] in #467d1be94bby @renovate[bot] in #470Full Changelog: oxc-project/tsgolint@v0.8.2...v0.8.3
v0.8.2Compare Source
What's Changed
733dc6aby @renovate[bot] in #454746dccaby @renovate[bot] in #455Full Changelog: oxc-project/tsgolint@v0.8.1...v0.8.2
v0.8.1Compare Source
What's Changed
c6c346eby @renovate[bot] in #448e027a2aby @renovate[bot] in #4494b4977aby @renovate[bot] in #45066ab80dby @renovate[bot] in #451Full Changelog: oxc-project/tsgolint@v0.8.0...v0.8.1
v0.8.0Compare Source
What's Changed
b33ab79by @renovate[bot] in #444Full Changelog: oxc-project/tsgolint@v0.7.3...v0.8.0
v0.7.3Compare Source
What's Changed
Full Changelog: oxc-project/tsgolint@v0.7.2...v0.7.3
v0.7.2Compare Source
What's Changed
valueMatchesSpecifieris called with certain kinds by @camc314 in #434d7d7aa4by @renovate[bot] in #436TypeOrValueSpecifierby @camc314 in #435inlineSpecifiersargument fromTypeMatchesSomeSpecifierby @camc314 in #438Full Changelog: oxc-project/tsgolint@v0.7.1...v0.7.2
v0.7.1Compare Source
What's Changed
Full Changelog: oxc-project/tsgolint@v0.7.0...v0.7.1
v0.7.0Compare Source
What's Changed
promise-function-asyncby @camchenry in #410require-array-sort-compareby @camchenry in #411restrict-plus-operandsby @camchenry in #412restrict-template-expressionsby @camchenry in #413return-awaitby @camchenry in #414strict-boolean-expressionsby @camchenry in #416switch-exhaustiveness-checkby @camchenry in #417unbound-methodby @camchenry in #4188fdec88by @renovate[bot] in #400dedfbd9by @renovate[bot] in #421cea534eby @renovate[bot] in #42405f4d69by @renovate[bot] in #427New Contributors
Full Changelog: oxc-project/tsgolint@v0.6.0...v0.7.0
v0.6.0[Compar
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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 Renovate Bot.