Bump the dependencies group across 1 directory with 4 updates
Bumps the dependencies group with 4 updates in the / directory: @bjorn3/browser_wasi_shim, @zip.js/zip.js, esbuild and vitest.
Updates @bjorn3/browser_wasi_shim from 0.3.0 to 0.4.1
Release notes
Sourced from @bjorn3/browser_wasi_shim's releases.
v0.4.1
What's Changed
- Handle absence of
SharedArrayBufferby@amesgenin bjorn3/browser_wasi_shim#87Full Changelog: https://github.com/bjorn3/browser_wasi_shim/compare/v0.4.0...v0.4.1
v0.4.0
What's Changed
- Modify random_get to use crypto.getRandomValues by
@Aandrebain bjorn3/browser_wasi_shim#75- Prevent using crypto for SharedArrayBuffer by
@namsein bjorn3/browser_wasi_shim#76- Define top-level "main" and "types" fields in package.json by
@kateinoigakukunin bjorn3/browser_wasi_shim#78- Mention LyonSyonII's miri in the browser by
@bjorn3in bjorn3/browser_wasi_shim#79- implement thread-spawn by
@oligamiqin bjorn3/browser_wasi_shim#81- Fix typo in .gitmodules and update README.md with browser compatibility notes by
@oligamiqin bjorn3/browser_wasi_shim#83- Added a new section on architecture on threads by
@oligamiqin bjorn3/browser_wasi_shim#84- rename SVG to svg by
@oligamiqin bjorn3/browser_wasi_shim#85- Return unique ino for each node for
FilestatandDirentby@kateinoigakukunin bjorn3/browser_wasi_shim#86New Contributors
@Aandrebamade their first contribution in bjorn3/browser_wasi_shim#75@namsemade their first contribution in bjorn3/browser_wasi_shim#76@oligamiqmade their first contribution in bjorn3/browser_wasi_shim#81Full Changelog: https://github.com/bjorn3/browser_wasi_shim/compare/v0.3.0...v0.4.0
Commits
c807daeBump to v0.4.1b152b3eHandle absence ofSharedArrayBuffer(#87)29eea8cAvoid packaging the test and threads subdirectoriesc9deb6dBump to v0.4.0168313fMerge pull request #86 from kateinoigakukun/yt/issue-inoa267bd6RemoveInoIssuerabstractionc488d4bReturn unique ino for each node forFilestatandDirent94a5651Merge pull request #85 from oligamiq/main9ac88bbrename SVG to svg6c8d7a0Merge pull request #84 from oligamiq/main- Additional commits viewable in compare view
Updates @zip.js/zip.js from 2.7.57 to 2.7.60
Release notes
Sourced from @zip.js/zip.js's releases.
v2.7.60
- Reverted changes related to TypeScript 5.7+ introduced in versions 2.7.58 and 2.7.59, see issues #563 and #549 for more info
- Fixed all JSR score warnings, see https://jsr.io/
@zip-js/zip-js/scorev2.7.59
- Added
legacy-5.6entry point in thepackage.jsonfile in order to support TypeScript < 5.7 (see #563 and #549)- Fixed score on JSR (see #562)
- Fixed ESLint and Deno lint warnings
- Updated dev dependencies
v2.7.58
- Added ArrayBuffer type parameter to
Uint8Arrayby@UnsungHero97in the type definition file (see #549)- Added exception "Writer not initialized" when using
Writerclasses implementingWriter#writeUint8ArrayifWriter#init()has not been previously called (see #560)- Fixed infinite loop when using
readable.getReader()fromReaderclasses (see #559)- Added more info about
encryptionStrengthin the documentation (see #558)- Updated development dependencies
- Added JSR integration via an Action
Commits
Updates esbuild from 0.24.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).
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 vitest from 3.0.7 to 3.1.1
Release notes
Sourced from vitest's releases.
v3.1.1
🐞 Bug Fixes
- reporter:
- Report tests in correct order - by
@sheremet-vain vitest-dev/vitest#7752 (b166e)- Print test only once in the verbose mode - by
@sheremet-vain vitest-dev/vitest#7738 (69ca4)View changes on GitHub
v3.1.0
🚀 Features
- Introduce
%$option to add number of the test to its title - by@kemuridamain vitest-dev/vitest#7412 (df347)- Add
diff.maxDepthoption and set non-Infinityvalue as a default to reduce crash - by@hi-ogawain vitest-dev/vitest#7481 (eacab)- Allow array element for
test.each/fortitle formatting - by@hi-ogawain vitest-dev/vitest#7522 (ea3d6)- Add "configureVitest" plugin hook - by
@sheremet-vaand@AriPerkkioin vitest-dev/vitest#7349 (20a5d)- Support
--configLoaderCLI option - by@Carnageousand@hi-ogawain vitest-dev/vitest#7574 (2a852)- Added
vitest-browser-littovitest init browserand docs - by@EskiMojo14and@hi-ogawain vitest-dev/vitest#7705 (5659a)- Use providers request interception for module mocking - by
@sheremet-vain vitest-dev/vitest#7576 (7883a)- browser:
- Introduce
and,orandfilterlocators - by@sheremet-vaand@AriPerkkioin vitest-dev/vitest#7463 (63949)- reporter:
- Always render test time - by
@AriPerkkioand@spamshakerin vitest-dev/vitest#7529 (5eba6)--silent=passed-onlyto log failed tasks only - by@AriPerkkioin vitest-dev/vitest#7530 (f9e1c)- runner:
- Add
test.scopedto overridetest.extendfixtures per-suite - by@sheremet-vain vitest-dev/vitest#7233 (e5851)- vitest:
- Allow conditional
context.skip(boolean)- by@sheremet-vaand@AriPerkkioin vitest-dev/vitest#7659 (6adec)- Support rolldown-vite in NormalizeUrlPlugin - by
@sapphi-redand@sheremet-vain vitest-dev/vitest#7739 (1ef31)🐞 Bug Fixes
- Update test stats regularly - by
@hi-ogawain vitest-dev/vitest#7700 (b7953)- Fix vm tests flakiness - by
@sheremet-vain vitest-dev/vitest#7741 (2702c)- Set
diff.expand: falseas default - by@hi-ogawain vitest-dev/vitest#7697 (f3420)- browser:
- Correctly calculate timeout in hooks when actions are performed - by
@sheremet-vain vitest-dev/vitest#7747 (a5505)- deps:
- Update all non-major dependencies - by
@hi-ogawain vitest-dev/vitest#7600 (7fc5a)- reporter:
--hideSkippedTestsshould hide suites too - by@AriPerkkioin vitest-dev/vitest#7695 (ba9b5)- Report tests in correct order - by
@sheremet-vain vitest-dev/vitest#7752 (b166e)- Print test only once in the verbose mode - by
@sheremet-vain vitest-dev/vitest#7738 (69ca4)- snapshot:
- Fix indent normalization - by
@hi-ogawain vitest-dev/vitest#7400 (82997)- This change can cause small amount of very old snapshots to be updated, but there will be no functional change to how they work.
🏎 Performance
- browser: Fork jest-dom instead of bundling it - by
@sheremet-vain vitest-dev/vitest#7605 (12762)
... (truncated)
Commits
a9d36c7chore: release v3.1.169ca425fix(reporter): print test only once in the verbose mode (#7738)b166efafix(reporter): report tests in correct order (#7752)b8eda4bchore: release v3.1.0938da77fix (ui): rerun individually tests with special chars in name (#7707)7883acdfeat: use providers request interception for module mocking (#7576)a7ecd0frefactor: remove direct imports from rollup (#7751)5659a0efeat: Addedvitest-browser-littovitest init browserand docs (#7705)2702cf4fix: fix vm tests flakiness (#7741)12762eaperf(browser): fork jest-dom instead of bundling it (#7605)- 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 <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions