deps: bump the dependencies group with 8 updates#28
Merged
Conversation
Bumps the dependencies group with 8 updates: | Package | From | To | | --- | --- | --- | | [next](https://github.com/vercel/next.js) | `16.2.6` | `16.2.10` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.6` | `19.2.7` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.15` | `19.2.17` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.6` | `19.2.7` | | [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.3.0` | `4.3.3` | | [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.6` | `16.2.10` | | [postcss](https://github.com/postcss/postcss) | `8.5.19` | `8.5.20` | | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.0` | `4.3.3` | Updates `next` from 16.2.6 to 16.2.10 - [Release notes](https://github.com/vercel/next.js/releases) - [Commits](vercel/next.js@v16.2.6...v16.2.10) Updates `react` from 19.2.6 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react) Updates `@types/react` from 19.2.15 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.2.6 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom) Updates `@tailwindcss/postcss` from 4.3.0 to 4.3.3 - [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.3.3/packages/@tailwindcss-postcss) Updates `@types/react` from 19.2.15 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `eslint-config-next` from 16.2.6 to 16.2.10 - [Release notes](https://github.com/vercel/next.js/releases) - [Commits](https://github.com/vercel/next.js/commits/v16.2.10/packages/eslint-config-next) Updates `postcss` from 8.5.19 to 8.5.20 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.5.19...8.5.20) Updates `tailwindcss` from 4.3.0 to 4.3.3 - [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.3.3/packages/tailwindcss) --- updated-dependencies: - dependency-name: next dependency-version: 16.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: react dependency-version: 19.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: react-dom dependency-version: 19.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@tailwindcss/postcss" dependency-version: 4.3.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: eslint-config-next dependency-version: 16.2.10 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: postcss dependency-version: 8.5.20 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tailwindcss dependency-version: 4.3.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
deleted the
dependabot/npm_and_yarn/dependencies-c83f045aa9
branch
July 26, 2026 08:41
6 tasks
leegitw
added a commit
that referenced
this pull request
Jul 26, 2026
…ing (#33) * docs: retire the tailwind 4.3.0 pin, and record the stale-node_modules trap Dependabot #28 merged and moved tailwindcss and @tailwindcss/postcss from exact 4.3.0 to 4.3.3, which CLAUDE.md named as a version range that would not resolve. Checked rather than reverted: the upstream problem is fixed. A clean npm ci resolves, lint and build pass, and a live contrast audit over 177 text nodes finds zero failures with the opacity colours still emitting. The pin is history and is recorded as history so nobody re-applies it from a warning that no longer holds. typescript-eslint 8.59.4 stays pinned; that one is still real. The more useful finding is how close this came to being verified wrong. After the merge, package.json and package-lock.json said 4.3.3 while node_modules still held 4.3.0. Every local build I ran passed, against a version the repo no longer declares. Railway installs clean, so production was building something local had never once compiled. The green build was answering a question I had not asked. So: after any dependency merge, run npm ci before trusting a green build. npm run build alone will happily verify the wrong tree, and it fails in the direction that looks like success. Co-Authored-By: Claude <noreply@anthropic.com> * docs: refresh the docs for the fifth proceeding and the corrected calendar Follow-through after Tennessee and the review fixes landed on main. Four places still described the world as it was before. README's litigation-explainer paragraph listed three case files; there are four, and the fourth is the only one currently in trial. CLAUDE.md's EU DSA open thread said /lawsuits "calls the record four proceedings". It says five. The SEO plan's news calendar pointed at a trial that no longer exists: the second California bellwether was its lead near-term trigger, and Snap settled July 20 while the plaintiff dismissed Meta July 22. July 27 is still a date, for a different case, the Tennessee openings in Nashville, with the federal AG trial following August 12 and 18. The entry now says so, and carries the lesson the dissolution taught: a scheduled trial is not a guaranteed news event, and a case can evaporate in the week before its date. The ledger-candidates plan listed Tennessee only under open questions as "in trial now". It is built, and the plan now records something more useful than that: Tennessee was never in the section 4 candidate list at all. It surfaced from the July-25 litigation status re-check, not from the nine research passes that produced the inventory. A document that enumerates candidates should say plainly when the thing that actually got built came from outside its own enumeration, because the alternative is a reader treating the list as closed. Its status line now also distinguishes what shipped (sections 2 and 3) from what is still a queue (section 4). Verified: house style clean, paper body in sync with its review copy, every relative doc link resolves, lint and build pass. Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <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 dependencies group with 8 updates:
16.2.616.2.1019.2.619.2.719.2.1519.2.1719.2.619.2.74.3.04.3.316.2.616.2.108.5.198.5.204.3.04.3.3Updates
nextfrom 16.2.6 to 16.2.10Release notes
Sourced from next's releases.
Commits
9dadfd6v16.2.10534d9c1[16.2.x] Release pipeline updates (#95160)98941fcbackport: docs fixes 16.2.x (#94935)6e1a94d[16.2.x][ci]: fix release script to not strip newlines (#94640)f37fad9v16.2.9d9aaaed[cd] Allow tagging semver-lower releases as@latestif@latestpo… (#94627)6f16804v16.2.80dbc1d5[16.2.x][cd] Ensure release can be triggered on old branches (#94598)90e3c81[16.2.x] Align Actions dependencies with Canary (#94339)83f402c[16.2.x][cd] Stop fetching all tags when searching parent tag (#94334)Updates
reactfrom 19.2.6 to 19.2.7Release notes
Sourced from react's releases.
Changelog
Sourced from react's changelog.
Commits
6117d7cVersion 19.2.7 (#36591)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.
Updates
@types/reactfrom 19.2.15 to 19.2.17Commits
Updates
react-domfrom 19.2.6 to 19.2.7Release notes
Sourced from react-dom's releases.
Changelog
Sourced from react-dom's changelog.
Commits
6117d7cVersion 19.2.7 (#36591)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for react-dom since your current version.
Updates
@tailwindcss/postcssfrom 4.3.0 to 4.3.3Release notes
Sourced from @tailwindcss/postcss's releases.
... (truncated)
Changelog
Sourced from @tailwindcss/postcss's changelog.
... (truncated)
Commits
c2b24dd4.3.3 (#20334)e48c5e8Fix weird character rendering on Windows with Japanese locale (#20318)9b0e8afEnsure@tailwindcss/postcssrebuilds when the input CSS changes but its mti...b53fa09fix: exclude iframes from focus-visible auto outline in Preflight (#20292)056a1554.3.2 (#20281)8a14a714.3.1 (#20226)522288cServe ESM type declarations to ESM importers of@tailwindcss/postcss(#20228)8dcdb66Bump dependencies (#20095)Updates
@types/reactfrom 19.2.15 to 19.2.17Commits
Updates
eslint-config-nextfrom 16.2.6 to 16.2.10Release notes
Sourced from eslint-config-next's releases.
Commits
9dadfd6v16.2.10534d9c1[16.2.x] Release pipeline updates (#95160)6e1a94d[16.2.x][ci]: fix release script to not strip newlines (#94640)f37fad9v16.2.96f16804v16.2.8411c455v16.2.7Updates
postcssfrom 8.5.19 to 8.5.20Release notes
Sourced from postcss's releases.
Changelog
Sourced from postcss's changelog.
Commits
c4ac725Release 8.5.20 versionc30586dFix missing space when AtRule#params is set after parsing (#2113)5bfc3b9Update dependencies24733fdMove back to latest 11 pnpm728127cUpdate pnpm to check that CI is fixed806fe21Rebuild nodes from another PostCSS copy in Warning (#2112)337cb7eImprove CI security7a8ca2dRemove patch after updating dependencyUpdates
tailwindcssfrom 4.3.0 to 4.3.3Release notes
Sourced from tailwindcss's releases.
... (truncated)
Changelog
Sourced from tailwindcss's changelog.
... (truncated)
Commits
c2b24dd4.3.3 (#20334)e48c5e8Fix weird character rendering on Windows with Japanese locale (#20318)35a3e9cAlways produce\<length>value when optimizing--spacing(0)(#20319)4af47fbFix hues in achromatic theme colors to benone(#20314)5835691Handle CSS nesting natively (#20124)67c745eFix bug in attribute selector parsing (#20303)2683903Support fractional opacity modifiers for named shadow sizes (#20302)04588b1Fix theme() in JS plugins returning unresolved object instead of DEFAULT valu...b53fa09fix: exclude iframes from focus-visible auto outline in Preflight (#20292)ef79119Bump dependencies (#20300)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