You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
- run: yarn workspaces info | head -n -1 > workspace_info.txt
305
344
- *restore_node_modules
306
345
- run: yarn lint-build
307
346
@@ -312,7 +351,6 @@ jobs:
312
351
- checkout
313
352
- attach_workspace:
314
353
at: .
315
-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
316
354
- *restore_node_modules
317
355
- run: yarn check-release-dependencies
318
356
@@ -323,13 +361,25 @@ jobs:
323
361
steps:
324
362
- checkout
325
363
- attach_workspace: *attach_workspace
326
-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
327
364
- *restore_node_modules
328
365
- run:
329
366
name: Search build artifacts for unminified errors
330
367
command: |
331
368
yarn extract-errors
332
369
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)
333
383
334
384
yarn_test:
335
385
docker: *docker
@@ -340,7 +390,6 @@ jobs:
340
390
type: string
341
391
steps:
342
392
- checkout
343
-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
344
393
- *restore_node_modules
345
394
- run: yarn test <<parameters.args>> --ci
346
395
@@ -355,11 +404,7 @@ jobs:
355
404
- checkout
356
405
- attach_workspace:
357
406
at: .
358
-
- run: yarn workspaces info | head -n -1 > workspace_info.txt
0 commit comments