organization / alspotron

Alspotron: Shows the egg lyrics of the track, playing on Spotify / YouTube Music
Apache License 2.0
59 stars 3 forks source link

chore(deps): update dependency @total-typescript/ts-reset to v0.6.1 #1097

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 2 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@total-typescript/ts-reset (source) 0.5.1 -> 0.6.1 age adoption passing confidence

Release Notes

total-typescript/ts-reset (@​total-typescript/ts-reset) ### [`v0.6.1`](https://redirect.github.com/total-typescript/ts-reset/blob/HEAD/CHANGELOG.md#061) ##### Patch Changes - [`757be40`](https://redirect.github.com/total-typescript/ts-reset/commit/757be40): Fixed a bug where creating an empty map would no longer infer types correctly. ### [`v0.6.0`](https://redirect.github.com/total-typescript/ts-reset/blob/HEAD/CHANGELOG.md#060) ##### Minor Changes - [`6574858`](https://redirect.github.com/total-typescript/ts-reset/commit/6574858): Added a rule, `/map-constructor`, to default `Map` to `Map` 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`: ```ts const userMap = new Map(); const value = userMap.get("matt"); // value: unknown ``` This now is part of the recommended rules. - [`5bf3a15`](https://redirect.github.com/total-typescript/ts-reset/commit/5bf3a15): Added a rule, `/promise-catch`, to change the `catch` method to take `unknown` instead of `any` as an argument. ```ts 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`](https://redirect.github.com/total-typescript/ts-reset/commit/53cee4f): author: [@​none23](https://redirect.github.com/none23) Fixed a bug where running .filter on a union of arrays would not work.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.



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

sonarcloud[bot] commented 2 months ago

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code

See analysis details on SonarCloud