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 dependencies group across 1 directory with 14 updates #256

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@types/node 20.10.6 20.12.11
@types/vscode 1.85.0 1.89.0
@vscode/test-electron 2.3.8 2.3.9
@vscode/vsce 2.22.0 2.26.1
chai 5.0.0 5.1.1
esbuild 0.19.11 0.21.2
eslint-config-standard-with-typescript 43.0.0 43.0.1
glob 10.3.10 10.3.15
mocha 10.2.0 10.4.0
pkgroll 2.0.1 2.0.2
prettier 3.1.1 3.2.5
prettier-eslint 16.2.0 16.3.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.11

Commits

Updates @types/vscode from 1.85.0 to 1.89.0

Commits

Updates @vscode/test-electron from 2.3.8 to 2.3.9

Changelog

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

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: chaijs/chai@v5.1.0...v5.1.1

v5.1.0

What's Changed

New Contributors

Full Changelog: chaijs/chai@v5.0.3...v5.1.0

v5.0.3

Fix bad v5.0.2 publish.

Full Changelog: chaijs/chai@v5.0.2...v5.0.3

v5.0.2

What's Changed

Full Changelog: chaijs/chai@v5.0.1...v5.0.2

Commits

Updates esbuild from 0.19.11 to 0.21.2

Release notes

Sourced from esbuild's releases.

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 }
    class Foo { @dec static foo }
    console.log(Foo.bar) // Should be "true"
  • Allow es2023 as a target environment (#3762)

    TypeScript recently added es2023 as a compilation target, so esbuild now supports this too. There is no difference between a target of es2022 and es2023 as far as esbuild is concerned since the 2023 edition of JavaScript doesn't introduce any new syntax features.

v0.21.1

  • Fix a regression with --keep-names (#3756)

    The previous release introduced a regression with the --keep-names setting and object literals with get/set accessor methods, in which case the generated code contained syntax errors. This release fixes the regression:

    // Original code
    x = { get y() {} }
    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @PURE */ __name(function() {
    }, "y") };
    // Output from this version (with --keep-names)
    x = { get y() {
    } };

v0.21.0

This release doesn't contain any deliberately-breaking changes. However, it contains a very complex new feature and while all of esbuild's tests pass, I would not be surprised if an important edge case turns out to be broken. So I'm releasing this as a breaking change release to avoid causing any trouble. As usual, make sure to test your code when you upgrade.

  • Implement the JavaScript decorators proposal (#104)

    With this release, esbuild now contains an implementation of the upcoming JavaScript decorators proposal. This is the same feature that shipped in TypeScript 5.0 and has been highly-requested on esbuild's issue tracker. You can read more about them in that blog post and in this other (now slightly outdated) extensive blog post here: https://2ality.com/2022/10/javascript-decorators.html. Here's a quick example:

    const log = (fn, context) => function() {
      console.log(`before ${context.name}`)
      const it = fn.apply(this, arguments)
      console.log(`after ${context.name}`)
      return it
    }
    class Foo {
    @​log static foo() {

... (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 glob from 10.3.10 to 10.3.15

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

🎉 Enhancements

🐛 Fixes

🔩 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

🎉 Enhancements

🐛 Fixes

🔩 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.

🔩 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.0.2

Release notes

Sourced from pkgroll's releases.

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: prettier/prettier-eslint@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 typescript from 5.3.3 to 5.4.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.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.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • 8eb3367 Bump version to 5.4.4 and LKG
  • de9096b 🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...
  • 06aae98 🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...
  • 6d8134e 🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...
  • Additional commits viewable in compare view

Updates utility-types from 3.10.0 to 3.11.0

Release notes

Sourced from utility-types's releases.

v3.11.0

What's Changed

New Contributors

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

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.10.6` | `20.12.11` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.85.0` | `1.89.0` |
| [@vscode/test-electron](https://github.com/Microsoft/vscode-test) | `2.3.8` | `2.3.9` |
| [@vscode/vsce](https://github.com/Microsoft/vsce) | `2.22.0` | `2.26.1` |
| [chai](https://github.com/chaijs/chai) | `5.0.0` | `5.1.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.19.11` | `0.21.2` |
| [eslint-config-standard-with-typescript](https://github.com/mightyiam/eslint-config-standard-with-typescript) | `43.0.0` | `43.0.1` |
| [glob](https://github.com/isaacs/node-glob) | `10.3.10` | `10.3.15` |
| [mocha](https://github.com/mochajs/mocha) | `10.2.0` | `10.4.0` |
| [pkgroll](https://github.com/privatenumber/pkgroll) | `2.0.1` | `2.0.2` |
| [prettier](https://github.com/prettier/prettier) | `3.1.1` | `3.2.5` |
| [prettier-eslint](https://github.com/prettier/prettier-eslint) | `16.2.0` | `16.3.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.5` |
| [utility-types](https://github.com/piotrwitek/utility-types) | `3.10.0` | `3.11.0` |



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

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

Updates `@vscode/test-electron` from 2.3.8 to 2.3.9
- [Changelog](https://github.com/microsoft/vscode-test/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Microsoft/vscode-test/commits/v2.3.9)

Updates `@vscode/vsce` from 2.22.0 to 2.26.1
- [Release notes](https://github.com/Microsoft/vsce/releases)
- [Commits](microsoft/vscode-vsce@v2.22.0...v2.26.1)

Updates `chai` from 5.0.0 to 5.1.1
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v5.0.0...v5.1.1)

Updates `esbuild` from 0.19.11 to 0.21.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md)
- [Commits](evanw/esbuild@v0.19.11...v0.21.2)

Updates `eslint-config-standard-with-typescript` from 43.0.0 to 43.0.1
- [Release notes](https://github.com/mightyiam/eslint-config-standard-with-typescript/releases)
- [Changelog](https://github.com/mightyiam/eslint-config-love/blob/main/CHANGELOG.md)
- [Commits](mightyiam/eslint-config-love@v43.0.0...v43.0.1)

Updates `glob` from 10.3.10 to 10.3.15
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v10.3.10...v10.3.15)

Updates `mocha` from 10.2.0 to 10.4.0
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v10.2.0...v10.4.0)

Updates `pkgroll` from 2.0.1 to 2.0.2
- [Release notes](https://github.com/privatenumber/pkgroll/releases)
- [Commits](privatenumber/pkgroll@v2.0.1...v2.0.2)

Updates `prettier` from 3.1.1 to 3.2.5
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.1.1...3.2.5)

Updates `prettier-eslint` from 16.2.0 to 16.3.0
- [Release notes](https://github.com/prettier/prettier-eslint/releases)
- [Changelog](https://github.com/prettier/prettier-eslint/blob/master/CHANGELOG.md)
- [Commits](prettier/prettier-eslint@v16.2.0...v16.3.0)

Updates `typescript` from 5.3.3 to 5.4.5
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.4.5)

Updates `utility-types` from 3.10.0 to 3.11.0
- [Release notes](https://github.com/piotrwitek/utility-types/releases)
- [Commits](piotrwitek/utility-types@v3.10.0...v3.11.0)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/vscode"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vscode/test-electron"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vscode/vsce"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: chai
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-config-standard-with-typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: glob
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pkgroll
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prettier-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: utility-types
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 13, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 20, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this May 20, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-aa41f249c1 branch May 20, 2024 16:14
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.

None yet

0 participants