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

Bump the patch-minor-dependencies group with 6 updates #659

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 27, 2023

Bumps the patch-minor-dependencies group with 6 updates:

Package From To
esbuild 0.19.6 0.19.8
@storybook/test-runner 0.15.1 0.15.2
@types/react 18.2.37 18.2.38
@types/react-dom 18.2.15 18.2.17
typescript 5.2.2 5.3.2
tsup 8.0.0 8.0.1

Updates esbuild from 0.19.6 to 0.19.8

Release notes

Sourced from esbuild's releases.

v0.19.8

  • Add a treemap chart to esbuild's bundle analyzer (#2848)

    The bundler analyzer on esbuild's website (https://esbuild.github.io/analyze/) now has a treemap chart type in addition to the two existing chart types (sunburst and flame). This should be more familiar for people coming from other similar tools, as well as make better use of large screens.

  • Allow decorators after the export keyword (#104)

    Previously esbuild's decorator parser followed the original behavior of TypeScript's experimental decorators feature, which only allowed decorators to come before the export keyword. However, the upcoming JavaScript decorators feature also allows decorators to come after the export keyword. And with TypeScript 5.0, TypeScript now also allows experimental decorators to come after the export keyword too. So esbuild now allows this as well:

    // This old syntax has always been permitted:
    @decorator export class Foo {}
    @decorator export default class Foo {}
    // This new syntax is now permitted too:
    export @​decorator class Foo {}
    export default @​decorator class Foo {}

    In addition, esbuild's decorator parser has been rewritten to fix several subtle and likely unimportant edge cases with esbuild's parsing of exports and decorators in TypeScript (e.g. TypeScript apparently does automatic semicolon insertion after interface and export interface but not after export default interface).

  • Pretty-print decorators using the same whitespace as the original

    When printing code containing decorators, esbuild will now try to respect whether the original code contained newlines after the decorator or not. This can make generated code containing many decorators much more compact to read:

    // Original code
    class Foo {
      @a @b @c abc
      @x @y @z xyz
    }
    // Old output
    class Foo {
    @​a
    @​b
    @​c
    abc;
    @​x
    @​y
    @​z
    xyz;
    }
    // New output
    class Foo {
    @​a @​b @​c abc;
    @​x @​y @​z xyz;
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.19.8

  • Add a treemap chart to esbuild's bundle analyzer (#2848)

    The bundler analyzer on esbuild's website (https://esbuild.github.io/analyze/) now has a treemap chart type in addition to the two existing chart types (sunburst and flame). This should be more familiar for people coming from other similar tools, as well as make better use of large screens.

  • Allow decorators after the export keyword (#104)

    Previously esbuild's decorator parser followed the original behavior of TypeScript's experimental decorators feature, which only allowed decorators to come before the export keyword. However, the upcoming JavaScript decorators feature also allows decorators to come after the export keyword. And with TypeScript 5.0, TypeScript now also allows experimental decorators to come after the export keyword too. So esbuild now allows this as well:

    // This old syntax has always been permitted:
    @decorator export class Foo {}
    @decorator export default class Foo {}
    // This new syntax is now permitted too:
    export @​decorator class Foo {}
    export default @​decorator class Foo {}

    In addition, esbuild's decorator parser has been rewritten to fix several subtle and likely unimportant edge cases with esbuild's parsing of exports and decorators in TypeScript (e.g. TypeScript apparently does automatic semicolon insertion after interface and export interface but not after export default interface).

  • Pretty-print decorators using the same whitespace as the original

    When printing code containing decorators, esbuild will now try to respect whether the original code contained newlines after the decorator or not. This can make generated code containing many decorators much more compact to read:

    // Original code
    class Foo {
      @a @b @c abc
      @x @y @z xyz
    }
    // Old output
    class Foo {
    @​a
    @​b
    @​c
    abc;
    @​x
    @​y
    @​z
    xyz;
    }
    // New output
    class Foo {
    @​a @​b @​c abc;
    @​x @​y @​z xyz;
    }

... (truncated)

Commits
  • e97bd67 publish 0.19.8 to npm
  • 65b3058 mention the treemap in the release notes (#2848)
  • 16883d4 add whitespace change to release notes
  • 7383d0d decorators: printing preserves newline-tail status
  • 7edc83d reword an experimental decorators error message
  • f3d5352 remove a now-unused field
  • e755189 ts: forbid regular decorators on declare fields
  • 69c9e7f allow decorators to come after export (#104)
  • 7baefdb fix a panic with "export default interface\n"
  • a8313d2 use "check" for decorator validation, not "guess"
  • Additional commits viewable in compare view

Updates @storybook/test-runner from 0.15.1 to 0.15.2

Release notes

Sourced from @​storybook/test-runner's releases.

v0.15.2

🐛 Bug Fix

Authors: 3

v0.15.2-next.3

🐛 Bug Fix

Authors: 2

v0.15.2-next.2

🐛 Bug Fix

Authors: 2

v0.15.2-next.1

🐛 Bug Fix

Authors: 1

v0.15.2-next.0

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​storybook/test-runner's changelog.

v0.15.2 (Tue Nov 21 2023)

🐛 Bug Fix

Authors: 3


Commits
  • 5940ef8 Bump version to: 0.15.2 [skip ci]
  • dc5c55f Update CHANGELOG.md [skip ci]
  • ef85eb8 Merge pull request #399 from storybookjs/next
  • 53fdd0f Merge pull request #353 from legobeat/ci-node-versions
  • f52971c remove storystorev7 flag as it's not needed anymore
  • 7e66afc Merge branch 'next' into ci-node-versions
  • 6ea74ef update actions
  • b42cd64 Remove node 14 from engines field
  • db1b66a Merge pull request #398 from storybookjs/docs/react-native-remark
  • bc457cf add react native remark to troubleshooting section
  • Additional commits viewable in compare view

Updates @types/react from 18.2.37 to 18.2.38

Commits

Updates @types/react-dom from 18.2.15 to 18.2.17

Commits

Updates typescript from 5.2.2 to 5.3.2

Release notes

Sourced from typescript's releases.

TypeScript 5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm.

Commits

Updates tsup from 8.0.0 to 8.0.1

Release notes

Sourced from tsup's releases.

v8.0.1

8.0.1 (2023-11-21)

Bug Fixes

  • dts: ensure chunks conform to bundle format (#1034) (f83baf8)
  • experimental-dts: make --experimental-dts to be compatible with --clean (#1041) (8c26e63)
  • experimental-dts: only include exported declarations (#1039) (731f43f)
Commits
  • 8c26e63 fix(experimental-dts): make --experimental-dts to be compatible with `--cle...
  • 731f43f fix(experimental-dts): only include exported declarations (#1039)
  • d8a203c chore(ci): automatically format code (#1035)
  • f83baf8 fix(dts): ensure chunks conform to bundle format (#1034)
  • 51b5a00 docs: correct minimal version for --experimental-dts flag (#1038)
  • See full diff 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 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 patch-minor-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.19.6` | `0.19.8` |
| [@storybook/test-runner](https://github.com/storybookjs/test-runner) | `0.15.1` | `0.15.2` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.37` | `18.2.38` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.15` | `18.2.17` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.3.2` |
| [tsup](https://github.com/egoist/tsup) | `8.0.0` | `8.0.1` |


Updates `esbuild` from 0.19.6 to 0.19.8
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.19.6...v0.19.8)

Updates `@storybook/test-runner` from 0.15.1 to 0.15.2
- [Release notes](https://github.com/storybookjs/test-runner/releases)
- [Changelog](https://github.com/storybookjs/test-runner/blob/v0.15.2/CHANGELOG.md)
- [Commits](storybookjs/test-runner@v0.15.1...v0.15.2)

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

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

Updates `typescript` from 5.2.2 to 5.3.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

Updates `tsup` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/egoist/tsup/releases)
- [Changelog](https://github.com/egoist/tsup/blob/dev/.releaserc.json)
- [Commits](egoist/tsup@v8.0.0...v8.0.1)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@storybook/test-runner"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor-dependencies
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 27, 2023
Copy link

changeset-bot bot commented Nov 27, 2023

🦋 Changeset detected

Latest commit: 3d84de8

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

This PR includes changesets to release 1 package
Name Type
@kvib/react 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

Copy link
Contributor

github-actions bot commented Nov 29, 2023

PR Preview Action v1.4.4
Preview removed because the pull request was closed.
2023-11-30 07:46 UTC

@nilben nilben merged commit 05fa168 into master Nov 30, 2023
5 checks passed
@nilben nilben deleted the dependabot/npm_and_yarn/patch-minor-dependencies-ac5e02c0a8 branch November 30, 2023 07:45
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.

2 participants