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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 28, 2024

Bumps the all-dependencies group with 7 updates in the / directory:

Package From To
@types/node 22.7.4 22.8.1
pino 9.4.0 9.5.0
pino-pretty 11.2.2 11.3.0
typescript 5.5.4 5.6.3
uuid 10.0.0 11.0.1
@types/jest 29.5.13 29.5.14
typedoc 0.26.8 0.26.10

Updates @types/node from 22.7.4 to 22.8.1

Commits

Updates pino from 9.4.0 to 9.5.0

Release notes

Sourced from pino's releases.

v9.5.0

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.4.0...v9.5.0

Commits
  • bb68e01 Bumped v9.5.0
  • 84bbd35 fix: Ensure silent log level is respected with browser.transmit option (#2052)
  • 5bc0a92 feature: allow sync flag to be passed to ThreadStream for synchronous… (#2063)
  • f220965 docs -> #2061 Alphabetize transport list and reorder sections in documentatio...
  • d32fd55 docs->added pino-hana transport (#2059)
  • 7cff45a build(deps-dev): bump @​yao-pkg/pkg from 5.13.0 to 5.15.0 (#2050)
  • cd09737 doc: Add Transport @​macfja/pino-fingers-crossed (#2047)
  • 0ab1bdd Update transports.md (#2041)
  • de5a697 build(deps): bump pino-abstract-transport from 1.2.0 to 2.0.0 (#2043)
  • eef2f87 build(deps-dev): bump @​yao-pkg/pkg from 5.12.1 to 5.13.0 (#2042)
  • See full diff in compare view

Updates pino-pretty from 11.2.2 to 11.3.0

Release notes

Sourced from pino-pretty's releases.

v11.3.0

What's Changed

New Contributors

Full Changelog: pinojs/pino-pretty@v11.2.2...v11.3.0

Commits

Updates typescript from 5.5.4 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.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.6

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 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.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • Additional commits viewable in compare view

Updates uuid from 10.0.0 to 11.0.1

Release notes

Sourced from uuid's releases.

v11.0.1

11.0.1 (2024-10-27)

Bug Fixes

v11.0.0

11.0.0 (2024-10-27)

⚠ BREAKING CHANGES

  • refactor v1 internal state and options logic (#780)
  • refactor v7 internal state and options logic, fixes #764 (#779)
  • Port to TypeScript, closes #762 (#763)
  • update node support matrix (only support node 16-20) (#750)
  • This library always aims at supporting one EOLed LTS release which by this time now is 12.x which has reached EOL 30 Apr 2022.
  • Remove the minified UMD build from the package.
  • Drop support for browsers that don't correctly implement const/let and default arguments, and no longer transpile the browser build to ES2015.
  • Although in practice this is currently a noop since the resulting build does not change, the build will no longer transpiles future changes for Node.js 8.x targets, so semantically this is still a breaking change.
  • Deep requiring specific algorithms of this library like require('uuid/v4'), which has been deprecated in uuid@7, is no longer supported.
  • The default export, which used to be the v4() method but which was already discouraged in v3.x of this library, has been removed.
  • Explicitly note that deep imports of the different uuid version functions are deprecated and no longer encouraged and that ECMAScript module named imports should be used instead. Emit a deprecation warning for people who deep-require the different algorithm variants.
  • Remove builtin support for insecure random number generators in the browser. Users who want that will have to supply their own random number generator function.
  • Remove support for generating v3 and v5 UUIDs in Node.js<4.x
  • Convert code base to ECMAScript Modules (ESM) and release CommonJS build for node and ESM build for browser bundlers.

Features

  • add parse/stringify/validate/version/NIL APIs (#479) (0e6c10b)
  • add support for MAX uuid (new in RFC9562) (#714) (0385cd3)
  • add UMD build to npm package (#357) (4e75adf)
  • add various es module and CommonJS examples (b238510)
  • enforce Conventional Commit style commit messages (#282) (0705cd5)
  • ensure that docs are up-to-date in CI (ee5e77d)
  • hybrid CommonJS & ECMAScript modules build (a3f078f)
  • improve performance of v1 string representation (#453) (0ee0b67)
  • improve v4 performance by reusing random number array (#435) (bf4af0d)
  • optimize uuid.v1 by 1.3x uuid.v4 by 4.3x (430%) (#597) (3a033f6)
  • optimize V8 performance of bytesToUuid (#434) (e156415)
  • Port to TypeScript, closes #762 (#763) (1e0f987)
  • remove deep requires (#426) (daf72b8)
  • remove deprecated v4 string parameter (#454) (88ce3ca)
  • remove insecure fallback random number generator (3a5842b)
  • remove support for pre Node.js v4 Buffer API (#356) (b59b5c5)
  • remove UMD build (#645) (e948a0f), closes #620
  • rename repository to github:uuidjs/uuid (#351) (c37a518), closes #338
  • rename repository to github:uuidjs/uuid (#351) (e2d7314), closes #338

... (truncated)

Changelog

Sourced from uuid's changelog.

11.0.1 (2024-10-27)

Bug Fixes

11.0.0-0 (2024-09-05)

⚠ BREAKING CHANGES

  • refactor v1 internal state and options logic (#780)
  • refactor v7 internal state and options logic, fixes #764 (#779)
  • Port to TypeScript, closes #762 (#763)
  • update node support matrix (only support node 16-20) (#750)

Features

Bug Fixes

  • missing v7 expectations in browser spec (#751) (f54a866)
  • refactor v1 internal state and options logic (#780) (031b3d3)
  • refactor v7 internal state and options logic, fixes #764 (#779) (9dbd1cd)
  • remove v4 options default assignment preventing native.randomUUID from being used (#786) (afe6232), closes #763
  • seq_hi shift for byte 6 (#775) (1d532ca)
  • tsconfig module type (#778) (7eff835)
Commits

Updates @types/jest from 29.5.13 to 29.5.14

Commits

Updates typedoc from 0.26.8 to 0.26.10

Release notes

Sourced from typedoc's releases.

v0.26.10

Bug Fixes

  • Fixed missing space on page headers, #2748.

v0.26.9

Features

  • Added headings option to control optional headings, #2729.
  • Updated Chinese translations, #2739.
  • Added a folder icon to page navigation elements which are not links, #2741.

Bug Fixes

  • externalSymbolLinkMappings now uses the TypeScript reported link target if available, #2725.
  • TypeDoc will no longer omit the modules page if a project contains only modules/documents, #2730.
  • Fixed missing breadcrumbs on project page, #2728.
  • TypeDoc will no longer render an empty readme page if no readme was found.

Thanks!

Changelog

Sourced from typedoc's changelog.

v0.26.10 (2024-10-16)

Bug Fixes

  • Fixed missing space on page headers, #2748.

v0.26.9 (2024-10-11)

Features

  • Added headings option to control optional headings, #2729.
  • Updated Chinese translations, #2739.
  • Added a folder icon to page navigation elements which are not links, #2741.

Bug Fixes

  • externalSymbolLinkMappings now uses the TypeScript reported link target if available, #2725.
  • TypeDoc will no longer omit the modules page if a project contains only modules/documents, #2730.
  • Fixed missing breadcrumbs on project page, #2728.
  • TypeDoc will no longer render an empty readme page if no readme was found.

Thanks!

Commits
  • 2c73a28 Update changelog for release
  • 94759c3 Bump version to 0.26.10
  • 3e2a9a4 Fix some compiler warnings with newer target settings
  • add8949 Fix missing space on page headers
  • eb9c967 Update changelog for release
  • ea1252c Bump version to 0.26.9
  • 97a98f4 Update changelog
  • 0314b73 Merge pull request #2736 from lriggle-strib/master
  • 576de51 Remove undesirable css attributes from icons
  • 9b17dce Merge branch 'master' into lriggle-strib/master
  • 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 all-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.7.4` | `22.8.1` |
| [pino](https://github.com/pinojs/pino) | `9.4.0` | `9.5.0` |
| [pino-pretty](https://github.com/pinojs/pino-pretty) | `11.2.2` | `11.3.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.6.3` |
| [uuid](https://github.com/uuidjs/uuid) | `10.0.0` | `11.0.1` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.13` | `29.5.14` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.26.8` | `0.26.10` |



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

Updates `pino` from 9.4.0 to 9.5.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.4.0...v9.5.0)

Updates `pino-pretty` from 11.2.2 to 11.3.0
- [Release notes](https://github.com/pinojs/pino-pretty/releases)
- [Commits](pinojs/pino-pretty@v11.2.2...v11.3.0)

Updates `typescript` from 5.5.4 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.4...v5.6.3)

Updates `uuid` from 10.0.0 to 11.0.1
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v10.0.0...v11.0.1)

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

Updates `typedoc` from 0.26.8 to 0.26.10
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.26.8...v0.26.10)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pino
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pino-pretty
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 28, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 4, 2024

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

@dependabot dependabot bot closed this Nov 4, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-dependencies-9fb7f7b80a branch November 4, 2024 00:06
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants