Skip to content

chore(deps): update all non-major dependencies#3086

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
buddy-bot/update-non-major-updates
Open

chore(deps): update all non-major dependencies#3086
github-actions[bot] wants to merge 1 commit into
mainfrom
buddy-bot/update-non-major-updates

Conversation

@github-actions

@github-actions github-actions Bot commented Mar 31, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Updates Summary

Type Count
📦 NPM Packages 14
Total 14

📦 npm Dependencies

npm

14 packages will be updated

Package Change Age Adoption Passing Confidence
esbuild (source) 0.27.7 -> 0.28.1 age adoption passing confidence
oxc-parser (source) 0.121.0 -> 0.138.0 age adoption passing confidence
oxc-transform (source) 0.121.0 -> 0.138.0 age adoption passing confidence
webpack (source) 5.106.2 -> 5.108.3 age adoption passing confidence
@stacksjs/bumpx (source) 0.2.4 -> 0.2.6 age adoption passing confidence
@stacksjs/bunpress (source) 0.1.4 -> 0.1.10 age adoption passing confidence
@stacksjs/clapp (source) 0.2.7 -> 0.2.10 age adoption passing confidence
@stacksjs/gitlint (source) 0.1.5 -> 0.1.6 age adoption passing confidence
@stacksjs/logsmith (source) 0.2.1 -> 0.2.3 age adoption passing confidence
@types/bun (source) 1.3.13 -> 1.3.14 age adoption passing confidence
buddy-bot (source) 0.9.19 -> 0.9.20 age adoption passing confidence
bun-git-hooks (source) 0.3.1 -> 0.3.2 age adoption passing confidence
bunfig (source) 0.15.11 -> 0.15.14 age adoption passing confidence
pickier (source) 0.1.28 -> 0.1.36 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

0.27.7 -> 0.28.1

v0.28.1

Compare Source

  • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

    This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

    Thanks to [dellalibera](https://github.com/dellalibera) for reporting this issue.

  • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

    The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if ...

[View full release notes]

Released by github-actions[bot] on 6/11/2026

v0.28.0

Compare Source

  • Add support for with { type: 'text' } imports (#4435)

    The import text proposal has reached stage 3 in the TC39 process, which means that it's recommended for implementation. It has also already been implemented by Deno and Bun. So with this release, esbuild also adds support for it. This behaves exactly the same as esbuild's existing text loader. Here's an example:

    import string from './example.txt' with { type: 'text' }
    console.log(string)
  • Add integrity checks to fallback download path (#4343)

    Installing esbuild via npm is somewhat complicated with several different edge cases (see esbuild's documentation for details). If the re...

[View full release notes]

Released by github-actions[bot] on 4/2/2026

oxc-project/oxc (oxc-parser)

0.121.0 -> 0.138.0

crates_v0.138.0

Compare Source

💥 BREAKING CHANGES

  • 94fbacb ast: [BREAKING] Only export AstBuilder and NONE in builder module (#23876) (overlookmotel)
  • 8de5122 ecmascript: [BREAKING] Switch to new AstBuilder (#23834) (overlookmotel)
  • dc0ef38 transformer: [BREAKING] Switch to new AstBuilder (#23831) (overlookmotel)
  • 88f4455 str: [BREAKING] Str and Ident methods take &GetAllocator (#23781) (overlookmotel)
  • 36009dd allocator: [BREAKING] GetAllocator::allocator take &self (#23676) (overlookmotel)
  • bd74f9d allocator: [BREAKING] Rename AllocatorAccessor trait to GetAllocator (#23675) (overlookmotel)

🚀 Features

  • 326fe25 transformer_plugins: Support typeof define keys (#23605) (Alexander Lichter)
  • f2091b3 ast: Unify old and new AstBuilders (#23875) (overlookmotel)
  • cd1fd12 codegen: Expose Codegen::print_string API (#23785) (camc314)
  • 785461b ast: Add custom builder methods to AST types (#23651) (overlookmotel)
  • 05d1357 ast: Ad...

[View full release notes]

Released by github-actions[bot] on 6/29/2026

apps_v1.71.0

Compare Source

Table of Contents

Oxlint v1.71.0

🚀 Features

  • ff65285 linter: no-restricted-globals add missing upstream options (#23663) (Sysix)
  • 7b8bd89 linter/typescript: Implement suggestion for no-unnecessary-type-constraint rule (#23646) (Mikhail Baev)
  • 0dc2405 linter: Add schema for eslint/no-restricted-properties (#23619) (Sysix)
  • b638d0e linter: Add schema for node/callback-return (#23615) (Sysix)
  • eb8bedc linter: Add schema for import/extensions (#23557) (WaterWhisperer)
  • 46f3625 linter: Implement node/no-sync rule (#23589) (fujitani sora)
  • b01739a linter: Add schema for unicorn/numeric-separators-style (#23554) (Mikhail Baev)
  • 68afd2a linter/node: Implement no-mixed-requires rule (#23539) (fujitani sora)
  • 59d8893 linter: unicorn/numeric-separators-style support missing options (#23524) (Sysix)
  • a421215 linter: Add schema for eslint/prefer-destructuring (#23410)...

[View full release notes]

Released by github-actions[bot] on 6/22/2026

crates_v0.137.0

Compare Source

💥 BREAKING CHANGES

  • 7a76cd3 estree: [BREAKING] Make whether to include TS fields a runtime option (#23574) (overlookmotel)
  • e7b6b68 estree: [BREAKING] ESTree config use methods not consts (#23573) (overlookmotel)

🚀 Features

  • 556cc6d data_structures: Add CodeBuffer::as_str method (#23571) (overlookmotel)
  • 38c4b06 parser: Add friendly error for adjacent JSX elements (#23378) (sapphi-red)
  • 53509a8 minifier: Treeshake pure typed arrays and Set/Map array literals (#23469) (Dunqing)
  • 09762d9 minifier: Inline const value for read-only vars (#22593) (Dunqing)

🐛 Bug Fixes

  • 20375f9 react_compiler: Keep imports referenced only by a computed key (#23586) (Boshen)
  • 31bfd9b minifier: Keep Object introspection calls on a possible Proxy (#23483) (Dunqing)
  • 837a395 parser: Treat a line comment after ':' as leading, not trailing (#23515) (Dunqing)
  • e409fe0 minifier: Keep new Map/WeakSet/WeakMap with a string argument (#23470) (Dunqing)
    ...

[View full release notes]

Released by github-actions[bot] on 6/18/2026

oxc-project/oxc (oxc-transform)

0.121.0 -> 0.138.0

crates_v0.138.0

Compare Source

💥 BREAKING CHANGES

  • 94fbacb ast: [BREAKING] Only export AstBuilder and NONE in builder module (#23876) (overlookmotel)
  • 8de5122 ecmascript: [BREAKING] Switch to new AstBuilder (#23834) (overlookmotel)
  • dc0ef38 transformer: [BREAKING] Switch to new AstBuilder (#23831) (overlookmotel)
  • 88f4455 str: [BREAKING] Str and Ident methods take &GetAllocator (#23781) (overlookmotel)
  • 36009dd allocator: [BREAKING] GetAllocator::allocator take &self (#23676) (overlookmotel)
  • bd74f9d allocator: [BREAKING] Rename AllocatorAccessor trait to GetAllocator (#23675) (overlookmotel)

🚀 Features

  • 326fe25 transformer_plugins: Support typeof define keys (#23605) (Alexander Lichter)
  • f2091b3 ast: Unify old and new AstBuilders (#23875) (overlookmotel)
  • cd1fd12 codegen: Expose Codegen::print_string API (#23785) (camc314)
  • 785461b ast: Add custom builder methods to AST types (#23651) (overlookmotel)
  • 05d1357 ast: Ad...

[View full release notes]

Released by github-actions[bot] on 6/29/2026

apps_v1.71.0

Compare Source

Table of Contents

Oxlint v1.71.0

🚀 Features

  • ff65285 linter: no-restricted-globals add missing upstream options (#23663) (Sysix)
  • 7b8bd89 linter/typescript: Implement suggestion for no-unnecessary-type-constraint rule (#23646) (Mikhail Baev)
  • 0dc2405 linter: Add schema for eslint/no-restricted-properties (#23619) (Sysix)
  • b638d0e linter: Add schema for node/callback-return (#23615) (Sysix)
  • eb8bedc linter: Add schema for import/extensions (#23557) (WaterWhisperer)
  • 46f3625 linter: Implement node/no-sync rule (#23589) (fujitani sora)
  • b01739a linter: Add schema for unicorn/numeric-separators-style (#23554) (Mikhail Baev)
  • 68afd2a linter/node: Implement no-mixed-requires rule (#23539) (fujitani sora)
  • 59d8893 linter: unicorn/numeric-separators-style support missing options (#23524) (Sysix)
  • a421215 linter: Add schema for eslint/prefer-destructuring (#23410)...

[View full release notes]

Released by github-actions[bot] on 6/22/2026

crates_v0.137.0

Compare Source

💥 BREAKING CHANGES

  • 7a76cd3 estree: [BREAKING] Make whether to include TS fields a runtime option (#23574) (overlookmotel)
  • e7b6b68 estree: [BREAKING] ESTree config use methods not consts (#23573) (overlookmotel)

🚀 Features

  • 556cc6d data_structures: Add CodeBuffer::as_str method (#23571) (overlookmotel)
  • 38c4b06 parser: Add friendly error for adjacent JSX elements (#23378) (sapphi-red)
  • 53509a8 minifier: Treeshake pure typed arrays and Set/Map array literals (#23469) (Dunqing)
  • 09762d9 minifier: Inline const value for read-only vars (#22593) (Dunqing)

🐛 Bug Fixes

  • 20375f9 react_compiler: Keep imports referenced only by a computed key (#23586) (Boshen)
  • 31bfd9b minifier: Keep Object introspection calls on a possible Proxy (#23483) (Dunqing)
  • 837a395 parser: Treat a line comment after ':' as leading, not trailing (#23515) (Dunqing)
  • e409fe0 minifier: Keep new Map/WeakSet/WeakMap with a string argument (#23470) (Dunqing)
    ...

[View full release notes]

Released by github-actions[bot] on 6/18/2026

webpack/webpack (webpack)

5.106.2 -> 5.108.3

v5.108.3

Compare Source

Patch Changes

Released by github-actions[bot] on 6/29/2026

v5.108.2

Compare Source

Patch Changes

Released by github-actions[bot] on 6/29/2026

v5.108.1

Compare Source

Patch Changes

Released by github-actions[bot] on 6/26/2026

stacksjs/bumpx (@stacksjs/bumpx)

0.2.4 -> 0.2.6

v0.2.6

Compare Source

Released by github-actions[bot] on 5/4/2026

v0.2.5

Compare Source

Released by github-actions[bot] on 4/26/2026

stacksjs/bunpress (@stacksjs/bunpress)

0.1.4 -> 0.1.10

v0.1.10

Compare Source

Released by github-actions[bot] on 6/29/2026

v0.1.6

Compare Source

Released by github-actions[bot] on 5/24/2026

v0.1.5

Compare Source

Released by github-actions[bot] on 5/10/2026

stacksjs/clapp (@stacksjs/clapp)

0.2.7 -> 0.2.10

v0.2.10

Compare Source

Released by github-actions[bot] on 5/14/2026

v0.2.9

Compare Source

Released by github-actions[bot] on 5/11/2026

v0.2.8

Compare Source

Released by github-actions[bot] on 5/6/2026

stacksjs/gitlint (@stacksjs/gitlint)

0.1.5 -> 0.1.6

v0.x.x

Compare Source

Released by github-actions[bot] on 5/8/2026

stacksjs/logsmith (@stacksjs/logsmith)

0.2.1 -> 0.2.3

v0.2.3

Compare Source

Released by github-actions[bot] on 5/27/2026

DefinitelyTyped/DefinitelyTyped (@types/bun)

1.3.13 -> 1.3.14

Compare Source

TypeScript definitions for bun

📖 View Release Notes

🔗 View Changelog

Release Notes

Changelog

stacksjs/buddy-bot (buddy-bot)

0.9.19 -> 0.9.20

v0.9.20

Compare Source

Released by github-actions[bot] on 5/25/2026

v0.9.9

Compare Source

Released by github-actions[bot] on 10/15/2025

v0.9.8

Compare Source

Released by github-actions[bot] on 10/7/2025

stacksjs/bun-git-hooks (bun-git-hooks)

0.3.1 -> 0.3.2

v0.3.2

Compare Source

Released by github-actions[bot] on 5/14/2026

stacksjs/bunfig (bunfig)

0.15.11 -> 0.15.14

v0.15.14

Compare Source

Released by github-actions[bot] on 6/10/2026

v0.15.13

Compare Source

Released by github-actions[bot] on 5/8/2026

v0.15.12

Compare Source

Released by github-actions[bot] on 5/8/2026

pickier/pickier (pickier)

0.1.28 -> 0.1.36

v0.1.36

Compare Source

Released by github-actions[bot] on 6/27/2026

v0.1.35

Compare Source

Released by github-actions[bot] on 6/10/2026

v0.1.34

Compare Source

Released by github-actions[bot] on 6/9/2026


📊 Package Statistics

  • esbuild: 237,969,557 weekly downloads
  • oxc-parser: 20,404,253 weekly downloads
  • oxc-transform: 4,081,022 weekly downloads
  • webpack: 49,468,822 weekly downloads
  • @stacksjs/bumpx: 57,408 weekly downloads
  • @stacksjs/bunpress: 57,073 weekly downloads
  • @stacksjs/clapp: 62,153 weekly downloads
  • @stacksjs/gitlint: 56,783 weekly downloads
  • @stacksjs/logsmith: 56,780 weekly downloads
  • @types/bun: 7,992,362 weekly downloads
  • buddy-bot: 57,506 weekly downloads
  • bun-git-hooks: 58,513 weekly downloads
  • bunfig: 61,955 weekly downloads
  • pickier: 49,695 weekly downloads

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Buddy 🤖

@netlify

netlify Bot commented Mar 31, 2026

Copy link
Copy Markdown

Deploy Preview for dtsx failed. Why did it fail? →

Name Link
🔨 Latest commit c8adeec
🔍 Latest deploy log https://app.netlify.com/projects/dtsx/deploys/6a42f167a00c5f00081a1c1f

@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 5 times, most recently from 61ed6ee to b87e7e3 Compare April 8, 2026 16:32
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 5 times, most recently from 6dd80d5 to 63953e4 Compare April 16, 2026 03:11
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 5 times, most recently from b58cfd0 to b584df4 Compare April 27, 2026 12:41
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 2 times, most recently from 12129d3 to b66c751 Compare April 28, 2026 00:52
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 8 times, most recently from 9c5c761 to 4cdecef Compare May 4, 2026 05:15
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 5 times, most recently from 2fcdb27 to d1e713e Compare May 21, 2026 20:50
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 8 times, most recently from db2205c to e83a201 Compare May 29, 2026 22:35
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 2 times, most recently from 622dd38 to 082e722 Compare June 8, 2026 15:13
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 6 times, most recently from 00830a2 to 638e100 Compare June 15, 2026 16:02
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 2 times, most recently from 69cf686 to b63aac9 Compare June 25, 2026 11:02
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 5 times, most recently from 34a6807 to a3ae49a Compare June 29, 2026 20:41
@github-actions github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch from a3ae49a to c8adeec Compare June 29, 2026 22:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants