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

chore(deps): bump the dependencies group with 3 updates #231

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 6, 2024

Bumps the dependencies group with 3 updates: ajv, pino-pretty and ts-pattern.

Updates ajv from 8.12.0 to 8.13.0

Release notes

Sourced from ajv's releases.

v8.13.0

  • add named exports
  • update dependencies
  • update node.js
Commits

Updates pino-pretty from 10.3.1 to 11.0.0

Release notes

Sourced from pino-pretty's releases.

v11.0.0

What's Changed

New Contributors

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

Commits

Updates ts-pattern from 4.3.0 to 5.1.1

Release notes

Sourced from ts-pattern's releases.

v5.1.1

What's Changed

Full Changelog: gvergnaud/ts-pattern@v5.1.0...v5.1.1

v5.1.0

New features

P.nonNullable wildcard

Add a new P.nonNullable pattern that will match any value except null or undefined.

import { match, P } from 'ts-pattern';
const input = null;
const output = match<number | null | undefined>(input)
.with(P.nonNullable, () => 'it is a number!')
.otherwise(() => 'it is either null or undefined!');
console.log(output);
// => 'it is either null or undefined!'

Closes #60 #154 #190 and will be a work-around for #143.

What's Changed

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

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' })
</tr></table>

... (truncated)

Commits
  • 19ae81e Merge pull request #237 from gvergnaud/fix-p-nonnullable-narrowing
  • bf40fbb 5.1.1
  • 1885108 fix: preserve property modifies when merging objects
  • 8b928dd fix(P.nonNullable): add unit tests
  • e1272af fix(P.nonNullable): correctly filter unions
  • 72e1079 5.1.0
  • 36b85ea Merge pull request #229 from gvergnaud/add-exists-pattern
  • f73c103 doc: comment improvements
  • ae69430 readme: improvements
  • f9ad7b5 feat(P.nonNullable): improve unit test
  • 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 dependencies group with 3 updates: [ajv](https://github.com/ajv-validator/ajv), [pino-pretty](https://github.com/pinojs/pino-pretty) and [ts-pattern](https://github.com/gvergnaud/ts-pattern).


Updates `ajv` from 8.12.0 to 8.13.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.12.0...v8.13.0)

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

Updates `ts-pattern` from 4.3.0 to 5.1.1
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases)
- [Commits](gvergnaud/ts-pattern@v4.3.0...v5.1.1)

---
updated-dependencies:
- dependency-name: ajv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pino-pretty
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: ts-pattern
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

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 May 6, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 27, 2024

Superseded by #234.

@dependabot dependabot bot closed this May 27, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-be4bb98e9f branch May 27, 2024 12:17
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