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

chore(deps): bump jose from 5.2.4 to 5.9.6 #1718

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 25, 2024

Bumps jose from 5.2.4 to 5.9.6.

Release notes

Sourced from jose's releases.

v5.9.6

Reverts

  • Revert "refactor(build): simplify package exports" (2ef3a52)

v5.9.4

Refactor

  • types: update error definitions (510c5ca)

v5.9.3

Refactor

  • use as Type for type assertions instead of <Type> (c4dc24d)

v5.9.2

Refactor

  • types: remove index signatures from JWK interfaces (ccf0cda)

v5.9.1

Fixes

  • types: add missing index signature on the convenience JWK types (90a93dc)

v5.9.0

Features

  • allow JWK objects as "key" input to sign and verify (c6302ea)

This method of passing private or public keys does not yield the same performance as passing a CryptoKey or KeyObject instances, its main purpose is for convenience or for when you're not going to be re-using the same set of keys for the operation, in which case you should use one of the import key methods to obtain a CryptoKey or KeyObject.

Example Signing

const alg = "RS256";
const jwk = {
  kty: "RSA",
  n: "whYOFK2Ocbbpb_zVypi9SeKiNUqKQH0zTKN1-6fpCTu6ZalGI82s7XK3tan4dJt90ptUPKD2zvxqTzFNfx4HHHsrYCf2-FMLn1VTJfQazA2BvJqAwcpW1bqRUEty8tS_Yv4hRvWfQPcc2Gc3-_fQOOW57zVy-rNoJc744kb30NjQxdGp03J2S3GLQu7oKtSDDPooQHD38PEMNnITf0pj-KgDPjymkMGoJlO3aKppsjfbt_AH6GGdRghYRLOUwQU-h-ofWHR3lbYiKtXPn5dN24kiHy61e3VAQ9_YAZlwXC_99GGtw_NpghFAuM4P1JDn0DppJldy3PGFC0GfBCZASw",
  e: "AQAB",
  d: "VuVE_KEP6323WjpbBdAIv7HGahGrgGANvbxZsIhm34lsVOPK0XDegZkhAybMZHjRhp-gwVxX5ChC-J3cUpOBH5FNxElgW6HizD2Jcq6t6LoLYgPSrfEHm71iHg8JsgrqfUnGYFzMJmv88C6WdCtpgG_qJV1K00_Ly1G1QKoBffEs-v4fAMJrCbUdCz1qWto-PU-HLMEo-krfEpGgcmtZeRlDADh8cETMQlgQfQX2VWq_aAP4a1SXmo-j0cvRU4W5Fj0RVwNesIpetX2ZFz4p_JmB5sWFEj_fC7h5z2lq-6Bme2T3BHtXkIxoBW0_pYVnASC8P2puO5FnVxDmWuHDYQ",
  p: "07rgXd_tLUhVRF_g1OaqRZh5uZ8hiLWUSU0vu9coOaQcatSqjQlIwLW8UdKv_38GrmpIfgcEVQjzq6rFBowUm9zWBO9Eq6enpasYJBOeD8EMeDK-nsST57HjPVOCvoVC5ZX-cozPXna3iRNZ1TVYBY3smn0IaxysIK-zxESf4pM",
  q: "6qrE9TPhCS5iNR7QrKThunLu6t4H_8CkYRPLbvOIt2MgZyPLiZCsvdkTVSOX76QQEXt7Y0nTNua69q3K3Jhf-YOkPSJsWTxgrfOnjoDvRKzbW3OExIMm7D99fVBODuNWinjYgUwGSqGAsb_3TKhtI-Gr5ls3fn6B6oEjVL0dpmk",
  dp: "mHqjrFdgelT2OyiFRS3dAAPf3cLxJoAGC4gP0UoQyPocEP-Y17sQ7t-ygIanguubBy65iDFLeGXa_g0cmSt2iAzRAHrDzI8P1-pQl2KdWSEg9ssspjBRh_F_AiJLLSPRWn_b3-jySkhawtfxwO8Kte1QsK1My765Y0zFvJnjPws",
  dq: "KmjaV4YcsVAUp4z-IXVa5htHWmLuByaFjpXJOjABEUN0467wZdgjn9vPRp-8Ia8AyGgMkJES_uUL_PDDrMJM9gb4c6P4-NeUkVtreLGMjFjA-_IQmIMrUZ7XywHsWXx0c2oLlrJqoKo3W-hZhR0bPFTYgDUT_mRWjk7wV6wl46E",
  qi: "iYltkV_4PmQDfZfGFpzn2UtYEKyhy-9t3Vy8Mw2VHLAADKGwJvVK5ficQAr2atIF1-agXY2bd6KV-w52zR8rmZfTr0gobzYIyqHczOm13t7uXJv2WygY7QEC2OGjdxa2Fr9RnvS99ozMa5nomZBqTqT7z5QV33czjPRCjvg6FcE",
};
const jwt = await new jose.SignJWT({ "urn:example:claim": true })
.setProtectedHeader({ alg })
</tr></table>

... (truncated)

Changelog

Sourced from jose's changelog.

5.9.6 (2024-10-20)

Reverts

  • Revert "refactor(build): simplify package exports" (2ef3a52)

5.9.5 (2024-10-20)

Refactor

  • build: simplify package exports (4783f7f)

5.9.4 (2024-10-11)

Refactor

  • types: update error definitions (510c5ca)

5.9.3 (2024-09-22)

Refactor

  • use as Type for type assertions instead of (c4dc24d)

5.9.2 (2024-09-14)

Refactor

  • types: remove index signatures from JWK interfaces (ccf0cda)

5.9.1 (2024-09-13)

Fixes

  • types: add missing index signature on the convenience JWK types (90a93dc)

5.9.0 (2024-09-13)

Features

  • allow JWK objects as "key" input to sign and verify (c6302ea)

5.8.0 (2024-08-26)

... (truncated)

Commits
  • 27d26a4 chore(release): 5.9.6
  • 2ef3a52 Revert "refactor(build): simplify package exports"
  • 460a959 chore(release): 5.9.5
  • 4783f7f refactor(build): simplify package exports
  • 7521425 docs: resolve remaining conflict
  • 30365fd ci: use default CodeQL
  • ea5f212 chore: bump dev deps
  • ffad408 docs: update docs building dependencies
  • e2f737d test: temporary workaround chrome 130 and testcafe
  • 43c4bcc test: browser logs are polled
  • Additional commits viewable in compare view

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 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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 25, 2024
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com October 25, 2024 14:42 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com October 25, 2024 14:42 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from d0f66db to 68b74f8 Compare October 25, 2024 20:13
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com October 25, 2024 20:13 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com October 25, 2024 20:13 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from 68b74f8 to 912827f Compare October 26, 2024 03:46
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com October 26, 2024 03:46 Failure
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com October 26, 2024 03:46 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from 912827f to 4a33703 Compare October 26, 2024 04:01
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com October 26, 2024 04:02 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com October 26, 2024 04:02 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from 4a33703 to b0cb3f5 Compare October 26, 2024 04:16
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com October 26, 2024 04:16 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com October 26, 2024 04:16 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from b0cb3f5 to f47e0d0 Compare October 29, 2024 00:39
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com October 29, 2024 00:39 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com October 29, 2024 00:39 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from f47e0d0 to 62ea5b5 Compare October 29, 2024 17:10
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com October 29, 2024 17:11 Failure
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com November 3, 2024 00:55 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com November 3, 2024 00:55 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from e38c360 to 01dc44d Compare November 3, 2024 01:19
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com November 3, 2024 01:20 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com November 3, 2024 01:20 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from 01dc44d to b787365 Compare November 3, 2024 01:30
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com November 3, 2024 01:30 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com November 3, 2024 01:30 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from b787365 to a7543b2 Compare November 3, 2024 02:00
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com November 3, 2024 02:01 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com November 3, 2024 02:01 Failure
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from a7543b2 to 1d0de5e Compare November 4, 2024 19:25
Copy link

vercel bot commented Nov 4, 2024

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

Name Status Preview Updated (UTC)
rbac.ferndocs.com ❌ Failed (Inspect) Nov 6, 2024 5:15pm

Bumps [jose](https://github.com/panva/jose) from 5.2.4 to 5.9.6.
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v5.2.4...v5.9.6)

---
updated-dependencies:
- dependency-name: jose
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jose-5.9.6 branch from 1d0de5e to e59107a Compare November 6, 2024 17:15
@dependabot dependabot bot had a problem deploying to Preview - app-dev.buildwithfern.com November 6, 2024 17:15 Failure
@dependabot dependabot bot had a problem deploying to Preview - app.buildwithfern.com November 6, 2024 17:15 Failure
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 11, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/jose-5.9.6 branch November 11, 2024 16:26
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant