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 2 updates #759

Merged
merged 1 commit into from
Sep 22, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 22, 2023

Bumps the dev-dependencies group with 2 updates: dprint and esbuild.

Updates dprint from 0.35.4 to 0.41.0

Release notes

Sourced from dprint's releases.

0.41.0

Changes

  • feat: monitor and throttle CPU if necessary (#744)
  • fix: log and ignore PermissionDenied errors when globbing (#748)
  • fix: key Wasm cache on CPU features (#739) -- Fixes bug with caching on GH actions

Install

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

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip 28ef80b29135b428c4b87d0b6468b9280f2dea97fd4bada27cf247c7b8870f2f
dprint-aarch64-apple-darwin.zip 3edb4521887bae5afe5ced25b5a540fc0f889b61cd335b3b4aab80b4d391981f
dprint-x86_64-pc-windows-msvc.zip f0416f1418d512066178c123daa5bf3dc061bcebd3e344906087762e3e6bc250
dprint-x86_64-pc-windows-msvc-installer.exe 95136710f7a3579e8ee45ee54dd067dfd702da26f6457b09819181904da9745a
dprint-x86_64-unknown-linux-gnu.zip 800621711bd455c5420bfa4e30e2482c3bc812e0af84e50de7d0c583ca9adb4e
dprint-x86_64-unknown-linux-musl.zip a22a0b771327e14bcb2508303502fa325bc85b2ca1c099ec49324c736be37fad
dprint-aarch64-unknown-linux-gnu.zip 736bae33b5ed619eafbb5f6bdf65f5806f728a7b51e229ba6732afd3117b8f89

0.40.2

Changes

  • fix: improve error message when process plugin is too old (#732)
  • fix: dprint init should not have includes pattern anymore (#730)

Install

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

Checksums

Artifact SHA-256 Checksum
dprint-x86_64-apple-darwin.zip e4089c699a09ac725337f2f00f1de2798fa93e2cd7c739c81fdd85c3259b61e5
dprint-aarch64-apple-darwin.zip d1e7517270c7a04f38ff6659d0a20482c5406e66b2ae8e9c15abd4674e74c127
dprint-x86_64-pc-windows-msvc.zip ede70ca91ae7983f8365aa59c477246f9595c9f32536c359abf3a706c68801c8
dprint-x86_64-pc-windows-msvc-installer.exe 7ab88a5eee083835a710a0d364ec49c77a376587f6ae2b28d01d6ac240f95947
dprint-x86_64-unknown-linux-gnu.zip 32381717a408230405c15f185063ab953300d8eeb6814a2a3514a96358a84f5a
dprint-x86_64-unknown-linux-musl.zip 5c8418466937191f711ce4ba59e9ec28036daec01a08a505a17570a5edaec4c3
dprint-aarch64-unknown-linux-gnu.zip 66e51be4b1882f504beca45067fee39226b81c23c7fed0b71de629cafa51b7da

0.40.1

Changes

  • fix: do not error for --config in sub dir in some cases (regression in 0.40.0) (dprint/dprint#727)

... (truncated)

Commits

Updates esbuild from 0.17.19 to 0.19.3

Release notes

Sourced from esbuild's releases.

v0.19.3

  • Fix list-style-type with the local-css loader (#3325)

    The local-css loader incorrectly treated all identifiers provided to list-style-type as a custom local identifier. That included identifiers such as none which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:

    /* Original code */
    ul { list-style-type: none }
    /* Old output (with --loader=local-css) */
    ul {
    list-style-type: stdin_none;
    }
    /* New output (with --loader=local-css) */
    ul {
    list-style-type: none;
    }

    Note that this bug only affected code using the local-css loader. It did not affect code using the css loader.

  • Avoid inserting temporary variables before use strict (#3322)

    This release fixes a bug where esbuild could incorrectly insert automatically-generated temporary variables before use strict directives:

    // Original code
    function foo() {
      'use strict'
      a.b?.c()
    }
    // Old output (with --target=es6)
    function foo() {
    var _a;
    "use strict";
    (_a = a.b) == null ? void 0 : _a.c();
    }
    // New output (with --target=es6)
    function foo() {
    "use strict";
    var _a;
    (_a = a.b) == null ? void 0 : _a.c();
    }

  • Adjust TypeScript enum output to better approximate tsc (#3329)

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.19.3

  • Fix list-style-type with the local-css loader (#3325)

    The local-css loader incorrectly treated all identifiers provided to list-style-type as a custom local identifier. That included identifiers such as none which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:

    /* Original code */
    ul { list-style-type: none }
    /* Old output (with --loader=local-css) */
    ul {
    list-style-type: stdin_none;
    }
    /* New output (with --loader=local-css) */
    ul {
    list-style-type: none;
    }

    Note that this bug only affected code using the local-css loader. It did not affect code using the css loader.

  • Avoid inserting temporary variables before use strict (#3322)

    This release fixes a bug where esbuild could incorrectly insert automatically-generated temporary variables before use strict directives:

    // Original code
    function foo() {
      'use strict'
      a.b?.c()
    }
    // Old output (with --target=es6)
    function foo() {
    var _a;
    "use strict";
    (_a = a.b) == null ? void 0 : _a.c();
    }
    // New output (with --target=es6)
    function foo() {
    "use strict";
    var _a;
    (_a = a.b) == null ? void 0 : _a.c();
    }

  • Adjust TypeScript enum output to better approximate tsc (#3329)

... (truncated)

Commits
  • 673ad10 publish 0.19.3 to npm
  • 6402f11 basic support for parsing import attributes
  • 7ece556 fix #3322: avoid temporaries before "use strict"
  • 900a90d transform: banner/footer with local-css/global-css
  • bbd82b2 run make update-compat-table
  • f702f6b remove an unused method
  • a111cc4 fix #3318: ignore invalid commands for old builds
  • 4c5db58 fix #3329: treat more enum values as strings
  • 5ecf535 fix #3377: improve resolution error due to null
  • 79ac17a resolver: adjust some error messages
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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 2 updates: [dprint](https://github.com/dprint/dprint) and [esbuild](https://github.com/evanw/esbuild).


Updates `dprint` from 0.35.4 to 0.41.0
- [Release notes](https://github.com/dprint/dprint/releases)
- [Commits](dprint/dprint@0.35.4...0.41.0)

Updates `esbuild` from 0.17.19 to 0.19.3
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.17.19...v0.19.3)

---
updated-dependencies:
- dependency-name: dprint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 22, 2023
@steabert steabert merged commit 36150ca into main Sep 22, 2023
5 checks passed
@steabert steabert deleted the dependabot/npm_and_yarn/dev-dependencies-c2bd021615 branch September 22, 2023 14:31
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.

1 participant