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 13 updates #534

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 11, 2024

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

Package From To
fastify 4.26.2 4.28.1
fastify-type-provider-zod 1.1.9 1.2.0
jose 4.15.5 4.15.9
pino 8.19.0 8.21.0
tough-cookie 4.1.3 4.1.4
ts-pattern 5.0.8 5.2.0
tseep 1.2.1 1.2.2
zod 3.22.4 3.23.8
@types/http-proxy 1.17.14 1.17.15
@types/node 18.19.26 18.19.44
esbuild-plugin-pino 2.1.1 2.2.0
typescript 5.4.3 5.5.4
undici 6.11.1 6.19.7

Updates fastify from 4.26.2 to 4.28.1

Release notes

Sourced from fastify's releases.

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

Release notes

Sourced from ts-pattern's releases.

v5.2.0

The main thing

new P.string.length(n) pattern

P.string.length(len) matches strings with exactly len characters.

const fn = (input: string) =>
  match(input)
    .with(P.string.length(2), () => '🎉')
    .otherwise(() => '❌');
console.log(fn('ok')); // logs '🎉'

What's Changed

New Contributors

Full Changelog: gvergnaud/ts-pattern@v5.1.2...v5.2.0

v5.1.2

The main thing

When combining P.nonNullable and P.nullish, you should get an exhaustive pattern matching expression, but the following case was incorrectly considered non-exhaustive:

declare const input: {
  nested: string | number | null | undefined;
};
const res = match(input)
.with({ nested: P.nonNullable }, (x) => {/* ... /})
.with({ nested: P.nullish }, (x) => {/ ... */})
// should type-check
.exhaustive();

This is fixed now.

What's Changed

... (truncated)

Commits
  • 1f59d49 feat(str.length): fix typo
  • 49ab6d6 feat(str.length): Add non-exhaustive unit test
  • 37ea04e 5.2.0
  • 1a568a5 Merge pull request #257 from JUSTIVE/feature-string-length
  • 473041e feat(str.length): fix typo
  • 7d08131 Merge pull request #260 from grigorischristainas/docs/when
  • 275b4e6 docs: fixed typo in P.when patterns code example
  • 5c6a62c fix: omit minLength, and maxLength after length
  • d328422 fix: typos in doc in P.string.length
  • 8527727 chore: consistent typo
  • Additional commits viewable in compare view

Updates tseep from 1.2.1 to 1.2.2

Release notes

Sourced from tseep's releases.

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

Release notes

Sourced from zod's releases.

v3.23.8

Commits:

  • 0f4d403558ae0490c711e4c2bfcf6c200bd14e11 Add Bronze logos (#3470)
  • 19687315b5b24bbd1ff6c346bfc2975700221748 Tweak tiers (#3471)
  • eda7df314399929f7ed737423868a5a0780cd944 Change RefinementCtx to interface
  • ca42965df46b2f7e2747db29c40a26bcb32a51d5 v3.23.8

v3.23.7

Commits:

  • 29d2ea2a15f0b1ac4b89138041f786a3dafc490b Add copper
  • d969423266fccee56ef769da6744cc8bacb04550 Fix #3437: extendShape erases JSDoc property documentation (#3463)
  • 2239ff3ccc9af4d28bee27bd6fb2a5632844480b Add social crow
  • f985b5b922cb357dbf4b25bb43814d19f838e046 3.23.7

v3.23.6

Commits:

  • bc0095aab9e7254deb18701adc63de128ca2c742 Test on latest node
  • 6e5699a30373cc22879f2bcb6902fc138518c980 Lint on latest node
  • 1f466d9d00f446d7bed1962990e7a1ce813ab0d4 describe how one can protect from cyclical objects starting an infini… (#3447)
  • 3fed6f21e0ea7adc91aa0cc44f75bcf4e526d98e Add zod playground link (#3454)
  • 04e1f379f6989d23dd45660fcabc78f76d7834f8 Fixed freezing async ZodReadonly results (#3457)
  • b87e59d0e4bbb4403bf27243afdcda9fcdeec258 Update sponsor tiers (#3453)
  • 143886151bba3930bdcc10d34a1cff4bf9103ba8 Add copper tier (#3460)
  • ce3711e1384952d255769b9495f9bfadfb327291 add VSCode dev container support and documenation
  • 93b480b12ec3466cbd3b4182f7ce292e5c61528c v3.23.6

v3.23.5

Commits:

  • 110b8211f991b3e060ab2da4fec7b63d600439ad Update README_ZH.md (#3433)
  • c1910bdfc98709b8f14231e2cefc5a3be401e3ee Made ZodEnum take readonly string array (#3444)
  • 541a862e978f96eb391849a6bf16be84231aa1b3 3.23.5

v3.23.4

Commits:

  • 157b18d742c86d85b26a8421af46ad6d6d6b6ea7 Add 3.23 announcement
  • aedf93f1435a29463d915c3be45b4dcbeefa8cc1 Revert change to default Input
  • 45107f7a7230fe48ee24dc37e621422c9dc64ec4 v3.23.4

v3.23.3

Commits:

  • 103d2436f85872ca0e0e6247652989cc93d46a39 3.23.3

v3.23.2

Commits:

... (truncated)

Commits

Updates @types/http-proxy from 1.17.14 to 1.17.15

Commits

Updates @types/node from 18.19.26 to 18.19.44

Commits

Updates esbuild-plugin-pino from 2.1.1 to 2.2.0

Release notes

Sourced from esbuild-plugin-pino's releases.

v2.2.0

What's Changed

New Contributors

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

Changelog

Sourced from esbuild-plugin-pino's changelog.

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

  • deps: update all non-major dependencies (463ed06)
  • deps: update all non-major dependencies (9d5aab0)
  • deps: update all non-major dependencies (657397a)
  • deps: update all non-major dependencies (cf4292d)
  • deps: update all non-major dependencies (ac53b62)
  • deps: update all non-major dependencies (5c6d4fb)
  • deps: update all non-major dependencies (074c3ca)
  • deps: update all non-major dependencies (3f495bf)
  • deps: update all non-major dependencies (3dc7b91)
  • deps: update all non-major dependencies (cbcbb1f)
  • deps: update all non-major dependencies (33cd273)
  • deps: update all non-major dependencies (c21f26c)
  • deps: update all non-major dependencies (c45760e)
  • deps: update all non-major dependencies (6b298c0)
  • deps: update all non-major dependencies (be46d32)
  • deps: update all non-major dependencies to v7.7.0 (85f4a6a)
  • deps: update dependency tsx to v4.11.1 (5b2f787)
Commits
  • b4ac2bc chore(release): 2.2.0
  • d22215f Replace Eslint & Prettier with biome.js (#167)
  • 463ed06 chore(deps): update all non-major dependencies
  • 9a165a8 build(deps): bump pnpm/action-setup from 3 to 4 (#162)
  • c939c48 Fix support for Pino v9.1 (#160)
  • 5b2f787 chore(deps): update dependency tsx to v4.11.1
  • 9d5aab0 chore(deps): update all non-major dependencies
  • 657397a chore(deps): update all non-major dependencies
  • cf4292d chore(deps): update all non-major dependencies
  • ac53b62 chore(deps): update all non-major dependencies
  • Additional commits viewable in compare view

Updates typescript from 5.4.3 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.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.5.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.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.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates undici from 6.11.1 to 6.19.7

Release notes

Sourced from undici's releases.

v6.19.7

Full Changelog: nodejs/undici@v6.19.6...v6.19.7

v6.19.6

Full Changelog: nodejs/undici@v6.19.5...v6.19.6

v6.19.5

Full Changelog: nodejs/undici@v6.19.4...v6.19.5

v6.19.4

Full Changelog: nodejs/undici@v6.19.3...v6.19.4

v6.19.3

Full Changelog: nodejs/undici@v6.19.2...v6.19.3

v6.19.2

What's Changed

Full Changelog: nodejs/undici@v6.19.1...v6.19.2

v6.19.1

What's Changed

Full Changelog: nodejs/undici@v6.19.0...v6.19.1

v6.19.0

What's Changed

... (truncated)

Commits

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

| Package | From | To |
| --- | --- | --- |
| [fastify](https://github.com/fastify/fastify) | `4.26.2` | `4.28.1` |
| [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` |
| [pino](https://github.com/pinojs/pino) | `8.19.0` | `8.21.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.2.0` |
| [tseep](https://github.com/Morglod/tseep) | `1.2.1` | `1.2.2` |
| [zod](https://github.com/colinhacks/zod) | `3.22.4` | `3.23.8` |
| [@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.44` |
| [esbuild-plugin-pino](https://github.com/davipon/esbuild-plugin-pino) | `2.1.1` | `2.2.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.3` | `5.5.4` |
| [undici](https://github.com/nodejs/undici) | `6.11.1` | `6.19.7` |



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

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

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

Updates `zod` from 3.22.4 to 3.23.8
- [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.23.8)

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.44
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `esbuild-plugin-pino` from 2.1.1 to 2.2.0
- [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.0)

Updates `typescript` from 5.4.3 to 5.5.4
- [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.5.4)

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

---
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: pino
  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-patch
  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: 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 Aug 11, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 18, 2024

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

@dependabot dependabot bot closed this Aug 18, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/tunnel-server/tunnel-server-deps-9f3ae957cc branch August 18, 2024 10:41
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