deps(web): bump the npm-minor-patch group in /web with 6 updates#13
Closed
dependabot[bot] wants to merge 2 commits into
Closed
deps(web): bump the npm-minor-patch group in /web with 6 updates#13dependabot[bot] wants to merge 2 commits into
dependabot[bot] wants to merge 2 commits into
Conversation
e2a is an authenticated email gateway for AI agents. SMTP relay verifies SPF/DKIM, signs HMAC X-E2A-Auth-* headers bound to each message, and delivers via webhook (cloud agents) or WebSocket (local agents). Outbound API for agent-to-agent and agent-to-human sends. Optional human-in-the-loop approval for outbound mail. Built and used internally at Mnexa AI before going open. See README.md for what it does, the hosted instance at e2a.dev, and how to self-host with `docker compose up`. Apache 2.0 — see LICENSE. Signed-off-by: Josh Zhang <jszjosh@gmail.com>
Bumps the npm-minor-patch group in /web with 6 updates: | Package | From | To | | --- | --- | --- | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.5` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.5` | | [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.2.2` | `4.2.4` | | [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.1` | `16.2.4` | | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.2` | `4.2.4` | | [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.6` | `29.4.9` | Updates `react` from 19.2.4 to 19.2.5 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react) Updates `react-dom` from 19.2.4 to 19.2.5 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.5/packages/react-dom) Updates `@tailwindcss/postcss` from 4.2.2 to 4.2.4 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.4/packages/@tailwindcss-postcss) Updates `eslint-config-next` from 16.2.1 to 16.2.4 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/commits/v16.2.4/packages/eslint-config-next) Updates `tailwindcss` from 4.2.2 to 4.2.4 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.4/packages/tailwindcss) Updates `ts-jest` from 29.4.6 to 29.4.9 - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v29.4.6...v29.4.9) --- updated-dependencies: - dependency-name: react dependency-version: 19.2.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm-minor-patch - dependency-name: react-dom dependency-version: 19.2.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm-minor-patch - dependency-name: "@tailwindcss/postcss" dependency-version: 4.2.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor-patch - dependency-name: eslint-config-next dependency-version: 16.2.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor-patch - dependency-name: tailwindcss dependency-version: 4.2.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor-patch - dependency-name: ts-jest dependency-version: 29.4.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
|
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests. To ignore these dependencies, configure ignore rules in dependabot.yml |
This was referenced May 22, 2026
jiashuoz
added a commit
that referenced
this pull request
May 23, 2026
Port the seven mocked pages to the Loft visual grammar and apply tokens across out-of-scope routes (blog, docs, api-docs, 404, 500). Built on top of the foundations from #105 — same token surface, no new deps. New shared primitive: - components/loft/PageShell.tsx — eyebrow + Instrument-Serif h1 + optional Topbar crumbs + responsive content wrapper. Every dashboard page uses it as a single hand-off from app shell to page content. Pages ported: - / cream surface, Instrument-Serif hero with ember italic, ember CTA, ink CodeBlock per tab (CLI/Claude/Python/Webhook), 3-step grid, HITL editorial 2-col, 6-card use-cases grid. - /(app)/layout.tsx drops the max-w-4xl wrapper; adds mobile slide-in sheet (hamburger + backdrop + ESC, delegated link-click closes the sheet). - /get-started PageShell + redesigned AddressChoice with chips, ember code preview, recommendation callout. Sub-components updated lightly: serif headers, Loft warn/danger/success tones, ink CodeBlock. - /dashboard PageShell + 4-card stats strip (renders `—` per BACKEND_TODO #1). AgentCard rebuilt with Loft Chip/Dot primitives, ink mono ID line, ember Connect button. - /dashboard/pending PageShell + card list with mono identifier line and warn-toned expiry countdown. - /dashboard/pending/review PageShell with Outbound·review eyebrow, ember Approve & send, danger-bordered Reject. Renders `reviewed_at` only (no reviewer name) per BACKEND_TODO #6. - /api-keys PageShell + table with mono-chip Prefix column. Last used + Scopes columns hidden per BACKEND_TODO #3 / #11. - /domains PageShell + stats strip (Total / Verified / Pending / Agents·7d — the last is `—` per #1). DomainCard rebuilt with chips, mono identifier line. DKIM row hidden per #4 / #5. - /settings PageShell + Usage strip (all `—` per #1) + Notifications stub ("Coming soon" per #12) + Profile (Edit name disabled per #8) + Signing secrets (existing UX preserved, restyled) + Export + Danger zone (Loft danger tones). Out-of-scope: - /blog reading layout uses Loft tokens, ember italic on hero. Per-post MDX layouts inherit via globals.css; not individually restyled. - /docs, /docs/python redirect pages restyled to Loft tokens. - /api-docs wrapped in an ink-bordered container; Scalar iframe keeps its own theme (TODO: pass Loft tokens into public/scalar.html). - /not-found, /error new pages — italic clamp-sized 404/500 in ember Instrument Serif, mono path readout, ember CTA back to /dashboard. Tests: - page.test.tsx, domains/page.test.tsx — rewritten where copy/markup shifted; everything else mounts unchanged. - npm run lint && npm test && npm run build all green (146 tests, 24 routes). Graceful degradation (renders `—` or hides until backend ships): - Dashboard stats strip ............. BACKEND_TODO #1 - Per-agent stats row ............... BACKEND_TODO #2 - API keys: Last used column ........ BACKEND_TODO #3 (hidden) - API keys: Scopes column ........... BACKEND_TODO #11 (intentionally omitted) - Domains: DKIM DNS row ............. BACKEND_TODO #4/#5 (hidden) - Domains: per-record status ........ BACKEND_TODO #4 (single global Verified/Unverified chip only) - Domains: Agents·7d stat ........... BACKEND_TODO #1 - Settings → Usage cards ............ BACKEND_TODO #1 (all `—`) - Settings → Edit name .............. BACKEND_TODO #8 (button disabled with tooltip) - Settings → Notifications .......... BACKEND_TODO #12 ("Coming soon") - Pending review: reviewer name ..... BACKEND_TODO #6 (reviewed_at only) - ⌘K search affordance .............. BACKEND_TODO #13 (gated on NEXT_PUBLIC_SEARCH_ENABLED, off by default) Not in this PR (separate work streams): - Magic-link approval landing — Go templates in internal/agent/hitl_magic_api.go. Touches Go, not web/. - Five dashboard sub-components (ActivityPanel, HITLEditor, WebhookEditor, AgentModeSwitcher, ConnectInstructions) — kept their existing Tailwind markup, which already bridges to Loft tokens via globals.css @theme inline. Visual grammar (eyebrows, serif headings, chips) wasn't applied; flagged for a follow-up. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
jiashuoz
added a commit
that referenced
this pull request
May 23, 2026
Port the seven mocked pages to the Loft visual grammar and apply tokens across out-of-scope routes (blog, docs, api-docs, 404, 500). Built on top of the foundations from #105 — same token surface, no new deps. New shared primitive: - components/loft/PageShell.tsx — eyebrow + Instrument-Serif h1 + optional Topbar crumbs + responsive content wrapper. Every dashboard page uses it as a single hand-off from app shell to page content. Pages ported: - / cream surface, Instrument-Serif hero with ember italic, ember CTA, ink CodeBlock per tab (CLI/Claude/Python/Webhook), 3-step grid, HITL editorial 2-col, 6-card use-cases grid. - /(app)/layout.tsx drops the max-w-4xl wrapper; adds mobile slide-in sheet (hamburger + backdrop + ESC, delegated link-click closes the sheet). - /get-started PageShell + redesigned AddressChoice with chips, ember code preview, recommendation callout. Sub-components updated lightly: serif headers, Loft warn/danger/success tones, ink CodeBlock. - /dashboard PageShell + 4-card stats strip (renders `—` per BACKEND_TODO #1). AgentCard rebuilt with Loft Chip/Dot primitives, ink mono ID line, ember Connect button. - /dashboard/pending PageShell + card list with mono identifier line and warn-toned expiry countdown. - /dashboard/pending/review PageShell with Outbound·review eyebrow, ember Approve & send, danger-bordered Reject. Renders `reviewed_at` only (no reviewer name) per BACKEND_TODO #6. - /api-keys PageShell + table with mono-chip Prefix column. Last used + Scopes columns hidden per BACKEND_TODO #3 / #11. - /domains PageShell + stats strip (Total / Verified / Pending / Agents·7d — the last is `—` per #1). DomainCard rebuilt with chips, mono identifier line. DKIM row hidden per #4 / #5. - /settings PageShell + Usage strip (all `—` per #1) + Notifications stub ("Coming soon" per #12) + Profile (Edit name disabled per #8) + Signing secrets (existing UX preserved, restyled) + Export + Danger zone (Loft danger tones). Out-of-scope: - /blog reading layout uses Loft tokens, ember italic on hero. Per-post MDX layouts inherit via globals.css; not individually restyled. - /docs, /docs/python redirect pages restyled to Loft tokens. - /api-docs wrapped in an ink-bordered container; Scalar iframe keeps its own theme (TODO: pass Loft tokens into public/scalar.html). - /not-found, /error new pages — italic clamp-sized 404/500 in ember Instrument Serif, mono path readout, ember CTA back to /dashboard. Tests: - page.test.tsx, domains/page.test.tsx — rewritten where copy/markup shifted; everything else mounts unchanged. - npm run lint && npm test && npm run build all green (146 tests, 24 routes). Graceful degradation (renders `—` or hides until backend ships): - Dashboard stats strip ............. BACKEND_TODO #1 - Per-agent stats row ............... BACKEND_TODO #2 - API keys: Last used column ........ BACKEND_TODO #3 (hidden) - API keys: Scopes column ........... BACKEND_TODO #11 (intentionally omitted) - Domains: DKIM DNS row ............. BACKEND_TODO #4/#5 (hidden) - Domains: per-record status ........ BACKEND_TODO #4 (single global Verified/Unverified chip only) - Domains: Agents·7d stat ........... BACKEND_TODO #1 - Settings → Usage cards ............ BACKEND_TODO #1 (all `—`) - Settings → Edit name .............. BACKEND_TODO #8 (button disabled with tooltip) - Settings → Notifications .......... BACKEND_TODO #12 ("Coming soon") - Pending review: reviewer name ..... BACKEND_TODO #6 (reviewed_at only) - ⌘K search affordance .............. BACKEND_TODO #13 (gated on NEXT_PUBLIC_SEARCH_ENABLED, off by default) Not in this PR (separate work streams): - Magic-link approval landing — Go templates in internal/agent/hitl_magic_api.go. Touches Go, not web/. - Five dashboard sub-components (ActivityPanel, HITLEditor, WebhookEditor, AgentModeSwitcher, ConnectInstructions) — kept their existing Tailwind markup, which already bridges to Loft tokens via globals.css @theme inline. Visual grammar (eyebrows, serif headings, chips) wasn't applied; flagged for a follow-up. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the npm-minor-patch group in /web with 6 updates:
19.2.419.2.519.2.419.2.54.2.24.2.416.2.116.2.44.2.24.2.429.4.629.4.9Updates
reactfrom 19.2.4 to 19.2.5Release notes
Sourced from react's releases.
Commits
23f4f9f19.2.5Updates
react-domfrom 19.2.4 to 19.2.5Release notes
Sourced from react-dom's releases.
Commits
23f4f9f19.2.5Updates
@tailwindcss/postcssfrom 4.2.2 to 4.2.4Release notes
Sourced from
@tailwindcss/postcss's releases.Changelog
Sourced from
@tailwindcss/postcss's changelog.Commits
69ad7cc4.2.4 (#19948)685c19eFix issue around resolving paths in@tailwindcss/vite(#19947)2e3fa494.2.3 (#19944)4527123docs(postcss): remove duplicated optimize example from README (#19938)aad6017docs/fix-lightning-css-typo-postcss-readme (#19913)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@tailwindcss/postcsssince your current version.Updates
eslint-config-nextfrom 16.2.1 to 16.2.4Release notes
Sourced from eslint-config-next's releases.
... (truncated)
Commits
2275bd8v16.2.4d5f649bv16.2.352faae3v16.2.2Updates
tailwindcssfrom 4.2.2 to 4.2.4Release notes
Sourced from tailwindcss's releases.
Changelog
Sourced from tailwindcss's changelog.
Commits
69ad7cc4.2.4 (#19948)2e3fa494.2.3 (#19944)df6209aCanonicalize negative arbitrary values (#19858)52fd421Small refactor of canonicalization tests (#19851)c385fd3usetest.eachinstead of manual loop0d6e038fix index in test name88a2d22Add more canonicalization rules for deprecated utilities (#19849)2c1ef9eUse--placeholder-colorinstead of--background-colorforplaceholder-*...28d5268Collapse more utilities by expanding their declarations (#19842)b55d960fix(canonicalize): collapse arbitrary values into shorthand utilities (#19837)Updates
ts-jestfrom 29.4.6 to 29.4.9Release notes
Sourced from ts-jest's releases.
Changelog
Sourced from ts-jest's changelog.
Commits
bac2e77chore(release): bump version to 29.4.9f8a9cc9fix: use correct registry for npm OIDC trusted publishinge2eec26fix: npm permissions263f2acchore: remove npm auth token5df0e45OIDCf82c144Merge pull request #5250 from kulshekhar/copilot/bump-patch-versione6ec5aeUpdate CHANGELOG.md62c3199Update CHANGELOG.md052e751Bump patch version to 29.4.7f79e77bMerge pull request #5249 from ext/feature/ts6-peerMaintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for ts-jest since your current version.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions