Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 3, 2024

Bumps @total-typescript/ts-reset from 0.5.1 to 0.6.1.

Changelog

Sourced from @​total-typescript/ts-reset's changelog.

0.6.1

Patch Changes

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

0.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.

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 3, 2024
@grzanka
Copy link
Contributor

grzanka commented Sep 3, 2024

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/total-typescript/ts-reset-0.6.1 branch from 2d4e842 to 4758b1e Compare September 3, 2024 11:24
@grzanka
Copy link
Contributor

grzanka commented Sep 11, 2024

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/total-typescript/ts-reset-0.6.1 branch from 4758b1e to 0f6a38a Compare September 11, 2024 18:39
@grzanka
Copy link
Contributor

grzanka commented Oct 1, 2024

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/total-typescript/ts-reset-0.6.1 branch from 0f6a38a to 0932dce Compare October 1, 2024 07:37
@grzanka grzanka requested a review from NiEkOKsU October 2, 2024 17:41
@NiEkOKsU NiEkOKsU self-assigned this Oct 2, 2024
@NiEkOKsU NiEkOKsU removed their request for review October 2, 2024 18:34
@grzanka
Copy link
Contributor

grzanka commented Oct 4, 2024

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/total-typescript/ts-reset-0.6.1 branch from 0932dce to 8729414 Compare October 4, 2024 19:24
@NiEkOKsU NiEkOKsU self-requested a review October 7, 2024 14:26
@NiEkOKsU
Copy link
Contributor

NiEkOKsU commented Oct 7, 2024

It seems to be working now.

@grzanka
Copy link
Contributor

grzanka commented Oct 8, 2024

@NiEkOKsU can you fix the conflicts in package-lock ?
I usually do it by askind dependabot to rebase and them apply again my own fixes.

@NiEkOKsU
Copy link
Contributor

NiEkOKsU commented Oct 9, 2024

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 9, 2024

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@NiEkOKsU
Copy link
Contributor

NiEkOKsU commented Oct 9, 2024

@dependabot recreate

Bumps [@total-typescript/ts-reset](https://github.com/total-typescript/ts-reset) from 0.5.1 to 0.6.1.
- [Release notes](https://github.com/total-typescript/ts-reset/releases)
- [Changelog](https://github.com/mattpocock/ts-reset/blob/main/CHANGELOG.md)
- [Commits](https://github.com/total-typescript/ts-reset/commits)

---
updated-dependencies:
- dependency-name: "@total-typescript/ts-reset"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/total-typescript/ts-reset-0.6.1 branch from 14ff706 to aa5df5d Compare October 9, 2024 15:04
@NiEkOKsU
Copy link
Contributor

NiEkOKsU commented Oct 9, 2024

@grzanka conflicts resolved, i think it could be merged.

@grzanka grzanka added this pull request to the merge queue Oct 9, 2024
Merged via the queue into master with commit 16153ed Oct 9, 2024
@grzanka grzanka deleted the dependabot/npm_and_yarn/total-typescript/ts-reset-0.6.1 branch October 9, 2024 17:15
dudiiiiiiii pushed a commit that referenced this pull request Oct 15, 2024
…1732)

* build(deps-dev): bump @total-typescript/ts-reset from 0.5.1 to 0.6.1

Bumps [@total-typescript/ts-reset](https://github.com/total-typescript/ts-reset) from 0.5.1 to 0.6.1.
- [Release notes](https://github.com/total-typescript/ts-reset/releases)
- [Changelog](https://github.com/mattpocock/ts-reset/blob/main/CHANGELOG.md)
- [Commits](https://github.com/total-typescript/ts-reset/commits)

---
updated-dependencies:
- dependency-name: "@total-typescript/ts-reset"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* add changes after conflict resolving

* npm ci problem resolved

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: NiEkOKsU <bartek.kozera00@gmail.com>
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.

3 participants