manzt / anywidget

jupyter widgets made easy
https://anywidget.dev
MIT License
460 stars 37 forks source link

chore(deps): bump the actions group with 14 updates #564

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the actions group with 14 updates:

Package From To
@rspack/cli 0.5.9 0.6.3
dprint 0.45.0 0.45.1
happy-dom 13.10.1 14.7.1
typescript 5.4.3 5.4.5
vitest 1.4.0 1.6.0
solid-js 1.8.16 1.8.17
@rspack/core 0.5.9 0.6.3
@types/node 20.12.2 20.12.8
react 18.2.0 18.3.1
@types/react 18.2.73 18.3.1
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.23 18.3.0
svelte 4.2.12 4.2.15
vite 5.2.7 5.2.11

Updates @rspack/cli from 0.5.9 to 0.6.3

Release notes

Sourced from @​rspack/cli's releases.

v0.6.3

What's Changed

Highlights

Provide type declaration for builtin:swc-loader

@rspack/core now provides the type declaration for builtin:swc-loader, which can help you to configure the swc-loader correctly:

// rspack.config.js
module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        use: {
          loader: 'builtin:swc-loader',
+         /** @type {import('@rspack/core').SwcLoaderOptions} */
          options: {
            // some options
          },
        },
      },
    ],
  },
};

Updated Plugin Documentation for Rspack

We've revamped the plugin documentation for Rspack to enhance clarity and improve your experience.

Please visit: https://www.rspack.dev/plugins

image

Exciting New Features 🎉

Bug Fixes 🐞

... (truncated)

Commits


Updates dprint from 0.45.0 to 0.45.1

Release notes

Sourced from dprint's releases.

0.45.1

Changes

  • perf: lazily create ureq agents (#836)

dprint on Mac and Linux now starts up faster.

Before:

% dprint -v
0.45.0
% time dprint check --incremental=false ./data/package-template.json
0.173s total

After:

% dprint -v
0.45.1
% time dprint --incremental=false ./data/package-template.json
0.023s total

Install

Run dprint upgrade or see https://dprint.dev/install/

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip 83cce6b82d8674dbdddaf911bc117f1c866aaa4712aa381e54ab9466526026aa
dprint-aarch64-apple-darwin.zip be6e4bcf9aafeb4ef34f27385717004cc0dfd06f8bce8e67b18937b53285d436
dprint-x86_64-pc-windows-msvc.zip 71fef42ad86017a50bee977836dfd387d8584d6a9c4c03354d62977eaa1f135b
dprint-x86_64-pc-windows-msvc-installer.exe 6db6148387b9e2e0434d0eaef3624bc1a401c85175e4863c220143d6151857a0
dprint-x86_64-unknown-linux-gnu.zip 4e0c1d4f0f9f41efc08d929616c9f73abea7e57b9658a8f5f478a26e165c331c
dprint-x86_64-unknown-linux-musl.zip eaf2690b7414d11bc33fb2a81898f285748a7a6a7983f965b569e536fb67b815
dprint-aarch64-unknown-linux-gnu.zip 828133ac7a7591a2d9e63d5f10a70751f558152b20653383ae32ce76199662ad
dprint-aarch64-unknown-linux-musl.zip c05d839d1f187d68d55effc60add4e66afb373015a1d1126c310b5c8669a8563
Commits


Updates happy-dom from 13.10.1 to 14.7.1

Release notes

Sourced from happy-dom's releases.

v14.7.1

:construction_worker_man: Patch fixes

  • Adds support for using Node.prototype.cloneNode.call(element), Node.prototype.appendChild.call(element), Node.prototype.removeChild.call(element), Node.prototype.insertBefore.call(element) and Node.prototype.replaceChild.call(element), which Svelte v5 relies on - By @​capricorn86 in task #1392

v14.7.0

:art: Features

  • Adds support for constructing Text and Comment using the new operator - By @​capricorn86 in task #1387
    • E.g. new Text('text') or new Comment('comment')

v14.6.2

:construction_worker_man: Patch fixes

v14.6.1

:construction_worker_man: Patch fixes

  • Fixes bug where Document.createTextNode() didn't handle conversion of non-string values to string - By @​odanado in task #1380
  • Adds support for throwing an exception when no argument is submitted to Document.createTextNode() - By @​odanado in task #1380

v14.6.0

:art: Features

  • Adds support for the HTMLElement.inert property - By @​odanado in task #1124

v14.5.2

:construction_worker_man: Patch fixes

  • Fixes bug related to custom property resolution chaining when using Window.getComputedStyle() - By @​odanado in task #1363

v14.5.1

:construction_worker_man: Patch fixes

  • Fixes problem with Document.defaultView not referring to the global object when using GlobalRegistrator - By @​capricorn86 in task #1367

:art: Features

  • Adds support for closing/destroying the Window in GlobalRegistrator.unregister() - By @​capricorn86 in task #1367

v14.5.0

:art: Features

  • Adds support for handling "application/x-www-form-urlencoded" in Request.formData() - By @​tt-public in #1379

v14.4.0

:art: Features

  • Adds support for HTMLIFrameElement.sandbox to return a DOMTokenList - By @​jeffwcx in task #825

v14.3.10

:construction_worker_man: Patch fixes

  • Fixes problem related to CSS properties not being used in CSS values when they are declared after (e.g. when CSS properties are defined in Element attribute) - By @​capricorn86 in task #1364
  • Update the CSSStyleSheet object when child nodes of an HTMLStyleElement are modified - By @​capricorn86 in task #1364

v14.3.9

:construction_worker_man: Patch fixes

... (truncated)

Commits
  • e8f6107 Merge pull request #1393 from capricorn86/1392-unable-to-correctly-clonenode-...
  • 68ef1e5 fix: #1392 Adds support for using Node.prototype.cloneNode.call(element), N...
  • ff09e4f Merge pull request #1391 from capricorn86/1390-add-bun-integration-test-for-a...
  • b873d7b chore: #1390 Adds Bun integration test for adding an event listener
  • 4849b62 Merge pull request #1389 from capricorn86/1387-new-text-class-gives-failed-to...
  • c3bc1b4 feat: #1387 Adds support for constructing Text and Comment using the new op...
  • 32b30bd Merge pull request #1385 from capricorn86/1377-error-when-adding-a-spy-on-loc...
  • 64e4a37 fix: #1377 Makes it possible to spy on Storage.prototype methods
  • debbd3a fix: #1377 Makes it possible to spy on Storage.prototype methods
  • 86c9166 Merge pull request #1384 from odanado/fix/1380
  • Additional commits viewable in compare view


Updates typescript from 5.4.3 to 5.4.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • 8eb3367 Bump version to 5.4.4 and LKG
  • de9096b 🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...
  • 06aae98 🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...
  • 6d8134e 🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...
  • Additional commits viewable in compare view


Updates vitest from 1.4.0 to 1.6.0

Release notes

Sourced from vitest's releases.

v1.6.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.5.3

   🐞 Bug Fixes

    View changes on GitHub

v1.5.2

   🐞 Bug Fixes

    View changes on GitHub

v1.5.1

   🚀 Features

... (truncated)

Commits
  • 6b29f3d chore: release v1.6.0
  • f8d3d22 feat(benchmark): support comparing benchmark result (#5398)
  • 21e58bd feat(browser): allow injecting scripts (#5656)
  • 30f728b feat: custom "snapshotEnvironment" option (#5449)
  • 2f91322 feat(reporter): support includeConsoleOutput and addFileAttribute in juni...
  • c571276 perf: unnecessary rpc call when coverage is disabled (#5658)
  • bdce0a2 feat: support standalone mode (#5565)
  • 40c299f fix: don't panic on empty files in node_modules
  • c9e68ce fix: hash the name of the file when caching (#5654)
  • f5faf42 fix: call resolveId('vitest') after buildStart (#5646)
  • Additional commits viewable in compare view


Updates solid-js from 1.8.16 to 1.8.17

Commits


Updates @rspack/core from 0.5.9 to 0.6.3

Release notes

Sourced from @​rspack/core's releases.

v0.6.3

What's Changed

Highlights

Provide type declaration for builtin:swc-loader

@rspack/core now provides the type declaration for builtin:swc-loader, which can help you to configure the swc-loader correctly:

// rspack.config.js
module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        use: {
          loader: 'builtin:swc-loader',
+         /** @type {import('@rspack/core').SwcLoaderOptions} */
          options: {
            // some options
          },
        },
      },
    ],
  },
};

Updated Plugin Documentation for Rspack

We've revamped the plugin documentation for Rspack to enhance clarity and improve your experience.

Please visit: https://www.rspack.dev/plugins

image

Exciting New Features 🎉

Bug Fixes 🐞

... (truncated)

Commits


Updates @types/node from 20.12.2 to 20.12.8

Commits


Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.2.73 to 18.3.1

Commits


Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
  • d6c42f7 Bump to 18.3.1
  • 8a015b6 Add deprecation warning for unmountComponentAtNode
  • c3b2839 Add deprecation warning for findDOMNode
  • d4ea75d ReactDOMTestUtils deprecation warnings
  • 7548c01 Deprecate renderToStaticNodeStream (#28872) (#28874)
  • 5894232 Enable warning for defaultProps on function components for everyone (#25699)
  • c2a246e Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)
  • 2cfb474 Bump version from 18.2 to 18.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.


Updates @types/react-dom from 18.2.23 to 18.3.0

Commits


Updates svelte from 4.2.12 to 4.2.15

Release notes

Sourced from svelte's releases.

svelte@4.2.15

Patch Changes

  • support attribute selector inside :global() (#11135)

svelte@4.2.14

Patch Changes

  • fix parsing camelcase container query name (#11131)

svelte@4.2.13

Patch Changes

  • fix: applying :global for +,~ sibling combinator when slots are present (#9282)
Changelog

Sourced from svelte's changelog.

4.2.15

Patch Changes

  • support attribute selector inside :global() (#11135)

4.2.14

Patch Changes

  • fix parsing camelcase container query name (#11131)

4.2.13

Patch Changes

  • fix: applying :global for +,~ sibling combinator when slots are present (#9282)
Commits


Updates vite from 5.2.7 to 5.2.11

Changelog

Sourced from vite's changelog.

5.2.11 (2024-05-02)

5.2.10 (2024-04-20)

dependabot[bot] commented 4 months ago

The group that created this PR has been removed from your configuration.