ipfs-webui
ipfs-webui copied to clipboard
chore(deps): bump esbuild, storybook and aegir
Bumps esbuild to 0.25.2 and updates ancestor dependencies esbuild, storybook and aegir. These dependencies need to be updated together.
Updates esbuild from 0.20.2 to 0.25.2
Release notes
Sourced from esbuild's releases.
v0.25.2
Support flags in regular expressions for the API (#4121)
The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the
filteroption. Internally these are translated into Go regular expressions. However, this translation previously ignored theflagsproperty 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?$/iis 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 theiflag. 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 = ...ormodule.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 fileexport let foo, barfrom 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
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2024
This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:
... (truncated)
Commits
4475787publish 0.25.2 to npm8f56771fix #4121: map js regexp flags to go regexp flags36b458dfollow-up to #41098b8437cfeat: support index source map (#4109)75286c1unit test for absolute windows paths in source mapbcc77fbfix #4100: invalid identifiers in node annotation37cb6a2fix a warning fromnpm publish6bfc1c1publish 0.25.1 to npmf9b3952fix #4078: prepend namespaces to source map pathsccf3dd7add "contributed by" in changelog- Additional commits viewable in compare view
Updates storybook from 8.4.0 to 8.6.12
Release notes
Sourced from storybook's releases.
v8.6.12
8.6.12
- CLI: Only install Visual Test Addon if test feature is selected - #30966, thanks
@ghengeveld!- Core: Fix telemetry error on Storybook UI - #30953, thanks
@yannbf!- Ember: Fix
ember-template-compilerimport for ember 6+ - #30682, thanks@leoeuclids!- Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - #30997, thanks
@kasperpeulen!- Svelte: Exclude
node_modulesfrom docgen - #30981, thanks@JReinhold!v8.6.11
8.6.11
- Angular: Fix zone.js support for Angular libraries - #30941, thanks
@valentinpalkovic!v8.6.10
8.6.10
- Addon-docs: Fix non-string handling in Stories block - #30913, thanks
@JamesIves!- Nextjs: Fix styled-jsx optimize vite warnings - #30932, thanks
@kasperpeulen!- React: Fix actImplementation is not a function - #30929, thanks
@kasperpeulen!v8.6.9
8.6.9
- Next: Fix react aliases in next vite plugin - #30914, thanks
@kasperpeulen!v8.6.8
8.6.8
- Angular: Export all files in Angular package.json - #30849, thanks
@kasperpeulen!- CLI: Don't add packageManager entry to package.json automatically - #30855, thanks
@kasperpeulen!- React: Allow portable stories to be used in SSR - #30847, thanks
@kasperpeulen!- Svelte: Adjust Svelte typings to include Svelte 5 function components - #30852, thanks
@dummdidumm!- Telemetry: Make sure that telemetry doesn't fail on init - #30857, thanks
@kasperpeulen!- Vite: Update HMR filter to target specific story file types - #30845, thanks
@kasperpeulen!v8.6.7
8.6.7
v8.6.6
8.6.6
- Angular: Make sure that polyfills are loaded before the storybook is loaded - #30811, thanks
@kasperpeulen!- CSF: Fix CSF subcomponent type - #30729, thanks
@filipemelo2002!v8.6.5
8.6.5
... (truncated)
Changelog
Sourced from storybook's changelog.
8.6.12
- CLI: Only install Visual Test Addon if test feature is selected - #30966, thanks
@ghengeveld!- Core: Fix telemetry error on Storybook UI - #30953, thanks
@yannbf!- Ember: Fix
ember-template-compilerimport for ember 6+ - #30682, thanks@leoeuclids!- Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - #30997, thanks
@kasperpeulen!- Svelte: Exclude
node_modulesfrom docgen - #30981, thanks@JReinhold!8.6.11
- Angular: Fix zone.js support for Angular libraries - #30941, thanks
@valentinpalkovic!8.6.10
- Addon-docs: Fix non-string handling in Stories block - #30913, thanks
@JamesIves!- Nextjs: Fix styled-jsx optimize vite warnings - #30932, thanks
@kasperpeulen!- React: Fix actImplementation is not a function - #30929, thanks
@kasperpeulen!8.6.9
- Next: Fix react aliases in next vite plugin - #30914, thanks
@kasperpeulen!8.6.8
- Angular: Export all files in Angular package.json - #30849, thanks
@kasperpeulen!- CLI: Don't add packageManager entry to package.json automatically - #30855, thanks
@kasperpeulen!- React: Allow portable stories to be used in SSR - #30847, thanks
@kasperpeulen!- Svelte: Adjust Svelte typings to include Svelte 5 function components - #30852, thanks
@dummdidumm!- Telemetry: Make sure that telemetry doesn't fail on init - #30857, thanks
@kasperpeulen!- Vite: Update HMR filter to target specific story file types - #30845, thanks
@kasperpeulen!8.6.7
8.6.6
- Angular: Make sure that polyfills are loaded before the storybook is loaded - #30811, thanks
@kasperpeulen!- CSF: Fix CSF subcomponent type - #30729, thanks
@filipemelo2002!8.6.5
- Addon A11y: Promote
@storybook/globalto full dependency - #30723, thanks@mrginglymus!- Angular: Add
@angular-devkit/build-angularto installed packages - #30790, thanks@kasperpeulen!- CLI: Fix test install in RNW projects - #30786, thanks
@shilman!- Core: Replace 'min' instead of 'm' in printDuration - #30668, thanks
@wlewis-formative!- Next.js: Use latest version when init in empty directory - #30659, thanks
@valentinpalkovic!- Svelte: Fix Vite crashing on virtual module imports - #26838, thanks
@rChaoz!- Svelte: Fix automatic argTypes inference coming up empty with
[email protected]- #30784, thanks@JReinhold!- Universal Store: Don't use
crypto.randomUUID- #30781, thanks@JReinhold!
... (truncated)
Commits
1c35b29Bump version from "8.6.11" to "8.6.12" [skip ci]2afd30dBump version from "8.6.10" to "8.6.11" [skip ci]23d2037Bump version from "8.6.9" to "8.6.10" [skip ci]207c2f4Bump version from "8.6.8" to "8.6.9" [skip ci]d4960eaBump version from "8.6.7" to "8.6.8" [skip ci]019cd1fBump version from "8.6.6" to "8.6.7" [skip ci]9a7a795Bump version from "8.6.5" to "8.6.6" [skip ci]4e23d75Bump version from "8.6.4" to "8.6.5" [skip ci]d826042Bump version from "8.6.3" to "8.6.4" [skip ci]d4e73f5Bump version from "8.6.2" to "8.6.3" [skip ci]- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by storybook-bot, a new releaser for storybook since your current version.
Updates aegir from 42.2.11 to 45.1.4
Release notes
Sourced from aegir's releases.
v45.1.4
45.1.4 (2025-03-19)
Bug Fixes
- update dictionary (07eeb7b)
v45.1.3
45.1.3 (2025-03-10)
Bug Fixes
- do not spell check string CIDs/PeerIds (ef44dee)
v45.1.2
45.1.2 (2025-02-24)
Documentation
- update spelling docs (bb0c400)
v45.1.1
45.1.1 (2025-02-24)
Bug Fixes
- update dictionary (f2a0415)
v45.1.0
45.1.0 (2025-02-24)
Features
Dependencies
v45.0.10
45.0.10 (2025-02-22)
Trivial Changes
- cache lockfiles (1ee5459)
Dependencies
... (truncated)
Changelog
Sourced from aegir's changelog.
45.1.4 (2025-03-19)
Bug Fixes
- update dictionary (07eeb7b)
45.1.3 (2025-03-10)
Bug Fixes
- do not spell check string CIDs/PeerIds (ef44dee)
45.1.2 (2025-02-24)
Documentation
- update spelling docs (bb0c400)
45.1.1 (2025-02-24)
Bug Fixes
- update dictionary (f2a0415)
45.1.0 (2025-02-24)
Features
Dependencies
45.0.10 (2025-02-22)
Trivial Changes
- cache lockfiles (1ee5459)
Dependencies
45.0.9 (2025-01-20)
Trivial Changes
... (truncated)
Commits
a5c2111chore(release): 45.1.4 [skip ci]07eeb7bfix: update dictionary24094f6chore(release): 45.1.3 [skip ci]ef44deefix: do not spell check string CIDs/PeerIds19acd79chore(release): 45.1.2 [skip ci]bb0c400docs: update spelling docs1e9ece4chore(release): 45.1.1 [skip ci]f2a0415fix: update dictionaryde5ec10chore(release): 45.1.0 [skip ci]4177decdeps(dev): bump electron from 33.4.0 to 34.2.0 (#1734)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.