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

Update all non-major dependencies #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types ^4.20240614.0 -> ^4.20250124.3 age adoption passing confidence
@hono/node-server ^1.11.3 -> ^1.13.7 age adoption passing confidence
@total-typescript/ts-reset (source) ^0.5.1 -> ^0.6.1 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^7.13.0 -> ^7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) ^7.13.0 -> ^7.18.0 age adoption passing confidence
@upstash/redis ^1.31.5 -> ^1.34.3 age adoption passing confidence
bun-types (source) ^1.1.13 -> ^1.2.0 age adoption passing confidence
eslint (source) ^8.57.0 -> ^8.57.1 age adoption passing confidence
hono (source) ^4.4.6 -> ^4.6.19 age adoption passing confidence
husky ^9.0.11 -> ^9.1.7 age adoption passing confidence
lint-staged ^15.2.7 -> ^15.4.3 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.4.2 age adoption passing confidence
tsx (source) ^4.15.5 -> ^4.19.2 age adoption passing confidence
typescript (source) ^5.4.5 -> ^5.7.3 age adoption passing confidence
vercel (source) ^34.2.7 -> ^34.4.0 age adoption passing confidence
wrangler (source) ^3.60.3 -> ^3.105.1 age adoption passing confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20250124.3

Compare Source

v4.20250121.0

Compare Source

v4.20250109.0

Compare Source

v4.20241230.0

Compare Source

v4.20241224.0

Compare Source

v4.20241218.0

Compare Source

v4.20241216.0

Compare Source

v4.20241214.0

Compare Source

v4.20241205.0

Compare Source

v4.20241202.0

Compare Source

v4.20241127.0

Compare Source

v4.20241112.0

Compare Source

v4.20241106.0

Compare Source

v4.20241022.0

Compare Source

v4.20241018.0

Compare Source

v4.20241011.0

Compare Source

v4.20241004.0

Compare Source

v4.20240925.0

Compare Source

v4.20240924.0

Compare Source

v4.20240919.0

Compare Source

v4.20240909.0

Compare Source

v4.20240903.0

Compare Source

v4.20240821.1

Compare Source

v4.20240815.0

Compare Source

v4.20240806.0

Compare Source

v4.20240729.0

Compare Source

v4.20240725.0

Compare Source

v4.20240722.0

Compare Source

v4.20240718.0

Compare Source

v4.20240712.0

Compare Source

v4.20240701.0

Compare Source

v4.20240620.0

Compare Source

honojs/node-server (@​hono/node-server)

v1.13.7

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.6...v1.13.7

v1.13.6

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.13.5...v1.13.6

v1.13.5

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.13.4...v1.13.5

v1.13.4

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.13.3...v1.13.4

v1.13.3

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.2...v1.13.3

v1.13.2

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.1...v1.13.2

v1.13.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.13.0...v1.13.1

v1.13.0

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.12.2...v1.13.0

v1.12.2

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.12.1...v1.12.2

v1.12.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.12.0...v1.12.1

v1.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.11.5...v1.12.0

v1.11.5

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.11.4...v1.11.5

v1.11.4

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.11.3...v1.11.4

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.

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.18.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib

  • eslint-plugin: [unbound-method] report on destructuring in function parameters

  • eslint-plugin: [no-duplicate-type-constituents] shouldn't report on error types

  • eslint-plugin: [strict-boolean-expressions] support branded booleans

❤️ Thank You
  • auvred
  • Oliver Salzburg
  • Vinccool96
  • Yukihiro Hasegawa

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

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7

  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"

🩹 Fixes
  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more)

  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context

  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field

❤️ Thank You
  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

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

v7.16.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-parameters] descend into all parts of mapped types in no-unnecessary-type-parameters
❤️ Thank You
  • Dan Vanderkam

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

v7.16.0

Compare Source

🚀 Features
  • rule-tester: stricter rule test validations

  • eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule

  • eslint-plugin: add support for nested namespaces to unsafe-member-access

  • eslint-plugin: [no-floating-promises] add checkThenables option

🩹 Fixes
  • deps: update dependency @​eslint-community/regexpp to v4.11.0

  • eslint-plugin: [no-floating-promises] add suggestions to tests from #​9263 checkThenables

  • website: react key error on internal pages of website

  • eslint-plugin: [restrict-template-expressions] don't report tuples if allowArray option is enabled

❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

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

v7.15.0

Compare Source

🚀 Features
  • eslint-plugin: [array-type] detect Readonly<string[]> case

  • eslint-plugin: back-port new rules around empty object types from v8

🩹 Fixes
  • disable EXPERIMENTAL_useProjectService in disabled-type-checked shared config

  • eslint-plugin: [no-unsafe-return] differentiate a types-error any from a true any

  • eslint-plugin: [no-unsafe-call] differentiate a types-error any from a true any

❤️ Thank You
  • auvred
  • Kim Sang Du
  • rgehbt
  • Vinccool96

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

v7.14.1

Compare Source

🩹 Fixes
  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types

  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens

❤️ Thank You
  • Jake Bailey

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

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
🩹 Fixes
  • eslint-plugin: [no-extraneous-class] handle abstract members

  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types

  • eslint-plugin: [no-invalid-this] support AccessorProperty

❤️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

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

v7.13.1

Compare Source

🩹 Fixes
  • eslint-plugin: [prefer-readonly] refine report locations

  • eslint-plugin: [return-await] support explicit resource management

  • eslint-plugin: [no-unsafe-member-access] differentiate a types-error any from a true any

❤️ Thank You
  • Kirk Waiblinger
  • Yukihiro Hasegawa

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.18.0

Compare Source

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

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

v7.17.0

Compare Source

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

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

v7.16.1

Compare Source

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

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

v7.16.0

Compare Source

🩹 Fixes
❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

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

v7.15.0

Compare Source

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

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

v7.14.1

Compare Source

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

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

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
❤️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

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

v7.13.1

Compare Source

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

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

upstash/upstash-redis (@​upstash/redis)

v1.34.3

Compare Source

What's Changed

Changes

Vercel Env Variables

@​upstash/redis sdk now also works when the env variables of Vercel KV are set:

KV_REST_API_URL
KV_REST_API_TOKEN
Granular Auto Pipeline Errors

When the pipeline of the auto pipeline failed, it threw an error for all commands in the auto pipeline. This is not ideal for the use case of auto pipeline. Now, they are raised seperately.

This required changing the exec method of Pipeline. It's not possible to return the errors instead of raising them. See the docstring for more details.

Remove throw on missing URL/Token

We updated the SDK to throw error if the URL or the token is not set in v1.31.1, in PR #​1065. This causes the Vercel builds in Turbo repo to fail unless the turbo.json is updated.

Now, we only print warning logs if the credentials are missing, instead of throwing.

Full Changelog: upstash/redis-js@v1.34.2...v1.34.3

v1.34.2

Compare Source

What's Changed

Full Changelog: upstash/redis-js@v1.34.1...v1.34.2

v1.34.1

Compare Source

What's Changed

New Contributors

Full Changelog: upstash/redis-js@v1.34.0...v1.34.1

v1.34.0

Compare Source

What's Changed

Full Changelog: upstash/redis-js@v1.33.0...v1.34.0

v1.33.0

Compare Source

What's Changed

Full Changelog: upstash/redis-js@v1.32.0...v1.33.0

v1.32.0

Compare Source

What's Changed

New Contributors

Full Changelog: upstash/redis-js@v1.31.6...v1.32.0

v1.31.6

Compare Source

What's Changed

Full Changelog: upstash/redis-js@v1.31.5...v1.31.6

oven-sh/bun (bun-types)

v1.2.0

Compare Source

v1.1.45

Compare Source

v1.1.44

Compare Source

v1.1.43

Compare Source

v1.1.42

Compare Source

v1.1.41

Compare Source

v1.1.40

Compare Source

v1.1.39

Compare Source

v1.1.38

Compare Source

v1.1.37

Compare Source

v1.1.36

Compare Source

v1.1.35

Compare Source

v1.1.34

Compare Source

v1.1.33

Compare Source

v1.1.32

Compare Source

v1.1.31

Compare Source

v1.1.30

Compare Source

v1.1.29

[Compare Source](https://github.com/oven-sh/bun/comp


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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

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

Copy link

vercel bot commented Jul 1, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
jiosaavn-api-ts ❌ Failed (Inspect) Jan 27, 2025 7:30am

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from db3e570 to 2e0143c Compare July 2, 2024 02:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2e0143c to a6c3d33 Compare July 3, 2024 17:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a6c3d33 to 8e2606e Compare July 4, 2024 17:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e2606e to c76b24e Compare July 6, 2024 11:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c76b24e to 160bf77 Compare July 8, 2024 20:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 160bf77 to 545bba8 Compare July 9, 2024 08:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 545bba8 to 82d51a7 Compare July 10, 2024 05:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 82d51a7 to 2c584cb Compare July 11, 2024 20:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2c584cb to 48cd2bb Compare July 14, 2024 08:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 48cd2bb to 78a99f7 Compare July 17, 2024 23:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 78a99f7 to bd4a7a2 Compare July 19, 2024 23:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bd4a7a2 to f5e8bdc Compare July 21, 2024 05:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f5e8bdc to 5160985 Compare July 23, 2024 23:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5160985 to bd696c0 Compare July 25, 2024 23:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 75e4c13 to 01b2304 Compare December 11, 2024 02:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 01b2304 to c7bd268 Compare December 15, 2024 01:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c7bd268 to ec5e267 Compare December 21, 2024 05:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ec5e267 to 462b60c Compare December 25, 2024 08:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 462b60c to 8fb95a2 Compare December 28, 2024 20:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8fb95a2 to fa27882 Compare December 31, 2024 20:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fa27882 to e27e796 Compare January 7, 2025 06:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e27e796 to bc3813b Compare January 10, 2025 03:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bc3813b to 4c36eb6 Compare January 15, 2025 23:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c36eb6 to 451e910 Compare January 17, 2025 15:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 451e910 to dba6a77 Compare January 20, 2025 03:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dba6a77 to 95710d3 Compare January 24, 2025 03:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 95710d3 to 107aad0 Compare January 25, 2025 02:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants