Skip to content

Comments

Bump jws from 4.0.0 to 4.0.1 in /app#2

Open
dependabot[bot] wants to merge 140 commits intomainfrom
dependabot/npm_and_yarn/app/jws-4.0.1
Open

Bump jws from 4.0.0 to 4.0.1 in /app#2
dependabot[bot] wants to merge 140 commits intomainfrom
dependabot/npm_and_yarn/app/jws-4.0.1

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Dec 4, 2025

Bumps jws from 4.0.0 to 4.0.1.

Release notes

Sourced from jws's releases.

v4.0.1

Changed

  • Fix advisory GHSA-869p-cjfg-cm3x: createSign and createVerify now require that a non empty secret is provided (via opts.secret, opts.privateKey or opts.key) when using HMAC algorithms.
  • Upgrading JWA version to 2.0.1, addressing a compatibility issue for Node >= 25.
Changelog

Sourced from jws's changelog.

[4.0.1]

Changed

  • Fix advisory GHSA-869p-cjfg-cm3x: createSign and createVerify now require that a non empty secret is provided (via opts.secret, opts.privateKey or opts.key) when using HMAC algorithms.
  • Upgrading JWA version to 2.0.1, adressing a compatibility issue for Node >= 25.

[3.2.3]

Changed

  • Fix advisory GHSA-869p-cjfg-cm3x: createSign and createVerify now require that a non empty secret is provided (via opts.secret, opts.privateKey or opts.key) when using HMAC algorithms.
  • Upgrading JWA version to 1.4.2, adressing a compatibility issue for Node >= 25.

[3.0.0]

Changed

2.0.0 - 2015-01-30

Changed

  • BREAKING: Default payload encoding changed from binary to utf8. utf8 is a is a more sensible default than binary because many payloads, as far as I can tell, will contain user-facing strings that could be in any language. ([6b6de48])

  • Code reorganization, thanks [@​fearphage]! (7880050)

Added

  • Option in all relevant methods for encoding. For those few users that might be depending on a binary encoding of the messages, this is for them. ([6b6de48])

... (truncated)

Commits
  • 34c45b2 Merge commit from fork
  • 49bc39b version 4.0.1
  • d42350c Enhance tests for HMAC streaming sign and verify
  • 5cb007c Improve secretOrKey initialization in VerifyStream
  • f9a2e1c Improve secret handling in SignStream
  • b9fb8d3 Merge pull request #102 from auth0/SRE-57-Upload-opslevel-yaml
  • 95b75ee Upload OpsLevel YAML
  • 8857ee7 test: remove unused variable (#96)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by julien.wollscheid, a new releaser for jws 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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

GraysonAdams and others added 30 commits November 23, 2025 17:40
- Add `migration:up:direct` npm script that uses DATABASE_URL_DIRECT
- Add conditional `ensureDatabase` (only enabled in development)
- Update deployment docs with D.O. migration pipeline instructions
- Document two-connection strategy: pool (25061) for runtime, direct (25060) for migrations

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Convert all 20 entities from decorator-based classes to EntitySchema
definitions with explicit string `name` properties. This fixes the
"Duplicate entity names are not allowed: d, c, v" error caused by
Next.js 16 Turbopack minifying class names in production builds.

EntitySchema's explicit `name: 'EntityName'` survives any bundler
minification, making it the recommended approach for bundled environments.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
GraysonAdams and others added 25 commits November 30, 2025 15:45
Create email normalization utility to ensure email addresses are handled
consistently (lowercase, trimmed) across the codebase. This prevents
potential account confusion and security bypass risks from email case
sensitivity issues.

- Add normalizeEmail() utility function
- Apply to all email lookups and comparisons in routers
- Update: user.ts, invite.ts, group.ts, wishlistCollaborator.ts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Fix security gap where bookmarklet tokens without a createdAt timestamp
would never expire. Now tokens are treated as expired if createdAt is null.

- Add validateBookmarkletToken helper function for consistent validation
- Apply token expiry check to all bookmarklet token endpoints
- Consolidate duplicate validation logic

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Add input length constraints to shipping address fields to prevent
potential denial of service from excessively long inputs.

- street: max 200 chars
- city: max 100 chars
- state: max 100 chars
- zipCode: max 20 chars
- country: max 100 chars

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Add composite indexes to improve query performance for frequently
accessed patterns:

- Wishlist: [owner, status] and [event, status] for filtered listings
- Dib: [groupDibId], [type], [user, purchased] for dib lookups
- Comment: [item, group] for comment fetching by item/group

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Replace per-event queries (3N queries for N events) with batch queries
(2 queries total) when fetching event stats.

Before: For each event, 3 queries - wishlists, items count, dibbed count
After: 2 batch queries using $in filters for all events

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Remove production console.logs from opengraph-client.ts by gating them
behind DEBUG_OPENGRAPH environment variable. Only enabled in development
when explicitly set.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
- Add proper types for Item/Dib entities with populated relations in wishlistLink.ts
- Replace any with Area type in BannerInlineEditor.tsx crop area parameter
- Replace any with explicit crop area type in groups page handleRepositionBanner

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
- Fix conditional hook violation in DibsChecklist by calling hooks unconditionally
- Add timeout refs and cleanup for copy operations in DibsChecklist
- Add timeout ref and cleanup for copy operations in GroupDibDialog
- Add timeout ref and cleanup for dismiss animation in GroupDibsCarousel

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
- Export getDecryptedPaymentMethods from app/lib/utils/privacy.ts
- Remove duplicate definitions from dib.ts, admin.ts, and user.ts
- All files now import from the centralized utility

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
…ditor

- Revert explicit typing in wishlistLink.ts that exposed pre-existing type mismatches
- Add eslint-disable comments for necessary any types in wishlistLink.ts
- Fix null vs undefined type mismatch in BannerInlineEditor onSave call

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Moved the Follow button from an absolute-positioned overlay to be
stacked vertically above the date calendar widget on desktop. Added
mobile follow button below the "Updated" timestamp.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Filter out archived/deleted wishlists from the listWishlistsByToken
endpoint so users don't see them in the wishlist selector when
adding items via the bookmarklet.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Extract countdown and auto-save indicator logic into isolated components
to prevent parent component re-renders every second:

- Add CountdownRedirect component to add/page.tsx for success screen
- Add AutoSaveIndicator component to wishlists/[id]/page.tsx for modal
- Remove countdown from successState, manage internally in component
- Remove useRelativeTime from parent, call it inside isolated component

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Add 2-second long-press requirement for mobile drag-to-reorder on pinned
pages. This prevents conflicts between scrolling and reordering when
swiping through pins. Includes visual feedback during the hold (pulse
animation) and a lift animation when activated.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Remove drag-and-drop reordering functionality from pinned pages.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Remove drag-and-drop reordering from pinned pages in the recent pages bar.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Bumps [jws](https://github.com/brianloveswords/node-jws) from 4.0.0 to 4.0.1.
- [Release notes](https://github.com/brianloveswords/node-jws/releases)
- [Changelog](https://github.com/auth0/node-jws/blob/master/CHANGELOG.md)
- [Commits](auth0/node-jws@v4.0.0...v4.0.1)

---
updated-dependencies:
- dependency-name: jws
  dependency-version: 4.0.1
  dependency-type: indirect
...

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 Dec 4, 2025
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.

1 participant