pester / vscode-adapter

Run PowerShell Pester Tests with Visual Studio Code
MIT License
58 stars 13 forks source link

Bump the dependencies group across 1 directory with 16 updates #258

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 3 months ago

Bumps the dependencies group with 16 updates in the / directory:

Package From To
@types/node 20.10.6 20.12.12
@types/vscode 1.85.0 1.89.0
@vscode/test-electron 2.3.8 2.3.10
@vscode/vsce 2.22.0 2.26.1
chai 5.0.0 5.1.1
esbuild 0.19.11 0.21.4
eslint-config-standard-with-typescript 43.0.0 43.0.1
eslint-plugin-promise 6.1.1 6.2.0
glob 10.3.10 10.4.1
mocha 10.2.0 10.4.0
pkgroll 2.0.1 2.1.1
prettier 3.1.1 3.2.5
prettier-eslint 16.2.0 16.3.0
sinon 17.0.1 18.0.0
typescript 5.3.3 5.4.5
utility-types 3.10.0 3.11.0

Updates @types/node from 20.10.6 to 20.12.12

Commits


Updates @types/vscode from 1.85.0 to 1.89.0

Commits


Updates @vscode/test-electron from 2.3.8 to 2.3.10

Changelog

Sourced from @​vscode/test-electron's changelog.

2.3.10 | 2024-05-13

  • Add runVSCodeCommand method and workaround for Node CVE-2024-27980

2.3.9 | 2024-01-19

  • Fix archive extraction on Windows failing when run under Electron
Commits


Updates @vscode/vsce from 2.22.0 to 2.26.1

Release notes

Sourced from @​vscode/vsce's releases.

v2.26.1

Changes:

Feature Requests:

  • #971: Validate nls strings on publish

Others:

  • #974: Validate NLS strings
  • #973: Fix nodejs breaking change CVE-2024-27980

This list of changes was auto generated.

v2.26.1-1

Changes:

Feature Requests:

  • #971: Validate nls strings on publish

Others:

  • #974: Validate NLS strings

This list of changes was auto generated.

v2.26.1-0

Changes:

  • #973: Fix nodejs breaking change CVE-2024-27980

This list of changes was auto generated.

v2.26.0

Changes:

... (truncated)

Commits


Updates chai from 5.0.0 to 5.1.1

Release notes

Sourced from chai's releases.

v5.1.1

What's Changed

New Contributors

Full Changelog: https://github.com/chaijs/chai/compare/v5.1.0...v5.1.1

v5.1.0

What's Changed

New Contributors

Full Changelog: https://github.com/chaijs/chai/compare/v5.0.3...v5.1.0

v5.0.3

Fix bad v5.0.2 publish.

Full Changelog: https://github.com/chaijs/chai/compare/v5.0.2...v5.0.3

v5.0.2

What's Changed

Full Changelog: https://github.com/chaijs/chai/compare/v5.0.1...v5.0.2

Commits


Updates esbuild from 0.19.11 to 0.21.4

Release notes

Sourced from esbuild's releases.

v0.21.4

  • Update support for import assertions and import attributes in node (#3778)

    Import assertions (the assert keyword) have been removed from node starting in v22.0.0. So esbuild will now strip them and generate a warning with --target=node22 or above:

    ▲ [WARNING] The "assert" keyword is not supported in the configured target environment ("node22") [assert-to-with]
    
    example.mjs:1:40:
      1 │ import json from "esbuild/package.json" assert { type: "json" }
        │                                         ~~~~~~
        ╵                                         with
    

    Did you mean to use "with" instead of "assert"?

    Import attributes (the with keyword) have been backported to node 18 starting in v18.20.0. So esbuild will no longer strip them with --target=node18.N if N is 20 or greater.

  • Fix for await transform when a label is present

    This release fixes a bug where the for await transform, which wraps the loop in a try statement, previously failed to also move the loop's label into the try statement. This bug only affects code that uses both of these features in combination. Here's an example of some affected code:

    // Original code
    async function test() {
      outer: for await (const x of [Promise.resolve([0, 1])]) {
        for (const y of x) if (y) break outer
        throw 'fail'
      }
    }
    

    // Old output (with --target=es6) function test() { return __async(this, null, function* () { outer: try { for (var iter = __forAwait([Promise.resolve([0, 1])]), more, temp, error; more = !(temp = yield iter.next()).done; more = false) { const x = temp.value; for (const y of x) if (y) break outer; throw "fail"; } } catch (temp) { error = [temp]; } finally { try { more && (temp = iter.return) && (yield temp.call(iter)); } finally { if (error) throw error[0]; } }

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2023

This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).

Commits


Updates eslint-config-standard-with-typescript from 43.0.0 to 43.0.1

Release notes

Sourced from eslint-config-standard-with-typescript's releases.

v43.0.1

43.0.1 (2024-1-20)

Build system / dependencies

  • rm add-to-project workflow (8d2f497)

Documentation

Changelog

Sourced from eslint-config-standard-with-typescript's changelog.

43.0.1 (2024-1-20)

Build system / dependencies

  • rm add-to-project workflow (8d2f497)

Documentation

Commits
  • a15c932 chore(release): 43.0.1 [skip ci]
  • c7782be Merge pull request #1394 from mightyiam/renovate/semantic-release-23.x
  • 5fb79c3 chore(deps): update dependency semantic-release to v23
  • d3b4d11 Merge pull request #1400 from mightyiam/renovate/node-20.x
  • 7414eba chore(deps): update dependency @​types/node to v20.11.5
  • 8470a93 Merge pull request #1397 from mightyiam/repo-transfer
  • 932ffce docs: update repository urls
  • 372e604 Merge pull request #1399 from mightyiam/project
  • 8d2f497 build: rm add-to-project workflow
  • cd71373 Merge pull request #1393 from standard/renovate/node-20.x
  • Additional commits viewable in compare view


Updates eslint-plugin-promise from 6.1.1 to 6.2.0

Release notes

Sourced from eslint-plugin-promise's releases.

v6.2.0

6.2.0 (2024-05-27)

Bug Fixes

  • no-callback-in-promise: false positives when the exception is an argument (#446) (5e4546d)

Features

  • Resolve getAncestors and getScope calls in eslint v9 (#466) (c0c716b)
Commits
  • 5e4546d fix(no-callback-in-promise): false positives when the exception is an argumen...
  • c0c716b feat: Resolve getAncestors and getScope calls in eslint v9 (#466)
  • 7d33c30 chore: add pkg.funding (#468)
  • ce9ae7f chore(deps-dev): bump @​babel/traverse from 7.19.1 to 7.24.1 (#453)
  • 62af490 chore(deps): bump actions/checkout from 3 to 4 (#461)
  • 19b21b4 chore(deps): bump codecov/codecov-action from 3 to 4 (#459)
  • 8c74b9b chore(deps): bump actions/setup-node from 3 to 4 (#460)
  • bf75e4d chore(deps): bump cycjimmy/semantic-release-action from 3 to 4 (#462)
  • bbcfcbf chore: add tests for Node 20 (#440)
  • 0b50079 chore: remove styfle/cancel-workflow-action usage (#439)
  • Additional commits viewable in compare view


Updates glob from 10.3.10 to 10.4.1

Changelog

Sourced from glob's changelog.

changeglob

10.4

  • Add includeChildMatches: false option
  • Export the Ignore class

10.3

  • Add --default -p flag to provide a default pattern
  • exclude symbolic links to directories when follow and nodir are both set

10.2

  • Add glob cli

10.1

  • Return '.' instead of the empty string '' when the current working directory is returned as a match.
  • Add posix: true option to return / delimited paths, even on Windows.

10.0.0

  • No default exports, only named exports

9.3.3

  • Upgraded minimatch to v8, adding support for any degree of nested extglob patterns.

9.3

  • Add aliases for methods. glob.sync, glob.stream, glob.stream.sync, etc.

9.2

  • Support using a custom fs object, which is passed to PathScurry
  • add maxDepth option
  • add stat option
  • add custom Ignore support

9.1

  • Bring back the root option, albeit with slightly different semantics than in v8 and before.
  • Support { absolute:false } option to explicitly always return

... (truncated)

Commits


Updates mocha from 10.2.0 to 10.4.0

Release notes

Sourced from mocha's releases.

v10.4.0

10.4.0 / 2024-03-26

:tada: Enhancements

:bug: Fixes

:nut_and_bolt: Other

v10.3.0

This is a stable release equivalent to v10.3.0-preminor.0.

What's Changed

... (truncated)

Changelog

Sourced from mocha's changelog.

10.4.0 / 2024-03-26

:tada: Enhancements

:bug: Fixes

:nut_and_bolt: Other

10.3.0 / 2024-02-08

This is a stable release equivalent to 10.30.0-prerelease.

10.3.0-prerelease / 2024-01-18

This is a prerelease version to test our ability to release. Other than removing or updating dependencies, it contains no intended user-facing changes.

:nut_and_bolt: Other

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by voxpelli, a new releaser for mocha since your current version.


Updates pkgroll from 2.0.1 to 2.1.1

Release notes

Sourced from pkgroll's releases.

v2.1.1

2.1.1 (2024-05-22)

Bug Fixes

  • minification: preserve function names (f7d614e), closes #67

v2.1.0

2.1.0 (2024-05-17)

Features

v2.0.2

2.0.2 (2024-03-07)

Bug Fixes

  • support composite in tsconfig.json (#55) (743f26f)
Commits


Updates prettier from 3.1.1 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

// Prettier 3.2.5 @​Component({ template: &lt;div&gt;...&lt;/div&gt;, styles: h1 { color: blue; }, }) export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@​Component({ [template]: &lt;h1&gt;{{ hello }}&lt;/h1&gt;, }) export class AppComponent {} </tr></table>

... (truncated)

Commits


Updates prettier-eslint from 16.2.0 to 16.3.0

Release notes

Sourced from prettier-eslint's releases.

v16.3.0

Minor Changes

New Contributors

Full Changelog: https://github.com/prettier/prettier-eslint/compare/v16.2.0...v16.3.0

Changelog

Sourced from prettier-eslint's changelog.

16.3.0

Minor Changes

Commits
Maintainer changes

This version was pushed to npm by jounqin, a new releaser for prettier-eslint since your current version.


Updates sinon from 17.0.1 to 18.0.0

Changelog

Sourced from sinon's changelog.

18.0.0

This is what 17.0.2 should have been, as that contained two breaking changes. After updating Nise we are down to one breaking change, which only affects sinon-test (which has been updated), so most people are not affected. The legacyRoutes flag that is currently enabled in Nise by default will at some later version be disabled. We will then issue a little migration note.

  • 01d45312 Use Nise 6 with legacyRoutes flag enabled (Carl-Erik Kopseng)

    This should be disabled in a future Sinon version by default.

  • c618edc5 fix #2594: remove needless sandbox creation (Carl-Erik Kopseng)

Released by Carl-Erik Kopseng on 2024-05-15.

17.0.2

  • f6dca0ba upgrade packages (#2595) (Carl-Erik Kopseng)
  • 5025d001 Avoid return and callArg* clearing each other's state (#2593) (Carl-Erik Kopseng)
    • Partially revert "fix returns does not override call through (#2567)"
    • revert to the old manual clearing of props
  • ed068a88 Bump ip from 1.1.8 to 1.1.9 (#2587) (dependabot[bot])
  • ec4d592e fix #2589: avoid invoking getter as side-effect (#2592) (Carl-Erik Kopseng)
  • 9972e1e3 Fix typo in mocks documentation (#2591) (Eduardo de la Cruz Palacios)
  • 52e6e4c5 chore: prefer cache option of setup-node (Morgan Roderick)
  • 08da1235 Bump actions/cache from 3 to 4 (dependabot[bot])
  • 404ef47e Bump nokogiri from 1.14.3 to 1.16.2 (dependabot[bot])
  • fd79612c Update Bug_report.md (Carl-Erik Kopseng)
  • 1fbc812a Re-add about (Carl-Erik Kopseng)
  • fc8f6c3e Fix formatting :clown: (Carl-Erik Kopseng)
  • c57e38ae Remove old template (Carl-Erik Kopseng)
  • dependabot[bot] commented 2 months ago

    Superseded by #259.