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

chore(deps-dev): bump the dev-dependencies group with 9 updates #584

Merged
merged 3 commits into from
May 19, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 19, 2024

Bumps the dev-dependencies group with 9 updates:

Package From To
@changesets/cli 2.27.1 2.27.2
@rspack/cli 0.6.3 0.6.5
esbuild 0.20.2 0.21.3
happy-dom 14.7.1 14.11.0
publint 0.2.7 0.2.8
@rspack/core 0.6.3 0.6.5
@types/node 20.12.8 20.12.12
@types/react 18.3.1 18.3.2
svelte 4.2.15 4.2.17

Updates @changesets/cli from 2.27.1 to 2.27.2

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.2

Patch Changes

  • #1354 69be7dc Thanks @​Andarist! - Fixed an issue with changeset status incorrectly returning an error status in two cases:

    • for changed ignored packages
    • for changed private packages when privatePackage.version was set to false
  • #1351 c6da182 Thanks @​TheHolyWaffle! - Fix an issue with not applying a custom .prettierrc configuration with prettier@>= 3.1.1

  • Updated dependencies [c6da182]:

    • @​changesets/apply-release-plan@​7.0.1
    • @​changesets/write@​0.3.1
Commits
  • 4b60580 Version Packages (#1355)
  • 69be7dc Fixed changeset status combined with ignored and non-versionable private pa...
  • c6da182 Fix an issue with not applying a custom .prettierrc configuration with `pre...
  • 0bf89b3 Use node 20.x in release flow (#1333)
  • 4185510 Fix incorrect plural (#1310)
  • 93ee679 Add SECURITY.md
  • See full diff in compare view

Updates @rspack/cli from 0.6.3 to 0.6.5

Release notes

Sourced from @​rspack/cli's releases.

v0.6.5

Hotfixes

What's Changed

Performance Improvements ⚡

Bug Fixes 🐞

Document Updates 📖

Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.6.4...v0.6.5

v0.6.4

What's Changed

Performance Improvements ⚡

Exciting New Features 🎉

Bug Fixes 🐞

... (truncated)

Commits

Updates esbuild from 0.20.2 to 0.21.3

Release notes

Sourced from esbuild's releases.

v0.21.3

  • Implement the decorator metadata proposal (#3760)

    This release implements the decorator metadata proposal, which is a sub-proposal of the decorators proposal. Microsoft shipped the decorators proposal in TypeScript 5.0 and the decorator metadata proposal in TypeScript 5.2, so it's important that esbuild also supports both of these features. Here's a quick example:

    // Shim the "Symbol.metadata" symbol
    Symbol.metadata ??= Symbol('Symbol.metadata')
    const track = (_, context) => {
    (context.metadata.names ||= []).push(context.name)
    }
    class Foo {
    @​track foo = 1
    @​track bar = 2
    }
    // Prints ["foo", "bar"]
    console.log(Foo[Symbol.metadata].names)

    ⚠️ WARNING ⚠️

    This proposal has been marked as "stage 3" which means "recommended for implementation". However, it's still a work in progress and isn't a part of JavaScript yet, so keep in mind that any code that uses JavaScript decorator metadata may need to be updated as the feature continues to evolve. If/when that happens, I will update esbuild's implementation to match the specification. I will not be supporting old versions of the specification.

  • Fix bundled decorators in derived classes (#3768)

    In certain cases, bundling code that uses decorators in a derived class with a class body that references its own class name could previously generate code that crashes at run-time due to an incorrect variable name. This problem has been fixed. Here is an example of code that was compiled incorrectly before this fix:

    class Foo extends Object {
      @(x => x) foo() {
        return Foo
      }
    }
    console.log(new Foo().foo())
  • Fix tsconfig.json files inside symlinked directories (#3767)

    This release fixes an issue with a scenario involving a tsconfig.json file that extends another file from within a symlinked directory that uses the paths feature. In that case, the implicit baseURL value should be based on the real path (i.e. after expanding all symbolic links) instead of the original path. This was already done for other files that esbuild resolves but was not yet done for tsconfig.json because it's special-cased (the regular path resolver can't be used because the information inside tsconfig.json is involved in path resolution). Note that this fix no longer applies if the --preserve-symlinks setting is enabled.

v0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

    const dec = () => function() { this.bar = true }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.21.3

  • Implement the decorator metadata proposal (#3760)

    This release implements the decorator metadata proposal, which is a sub-proposal of the decorators proposal. Microsoft shipped the decorators proposal in TypeScript 5.0 and the decorator metadata proposal in TypeScript 5.2, so it's important that esbuild also supports both of these features. Here's a quick example:

    // Shim the "Symbol.metadata" symbol
    Symbol.metadata ??= Symbol('Symbol.metadata')
    const track = (_, context) => {
    (context.metadata.names ||= []).push(context.name)
    }
    class Foo {
    @​track foo = 1
    @​track bar = 2
    }
    // Prints ["foo", "bar"]
    console.log(Foo[Symbol.metadata].names)

    ⚠️ WARNING ⚠️

    This proposal has been marked as "stage 3" which means "recommended for implementation". However, it's still a work in progress and isn't a part of JavaScript yet, so keep in mind that any code that uses JavaScript decorator metadata may need to be updated as the feature continues to evolve. If/when that happens, I will update esbuild's implementation to match the specification. I will not be supporting old versions of the specification.

  • Fix bundled decorators in derived classes (#3768)

    In certain cases, bundling code that uses decorators in a derived class with a class body that references its own class name could previously generate code that crashes at run-time due to an incorrect variable name. This problem has been fixed. Here is an example of code that was compiled incorrectly before this fix:

    class Foo extends Object {
      @(x => x) foo() {
        return Foo
      }
    }
    console.log(new Foo().foo())
  • Fix tsconfig.json files inside symlinked directories (#3767)

    This release fixes an issue with a scenario involving a tsconfig.json file that extends another file from within a symlinked directory that uses the paths feature. In that case, the implicit baseURL value should be based on the real path (i.e. after expanding all symbolic links) instead of the original path. This was already done for other files that esbuild resolves but was not yet done for tsconfig.json because it's special-cased (the regular path resolver can't be used because the information inside tsconfig.json is involved in path resolution). Note that this fix no longer applies if the --preserve-symlinks setting is enabled.

0.21.2

  • Correct this in field and accessor decorators (#3761)

    This release changes the value of this in initializers for class field and accessor decorators from the module-level this value to the appropriate this value for the decorated element (either the class or the instance). It was previously incorrect due to lack of test coverage. Here's an example of a decorator that doesn't work without this change:

... (truncated)

Commits
  • efa3dd2 publish 0.21.3 to npm
  • 5e7cf25 fix #3760: implement decorator metadata proposal
  • bd0b13b lowering: always propagate class expression names
  • 90acd14 explicit bitwise operators for initializer flags
  • ba548df move decorator initializer list to after the class
  • 66b7c6d fix #3768: bundled decorators in derived classes
  • 6e6f15f fix #3767: tsconfig.json files inside symlinks
  • b7dcb95 transform: reuse lowerField for auto-accessors
  • b24180e publish 0.21.2 to npm
  • f82e0ad fix #3761: this in field and accessor decorators
  • Additional commits viewable in compare view

Updates happy-dom from 14.7.1 to 14.11.0

Release notes

Sourced from happy-dom's releases.

v14.11.0

🎨 Features

v14.10.3

👷‍♂️ Patch fixes

  • Adds check for if Window and MutationObserver has been destroyed when triggering listeners - By @​capricorn86 in task #1436

v14.10.2

👷‍♂️ Patch fixes

  • HTMLAnchorElement, HTMLButtonElement, HTMLInputElement and HTMLLabelElement checked that click events triggering native behavior was of type PointerEvent, but should check that they are of type MouseEvent - By @​capricorn86 in task #1397

v14.10.1

👷‍♂️ Patch fixes

  • Makes descriptor for properties "configurable" to make Storage.entries(), Storage.keys() and Storage.values() work according to spec - By @​motss in task #1418

v14.10.0

🎨 Features

  • Adds support for Document.elementFromPoint() - By @​TreyVigus in task #1400
    • The method will always return null as Happy DOM doesn't support rendering and can't calculate an element's position based on where it is rendered

v14.9.0

🎨 Features

  • Adds support for Document.queryCommandSupported() - By @​btea in task #1411

v14.8.3

👷‍♂️ Patch fixes

  • Fixes issue related to Element.insertBefore() not removing comment node from previous ancestor - By @​mdafanasev in task #1406

v14.8.2

👷‍♂️ Patch fixes

  • Changes implementation to return HTMLCollection instead of NodeList in Document.forms - By @​jean-leonco in task #1349

v14.8.1

👷‍♂️ Patch fixes

v14.8.0

🎨 Features

  • Adds support for the HTMLIFrameElement.srcdoc property - By @​jeffwcx in task #1398
Commits
  • f0d6091 Merge pull request #1432 from r-thomson/htmltimeelement
  • a7aa4d7 Merge branch 'master' into htmltimeelement
  • 909069b Merge pull request #1437 from capricorn86/1436-lots-of-npe-errors-logged-by-m...
  • e00852c fix: #1336 Adds check for if Window and MutationObserver has been destroyed...
  • 5b527c2 Merge pull request #1435 from capricorn86/1397-regression-from-1362-to-1370-c...
  • d8732e8 fix: #1397 HTMLAnchorElement, HTMLButtonElement, HTMLInputElement and HTMLL...
  • 3bd1db4 feat: #1431 Implement HTMLTimeElement
  • 8ceadb3 Merge pull request #1423 from motss/fix/1418
  • fd5d888 Merge branch 'master' into fix/1418
  • 4dc3de4 feat: #1400 Adds support for document.elementFromPoint
  • Additional commits viewable in compare view

Updates publint from 0.2.7 to 0.2.8

Release notes

Sourced from publint's releases.

v0.2.8

Bug fixes

Full Changelog: publint/publint@v0.2.7...v0.2.8

Commits

Updates @rspack/core from 0.6.3 to 0.6.5

Release notes

Sourced from @​rspack/core's releases.

v0.6.5

Hotfixes

What's Changed

Performance Improvements ⚡

Bug Fixes 🐞

Document Updates 📖

Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.6.4...v0.6.5

v0.6.4

What's Changed

Performance Improvements ⚡

Exciting New Features 🎉

Bug Fixes 🐞

... (truncated)

Commits
  • 0a5cf0d Reelase Packages:0.6.5
  • d4454a6 Release Packages:0.6.4 (#6414)
  • 65224fb fix: remove --force flag to fix prebundle (#6465)
  • 3c07aa3 perf(core): use prebundle to reduce dependencies (#6462)
  • 8179eec fix(mf): webpack_init_sharing with empty config (#6450)
  • 80d05de feat: export Chunk and Module types from @rspack/core (#6421)
  • a1ec4c1 fix(config): support snapshot config {timestamp: true} and {hash: true} (#6399)
  • f0e6c6b feat: support dynamic entry (#6393)
  • 3b313bb fix(config): snapshot.module accept { timestamp: true} (#6387)
  • 6d8ec18 fix: runtimeChunk should control all entries' runtime (#6388)
  • Additional commits viewable in compare view

Updates @types/node from 20.12.8 to 20.12.12

Commits

Updates @types/react from 18.3.1 to 18.3.2

Commits

Updates svelte from 4.2.15 to 4.2.17

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • fix: correctly handle falsy values of style directives in SSR mode (#11584)

[email protected]

Patch Changes

  • fix: check if svelte component exists on custom element destroy (#11489)
Changelog

Sourced from svelte's changelog.

4.2.17

Patch Changes

  • fix: correctly handle falsy values of style directives in SSR mode (#11584)

4.2.16

Patch Changes

  • fix: check if svelte component exists on custom element destroy (#11489)
Commits

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the dev-dependencies group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.1` | `2.27.2` |
| [@rspack/cli](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-cli) | `0.6.3` | `0.6.5` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.2` | `0.21.3` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `14.7.1` | `14.11.0` |
| [publint](https://github.com/bluwy/publint/tree/HEAD/pkg) | `0.2.7` | `0.2.8` |
| [@rspack/core](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) | `0.6.3` | `0.6.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.8` | `20.12.12` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.1` | `18.3.2` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `4.2.15` | `4.2.17` |


Updates `@changesets/cli` from 2.27.1 to 2.27.2
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `@rspack/cli` from 0.6.3 to 0.6.5
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v0.6.5/packages/rspack-cli)

Updates `esbuild` from 0.20.2 to 0.21.3
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.20.2...v0.21.3)

Updates `happy-dom` from 14.7.1 to 14.11.0
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v14.7.1...v14.11.0)

Updates `publint` from 0.2.7 to 0.2.8
- [Release notes](https://github.com/bluwy/publint/releases)
- [Commits](https://github.com/bluwy/publint/commits/v0.2.8/pkg)

Updates `@rspack/core` from 0.6.3 to 0.6.5
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v0.6.5/packages/rspack)

Updates `@types/node` from 20.12.8 to 20.12.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react` from 18.3.1 to 18.3.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `svelte` from 4.2.15 to 4.2.17
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/[email protected]/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/[email protected]/packages/svelte)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@rspack/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: happy-dom
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: publint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@rspack/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: svelte
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 19, 2024
Copy link

changeset-bot bot commented May 19, 2024

🦋 Changeset detected

Latest commit: aaa4385

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
create-anywidget Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@manzt manzt merged commit c037e47 into main May 19, 2024
11 checks passed
@manzt manzt deleted the dependabot/npm_and_yarn/dev-dependencies-f6d8fe9929 branch May 19, 2024 17:53
@github-actions github-actions bot mentioned this pull request May 19, 2024
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant