Skip to content

Commit 6049258

Browse files
committed
Merge branch 'main' of ssh://github.com/GrinZero/react
* 'main' of ssh://github.com/GrinZero/react: (163 commits) Do not unmount layout effects if ancestor Offscreen is hidden (facebook#25628) Remove check in renderDidSuspendDelayIfPossible (facebook#25630) [ServerRenderer] Move fizz external runtime implementation to react-dom-bindings (facebook#25617) Unwrap sync resolved thenables without suspending (facebook#25615) refactor isHostResourceType to not receive the context from reconciler and not leak types (facebook#25610) Make host context use null as empty and only error in dev (facebook#25609) [Float] handle resource Resource creation inside svg context (facebook#25599) Allow uncached IO to stablize (facebook#25561) [ServerRenderer] Setup for adding data attributes streaming format (facebook#25567) Do not unmount layout effects on initial Offscreen mount (facebook#25592) Fix type check for null (facebook#25595) Clean up vestige of useOpaqueIdentifier (facebook#25587) Extract logic for detecting bad fallback to helper Split suspended work loop logic into separate functions In work loop, add enum of reasons for suspending Strict Mode: Reuse memoized result from first pass (facebook#25583) Detect and warn if use(promise) is wrapped with try/catch block (facebook#25543) Remove old react-fetch, react-fs and react-pg libraries (facebook#25577) Try assigning fetch to globalThis if global assignment fails (facebook#25571) [Float] handle noscript context for Resources (facebook#25559) ... # Conflicts: # scripts/rollup/build.js
2 parents 66596e2 + 4bd245e commit 6049258

File tree

1,558 files changed

+29101
-12466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,558 files changed

+29101
-12466
lines changed

.circleci/config.yml

+110-64
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,101 @@ version: 2.1
22

33
aliases:
44
- &docker
5-
- image: cimg/openjdk:17.0.0-node
5+
- image: cimg/openjdk:18.0-node
66

77
- &environment
88
TZ: /usr/share/zoneinfo/America/Los_Angeles
99

1010
- &restore_yarn_cache
1111
restore_cache:
1212
name: Restore yarn cache
13-
key: v2-node-{{ arch }}-{{ checksum "yarn.lock" }}-yarn
13+
keys:
14+
- v1-yarn_cache-{{ arch }}-{{ checksum "yarn.lock" }}
15+
- v1-yarn_cache-{{ arch }}-
16+
- v1-yarn_cache-
17+
18+
- &yarn_install
19+
run:
20+
name: Install dependencies
21+
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
22+
23+
- &yarn_install_retry
24+
run:
25+
name: Install dependencies (retry)
26+
when: on_fail
27+
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
28+
29+
- &save_yarn_cache
30+
save_cache:
31+
name: Save yarn cache
32+
key: v1-yarn_cache-{{ arch }}-{{ checksum "yarn.lock" }}
33+
paths:
34+
- ~/.cache/yarn
35+
36+
- &restore_yarn_cache_fixtures_dom
37+
restore_cache:
38+
name: Restore yarn cache for fixtures/dom
39+
keys:
40+
- v1-yarn_cache-{{ arch }}-{{ checksum "yarn.lock" }}-fixtures/dom
41+
- v1-yarn_cache-{{ arch }}-{{ checksum "yarn.lock" }}
42+
- v1-yarn_cache-{{ arch }}-
43+
- v1-yarn_cache-
44+
45+
- &yarn_install_fixtures_dom
46+
run:
47+
name: Install dependencies in fixtures/dom
48+
working_directory: fixtures/dom
49+
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
50+
51+
- &yarn_install_fixtures_dom_retry
52+
run:
53+
name: Install dependencies in fixtures/dom (retry)
54+
when: on_fail
55+
working_directory: fixtures/dom
56+
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
57+
58+
- &save_yarn_cache_fixtures_dom
59+
save_cache:
60+
name: Save yarn cache for fixtures/dom
61+
key: v1-yarn_cache-{{ arch }}-{{ checksum "yarn.lock" }}-fixtures/dom
62+
paths:
63+
- ~/.cache/yarn
64+
65+
- &save_node_modules
66+
save_cache:
67+
name: Save node_modules cache
68+
# Cache only for the current revision to prevent cache injections from
69+
# malicious PRs.
70+
key: v1-node_modules-{{ arch }}-{{ .Revision }}
71+
paths:
72+
- node_modules
73+
- packages/eslint-plugin-react-hooks/node_modules
74+
- packages/react-art/node_modules
75+
- packages/react-client/node_modules
76+
- packages/react-devtools-core/node_modules
77+
- packages/react-devtools-extensions/node_modules
78+
- packages/react-devtools-inline/node_modules
79+
- packages/react-devtools-shared/node_modules
80+
- packages/react-devtools-shell/node_modules
81+
- packages/react-devtools-timeline/node_modules
82+
- packages/react-devtools/node_modules
83+
- packages/react-dom/node_modules
84+
- packages/react-interactions/node_modules
85+
- packages/react-native-renderer/node_modules
86+
- packages/react-reconciler/node_modules
87+
- packages/react-server-dom-relay/node_modules
88+
- packages/react-server-dom-webpack/node_modules
89+
- packages/react-server-native-relay/node_modules
90+
- packages/react-server/node_modules
91+
- packages/react-test-renderer/node_modules
92+
- packages/react/node_modules
93+
- packages/scheduler/node_modules
1494

1595
- &restore_node_modules
1696
restore_cache:
1797
name: Restore node_modules cache
1898
keys:
19-
- v2-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum "workspace_info.txt" }}-node-modules
99+
- v1-node_modules-{{ arch }}-{{ .Revision }}
20100

21101
- &TEST_PARALLELISM 20
22102

@@ -41,38 +121,21 @@ jobs:
41121
steps:
42122
- checkout
43123
- run:
44-
name: Nodejs Version
124+
name: NodeJS Version
45125
command: node --version
46126
- *restore_yarn_cache
47-
- run:
48-
name: Install Packages
49-
command: yarn --frozen-lockfile --cache-folder ~/.cache/yarn
50-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
51-
- save_cache:
52-
# Store the yarn cache globally for all lock files with this same
53-
# checksum. This will speed up the setup job for all PRs where the
54-
# lockfile is the same.
55-
name: Save yarn cache for future installs
56-
key: v2-node-{{ arch }}-{{ checksum "yarn.lock" }}-yarn
57-
paths:
58-
- ~/.cache/yarn
59-
- save_cache:
60-
# Store node_modules for all jobs in this workflow so that they don't
61-
# need to each run a yarn install for each job. This will speed up
62-
# all jobs run on this branch with the same lockfile.
63-
name: Save node_modules cache
64-
# This cache key is per branch, a yarn install in setup is required.
65-
key: v2-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum "workspace_info.txt" }}-node-modules
66-
paths:
67-
- node_modules
127+
- *restore_node_modules
128+
- *yarn_install
129+
- *yarn_install_retry
130+
- *save_yarn_cache
131+
- *save_node_modules
68132

69133
yarn_lint:
70134
docker: *docker
71135
environment: *environment
72136

73137
steps:
74138
- checkout
75-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
76139
- *restore_node_modules
77140
- run: node ./scripts/prettier/index
78141
- run: node ./scripts/tasks/eslint
@@ -87,7 +150,6 @@ jobs:
87150

88151
steps:
89152
- checkout
90-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
91153
- *restore_node_modules
92154
- run: node ./scripts/tasks/flow-ci
93155

@@ -97,7 +159,6 @@ jobs:
97159

98160
steps:
99161
- checkout
100-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
101162
- *restore_node_modules
102163
- run:
103164
command: |
@@ -114,7 +175,6 @@ jobs:
114175
parallelism: 40
115176
steps:
116177
- checkout
117-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
118178
- *restore_node_modules
119179
- run: yarn build-combined
120180
- persist_to_workspace:
@@ -130,7 +190,6 @@ jobs:
130190
type: string
131191
steps:
132192
- checkout
133-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
134193
- *restore_node_modules
135194
- run:
136195
name: Download artifacts for revision
@@ -148,7 +207,6 @@ jobs:
148207
environment: *environment
149208
steps:
150209
- checkout
151-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
152210
- *restore_node_modules
153211
- run:
154212
name: Download artifacts for base revision
@@ -177,7 +235,6 @@ jobs:
177235
- checkout
178236
- attach_workspace:
179237
at: .
180-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
181238
- *restore_node_modules
182239
- run: echo "<< pipeline.git.revision >>" >> build/COMMIT_SHA
183240
# Compress build directory into a single tarball for easy download
@@ -197,7 +254,6 @@ jobs:
197254
- attach_workspace:
198255
at: .
199256
- run: echo "<< pipeline.git.revision >>" >> build/COMMIT_SHA
200-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
201257
- *restore_node_modules
202258
- run:
203259
command: node ./scripts/tasks/danger
@@ -209,11 +265,7 @@ jobs:
209265
- checkout
210266
- attach_workspace:
211267
at: .
212-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
213268
- *restore_node_modules
214-
- run:
215-
name: Install Packages
216-
command: yarn --frozen-lockfile --cache-folder ~/.cache/yarn
217269
- run:
218270
environment:
219271
RELEASE_CHANNEL: experimental
@@ -228,11 +280,7 @@ jobs:
228280
- checkout
229281
- attach_workspace:
230282
at: .
231-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
232283
- *restore_node_modules
233-
- run:
234-
name: Install Packages
235-
command: yarn --frozen-lockfile --cache-folder ~/.cache/yarn
236284
- run:
237285
name: Playwright install deps
238286
command: |
@@ -254,11 +302,7 @@ jobs:
254302
- checkout
255303
- attach_workspace:
256304
at: .
257-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
258305
- *restore_node_modules
259-
- run:
260-
name: Install nested packages from Yarn cache
261-
command: yarn --frozen-lockfile --cache-folder ~/.cache/yarn
262306
- run: ./scripts/circleci/download_devtools_regression_build.js << parameters.version >> --replaceBuild
263307
- run: node ./scripts/jest/jest-cli.js --build --project devtools --release-channel=experimental --reactVersion << parameters.version >> --ci
264308

@@ -273,11 +317,7 @@ jobs:
273317
- checkout
274318
- attach_workspace:
275319
at: .
276-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
277320
- *restore_node_modules
278-
- run:
279-
name: Install nested packages from Yarn cache
280-
command: yarn --frozen-lockfile --cache-folder ~/.cache/yarn
281321
- run:
282322
name: Playwright install deps
283323
command: |
@@ -301,7 +341,6 @@ jobs:
301341
- checkout
302342
- attach_workspace:
303343
at: .
304-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
305344
- *restore_node_modules
306345
- run: yarn lint-build
307346

@@ -312,7 +351,6 @@ jobs:
312351
- checkout
313352
- attach_workspace:
314353
at: .
315-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
316354
- *restore_node_modules
317355
- run: yarn check-release-dependencies
318356

@@ -323,13 +361,25 @@ jobs:
323361
steps:
324362
- checkout
325363
- attach_workspace: *attach_workspace
326-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
327364
- *restore_node_modules
328365
- run:
329366
name: Search build artifacts for unminified errors
330367
command: |
331368
yarn extract-errors
332369
git diff --quiet || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
370+
371+
check_generated_fizz_runtime:
372+
docker: *docker
373+
environment: *environment
374+
steps:
375+
- checkout
376+
- attach_workspace: *attach_workspace
377+
- *restore_node_modules
378+
- run:
379+
name: Confirm generated inline Fizz runtime is up to date
380+
command: |
381+
yarn generate-inline-fizz-runtime
382+
git diff --quiet || (echo "There was a change to the Fizz runtime. Run `yarn generate-inline-fizz-runtime` and check in the result." && false)
333383
334384
yarn_test:
335385
docker: *docker
@@ -340,7 +390,6 @@ jobs:
340390
type: string
341391
steps:
342392
- checkout
343-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
344393
- *restore_node_modules
345394
- run: yarn test <<parameters.args>> --ci
346395

@@ -355,11 +404,7 @@ jobs:
355404
- checkout
356405
- attach_workspace:
357406
at: .
358-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
359407
- *restore_node_modules
360-
- run:
361-
name: Install nested packages from Yarn cache
362-
command: yarn --frozen-lockfile --cache-folder ~/.cache/yarn
363408
- run: yarn test --build <<parameters.args>> --ci
364409

365410
RELEASE_CHANNEL_stable_yarn_test_dom_fixtures:
@@ -369,15 +414,17 @@ jobs:
369414
- checkout
370415
- attach_workspace:
371416
at: .
372-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
373417
- *restore_node_modules
418+
- *restore_yarn_cache_fixtures_dom
419+
- *yarn_install_fixtures_dom
420+
- *yarn_install_fixtures_dom_retry
421+
- *save_yarn_cache_fixtures_dom
374422
- run:
375423
name: Run DOM fixture tests
376424
environment:
377425
RELEASE_CHANNEL: stable
426+
working_directory: fixtures/dom
378427
command: |
379-
cd fixtures/dom
380-
yarn --frozen-lockfile
381428
yarn prestart
382429
yarn test --maxWorkers=2
383430
@@ -386,7 +433,6 @@ jobs:
386433
environment: *environment
387434
steps:
388435
- checkout
389-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
390436
- *restore_node_modules
391437
- run:
392438
name: Run fuzz tests
@@ -406,7 +452,6 @@ jobs:
406452
environment: *environment
407453
steps:
408454
- checkout
409-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
410455
- *restore_node_modules
411456
- run:
412457
name: Run publish script
@@ -425,7 +470,6 @@ jobs:
425470
environment: *environment
426471
steps:
427472
- checkout
428-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
429473
- *restore_node_modules
430474
- run:
431475
name: Fetch revisions that contain an intentional fork
@@ -463,6 +507,9 @@ workflows:
463507
- sync_reconciler_forks:
464508
requires:
465509
- setup
510+
- check_generated_fizz_runtime:
511+
requires:
512+
- setup
466513
- yarn_lint:
467514
requires:
468515
- setup
@@ -676,4 +723,3 @@ workflows:
676723
commit_sha: << pipeline.git.revision >>
677724
release_channel: experimental
678725
dist_tag: experimental
679-

0 commit comments

Comments
 (0)