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 across 1 directory with 16 updates #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 15, 2024

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

Package From To
fastify 4.26.2 4.29.0
fastify-type-provider-zod 1.1.9 1.2.0
jose 4.15.5 4.15.9
p-timeout 6.1.2 6.1.3
pino 8.19.0 8.21.0
ssh2 1.15.0 1.16.0
tough-cookie 4.1.3 4.1.4
ts-pattern 5.0.8 5.5.0
tseep 1.2.1 1.3.1
zod 3.22.4 3.24.1
@types/http-proxy 1.17.14 1.17.15
@types/node 18.19.26 18.19.68
@types/ssh2 1.15.0 1.15.1
esbuild-plugin-pino 2.1.1 2.2.1
typescript 5.4.3 5.7.2
undici 6.11.1 6.21.0

Updates fastify from 4.26.2 to 4.29.0

Release notes

Sourced from fastify's releases.

v4.29.0

What's Changed

New Contributors

Full Changelog: fastify/fastify@v4.28.1...v4.29.0

v4.28.1

What's Changed

Full Changelog: fastify/fastify@v4.28.0...v4.28.1

v4.28.0

What's Changed

Full Changelog: fastify/fastify@v4.27.0...v4.28.0

v4.27.0

What's Changed

... (truncated)

Commits

Updates fastify-type-provider-zod from 1.1.9 to 1.2.0

Commits

Updates jose from 4.15.5 to 4.15.9

Release notes

Sourced from jose's releases.

v4.15.9

Fixes

  • add sideEffects:false to nested ESM package.json files (17eef5f)

v4.15.7

Fixes

  • add a workerd package.json target (e36d69e)
Changelog

Sourced from jose's changelog.

4.15.9 (2024-07-03)

4.15.8 (2024-07-03)

Fixes

  • add sideEffects:false to nested ESM package.json files (17eef5f)

4.15.7 (2024-06-18)

4.15.6 (2024-06-18)

Fixes

  • add a workerd package.json target (e36d69e)
Commits
  • 051a18e chore(release): 4.15.9
  • 13b10dd chore(release): 4.15.8
  • 17eef5f fix: add sideEffects:false to nested ESM package.json files
  • 5084808 chore(release): 4.15.7
  • 122c939 chore(release): 4.15.6
  • e36d69e fix: add a workerd package.json target
  • See full diff in compare view

Updates p-timeout from 6.1.2 to 6.1.3

Release notes

Sourced from p-timeout's releases.

v6.1.3

  • Fix removing signal listener when done b92608a

sindresorhus/p-timeout@v6.1.2...v6.1.3

Commits

Updates pino from 8.19.0 to 8.21.0

Release notes

Sourced from pino's releases.

v8.21.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v8.20.0...v8.21.0

v8.20.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v8.19.0...v8.20.0

Commits

Updates ssh2 from 1.15.0 to 1.16.0

Commits
  • 08c5dd8 package: bump version to v1.16.0
  • 5c10388 readme: fix Github markdown rendering
  • cb6747b readme: update hostVerifier documentation
  • cd353df keyParser: fix equals()
  • be9165b client: fix implicit key hashing during rekey
  • f96c43e ci: bump setup-python to v5
  • b7cd8b7 ci: bump checkout and setup-node to v4
  • 0f8c59b ci: add node v22.x
  • 32024f0 package: bump cpu-features to v0.0.10 and nan to v2.20.0
  • 4f771c9 SFTP: replace deprecated util.isDate()
  • See full diff in compare view

Updates tough-cookie from 4.1.3 to 4.1.4

Release notes

Sourced from tough-cookie's releases.

v4.1.4

https://www.npmjs.com/package/tough-cookie/v/4.1.4

What's Changed

New Contributors

Full Changelog: salesforce/tough-cookie@v4.1.3...v4.1.4

Commits
  • cacbc37 Bump version to 4.1.4
  • a48fb3a Add tests for url validation
  • 50e69bf Merge pull request #261 from postmanlabs/fix/url-string-validation
  • 1253d58 Merge pull request #409 from corvidism/validators-to-string
  • 238367e Add local alias for toString
  • cf6debd Fix incorrect string validation for URL
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by ccasey, a new releaser for tough-cookie since your current version.


Updates ts-pattern from 5.0.8 to 5.5.0

Release notes

Sourced from ts-pattern's releases.

v5.5.0

What's Changed

New Contributors

Full Changelog: gvergnaud/ts-pattern@v5.4.0...v5.5.0

v5.4.0

The main thing — Faster type checking 🚀

This release brings a significant perf improvement to exhaustiveness checking, which led to a ~16% decrease in the time to type-check the full test suite of TS-Pattern:

Category Before After Evolution (%)
Instantiations 6,735,991 4,562,378 -32.33%
Memory used 732,233K 746,454K 1.95%
Assignability cache size 209,959 205,926 -1.92%
Identity cache size 28,093 28,250 0.56%
Check time 5.78s 4.83s -16.44%

What's Changed

New Contributors

Full Changelog: gvergnaud/ts-pattern@v5.3.1...v5.4.0

v5.3.1

Pattern-matching on symbol keys

Symbols used to be ignored in object patterns. They are now taken into account:

const symbolA = Symbol('symbol-a');
const symbolB = Symbol('symbol-b');
const obj = { [symbolA]: { [symbolB]: 'foo' } };
if (isMatching({ [symbolA]: { [symbolB]: 'bar' } }, obj)) {
//  👆 Used to return true, now returns false!
//  Since TS-Pattern wasn't reading symbols, this pattern used to be equivalent
//  to the {} pattern that matches any value except null and undefined.
</tr></table>

... (truncated)

Commits
  • 1fed620 5.5.0
  • e3785fe Merge pull request #292 from GGomez99/ggomez99/export-pattern-type
  • 6467aff Also export the types at the root level
  • 7c24440 Export types through an index file
  • 16585d9 Export Pattern types in package.json
  • 7e35461 Update README.md
  • 65a8567 5.4.0
  • e7fd119 Merge pull request #284 from changwoolab/fix/readonly-exhaustive
  • 5a1e7e0 Update tests/exhaustive-match.test.ts
  • 5196f04 chore: minor unit test modification
  • Additional commits viewable in compare view

Updates tseep from 1.2.1 to 1.3.1

Release notes

Sourced from tseep's releases.

1.3.1 no-eval version

  • no-eval version added with auto fallback
  • A bit more optimized
  • Fixed bug with listeners that have more than 6 arguments

no-eval version

There is no user code evaluated so its complete safe to use with-eval version.
But in some cases (eg chrome's extensions), you just cant use it.
For this cases there is no-eval version:

import { EventEmitter } from "tseep/lib/ee-safe"; // no-eval version
import { EventEmitter } from "tseep/lib/fallback"; // or with autofallback
// same api

"tseep/lib/fallback" may bundle both versions which may result in bigger app bundle size.

fun fact: brotlied bundled fallback version is less in size than just ee-safe

1.2.2 - no dev dependenices from package-lock

  • Removed package-lock because it contains only dev dependencies with whole npm which could get vulnerability issues every day
Commits

Updates zod from 3.22.4 to 3.24.1

Release notes

Sourced from zod's releases.

v3.24.1

Commits:

  • 0c6cbbdd1315683dd3d589fbdc5765c26431dcc9 Undeprecate .nonempty()
  • 4e219d6ad9d5e56e20afd7423092f506400a29e4 Bump min TS version to 5.0
  • 65adeeacef0274abbda5438470a3d2bfd376256d v3.24.1

v3.24.0

Implement @standard-schema/spec

This is the first version of Zod to implement the Standard Schema spec. This is a new community effort among several validation library authors to implement a common interface, with the goal of simplifying the process of integrating schema validators with the rest of the ecosystem. Read more about the project and goals here.

z.string().jwt()

Thanks to @​Mokshit06 and @​Cognition-Labs for this contribution!

To verify that a string is a valid 3-part JWT.

z.string().jwt();

⚠️ This does not verify your JWT cryptographically! It merely ensures its in the proper format. Use a library like jsonwebtoken to verify the JWT signature, parse the token, and read the claims.

To constrain the JWT to a specific algorithm:

z.string().jwt({ alg: "RS256" });

z.string().base64url()

Thank you to @​marvinruder!

To complement the JWT validation, Zod 3.24 implements a standalone .base64url() string validation API. (The three elements of JWTs are base64url-encoded JSON strings.)

z.string().base64url()

This functionality is available along the standard z.string().base64() validator added in Zod 3.23.

z.string().cidr()

Thanks to @​wataryooou for their work on this!

A validator for CIDR notation for specifying IP address ranges, e.g. 192.24.12.0/22.

... (truncated)

Commits
Maintainer changes

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


Updates @types/http-proxy from 1.17.14 to 1.17.15

Commits

Updates @types/node from 18.19.26 to 18.19.68

Commits

Updates @types/ssh2 from 1.15.0 to 1.15.1

Commits

Updates esbuild-plugin-pino from 2.1.1 to 2.2.1

Release notes

Sourced from esbuild-plugin-pino's releases.

v2.2.1

What's Changed

Full Changelog: wd-David/esbuild-plugin-pino@v2.2.0...v2.2.1

v2.2.0

What's Changed

... (truncated)

Changelog

Sourced from esbuild-plugin-pino's changelog.

2.2.1 (2024-11-09)

🚚 Chores

  • deps: update all non-major dependencies (dac3ac1)
  • deps: update all non-major dependencies (f6835ca)
  • deps: update all non-major dependencies (62a61cf)
  • deps: update all non-major dependencies (0f84e6f)
  • deps: update all non-major dependencies (ddd2100)
  • deps: update all non-major dependencies (35df82c)
  • deps: update all non-major dependencies (276e332)
  • deps: update all non-major dependencies (d5b2d1e)
  • deps: update all non-major dependencies (c421153)
  • deps: update all non-major dependencies (e7233cd)
  • deps: update all non-major dependencies (4ba9f37)
  • deps: update all non-major dependencies (f9d9404)
  • deps: update all non-major dependencies (0d89c40)
  • deps: update all non-major dependencies (1cb31a6)
  • deps: update all non-major dependencies (1067e12)
  • deps: update all non-major dependencies (20d0a8b)
  • deps: update dependency @​biomejs/biome to v1.9.3 (5dfbcfb)
  • deps: update dependency @​types/node to v20.16.10 (d104b6b)
  • deps: update dependency @​types/node to v20.16.5 (b91e83a)
  • deps: update dependency @​types/node to v20.17.6 (7c6900b)

🔨 Build System

  • deps: bump braces from 3.0.2 to 3.0.3 (#186) (3b3668a)
  • deps: bump rollup from 4.19.0 to 4.25.0 (#197) (dfd955c)
  • deps: bump vite from 5.2.8 to 5.4.10 (#192) (7c529cb)

🐛 Bug Fixes

2.2.0 (2024-06-10)

🔨 Build System

  • deps-dev: bump vite from 5.1.1 to 5.2.8 (#149) (91b6e93)
  • deps: bump pnpm/action-setup from 2 to 3 (#141) (b5476fd)
  • deps: bump pnpm/action-setup from 3 to 4 (#162) (9a165a8)

🚚 Chores

... (truncated)

Commits
  • 9e58b16 chore(release): 2.2.1
  • f245d16 doc: update readme (#199)
  • 952c44b fix: update peerDep & test & bump deps (#198)
  • dfd955c build(deps): bump rollup from 4.19.0 to 4.25.0 (#197)
  • 7c529cb build(deps): bump vite from 5.2.8 to 5.4.10 (#192)
  • 3b3668a build(deps): bump braces from 3.0.2 to 3.0.3 (#186)
  • 7c6900b chore(deps): update dependency @​types/node to v20.17.6
  • dac3ac1 chore(deps): update all non-major dependencies
  • f6835ca chore(deps): update all non-major dependencies
  • 62a61cf chore(deps): update all non-major dependencies
  • Additional commits viewable in compare view

Updates typescript from 5.4.3 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

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

| Package | From | To |
| --- | --- | --- |
| [fastify](https://github.com/fastify/fastify) | `4.26.2` | `4.29.0` |
| [fastify-type-provider-zod](https://github.com/turkerdev/fastify-type-provider-zod) | `1.1.9` | `1.2.0` |
| [jose](https://github.com/panva/jose) | `4.15.5` | `4.15.9` |
| [p-timeout](https://github.com/sindresorhus/p-timeout) | `6.1.2` | `6.1.3` |
| [pino](https://github.com/pinojs/pino) | `8.19.0` | `8.21.0` |
| [ssh2](https://github.com/mscdex/ssh2) | `1.15.0` | `1.16.0` |
| [tough-cookie](https://github.com/salesforce/tough-cookie) | `4.1.3` | `4.1.4` |
| [ts-pattern](https://github.com/gvergnaud/ts-pattern) | `5.0.8` | `5.5.0` |
| [tseep](https://github.com/Morglod/tseep) | `1.2.1` | `1.3.1` |
| [zod](https://github.com/colinhacks/zod) | `3.22.4` | `3.24.1` |
| [@types/http-proxy](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/http-proxy) | `1.17.14` | `1.17.15` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `18.19.26` | `18.19.68` |
| [@types/ssh2](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ssh2) | `1.15.0` | `1.15.1` |
| [esbuild-plugin-pino](https://github.com/davipon/esbuild-plugin-pino) | `2.1.1` | `2.2.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.3` | `5.7.2` |
| [undici](https://github.com/nodejs/undici) | `6.11.1` | `6.21.0` |



Updates `fastify` from 4.26.2 to 4.29.0
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v4.26.2...v4.29.0)

Updates `fastify-type-provider-zod` from 1.1.9 to 1.2.0
- [Release notes](https://github.com/turkerdev/fastify-type-provider-zod/releases)
- [Commits](https://github.com/turkerdev/fastify-type-provider-zod/commits)

Updates `jose` from 4.15.5 to 4.15.9
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/v4.15.9/CHANGELOG.md)
- [Commits](panva/jose@v4.15.5...v4.15.9)

Updates `p-timeout` from 6.1.2 to 6.1.3
- [Release notes](https://github.com/sindresorhus/p-timeout/releases)
- [Commits](sindresorhus/p-timeout@v6.1.2...v6.1.3)

Updates `pino` from 8.19.0 to 8.21.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v8.19.0...v8.21.0)

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

Updates `tough-cookie` from 4.1.3 to 4.1.4
- [Release notes](https://github.com/salesforce/tough-cookie/releases)
- [Changelog](https://github.com/salesforce/tough-cookie/blob/master/CHANGELOG.md)
- [Commits](salesforce/tough-cookie@v4.1.3...v4.1.4)

Updates `ts-pattern` from 5.0.8 to 5.5.0
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases)
- [Commits](gvergnaud/ts-pattern@v5.0.8...v5.5.0)

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

Updates `zod` from 3.22.4 to 3.24.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.22.4...v3.24.1)

Updates `@types/http-proxy` from 1.17.14 to 1.17.15
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/http-proxy)

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

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

Updates `esbuild-plugin-pino` from 2.1.1 to 2.2.1
- [Release notes](https://github.com/davipon/esbuild-plugin-pino/releases)
- [Changelog](https://github.com/wd-David/esbuild-plugin-pino/blob/main/CHANGELOG.md)
- [Commits](wd-David/esbuild-plugin-pino@v2.1.1...v2.2.1)

Updates `typescript` from 5.4.3 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.3...v5.7.2)

Updates `undici` from 6.11.1 to 6.21.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v6.11.1...v6.21.0)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: fastify-type-provider-zod
  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: p-timeout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: pino
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: tough-cookie
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: ts-pattern
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: "@types/http-proxy"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: tunnel-server-deps
- dependency-name: "@types/node"
  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-plugin-pino
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: tunnel-server-deps
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 15, 2024
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