Skip to content
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

fix(deps): update all non-major dependencies #1306

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 24, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@microsoft/api-extractor (source) ^7.50.0 -> ^7.52.2 age adoption passing confidence
@swc/core (source) 1.10.18 -> 1.11.16 age adoption passing confidence
@types/node (source) 22.13.4 -> 22.14.0 age adoption passing confidence
bumpp ^10.0.3 -> ^10.1.0 age adoption passing confidence
consola ^3.4.0 -> ^3.4.2 age adoption passing confidence
esbuild ^0.25.0 -> ^0.25.2 age adoption passing confidence
fix-dts-default-cjs-exports ^1.0.0 -> ^1.0.1 age adoption passing confidence
pnpm (source) 10.4.1 -> 10.7.1 age adoption passing confidence
postcss (source) 8.5.2 -> 8.5.3 age adoption passing confidence
prettier (source) 3.5.1 -> 3.5.3 age adoption passing confidence
rollup (source) ^4.34.8 -> ^4.39.0 age adoption passing confidence
rollup-plugin-dts 6.1.1 -> 6.2.1 age adoption passing confidence
sass 1.85.0 -> 1.86.1 age adoption passing confidence
svelte (source) 5.19.9 -> 5.25.6 age adoption passing confidence
tinyglobby ^0.2.11 -> ^0.2.12 age adoption passing confidence
tsup (source) 8.3.6 -> 8.4.0 age adoption passing confidence
typescript (source) 5.7.3 -> 5.8.2 age adoption passing confidence
vitest (source) 3.0.6 -> 3.1.1 age adoption passing confidence

Release Notes

microsoft/rushstack (@​microsoft/api-extractor)

v7.52.2

Compare Source

Tue, 25 Mar 2025 15:11:15 GMT

Version update only

v7.52.1

Compare Source

Tue, 11 Mar 2025 02:12:34 GMT

Version update only

v7.52.0

Compare Source

Tue, 11 Mar 2025 00:11:25 GMT

Minor changes
  • Upgrade the bundled compiler engine to TypeScript 5.8.2

v7.51.1

Compare Source

Sat, 01 Mar 2025 05:00:09 GMT

Patches
  • Include triple-slash references marked with preserve="true" from files that only contain re-exports. There was a behavior change in TypeScript 5.5, where only triple-slash references that are explicitly marked with preserve="true" are emitted into declaration files. This change adds support for placing these references in files that only contain re-exports, like the API entrypoint file.

v7.51.0

Compare Source

Thu, 27 Feb 2025 01:10:39 GMT

Minor changes
  • Add a docModel.releaseTagsToTrim property to api-extractor.json to specify which release tags should be trimmed when the doc model is produced.

v7.50.1

Compare Source

Sat, 22 Feb 2025 01:11:11 GMT

Patches
  • Upgrade the bundled compiler engine to TypeScript 5.7.3
swc-project/swc (@​swc/core)

v1.11.16

Compare Source

Miscellaneous Tasks

v1.11.15

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
Performance
Refactor
Testing

v1.11.13

Compare Source

Features
Performance

v1.11.12

Compare Source

Bug Fixes
Documentation
Features
Performance
  • (es/minifier) Merge dead_branch_remover into pure optimizer (#​10201) (6841523)

v1.11.11

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Refactor
Testing

v1.11.10

Compare Source

Bug Fixes
  • (es/proposal) Fix declarations for explicit-resource-management (#​10198) (99ba555)

  • (es/types) Add missing types for jsc.transform.react.refresh (#​10206) (e71b000)

  • (typescript) Skip the body of ArrowExpr in type usage analysis (#​10187) (9aca205)

Documentation
Features
Miscellaneous Tasks
Performance
  • (es/minifier) Do not repeat applying pure minifier on last (#​10196) (e6b7cee)
Refactor
Testing

v1.11.9

Compare Source

Bug Fixes
  • (es/compat) Hoist arguments in object method while lowering async functions (#​10167) (e764df2)

  • (es/minifier) Check array inline for indexed with dynamic key (#​10184) (c2fe4bf)

Features
Performance

v1.11.8

Compare Source

Bug Fixes
Features
Performance
Refactor
Ci

v1.11.7

Compare Source

Features

v1.11.6

Compare Source

Bug Fixes

v1.11.5

Compare Source

Bug Fixes
  • (es/lints) Capture errors and emit from the original thread (#​10119) (2304cd8)

  • (es/minifier) Skip inlining if the referential identity of a function matters (#​10123) (c08fe8d)

  • (ts/fast-strip) Throw object consistently (#​10122) (010ff2a)

Miscellaneous Tasks
Performance

v1.11.4

Compare Source

Bug Fixes
Miscellaneous Tasks
Performance
Refactor

v1.11.1

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
Performance
Refactor
antfu-collective/bumpp (bumpp)

v10.1.0

Compare Source

   🚀 Features
    View changes on GitHub
unjs/consola (consola)

v3.4.2

Compare Source

compare changes

🩹 Fixes
  • Export tree utils (#​349)
  • Calculate box width with the title width (#​362)
🏡 Chore
❤️ Contributors

v3.4.1

Compare Source

compare changes

🩹 Fixes
  • Remove all message lines from stack (#​356)
🏡 Chore
❤️ Contributors
evanw/esbuild (esbuild)

v0.25.2

Compare Source

  • Support flags in regular expressions for the API (#​4121)

    The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the filter option. Internally these are translated into Go regular expressions. However, this translation previously ignored the flags property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression /\.[jt]sx?$/i is turned into the Go regular expression `(?i)\.[jt]sx?$` internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with the i flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.

  • Fix node-specific annotations for string literal export names (#​4100)

    When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as exports.NAME = ... or module.exports = { ... }. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the file export let foo, bar from ESM to CommonJS, esbuild appends this to the end of the file:

    // Annotate the CommonJS export names for ESM import in node:
    0 && (module.exports = {
      bar,
      foo
    });

    However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:

    // Original code
    let foo
    export { foo as "foo!" }
    
    // Old output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      "foo!"
    });
    
    // New output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      "foo!": null
    });
  • Basic support for index source maps (#​3439, #​4109)

    The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.

    This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.

    Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.

    This feature was contributed by @​clyfish.

v0.25.1

Compare Source

  • Fix incorrect paths in inline source maps (#​4070, #​4075, #​4105)

    This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline sourceMappingURL data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the sourceMappingURL comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.

  • Fix invalid generated source maps (#​4080, #​4082, #​4104, #​4107)

    This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.

    This fix was contributed by @​jridgewell.

  • Fix a reg


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

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


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

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Feb 24, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
tsup ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 2, 2025 10:16pm

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 24, 2025
Copy link

codesandbox bot commented Feb 24, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Copy link

pkg-pr-new bot commented Feb 24, 2025

Open in StackBlitz

npm i https://pkg.pr.new/egoist/tsup@1306

commit: d4c7fdd

Copy link

socket-security bot commented Feb 24, 2025

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@microsoft/api-extractor@7.50.07.52.2 Transitive: environment, eval, filesystem, shell, unsafe +37 12.5 MB odspnpm
npm/@swc/core@1.10.181.11.16 None +2 198 kB kdy1, kwonoj
npm/@types/node@22.13.422.14.0 None +1 83.7 kB
npm/bumpp@10.0.310.1.0 environment Transitive: filesystem +23 5.06 MB antfu
npm/consola@3.4.03.4.2 None 0 322 kB atinux, pi0
npm/esbuild@0.24.2, 0.25.00.25.2 None 0 134 kB evanw
npm/fix-dts-default-cjs-exports@1.0.01.0.1 None +7 1.79 MB danielroe, userquin
npm/prettier@3.5.13.5.3 None 0 0 B
npm/rollup-plugin-dts@6.1.16.2.1 None +1 693 kB swatinem
npm/rollup@4.34.84.39.0 None +1 26.1 kB
npm/sass@1.85.01.86.1 None +1 6.38 MB hcatlin, nex3, sassbot
npm/svelte@5.19.95.25.6 None +14 4.16 MB conduitry, rich_harris, svelte-admin
npm/tinyglobby@0.2.110.2.12 Transitive: filesystem +2 130 kB
npm/tsup@8.3.68.4.0 None 0 390 kB egoist
npm/typescript@5.7.2, 5.7.35.8.2 None 0 22.9 MB typescript-bot
npm/vitest@3.0.63.1.1 Transitive: filesystem, network, shell, unsafe +29 4.42 MB

🚮 Removed packages: npm/postcss@8.5.2

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1500ec5 to e91155f Compare February 24, 2025 19:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e91155f to 51d3cf2 Compare February 25, 2025 01:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 51d3cf2 to 9f1b93e Compare February 25, 2025 06:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9f1b93e to 1a61873 Compare February 25, 2025 17:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a61873 to 4d6c794 Compare February 25, 2025 18:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4d6c794 to de9b46f Compare February 25, 2025 22:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from de9b46f to 1a7fe68 Compare February 26, 2025 16:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a7fe68 to 7271749 Compare February 27, 2025 03:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7271749 to 35e622c Compare February 27, 2025 11:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 35e622c to f198a04 Compare February 28, 2025 14:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f198a04 to a2ed5f4 Compare February 28, 2025 19:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a2ed5f4 to 15c38cc Compare February 28, 2025 23:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6ea416e to 3d3e4ca Compare March 25, 2025 16:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3d3e4ca to ef45baf Compare March 26, 2025 12:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ef45baf to 5625ab0 Compare March 27, 2025 06:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5625ab0 to be50fee Compare March 29, 2025 07:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from be50fee to b07964a Compare March 30, 2025 18:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b07964a to 3061b53 Compare March 31, 2025 10:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3061b53 to d29cf7a Compare March 31, 2025 19:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d29cf7a to b4b5342 Compare March 31, 2025 23:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b4b5342 to fa57218 Compare April 1, 2025 06:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fa57218 to a745b20 Compare April 1, 2025 10:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a745b20 to c80133b Compare April 1, 2025 16:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c80133b to d948498 Compare April 1, 2025 22:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d948498 to bf1dff3 Compare April 2, 2025 06:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants