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
@stacksjs/bunpress (source) 0.1.4 -> 0.2.14 age adoption passing confidence
@types/bun (source) 1.3.13 -> 1.4.1 age adoption passing confidence
buddy-bot (source) 0.9.19 -> 0.10.5 age adoption passing confidence
esbuild (source) 0.27.7 -> 0.28.2 age adoption passing confidence
oxc-parser (source) 0.121.0 -> 0.148.0 age adoption passing confidence
oxc-transform (source) 0.121.0 -> 0.148.0 age adoption passing confidence
webpack (source) 5.106.2 -> 5.110.3 age adoption passing confidence
@stacksjs/bumpx (source) 0.2.6 -> 0.2.17 age adoption passing confidence
@stacksjs/clapp (source) 0.2.7 -> 0.2.15 age adoption passing confidence
@stacksjs/gitlint (source) 0.1.5 -> 0.1.8 age adoption passing confidence
@stacksjs/logsmith (source) 0.2.1 -> 0.2.11 age adoption passing confidence
bun-git-hooks (source) 0.3.1 -> 0.3.3 age adoption passing confidence
bunfig (source) 0.15.11 -> 0.15.19 age adoption passing confidence
pickier (source) 0.1.28 -> 0.1.65 age adoption passing confidence

Release Notes

stacksjs/bunpress (@stacksjs/bunpress)

0.1.4 -> 0.2.14

v0.2.14

Compare Source

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

v0.2.13

Compare Source

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

v0.2.12

Compare Source

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

DefinitelyTyped/DefinitelyTyped (@types/bun)

1.3.13 -> 1.4.1

Compare Source

TypeScript definitions for bun

📖 View Release Notes

🔗 View Changelog

Release Notes

Changelog

stacksjs/buddy-bot (buddy-bot)

0.9.19 -> 0.10.5

v0.10.5

Compare Source

Compare changes

⚡ Performance Improvements

🔧 Chores

Contributors

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

v0.9.27

Compare Source

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

v0.9.26

Compare Source

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

evanw/esbuild (esbuild)

0.27.7 -> 0.28.2

v0.28.2

Compare Source

  • Fix tree shaking bug due to TypeScript import alias (#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:

    import Base from './dep.js';
    import Alias = Base.SomeType;
  • Fix CSS minification bug involving & (#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:

    /* 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 no...

[View full release notes]

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

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.148.0

crates_v0.148.0

Compare Source

💥 BREAKING CHANGES

  • a31567a allocator: [BREAKING] Make Allocator::cursor_ptr and data_end_ptr private (#26081) (overlookmotel)

🚀 Features

  • 115955d minifier: Drop cases whose condition is statically false (#26172) (Armano)
  • 784e9fa minifier: Invert !0 and !1 in place for boolean context to 1 and 0 (#26050) (Armano)
  • 1e902cc minifier: Expand fold leading assignments into the var decl (#26142) (Armano)
  • 3ed4f6a minifier: Expand de morgan's optimization to allow move of ! (#25930) (Armano)
  • 5672585 parser: Attach all comments to nodes (#25944) (camc314)

🐛 Bug Fixes

  • a3d33dd semantic: Skip body bindings in type parameters and this param (#26169) (Dunqing)
  • 4adfb4c semantic: Validate chained continue labels (#26157) (camc314)
  • b874f48 ecmascript: Math.round only exact half ties (#26150) (camc314)
  • a625378 minifier: Coerce omitted indexOf search argument (#26149) (camc314)
  • dc7398b ecmascript: Trim trailing whitespace ...

[View full release notes]

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

apps_v1.81.0

Compare Source

Table of Contents

Oxlint v1.81.0

🚀 Features

  • 60b945d linter/nextjs/no-typos: Implement suggestion (#26091) (Mikhail Baev)

🐛 Bug Fixes

  • 33ac4b0 linter/lsp: Prevent tsgolint from holding onto processes (#25570) (Adrian Schaedle)
  • baf4b1e linter/import/no-empty-named-blocks: Make empty value import removal a suggestion (#26155) (camc314)
  • 77cfaec linter/eslint/object-shorthand: Preserve __proto__ semantics (#26154) (camc314)
  • fa3c082 linter/unicorn/prefer-set-size: Ignore shadowed Set constructors (#26153) (camc314)
  • e412cf2 linter: Clamp invalid JS plugin locations (#26144) (camc314)
  • d86c113 linter: Normalize reversed JS plugin locations (#26138) (camc314)
  • 73c09b2 linter/eslint/no-use-before-define: Run on JS, JSX files (#26114) (camc314)
  • 03ef0f2 linter/unicorn/no-useless-spread: Treat typed arrays as a distinct value hint (#26067) (Aadharsh Pannirselvam)
  • bd1590...

[View full release notes]

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

crates_v0.147.0

Compare Source

🚀 Features

  • b6e9e5e minifier: Fold switch stmt whose parent is not block stmt (#25403) (Armano)

🐛 Bug Fixes

  • 8db1053 codegen: Require sourcemap for example (#26047) (camc314)
  • 8a9bdbd estree: Include decorators in FormalParameterRest spans (#26021) (camc314)
  • 6f0c7cf minifier: Avoid merging if to for in sloppy mode when containing function declaration (#25638) (sapphi-red)
  • 2cde1f6 rust: Address nightly deprecations (#25998) (Boshen)
  • 6c5ad1b codegen: Only add mapping names for PrivateIdentifiers which have changed (#25958) (overlookmotel)
  • 2dad1e0 parser: Track irregular line terminators in trivia (#25947) (camc314)
  • 58ba651 minifier: Avoid merging if to for when the body contains a function declaration (#25637) (sapphi-red)
  • a185ac3 codegen: Print # before private identifier in TS signature key (#25938) (overlookmotel)
  • af82a07 minifier: Keep unary + when the other operand has side effects (#25645) (Kotaro Chikuba)

⚡ Pe...

[View full release notes]

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

oxc-project/oxc (oxc-transform)

0.121.0 -> 0.148.0

crates_v0.148.0

Compare Source

💥 BREAKING CHANGES

  • a31567a allocator: [BREAKING] Make Allocator::cursor_ptr and data_end_ptr private (#26081) (overlookmotel)

🚀 Features

  • 115955d minifier: Drop cases whose condition is statically false (#26172) (Armano)
  • 784e9fa minifier: Invert !0 and !1 in place for boolean context to 1 and 0 (#26050) (Armano)
  • 1e902cc minifier: Expand fold leading assignments into the var decl (#26142) (Armano)
  • 3ed4f6a minifier: Expand de morgan's optimization to allow move of ! (#25930) (Armano)
  • 5672585 parser: Attach all comments to nodes (#25944) (camc314)

🐛 Bug Fixes

  • a3d33dd semantic: Skip body bindings in type parameters and this param (#26169) (Dunqing)
  • 4adfb4c semantic: Validate chained continue labels (#26157) (camc314)
  • b874f48 ecmascript: Math.round only exact half ties (#26150) (camc314)
  • a625378 minifier: Coerce omitted indexOf search argument (#26149) (camc314)
  • dc7398b ecmascript: Trim trailing whitespace ...

[View full release notes]

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

apps_v1.81.0

Compare Source

Table of Contents

Oxlint v1.81.0

🚀 Features

  • 60b945d linter/nextjs/no-typos: Implement suggestion (#26091) (Mikhail Baev)

🐛 Bug Fixes

  • 33ac4b0 linter/lsp: Prevent tsgolint from holding onto processes (#25570) (Adrian Schaedle)
  • baf4b1e linter/import/no-empty-named-blocks: Make empty value import removal a suggestion (#26155) (camc314)
  • 77cfaec linter/eslint/object-shorthand: Preserve __proto__ semantics (#26154) (camc314)
  • fa3c082 linter/unicorn/prefer-set-size: Ignore shadowed Set constructors (#26153) (camc314)
  • e412cf2 linter: Clamp invalid JS plugin locations (#26144) (camc314)
  • d86c113 linter: Normalize reversed JS plugin locations (#26138) (camc314)
  • 73c09b2 linter/eslint/no-use-before-define: Run on JS, JSX files (#26114) (camc314)
  • 03ef0f2 linter/unicorn/no-useless-spread: Treat typed arrays as a distinct value hint (#26067) (Aadharsh Pannirselvam)
  • bd1590...

[View full release notes]

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

crates_v0.147.0

Compare Source

🚀 Features

  • b6e9e5e minifier: Fold switch stmt whose parent is not block stmt (#25403) (Armano)

🐛 Bug Fixes

  • 8db1053 codegen: Require sourcemap for example (#26047) (camc314)
  • 8a9bdbd estree: Include decorators in FormalParameterRest spans (#26021) (camc314)
  • 6f0c7cf minifier: Avoid merging if to for in sloppy mode when containing function declaration (#25638) (sapphi-red)
  • 2cde1f6 rust: Address nightly deprecations (#25998) (Boshen)
  • 6c5ad1b codegen: Only add mapping names for PrivateIdentifiers which have changed (#25958) (overlookmotel)
  • 2dad1e0 parser: Track irregular line terminators in trivia (#25947) (camc314)
  • 58ba651 minifier: Avoid merging if to for when the body contains a function declaration (#25637) (sapphi-red)
  • a185ac3 codegen: Print # before private identifier in TS signature key (#25938) (overlookmotel)
  • af82a07 minifier: Keep unary + when the other operand has side effects (#25645) (Kotaro Chikuba)

⚡ Pe...

[View full release notes]

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

webpack/webpack (webpack)

5.106.2 -> 5.110.3

v5.110.3

Compare Source

Patch Changes

[View full release notes]

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

v5.110.2

Compare Source

Patch Changes

[View full release notes]

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

v5.110.1

Compare Source

Patch Changes

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

stacksjs/bumpx (@stacksjs/bumpx)

0.2.6 -> 0.2.17

v0.2.17

Compare Source

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

v0.2.9

Compare Source

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

v0.2.8

Compare Source

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

stacksjs/clapp (@stacksjs/clapp)

0.2.7 -> 0.2.15

v0.2.15

Compare Source

Released by github-actions[bot] on 8/28/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.8

v0.1.8

Compare Source

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

v0.1.7

Compare Source

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

v0.x.x

Compare Source

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

stacksjs/logsmith (@stacksjs/logsmith)

0.2.1 -> 0.2.11

v0.2.11

Compare Source

Released by github-actions[bot] on 7/28/2026

v0.2.10

Compare Source

Released by github-actions[bot] on 7/28/2026

v0.2.9

Compare Source

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

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

0.3.1 -> 0.3.3

v0.3.3

Compare Source

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

v0.3.2

Compare Source

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

stacksjs/bunfig (bunfig)

0.15.11 -> 0.15.19

v0.15.19

Compare Source

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

v0.15.18

Compare Source

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

v0.15.17

Compare Source

Released by github-actions[bot] on 7/31/2026

pickier/pickier (pickier)

0.1.28 -> 0.1.65

v0.1.65

Compare Source

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

v0.1.64

Compare Source

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

v0.1.63

Compare Source

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


📊 Package Statistics

  • @stacksjs/bunpress: 77,770 weekly downloads
  • @types/bun: 12,410,157 weekly downloads
  • buddy-bot: 52,539 weekly downloads
  • esbuild: 275,165,454 weekly downloads
  • oxc-parser: 47,887,056 weekly downloads
  • oxc-transform: 4,984,063 weekly downloads
  • webpack: 56,430,458 weekly downloads
  • @stacksjs/bumpx: 55,538 weekly downloads
  • @stacksjs/clapp: 73,712 weekly downloads
  • @stacksjs/gitlint: 50,893 weekly downloads
  • @stacksjs/logsmith: 52,429 weekly downloads
  • bun-git-hooks: 51,446 weekly downloads
  • bunfig: 89,630 weekly downloads
  • pickier: 62,072 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 dda8384
🔍 Latest deploy log https://app.netlify.com/projects/dtsx/deploys/6a9b13af50046000086e6f34

@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 4 times, most recently from d1e713e to ff6ff5e Compare May 24, 2026 22:24
@github-actions
github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 7 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 6 times, most recently from a3ae49a to c8adeec Compare June 29, 2026 22:27
@github-actions
github-actions Bot force-pushed the buddy-bot/update-non-major-updates branch 2 times, most recently from 6815806 to 29bec83 Compare July 4, 2026 22:59
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