← Back to issue list

chore(deps): update development dependencies (minor and patch)

View original Github issue

Metadata

Project
craft-actions
Number
#91
Type
pull request
State
merged
Author
renovate[bot]
Labels
dependencies
Created
Updated
Closed

Current evaluation

Merged automated dependency update advancing esbuild to 0.28.2 and typescript-eslint to 8.67.0. Approved by reviewer, passed all CI checks, and merged into the main branch.

Suggested action:

No scores available.

Issue body

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [esbuild](https://redirect.github.com/evanw/esbuild) | [`0.28.1` → `0.28.2`](https://renovatebot.com/diffs/npm/esbuild/0.28.1/0.28.2) | ![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.28.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.28.1/0.28.2?slim=true) | | [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)) | [`8.66.0` → `8.67.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.66.0/8.67.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/typescript-eslint/8.67.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript-eslint/8.66.0/8.67.0?slim=true) | --- ### Release Notes <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.28.2`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0282) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.28.1...v0.28.2) - Fix tree shaking bug due to TypeScript import alias ([#&#8203;4507](https://redirect.github.com/evanw/esbuild/issues/4507)) This release fixes a bug that could cause esbuild to incorrectly tree-shake imports that are used in a TypeScript type alias under certain circumstances. Affected code uses a TypeScript-specific `import` assignment and looks something like this: ```ts import Base from './dep.js'; import Alias = Base.SomeType; ``` - Fix CSS minification bug involving `&` ([#&#8203;4497](https://redirect.github.com/evanw/esbuild/issues/4497)) This release fixes a bug where esbuild's CSS minifier incorrectly removed a `&` when it was unsafe to do so. Here is an example: ```css /* Original code */ .a .b { & .b:not(& .c) { color: red; } } /* Old output (with --minify) */ .a .b{.b:not(& .c){color:red}} /* New output (with --minify) */ .a .b{& .b:not(& .c){color:red}} ``` This should match `<span class="a"><span class="b"><span class="b">yes</span></span></span>` but not `<span class="a"><span class="b">no</span></span>`. The old output incorrectly matched both. - Avoid overwriting input files without `--allow-overwrite` ([#&#8203;4484](https://redirect.github.com/evanw/esbuild/issues/4484)) For example: `esbuild input.js --outfile=input.js` tells esbuild to overwrite `input.js` with the output of running esbuild on it. This was supposed to already be prevented by default, but it accidentally regressed in version 0.17.0 and apparently didn't have any test coverage. The error message was being printed but the input file was still being overwritten. Oops. This release puts the original behavior back. With this release, esbuild should now actually avoid overwriting input files unless `--allow-overwrite` is explicitly present. This is done by not writing out any files when a build error is encountered. - Fix incorrect code generated when using top-level await ([#&#8203;4498](https://redirect.github.com/evanw/esbuild/issues/4498)) Previously esbuild could generate code containing a syntax error in complex scenarios involving top-level await used in a dependency cycle. The problem was a missing `async` on one or more module wrapper closures. With this release, esbuild now uses a fixed-point iteration algorithm to correctly annotate all dependencies in the cycle as needing an `async` module wrapper. - Fix a minification bug with lowered logical assignment operators ([#&#8203;4508](https://redirect.github.com/evanw/esbuild/issues/4508)) This release fixes a bug that could cause esbuild to generate incorrect code for logical assignment operators when lowering them to an older target environment. Specifically the lowering process requires duplicating the left-hand side, but esbuild incorrectly failed to count the duplicate as a new usage when the left-hand side is an identifier. That then caused the minifier to believe that the left-hand side was only used once and could attempt to incorrectly inline an initializer into the first usage. This bug has now been fixed: ```js // Original code function foo() { let x bar(x ||= {}) } // Old output (with --minify-syntax --target=es6) function foo() { bar(void 0 || (x = {})); } // New output (with --minify-syntax --target=es6) function foo() { let x; bar(x || (x = {})); } ``` - Fix a potential deadlock when the JavaScript API is used incorrectly ([#&#8203;4503](https://redirect.github.com/evanw/esbuild/issues/4503), [#&#8203;4506](https://redirect.github.com/evanw/esbuild/pull/4506)) The JavaScript API runs the native esbuild executable as a long-lived child process and communicates with it over stdin/stdout/stderr. Each API request is asynchronous and the executable stays open as long as it has work to do, which is as long as either stdin is still open (meaning there may be more API requests) or there are currently requests being processed. Previously esbuild's tracking of outstanding API requests missed decrementing a reference count in an edge case where esbuild's JavaScript API was used incorrectly and the API request returned an error. This could in some cases cause esbuild's native executable to exit with an error message about a deadlock. This release fixes the reference counting bug. This fix was submitted by [@&#8203;ZuBB](https://redirect.github.com/ZuBB). - Handle target collisions ([#&#8203;4509](https://redirect.github.com/evanw/esbuild/issues/4509)) It's possible to specify the same target engine multiple times, such as with `--target=chrome1,chrome99`. This edge case wasn't anticipated and previously took the last version for the duplicated target engine instead of the minimum version (so `chrome99` in this case instead of `chrome1`). With this release, esbuild will now pick the minimum version between all duplicated target engines. - Force `.mp3` files to use the `audio/mpeg` MIME type ([#&#8203;4485](https://redirect.github.com/evanw/esbuild/issues/4485)) MIME type detection for esbuild's data URLs uses Go's built-in MIME type detection, which is based on the [MIME sniffing standard](https://mimesniff.spec.whatwg.org/). This works correctly for MP3 files that start with the byte sequence `ID3`, which is commonly the case. However, it's possible to construct valid MP3 files that do not start with `ID3`, and that perhaps Go's built-in MIME type detection doesn't implement the "Signature for MP3 without ID3" part of the algorithm. This results in some `.mp3` files incorrectly using the `application/octet-stream` MIME type instead of `audio/mpeg`. With this release, esbuild will now always use the `audio/mpeg` MIME type for files ending in `.mp3`. - Add a new TypeScript syntax warning TypeScript 7 turned some previously-valid TypeScript syntax into a syntax error because it was confusing. TypeScript 6 accepts `1 + 2 as number * 3` as valid syntax but confusingly converts it to `(1 + 2) * 3` instead of the more intuitive conversion to `1 + (2 * 3)`. This syntax is now an error in TypeScript 7+. With this release, esbuild will now warn about the use of this syntax: ```ts ▲ [WARNING] Operator "*" should not directly follow a TypeScript type cast after the "+" operator [confusing-typescript-cast] example.ts:1:28: 1 │ console.log(1 + 2 as number * 3) ╵ ^ This is a syntax error in newer versions of TypeScript because the type cast has unintuitive precedence in this case. Surround the inner expression in parentheses to silence this warning: example.ts:1:12: 1 │ console.log(1 + 2 as number * 3) │ ~~~~~~~~~~~~~~~ ╵ ( ) ``` See [microsoft/TypeScript#63527](https://redirect.github.com/microsoft/TypeScript/issues/63527) for more information. - Add support for formatting errors for Visual Studio ([#&#8203;4460](https://redirect.github.com/evanw/esbuild/issues/4460)) Visual Studio has a specific style that it expects log messages to be in for them to show up in the UI when esbuild is run as a custom build step. The current log style that esbuild uses doesn't conform to this specific style. With this release, esbuild has a new log style for Visual Studio (and other tools in the MSBuild ecosystem) that can be enabled with `--log-style=visualstudio`. Here is an example log message in this style: ``` $ esbuild example.ts --log-style=visualstudio /Users/evan/dev/esbuild/example.ts(1,29): warning ES0010: Operator "*" should not directly follow a TypeScript type cast after the "+" operator ``` This log style is also available via the JS and Go APIs, and can now be used with the existing `formatMessages` API. - Fix a bug with CSS gamut mapping ([#&#8203;4488](https://redirect.github.com/evanw/esbuild/pull/4488)) Due to a typo, the fallback colors generated for CSS colors outside of the sRGB gamut weren't correct. This release fixes the generated colors to use the intended algorithm. This fix was submitted by [@&#8203;chatman-media](https://redirect.github.com/chatman-media). </details> <details> <summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary> ### [`v8.67.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8670-2026-08-10) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.66.0...v8.67.0) ##### 🚀 Features - **typescript-eslint:** export basic globs for using tseslint ([#&#8203;12105](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12105)) ##### ❤️ Thank You - Claude Sonnet 5 - Evyatar Daud [@&#8203;StyleShit](https://redirect.github.com/StyleShit) - Josh Goldberg - Josh Goldberg ✨ - Kirk Waiblinger [@&#8203;kirkwaiblinger](https://redirect.github.com/kirkwaiblinger) See [GitHub Releases](https://redirect.github.com/typescript-eslint/typescript-eslint/releases/tag/v8.67.0) for more information. You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website. </details> --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - "every weekend" - Automerge - "after 1 am and before 7 am" 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/canonical/craft-actions). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4yOS41IiwidXBkYXRlZEluVmVyIjoiNDQuMjkuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

Evaluation history

Date Model Scores Action Summary
qwen/qwen3.6-35b-a3b Merged automated dependency update advancing esbuild to 0.28.2 and typescript-eslint to 8.67.0. Approved by reviewer, passed all CI checks, and merged into the main branch.
qwen/qwen3.6-35b-a3b
Staleness: 5
Complexity: 5
Confidence: 95
needs review Updates esbuild to 0.28.2 and typescript-eslint to 8.67.0. Approved by one reviewer, all CI checks passing, and automerge is enabled. Ready to land.
qwen/qwen3.6-35b-a3b
Staleness: 0
Complexity: 5
Confidence: 95
needs review Updates esbuild to 0.28.2 and typescript-eslint to 8.67.0. CI passes, automerge enabled, awaiting maintainer review.

Update history

Date Change
updated
updated
created

Related issues

Issue Project State Summary Similarity
#76 chore(deps): update development dependencies (minor and patch) craft-actions merged Merged automated updates for development dependencies, including eslint, prettier, typescript-eslint, vitest, and @types/node. All CI checks passed successfully, and the changes were applied to the main branch.
89%
#110 chore(deps): update development dependencies (minor and patch) craft-actions merged Merged automated development dependency updates for @types/node, eslint, and typescript-eslint. Approved by a reviewer, passed all CI checks, and merged into main via Renovate bot automerge.
89%
#85 chore(deps): update development dependencies (minor and patch) craft-actions merged Merged automated dependency updates for prettier (3.9.5 to 3.9.6) and typescript-eslint (8.63.0 to 8.65.0). Approved by one reviewer with all CI checks passing.
88%
#11 chore(deps): update development dependencies (minor and patch) craft-actions merged Merged automated dependency updates after passing CI and receiving two approvals. Renovate bot upgraded @types/node, esbuild, eslint-plugin-jest, prettier, ts-jest, and typescript-eslint to their latest minor and patch versions.
88%
#70 chore(deps): update development dependencies (minor and patch) craft-actions merged Merged automated minor and patch updates for development dependencies including @types/node, eslint, prettier, and typescript-eslint. Approved by a reviewer, passed all CI checks, and merged via Renovate automerge.
88%
#89 chore(deps): update development dependencies (minor and patch) craft-actions merged Merged automated development dependency updates for @types/node, eslint, and typescript-eslint. Approved by one reviewer, passed all CI checks, and automatically merged per Renovate configuration.
87%
#103 chore(deps): update development dependencies (minor and patch) craft-actions merged Merged automated dev dependency updates via Renovate. Updated @types/node to 26.4.0, eslint to 10.9.1, and typescript-eslint to 8.68.0. Passed all CI checks, received one approval, and was auto-merged into main.
87%
#115 chore(deps): update development dependencies (minor and patch) craft-actions open Updates @types/node and typescript-eslint dev dependencies to latest minor versions. Fresh PR with passing CI, awaiting maintainer review.
86%
#41 chore(deps): update dependency esbuild to ^0.25.0 [security] craft-actions merged Merged automated update upgrading esbuild from ^0.21.0 to ^0.25.0 to patch GHSA-67mh-4wv8-2f99, a CORS misconfiguration vulnerability allowing local source code theft. Approved by two reviewers and passed all CI checks.
81%
#1604 chore(deps): update development dependencies (non-major) charmcraft merged Merged automated development dependency updates after passing CI and receiving two approvals. Updated hypothesis, pytest, types-Deprecated, types-PyYAML, types/pyright, and types/types-requests to latest non-major versions.
80%