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 #660

Merged
merged 2 commits into from
Aug 25, 2024
Merged

chore(deps): update dependencies #660

merged 2 commits 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
axios (source) 1.7.4 -> 1.7.5 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
micromatch 4.0.7 -> 4.0.8 age adoption passing confidence
typescript-eslint (source) 8.1.0 -> 8.2.0 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.

axios/axios (axios)

v1.7.5

Compare Source

Bug Fixes
  • adapter: fix undefined reference to hasBrowserEnv (#​6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#​6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#​6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#​6533) (550d885)
Contributors to this release
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

micromatch/micromatch (micromatch)

v4.0.8

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.


Configuration

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

🚦 Automerge: Enabled.

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

@renovate renovate bot requested a review from a team as a code owner August 25, 2024 14:45
@renovate renovate bot added dependencies Pull requests that update a dependency file patch-version renovate labels Aug 25, 2024
@renovate renovate bot enabled auto-merge (squash) August 25, 2024 14:45
Copy link
Contributor Author

renovate bot commented Aug 25, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot merged commit c6c77bf into main Aug 25, 2024
2 checks passed
@renovate renovate bot deleted the renovate/dependencies branch August 25, 2024 15:18
@eg-oss-ci
Copy link

🎉 This PR is included in version 1.63.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

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

Successfully merging this pull request may close these issues.

2 participants