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): update dependencies #109

Merged
merged 1 commit into from
Aug 25, 2024
Merged

chore(deps): update dependencies #109

merged 1 commit into from
Aug 25, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 25, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@total-typescript/ts-reset (source) 0.5.1 -> 0.6.0 age adoption passing confidence
bun-types (source) 1.1.24 -> 1.1.26 age adoption passing confidence
eslint (source) 9.9.0 -> 9.9.1 age adoption passing confidence
husky 9.1.4 -> 9.1.5 age adoption passing confidence
typescript-eslint (source) 8.1.0 -> 8.2.0 age adoption passing confidence
valibot (source) 0.37.0 -> 0.39.0 age adoption passing confidence
org.jetbrains.kotlin.jvm 2.0.10 -> 2.0.20 age adoption passing confidence

Release Notes

total-typescript/ts-reset (@​total-typescript/ts-reset)

v0.6.0

Minor Changes
  • 6574858: Added a rule, /map-constructor, to default Map to Map<unknown, unknown> when no arguments are passed to the constructor.

    Before, you'd get any for both key and value types. Now, the result of Map.get is unknown instead of any:

    const userMap = new Map();
    
    const value = userMap.get("matt"); // value: unknown

    This now is part of the recommended rules.

  • 5bf3a15: Added a rule, /promise-catch, to change the catch method to take unknown instead of any as an argument.

    const promise = Promise.reject("error");
    
    // BEFORE
    
    promise.catch((error) => {
      console.error(error); // error is any!
    });
    
    // AFTER
    
    promise.catch((error) => {
      console.error(error); // error is unknown!
    });
Patch Changes
  • 53cee4f: author: @​none23

    Fixed a bug where running .filter on a union of arrays would not work.

oven-sh/bun (bun-types)

v1.1.26

Compare Source

v1.1.25

Compare Source

eslint/eslint (eslint)

v9.9.1

Compare Source

typicode/husky (husky)

v9.1.5

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.2.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

fabian-hiller/valibot (valibot)

v0.39.0

Compare Source

v0.38.0

Compare Source

Many thanks to @​EltonLobo07, @​samuba, @​alecmev, @​gflohr, @​threehams and @​carcinocron for contributing to this release.

  • Change expects and expected property by enclosing combined values in parentheses
  • Change question mark handling for optional, optionalAsync, nullish and nullishAsync schemas in objects
  • Fix TypeScript errors in TuplePath and QuestionMarkSchema type (issue #​659, #​776)
  • Fix missing TypeScript errors in pipe and pipeAsync method (pull request #​785)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

@danadajian danadajian merged commit 50791c2 into main Aug 25, 2024
1 check passed
@danadajian danadajian deleted the renovate/dependencies branch August 25, 2024 15:17
Copy link

🎉 This issue has been resolved in version 3.6.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant