Skip to content

chore(deps): update dependency @total-typescript/ts-reset to ^0.6.0#259

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/total-typescript-ts-reset-0.x
Open

chore(deps): update dependency @total-typescript/ts-reset to ^0.6.0#259
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/total-typescript-ts-reset-0.x

Conversation

@renovate

@renovate renovate Bot commented Jan 1, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@total-typescript/ts-reset (source) ^0.5.1^0.6.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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

v0.6.1

Patch Changes
  • 757be40: Fixed a bug where creating an empty map would no longer infer types correctly.

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.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every 3 months on the first day of the month"
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 76acc39 to 3f64cde Compare August 10, 2025 14:25
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 3f64cde to bf31873 Compare October 21, 2025 21:01
@changeset-bot

changeset-bot Bot commented Oct 21, 2025

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: ead7916

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from bf31873 to 6ef31f9 Compare November 10, 2025 16:13
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 6ef31f9 to 51a602f Compare November 18, 2025 22:28
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 51a602f to d02dea8 Compare December 31, 2025 16:50
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from d02dea8 to ff44bd0 Compare January 8, 2026 19:10
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from ff44bd0 to 1cc9cdd Compare February 2, 2026 17:54
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 1cc9cdd to 7b6673d Compare February 12, 2026 15:13
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 7b6673d to 8efacf9 Compare March 5, 2026 18:38
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 8efacf9 to 6823398 Compare April 1, 2026 18:02
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from 6823398 to adfbee6 Compare May 12, 2026 11:30
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from adfbee6 to ead7916 Compare June 1, 2026 21:50
@renovate renovate Bot force-pushed the renovate/total-typescript-ts-reset-0.x branch from ead7916 to 8e6335a Compare June 11, 2026 15:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Development

Successfully merging this pull request may close these issues.

0 participants