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 tunnel-server-deps group in /tunnel-server with 11 updates #392

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 14, 2024

Bumps the tunnel-server-deps group in /tunnel-server with 11 updates:

Package From To
@fastify/request-context 5.0.0 5.1.0
fastify 4.24.3 4.25.2
htmlparser2 9.0.0 9.1.0
pino-pretty 10.3.0 10.3.1
ssh2 1.14.0 1.15.0
ts-pattern 5.0.5 5.0.6
@types/node 18.18.10 18.19.6
@types/node-fetch 2.6.9 2.6.10
@types/ssh2 1.11.16 1.11.18
esbuild 0.19.9 0.19.11
eslint 8.54.0 8.56.0

Updates @fastify/request-context from 5.0.0 to 5.1.0

Release notes

Sourced from @​fastify/request-context's releases.

v5.1.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-request-context@v5.0.0...v5.1.0

Commits

Updates fastify from 4.24.3 to 4.25.2

Release notes

Sourced from fastify's releases.

v4.25.2

What's Changed

New Contributors

Full Changelog: fastify/fastify@v4.25.1...v4.25.2

v4.25.1

What's Changed

Full Changelog: fastify/fastify@v4.25.0...v4.25.1

v4.25.0

What's Changed

... (truncated)

Commits

Updates htmlparser2 from 9.0.0 to 9.1.0

Release notes

Sourced from htmlparser2's releases.

v9.1.0

Fixes

Features

Commits
  • e2939a6 9.1.0
  • a0f4f4b feat(Parser): exports Handler interface from Parser (#1690)
  • 59b3538 build(deps-dev): Bump prettier from 3.0.3 to 3.1.1 (#1711)
  • 7dade15 build(deps): Bump github/codeql-action from 2 to 3 (#1715)
  • 11ceb64 build(deps-dev): Bump @​typescript-eslint/eslint-plugin (#1731)
  • cd32e60 build(deps-dev): Bump eslint-plugin-n from 16.6.0 to 16.6.1 (#1730)
  • 8b902d5 build(deps-dev): Bump @​typescript-eslint/parser from 6.16.0 to 6.17.0 (#1729)
  • bf4a220 build(deps-dev): Bump @​types/node from 20.10.5 to 20.10.6 (#1727)
  • bfb2a23 build(deps-dev): Bump eslint-plugin-n from 16.5.0 to 16.6.0 (#1726)
  • 3c5a72b build(deps-dev): Bump @​typescript-eslint/parser from 6.15.0 to 6.16.0 (#1725)
  • Additional commits viewable in compare view

Updates pino-pretty from 10.3.0 to 10.3.1

Release notes

Sourced from pino-pretty's releases.

v10.3.1

What's Changed

New Contributors

Full Changelog: pinojs/pino-pretty@v10.3.0...v10.3.1

Commits

Updates ssh2 from 1.14.0 to 1.15.0

Commits
  • a56e70e package: bump version to v1.15.0
  • fcf3a48 package: bump nan to v2.18.0
  • b1b0077 ci: update test workflow
  • 97b223f lib: add strict key exchange mode support
  • 739a589 package: bump cpu-features version to v0.0.9
  • fb88f18 ci: update workflows
  • See full diff in compare view

Updates ts-pattern from 5.0.5 to 5.0.6

Release notes

Sourced from ts-pattern's releases.

v5.0.6

Close issue issues

What's Changed

New Contributors

Full Changelog: gvergnaud/ts-pattern@v5.0.5...v5.0.6

Commits
  • 8f2158f Merge pull request #207 from gvergnaud/gvergnaud/fix-exhaustive-matching-on-r...
  • 16786f0 5.0.6
  • 4bad479 fix(readonly): exhaustive matching on readonly array
  • e36debe Merge pull request #200 from gvergnaud/dependabot/npm_and_yarn/babel/traverse...
  • c469d17 build(deps-dev): bump @​babel/traverse from 7.21.5 to 7.23.2
  • 188b427 docs: fix typo in jsdoc comments
  • 004fecb Merge pull request #199 from gvergnaud/dependabot/npm_and_yarn/postcss-8.4.31
  • cbc9f91 perf: don't execute the pattern twice when a guard is provided as second argu...
  • 6ecb14d build(deps-dev): bump postcss from 8.4.23 to 8.4.31
  • b054d90 perf: move run implementation to .exhaustive
  • Additional commits viewable in compare view

Updates @types/node from 18.18.10 to 18.19.6

Commits

Updates @types/node-fetch from 2.6.9 to 2.6.10

Commits

Updates @types/ssh2 from 1.11.16 to 1.11.18

Commits

Updates esbuild from 0.19.9 to 0.19.11

Release notes

Sourced from esbuild's releases.

v0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
    constructor() {
    super();
    this.#private = 1;
    }
    #private;
    }
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
    constructor() {
    this.#private = 1;
    super();
    }
    #private;
    }
    // New output
    class Foo extends Bar {
    #private = 1;
    constructor() {
    super();
    }
    }

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

    // Original code
    function f() {
      let x = false;

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
    constructor() {
    super();
    this.#private = 1;
    }
    #private;
    }
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
    constructor() {
    this.#private = 1;
    super();
    }
    #private;
    }
    // New output
    class Foo extends Bar {
    #private = 1;
    constructor() {
    super();
    }
    }

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

    // Original code
    function f() {

... (truncated)

Commits

Updates eslint from 8.54.0 to 8.56.0

Release notes

Sourced from eslint's releases.

v8.56.0

Features

  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818) (Arka Pratim Chaudhuri)

Bug Fixes

  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846) (Francesco Trotta)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812) (Bryan Mishkin)

Documentation

  • 9007719 docs: update link in ways-to-extend.md (#17839) (Amel SELMANE)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#17810) (Zwyx)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)

Chores

  • ba6af85 chore: upgrade @​eslint/js@​8.56.0 (#17864) (Milos Djermanovic)
  • 60a531a chore: package.json update for @​eslint/js release (Jenkins)
  • ba87a06 chore: update dependency markdownlint to ^0.32.0 (#17783) (renovate[bot])
  • 9271d10 chore: add GitHub issue template for docs issues (#17845) (Josh Goldberg ✨)
  • 70a686b chore: Convert rule tests to FlatRuleTester (#17819) (Nicholas C. Zakas)
  • f3a599d chore: upgrade eslint-plugin-unicorn to v49.0.0 (#17837) (唯然)
  • 905d4b7 chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (#17838) (唯然)
  • 4d7c3ce chore: update eslint-plugin-n v16.4.0 (#17836) (唯然)
  • fd0c60c ci: unpin Node.js 21.2.0 (#17821) (Francesco Trotta)

v8.55.0

Features

  • 8c9e6c1 feat: importNamePattern option in no-restricted-imports (#17721) (Tanuj Kanti)

Documentation

  • 83ece2a docs: fix typo --rules -> --rule (#17806) (OKURA Masafumi)
  • fffca5c docs: remove "Open in Playground" buttons for removed rules (#17791) (Francesco Trotta)
  • a6d9442 docs: fix correct/incorrect examples of rules (#17789) (Tanuj Kanti)
  • 383e999 docs: update and fix examples for no-unused-vars (#17788) (Tanuj Kanti)
  • 5a8efd5 docs: add specific stylistic rule for each deprecated rule (#17778) (Etienne)

Chores

  • eb8950c chore: upgrade @​eslint/js@​8.55.0 (#17811) (Milos Djermanovic)
  • 93df384 chore: package.json update for @​eslint/js release (Jenkins)
  • fe4b954 chore: upgrade @​eslint/eslintrc@​2.1.4 (#17799) (Milos Djermanovic)
  • bd8911d ci: pin Node.js 21.2.0 (#17809) (Milos Djermanovic)
  • b29a16b chore: fix several cli tests to run in the intended flat config mode (#17797) (Milos Djermanovic)
  • de165c1 chore: remove unused config-extends fixtures (#17781) (Milos Djermanovic)
  • d4304b8 chore: remove formatting/stylistic rules from new rule templates (#17780) (Francesco Trotta)
  • 21024fe chore: check rule examples for syntax errors (#17718) (Francesco Trotta)
Changelog

Sourced from eslint's changelog.

v8.56.0 - December 15, 2023

  • ba6af85 chore: upgrade @​eslint/js@​8.56.0 (#17864) (Milos Djermanovic)
  • 60a531a chore: package.json update for @​eslint/js release (Jenkins)
  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818) (Arka Pratim Chaudhuri)
  • ba87a06 chore: update dependency markdownlint to ^0.32.0 (#17783) (renovate[bot])
  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846) (Francesco Trotta)
  • 9271d10 chore: add GitHub issue template for docs issues (#17845) (Josh Goldberg ✨)
  • 70a686b chore: Convert rule tests to FlatRuleTester (#17819) (Nicholas C. Zakas)
  • 9007719 docs: update link in ways-to-extend.md (#17839) (Amel SELMANE)
  • f3a599d chore: upgrade eslint-plugin-unicorn to v49.0.0 (#17837) (唯然)
  • 905d4b7 chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (#17838) (唯然)
  • 4d7c3ce chore: update eslint-plugin-n v16.4.0 (#17836) (唯然)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#17810) (Zwyx)
  • fd0c60c ci: unpin Node.js 21.2.0 (#17821) (Francesco Trotta)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812) (Bryan Mishkin)

v8.55.0 - December 1, 2023

  • eb8950c chore: upgrade @​eslint/js@​8.55.0 (#17811) (Milos Djermanovic)
  • 93df384 chore: package.json update for @​eslint/js release (Jenkins)
  • fe4b954 chore: upgrade @​eslint/eslintrc@​2.1.4 (#17799) (Milos Djermanovic)
  • 8c9e6c1 feat: importNamePattern option in no-restricted-imports (#17721) (Tanuj Kanti)
  • 83ece2a docs: fix typo --rules -> --rule (#17806) (OKURA Masafumi)
  • bd8911d ci: pin Node.js 21.2.0 (#17809) (Milos Djermanovic)
  • b29a16b chore: fix several cli tests to run in the intended flat config mode (#17797) (Milos Djermanovic)
  • fffca5c docs: remove "Open in Playground" buttons for removed rules (#17791) (Francesco Trotta)
  • a6d9442 docs: fix correct/incorrect examples of rules (#17789) (Tanuj Kanti)
  • 383e999 docs: update and fix examples for no-unused-vars (#17788) (Tanuj Kanti)
  • 5a8efd5 docs: add specific stylistic rule for each deprecated rule (#17778) (Etienne)
  • de165c1 chore: remove unused config-extends fixtures (#17781) (Milos Djermanovic)
  • d4304b8 chore: remove formatting/stylistic rules from new rule templates (#17780) (Francesco Trotta)
  • 21024fe chore: check rule examples for syntax errors (#17718) (Francesco Trotta)
Commits
  • 8e8e9f8 8.56.0
  • 085978b Build: changelog update for 8.56.0
  • ba6af85 chore: upgrade @​eslint/js@​8.56.0 (#17864)
  • 60a531a chore: package.json update for @​eslint/js release
  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818)
  • ba87a06 chore: update dependency markdownlint to ^0.32.0 (#17783)
  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846)
  • 9271d10 chore: add GitHub issue template for docs issues (#17845)
  • 70a686b chore: Convert rule tests to FlatRuleTester (#17819)
  • Additional commits viewable 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 tunnel-server-deps group in /tunnel-server with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@fastify/request-context](https://github.com/fastify/fastify-request-context) | `5.0.0` | `5.1.0` |
| [fastify](https://github.com/fastify/fastify) | `4.24.3` | `4.25.2` |
| [htmlparser2](https://github.com/fb55/htmlparser2) | `9.0.0` | `9.1.0` |
| [pino-pretty](https://github.com/pinojs/pino-pretty) | `10.3.0` | `10.3.1` |
| [ssh2](https://github.com/mscdex/ssh2) | `1.14.0` | `1.15.0` |
| [ts-pattern](https://github.com/gvergnaud/ts-pattern) | `5.0.5` | `5.0.6` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.18.10` | `18.19.6` |
| [@types/node-fetch](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node-fetch) | `2.6.9` | `2.6.10` |
| [@types/ssh2](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ssh2) | `1.11.16` | `1.11.18` |
| [esbuild](https://github.com/evanw/esbuild) | `0.19.9` | `0.19.11` |
| [eslint](https://github.com/eslint/eslint) | `8.54.0` | `8.56.0` |


Updates `@fastify/request-context` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/fastify/fastify-request-context/releases)
- [Commits](fastify/fastify-request-context@v5.0.0...v5.1.0)

Updates `fastify` from 4.24.3 to 4.25.2
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v4.24.3...v4.25.2)

Updates `htmlparser2` from 9.0.0 to 9.1.0
- [Release notes](https://github.com/fb55/htmlparser2/releases)
- [Commits](fb55/htmlparser2@v9.0.0...v9.1.0)

Updates `pino-pretty` from 10.3.0 to 10.3.1
- [Release notes](https://github.com/pinojs/pino-pretty/releases)
- [Commits](pinojs/pino-pretty@v10.3.0...v10.3.1)

Updates `ssh2` from 1.14.0 to 1.15.0
- [Commits](mscdex/ssh2@v1.14.0...v1.15.0)

Updates `ts-pattern` from 5.0.5 to 5.0.6
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases)
- [Commits](gvergnaud/ts-pattern@v5.0.5...v5.0.6)

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

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

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

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

Updates `eslint` from 8.54.0 to 8.56.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.54.0...v8.56.0)

---
updated-dependencies:
- dependency-name: "@fastify/request-context"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: fastify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: htmlparser2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: pino-pretty
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: ssh2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: ts-pattern
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: "@types/node-fetch"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: "@types/ssh2"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 21, 2024

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

@dependabot dependabot bot closed this Jan 21, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/tunnel-server/tunnel-server-deps-2a2ef9c535 branch January 21, 2024 10:07
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.

0 participants