Skip to content

chore(deps-dev): Bump wretch from 2.11.1 to 3.0.7#17

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/wretch-3.0.7
Open

chore(deps-dev): Bump wretch from 2.11.1 to 3.0.7#17
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/wretch-3.0.7

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 24, 2026

Bumps wretch from 2.11.1 to 3.0.7.

Release notes

Sourced from wretch's releases.

3.0.7

3.0.7 (2026-03-07)

🏭 New feature(s)

  • Allow multiple error ids on catchers (dc93190)
// Previously:
const api = wretch("https://api.example.com")
  .catcher(401, err => redirect("/login"))
  .catcher(403, err => redirect("/login"))
  .catcher(407, err => redirect("/login"))
// Now we can write:
const api = wretch("https://api.example.com")
.catcher([401, 403, 407], err => redirect("/login"))

⬆️ Version update(s)

  • Bump fastify from 5.6.1 to 5.7.3 (153cae9)
  • Bump lodash from 4.17.21 to 4.17.23 (2355d02)
  • Bump qs from 6.14.0 to 6.14.2 (02ca86e)
  • Upgrade dependencies (f677f28)

3.0.6

3.0.6 (2025-12-12)

🐛 Bug fix(es)

  • Add Self to return type (e5582d6)
import wretch from "wretch";
import AbortAddon from "wretch/addons/abort";
const base = wretch()
.addon(AbortAddon())
.catcher(404, (error) => { throw error; });
// Previously: ❌ TypeScript error: Property 'signal' does not exist
// Now: 🟢
base.signal(new AbortController()).get("/test");

... (truncated)

Changelog

Sourced from wretch's changelog.

3.0.7 (2026-03-07)

⬆️ Version update(s)

  • Bump fastify from 5.6.1 to 5.7.3 (153cae9)
  • Bump lodash from 4.17.21 to 4.17.23 (2355d02)
  • Bump qs from 6.14.0 to 6.14.2 (02ca86e)
  • Upgrade dependencies (f677f28)

🏭 New feature(s)

  • Allow multiple error ids on catchers (dc93190)

3.0.6 (2025-12-12)

🐛 Bug fix(es)

  • Add Self to return type (e5582d6)
  • Widen catcherFallback error type (d0a3fbe), closes #290

✅ Test improvement(s)

  • Add core snippet testing infrastructure (fcea6f7)
  • Add directive system for snippet test control (106e0d6)
  • Add execution engine and test orchestration (28f60a1)
  • Add extensible plugin system with examples (262a40d)
  • Integrate snippet testing framework and document usage (9cdeb4c)

3.0.5 (2025-11-27)

🎨 Code improvement(s)

  • Add progress option to customize the upload body size computation (2cd547f)

3.0.4 (2025-11-26)

⬆️ Version update(s)

... (truncated)

Commits
  • 0b90bc4 v3.0.7
  • f677f28 ⬆️ Upgrade dependencies
  • b655993 Merge pull request #285 from ecancino/catcher-errors
  • 1abd52f docs(readme): Fix the failing snippet
  • dc93190 🏭 Allow multiple error ids on catchers
  • d06b116 Merge pull request #297 from elbywan/dependabot/npm_and_yarn/qs-6.14.2
  • 02ca86e ⬆️ Bump qs from 6.14.0 to 6.14.2
  • 23c076b Merge pull request #294 from elbywan/dependabot/npm_and_yarn/fastify-5.7.3
  • 153cae9 ⬆️ Bump fastify from 5.6.1 to 5.7.3
  • 94998e7 Merge pull request #293 from elbywan/dependabot/npm_and_yarn/lodash-4.17.23
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for wretch since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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)

Bumps [wretch](https://github.com/elbywan/wretch) from 2.11.1 to 3.0.7.
- [Release notes](https://github.com/elbywan/wretch/releases)
- [Changelog](https://github.com/elbywan/wretch/blob/master/CHANGELOG.md)
- [Commits](elbywan/wretch@2.11.1...3.0.7)

---
updated-dependencies:
- dependency-name: wretch
  dependency-version: 3.0.7
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 24, 2026
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.

0 participants