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 build-deps group with 5 updates #252

Merged
merged 1 commit into from
Jul 4, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 4, 2023

Bumps the build-deps group with 5 updates:

Package Update
@types/node 20.3.1 to 20.3.3
@vitest/coverage-v8 0.32.2 to 0.32.4
esbuild 0.18.9 to 0.18.11
typescript 5.1.3 to 5.1.6
vitest 0.32.2 to 0.32.4

Updates @types/node from 20.3.1 to 20.3.3

Commits

Updates @vitest/coverage-v8 from 0.32.2 to 0.32.4

Release notes

Sourced from @​vitest/coverage-v8's releases.

v0.32.4

   🐞 Bug Fixes

    View changes on GitHub

v0.32.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates esbuild from 0.18.9 to 0.18.11

Release notes

Sourced from esbuild's releases.

v0.18.11

  • Fix a TypeScript code generation edge case (#3199)

    This release fixes a regression in version 0.18.4 where using a TypeScript namespace that exports a class declaration combined with --keep-names and a --target of es2021 or earlier could cause esbuild to export the class from the namespace using an incorrect name (notice the assignment to X2._Y vs. X2.Y):

    // Original code
    // Old output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
    const _Y = class _Y {
    };
    __name(_Y, "Y");
    let Y = _Y;
    X2._Y = _Y;
    })(X || (X = {}));
    // New output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
    const _Y = class _Y {
    };
    __name(_Y, "Y");
    let Y = _Y;
    X2.Y = _Y;
    })(X || (X = {}));

v0.18.10

  • Fix a tree-shaking bug that removed side effects (#3195)

    This fixes a regression in version 0.18.4 where combining --minify-syntax with --keep-names could cause expressions with side effects after a function declaration to be considered side-effect free for tree shaking purposes. The reason was because --keep-names generates an expression statement containing a call to a helper function after the function declaration with a special flag that makes the function call able to be tree shaken, and then --minify-syntax could potentially merge that expression statement with following expressions without clearing the flag. This release fixes the bug by clearing the flag when merging expression statements together.

  • Fix an incorrect warning about CSS nesting (#3197)

    A warning is currently generated when transforming nested CSS to a browser that doesn't support :is() because transformed nested CSS may need to use that feature to represent nesting. This was previously always triggered when an at-rule was encountered in a declaration context. Typically the only case you would encounter this is when using CSS nesting within a selector rule. However, there is a case where that's not true: when using a margin at-rule such as @top-left within @page. This release avoids incorrectly generating a warning in this case by checking that the at-rule is within a selector rule before generating a warning.

Changelog

Sourced from esbuild's changelog.

0.18.11

  • Fix a TypeScript code generation edge case (#3199)

    This release fixes a regression in version 0.18.4 where using a TypeScript namespace that exports a class declaration combined with --keep-names and a --target of es2021 or earlier could cause esbuild to export the class from the namespace using an incorrect name (notice the assignment to X2._Y vs. X2.Y):

    // Original code
    // Old output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
    const _Y = class _Y {
    };
    __name(_Y, "Y");
    let Y = _Y;
    X2._Y = _Y;
    })(X || (X = {}));
    // New output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
    const _Y = class _Y {
    };
    __name(_Y, "Y");
    let Y = _Y;
    X2.Y = _Y;
    })(X || (X = {}));

0.18.10

  • Fix a tree-shaking bug that removed side effects (#3195)

    This fixes a regression in version 0.18.4 where combining --minify-syntax with --keep-names could cause expressions with side effects after a function declaration to be considered side-effect free for tree shaking purposes. The reason was because --keep-names generates an expression statement containing a call to a helper function after the function declaration with a special flag that makes the function call able to be tree shaken, and then --minify-syntax could potentially merge that expression statement with following expressions without clearing the flag. This release fixes the bug by clearing the flag when merging expression statements together.

  • Fix an incorrect warning about CSS nesting (#3197)

    A warning is currently generated when transforming nested CSS to a browser that doesn't support :is() because transformed nested CSS may need to use that feature to represent nesting. This was previously always triggered when an at-rule was encountered in a declaration context. Typically the only case you would encounter this is when using CSS nesting within a selector rule. However, there is a case where that's not true: when using a margin at-rule such as @top-left within @page. This release avoids incorrectly generating a warning in this case by checking that the at-rule is within a selector rule before generating a warning.

Commits

Updates typescript from 5.1.3 to 5.1.6

Release notes

Sourced from typescript's releases.

TypeScript 5.1.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits

Updates vitest from 0.32.2 to 0.32.4

Release notes

Sourced from vitest's releases.

v0.32.4

   🐞 Bug Fixes

    View changes on GitHub

v0.32.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
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

Bumps the build-deps group with 5 updates:

| Package | Update |
| --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | 20.3.1 to 20.3.3 |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | 0.32.2 to 0.32.4 |
| [esbuild](https://github.com/evanw/esbuild) | 0.18.9 to 0.18.11 |
| [typescript](https://github.com/Microsoft/TypeScript) | 5.1.3 to 5.1.6 |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | 0.32.2 to 0.32.4 |


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

Updates `@vitest/coverage-v8` from 0.32.2 to 0.32.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v0.32.4/packages/coverage-v8)

Updates `esbuild` from 0.18.9 to 0.18.11
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.18.9...v0.18.11)

Updates `typescript` from 5.1.3 to 5.1.6
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/commits)

Updates `vitest` from 0.32.2 to 0.32.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v0.32.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-deps
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-deps
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-deps
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-deps
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 4, 2023
@github-actions
Copy link
Contributor

github-actions bot commented Jul 4, 2023

Coverage Report for Mock Reports (./test/mockReports)

Status Category Percentage Covered / Total
🔵 Lines 41.37% 60 / 145
🔵 Statements 41.33% 62 / 150
🔵 Functions 62.06% 18 / 29
🔵 Branches 39.65% 23 / 58
File CoverageNo changed files found.
Generated in workflow #535

@github-actions
Copy link
Contributor

github-actions bot commented Jul 4, 2023

Coverage Report for Root

Status Category Percentage Covered / Total
🔵 Lines 57.41% 387 / 674
🔵 Statements 57.41% 387 / 674
🔵 Functions 73.68% 14 / 19
🔵 Branches 91.3% 63 / 69
File Coverage
File Stmts % Branch % Funcs % Lines Uncovered Lines
Unchanged Files
src/FileCoverageMode.ts 100% 100% 100% 100%
src/generateFileCoverageHtml.ts 100% 100% 100% 100%
src/generateFileUrl.ts 94.44% 50% 100% 94.44% 6
src/generateHeadline.ts 100% 100% 100% 100%
src/generateSummaryTableHtml.ts 100% 100% 100% 100%
src/getPullChanges.ts 0% 0% 0% 0% 1-58
src/getUncoveredLinesFromStatements.ts 100% 100% 100% 100%
src/getViteConfigPath.ts 100% 100% 100% 100%
src/icons.ts 100% 100% 100% 100%
src/index.ts 0% 0% 0% 0% 1-81
src/options.ts 0% 0% 0% 0% 1-34
src/parseCoverageThresholds.ts 100% 100% 100% 100%
src/parseJsonReports.ts 0% 0% 0% 0% 1-50
src/writeSummaryToPR.ts 0% 0% 0% 0% 1-63
Generated in workflow #535

@davelosert davelosert merged commit 2e3096d into main Jul 4, 2023
1 check passed
@davelosert davelosert deleted the dependabot/npm_and_yarn/build-deps-86a364a05a branch July 4, 2023 05:35
@github-actions
Copy link
Contributor

🎉 This PR is included in version 2.1.1 🎉

The release is available on:

Your semantic-release bot 📦🚀

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 released
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant