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 12 updates #462

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 26, 2024

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

Package From To
@fastify/cors 8.3.0 8.5.0
@fastify/request-context 5.0.0 5.1.0
fastify 4.24.3 4.26.2
htmlparser2 9.0.0 9.1.0
jose 4.15.4 4.15.5
ssh2 1.14.0 1.15.0
ts-pattern 5.0.5 5.0.8
tseep 1.1.3 1.2.1
@types/node 18.18.10 18.19.26
@types/ssh2 1.11.16 1.15.0
@types/tough-cookie 4.0.3 4.0.5
undici 6.4.0 6.10.1

Updates @fastify/cors from 8.3.0 to 8.5.0

Release notes

Sourced from @​fastify/cors's releases.

v8.5.0

What's Changed

Full Changelog: fastify/fastify-cors@v8.4.2...v8.5.0

v8.4.2

What's Changed

New Contributors

Full Changelog: fastify/fastify-cors@v8.4.1...v8.4.2

v8.4.1

What's Changed

New Contributors

Full Changelog: fastify/fastify-cors@v8.4.0...v8.4.1

v8.4.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-cors@v8.3.0...v8.4.0

Commits

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

Release notes

Sourced from fastify's releases.

v4.26.2

What's Changed

New Contributors

Full Changelog: fastify/fastify@v4.26.1...v4.26.2

v4.26.1

What's Changed

New Contributors

Full Changelog: fastify/fastify@v4.26.0...v4.26.1

v4.26.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 jose from 4.15.4 to 4.15.5

Release notes

Sourced from jose's releases.

v4.15.5

Fixes

Changelog

Sourced from jose's changelog.

4.15.5 (2024-03-07)

Fixes

  • add a maxOutputLength option to zlib inflate (1b91d88)
Commits
  • 765aafd chore(release): 4.15.5
  • b36e45e test: add export check to x509 pem import tests
  • e839ecb test: stop testing JWE RSA1_5 Algorithm
  • 1b91d88 fix: add a maxOutputLength option to zlib inflate
  • 9ca2b24 build: remove release action
  • f3035d8 chore: cleanup after release
  • See full diff in compare view

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

Release notes

Sourced from ts-pattern's releases.

v5.0.8

The main thing

This release includes type narrowing improvement to isMatching when used in its curried form:

type Pizza = { type: 'pizza', topping: string };
type Sandwich = { type: 'sandwich', condiments: string[] }
type Food =  Pizza | Sandwich;
declare const food: Food
const isPizza = isMatching({ type: 'pizza' })
if (isPizza(food)) {
x  // Used to  infer food as Food, no infers Pizza
}

This also improves type checking performance for complex patterns and fixes a small bug in the ES5 build of TS-Pattern.

What's Changed

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

v5.0.6

Close issue issues

What's Changed

New Contributors

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

Commits
  • e22cc7f 5.0.8
  • 579962d 5.0.7
  • f0cf3d4 Merge pull request #224 from gvergnaud/gvergnaud/fix-regenerator-runtime-call...
  • dbff156 fix: Make sure regeneratorRuntime isn't included in the cjs build
  • 5fffafd docs: update roadmap.md
  • a287f41 Merge pull request #221 from gvergnaud/fix-is-matching-to-take-a-const-type-p...
  • 4bd508c tests: add unit tests for isMatching's inference
  • e707bf7 deps: update jest
  • 442a0c3 fix: make isMatching(p) infer the pattern as a const type parameter
  • 2352f00 readme: improvements
  • Additional commits viewable in compare view

Updates tseep from 1.1.3 to 1.2.1

Commits

Updates @types/node from 18.18.10 to 18.19.26

Commits

Updates @types/ssh2 from 1.11.16 to 1.15.0

Commits

Updates @types/tough-cookie from 4.0.3 to 4.0.5

Commits

Updates undici from 6.4.0 to 6.10.1

Release notes

Sourced from undici's releases.

v6.10.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v6.9.0...v6.10.0

v6.9.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v6.8.0...v6.9.0

v6.8.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v6.7.1...v6.8.0

v6.7.1

... (truncated)

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
  • @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 12 updates:

| Package | From | To |
| --- | --- | --- |
| [@fastify/cors](https://github.com/fastify/fastify-cors) | `8.3.0` | `8.5.0` |
| [@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.26.2` |
| [htmlparser2](https://github.com/fb55/htmlparser2) | `9.0.0` | `9.1.0` |
| [jose](https://github.com/panva/jose) | `4.15.4` | `4.15.5` |
| [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.8` |
| [tseep](https://github.com/Morglod/tseep) | `1.1.3` | `1.2.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.18.10` | `18.19.26` |
| [@types/ssh2](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ssh2) | `1.11.16` | `1.15.0` |
| [@types/tough-cookie](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/tough-cookie) | `4.0.3` | `4.0.5` |
| [undici](https://github.com/nodejs/undici) | `6.4.0` | `6.10.1` |


Updates `@fastify/cors` from 8.3.0 to 8.5.0
- [Release notes](https://github.com/fastify/fastify-cors/releases)
- [Commits](fastify/fastify-cors@v8.3.0...v8.5.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.26.2
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v4.24.3...v4.26.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 `jose` from 4.15.4 to 4.15.5
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/v4.15.5/CHANGELOG.md)
- [Commits](panva/jose@v4.15.4...v4.15.5)

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.8
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases)
- [Commits](gvergnaud/ts-pattern@v5.0.5...v5.0.8)

Updates `tseep` from 1.1.3 to 1.2.1
- [Commits](https://github.com/Morglod/tseep/commits)

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

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

Updates `@types/tough-cookie` from 4.0.3 to 4.0.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/tough-cookie)

Updates `undici` from 6.4.0 to 6.10.1
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](https://github.com/nodejs/undici/commits)

---
updated-dependencies:
- dependency-name: "@fastify/cors"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- 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: jose
  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: tseep
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/ssh2"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: "@types/tough-cookie"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: undici
  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 Mar 26, 2024
@royra royra enabled auto-merge (squash) March 28, 2024 16:31
@royra royra merged commit 1389686 into main Mar 28, 2024
6 of 7 checks passed
@royra royra deleted the dependabot/npm_and_yarn/tunnel-server/tunnel-server-deps-2adc55ae14 branch March 28, 2024 16:32
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.

1 participant