Skip to content

Commit 09c1eaf

Browse files
Chore(deps): bump the react group across 1 directory with 2 updates (#271)
* Chore(deps): bump the react group across 1 directory with 2 updates Bumps the react group with 2 updates in the / directory: [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). Updates `react` from 19.2.5 to 19.2.6 - [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.6/packages/react) Updates `@types/react` from 19.2.13 to 19.2.14 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) --- updated-dependencies: - dependency-name: react dependency-version: 19.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: react - dependency-name: "@types/react" dependency-version: 19.2.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: react ... Signed-off-by: dependabot[bot] <support@github.com> * Update lockfile and use catalog for react dependencies * fix(ci): add safe.directory config for container-based e2e job Running in a container causes git 'dubious ownership' errors because the workspace owner differs from the container user. This broke lefthook install during pnpm prepare. Mark the workspace as a safe directory to resolve the issue. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: IzumiSy <beetle-noise@gmx.com>
1 parent fceae09 commit 09c1eaf

7 files changed

Lines changed: 91 additions & 78 deletions

File tree

.github/workflows/ci-e2e.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121
with:
2222
persist-credentials: false
23+
# Running in a container causes git "dubious ownership" errors because the
24+
# workspace owner differs from the container user. Mark it as safe so that
25+
# lefthook install (triggered by pnpm prepare) can run git commands.
26+
- name: Fix git ownership
27+
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2328
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
2429
with:
2530
run_install: false

e2e/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"@types/react-dom": "catalog:",
1919
"@vitejs/plugin-react": "catalog:",
2020
"dotenv": "^16.5.0",
21-
"react": "^19.2.5",
22-
"react-dom": "^19.2.5",
21+
"react": "catalog:",
22+
"react-dom": "catalog:",
2323
"tailwindcss": "catalog:",
2424
"typescript": "catalog:",
2525
"vite": "catalog:"

examples/nextjs-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"@hookform/resolvers": "^5.2.2",
1313
"@tailor-platform/app-shell": "workspace:*",
1414
"next": "16.2.6",
15-
"react": "^19.2.5",
16-
"react-dom": "^19.2.5",
15+
"react": "catalog:",
16+
"react-dom": "catalog:",
1717
"react-hook-form": "^7.71.2",
1818
"zod": "^4.4.3"
1919
},

examples/vite-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"dependencies": {
1313
"@tailor-platform/app-shell": "workspace:*",
1414
"lucide-react": "^1.8.0",
15-
"react": "^19.2.5",
16-
"react-dom": "^19.2.5",
15+
"react": "catalog:",
16+
"react-dom": "catalog:",
1717
"tailwindcss": "catalog:"
1818
},
1919
"devDependencies": {

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@
7777
"@vitejs/plugin-react": "catalog:",
7878
"happy-dom": "^20.6.2",
7979
"postcss": "^8",
80-
"react": "^19.2.5",
81-
"react-dom": "^19.2.5",
80+
"react": "catalog:",
81+
"react-dom": "catalog:",
8282
"tailwindcss": "catalog:",
8383
"tw-animate-css": "^1.4.0",
8484
"typescript": "^5",

0 commit comments

Comments
 (0)