Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DevTools] Use Unicode Atom Symbol instead of Atom Emoji #30832

Merged
merged 2 commits into from
Sep 10, 2024

Conversation

sebmarkbage
Copy link
Collaborator

@sebmarkbage sebmarkbage commented Aug 28, 2024

This reverts #19603.

Before:
Screenshot 2024-08-28 at 12 07 29 AM

After:
Screenshot 2024-08-28 at 12 08 13 AM

Consensus seems to be that while the purple on is a bit clearer and easier to read. The purple is not on brand so it doesn't look like React. It looks ugly. It's distracting (too eye catching). Taking away attention from other tabs in an unfair way.

It also gets worse with more tabs added. We plan on both adding another tab and panes inside other tabs (elements/sources) soon. Each needs to be marked somehow as part of React but spelling it out is too long. Putting inside a second tab means two clicks and takes away real-estate from our extension and doesn't solve the problem with extension panes in other tabs. We also plan on adding multiple different tracks to the Performance tab which also needs a name other than just React and spelling out React as a prefix is too long. The Emoji is too distracting. So it seems best to uniformly apply the symbol - albeit it might just look like a dot to many.

Dark mode looks close to on brand:

Screenshot 2024-08-28 at 12 32 50 AM

Copy link

vercel bot commented Aug 28, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
react-compiler-playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 10, 2024 4:03am

@react-sizebot
Copy link

react-sizebot commented Aug 28, 2024

Comparing: 6066b8e...653e391

Critical size changes

Includes critical production bundles, as well as any change greater than 2%:

Name +/- Base Current +/- gzip Base gzip Current gzip
oss-stable/react-dom/cjs/react-dom.production.js = 6.68 kB 6.68 kB = 1.83 kB 1.82 kB
oss-stable/react-dom/cjs/react-dom-client.production.js = 505.22 kB 505.22 kB = 90.29 kB 90.29 kB
oss-experimental/react-dom/cjs/react-dom.production.js = 6.69 kB 6.69 kB = 1.83 kB 1.83 kB
oss-experimental/react-dom/cjs/react-dom-client.production.js = 512.41 kB 512.41 kB = 91.50 kB 91.50 kB
facebook-www/ReactDOM-prod.classic.js = 600.74 kB 600.74 kB = 106.27 kB 106.27 kB
facebook-www/ReactDOM-prod.modern.js = 577.03 kB 577.03 kB = 102.41 kB 102.41 kB

Significant size changes

Includes any change greater than 0.2%:

(No significant changes)

Generated by 🚫 dangerJS against 7cb7bc6

Copy link
Collaborator

@eps1lon eps1lon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sooo, are you gonna work on adding a React emoji to the unicode standard? 😄

I don't have a preference here. It's either ugly or unreadable.

Copy link
Contributor

@hoxyq hoxyq left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a parameter for chrome.devtools.panels.create, which allows to specify path to an icon, but looks like its not working on Chrome.

Looks like it is deprecated, and the docs were not updated. Only Firefox is correctly displaying the extension icon left to the panel name.

I am not sure about this change, though, would adding "React" as prefix make it take too much space?

hoxyq
hoxyq previously requested changes Aug 28, 2024
Copy link
Contributor

@hoxyq hoxyq left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we have some time to discuss this, before actually committing and potentially changing this multiple times?

I think the ideal state for us is to ask Chrome team if iconPath will ever be supported again, so that we can display correct React logo.

If its deprecated and there are no plans for supports icons in third party extensions panels, then I would prefer having "React" as a prefix in our panels names, I don't think the spelling is too long, and it looks native to other built-in panels.

I don't know about the plans on naming the third panel, but it should not be long as well, something like "React Suspense", "React Suspense Sandbox" is alright. Although the unicode atom symbol looks more similar to original React logo, it is barely visible.
Screenshot 2024-08-28 at 13 44 47

@gaearon
Copy link
Collaborator

gaearon commented Aug 28, 2024

It's not great to have a "React" prefix because it steals screen estate from other tabs. I.e. Chrome would literally show fewer tabs on the screen because of this.

@huntie
Copy link
Member

huntie commented Aug 28, 2024

Adding a strong vote for leave as is 😅 Agree that iconPath would be ideal, and we should try to pursue this.

@hoxyq
Copy link
Contributor

hoxyq commented Aug 28, 2024

It's not great to have a "React" prefix because it steals screen estate from other tabs. I.e. Chrome would literally show fewer tabs on the screen because of this.

Chrome users can re-arrange panels, so that the most important ones or the most used ones are on the left.
I think we just need to decide what we are optimizing: the spelling length or the recognition / branding.

Ideally, it should have been just React logo to the left of the panel name, but it is currently only supported in Firefox.

@sebmarkbage
Copy link
Collaborator Author

sebmarkbage commented Aug 28, 2024

I absolutely don't want to leave it as is. It makes me embarrassed to work on it. It really looks like shit.

I'm actually ok with just removing the icon completely and putting the logo in the panel itself. You'd have to learn that "Components" means React Components and "Suspense" means React Suspense. "Profiler" means React Profiler somehow.

Even if you reorder them "React Components", "React Suspense" and "React Profiler" is almost enough to take up the whole width in a right-docked panel.

Keep in mind that it's not just about these two tabs. It's about the panes integrated into the other native tabs too. For example I want to add a "Components" pane in the Elements panel. That one defaults to a horizontal tab bar in smaller sized pane. We could just name it "Components" there too. I'm ok with that but it's a bit broad.

Then there's the Performance tab. It would have things like Client Components and Server Components tracks. That's already kind of long even without the React prefix and the Performance tab has this existing problem that the earliest left-most things are already covered up by the track names.

Even if we get the iconPath added back it's probably not getting added to the panes and the performance tab too. So we don't have a consistent design language to work with. The unicode icon is a nice hack to build that consistency without taking up real-estate.

But I'm also ok just removing the icon and word React completely. When working on a React centric app that's typically your primary focus so it's implied anyway. It's like the whole thing is the React DevTools.

@sebmarkbage
Copy link
Collaborator Author

Btw the icon in Firefox looks terrible in light mode too. Is there a way to make that use a transparent background instead that can work in both?

@sebmarkbage
Copy link
Collaborator Author

If we remove the icon we can maybe squeeze in the logo in the top left corner where the selector is and next to the record button. The way I was imagining the Components pane in Elements was that the top would be a short list of Components so wouldn't work there. It also wouldn't work in the Performance tab. Those are maybe implied by Client Components and Server Components (there's a third one to be named too) or could use the icon only in that case but then there's nothing to carry it over.

@josephsavona
Copy link
Contributor

Could we have a single "React" tab, within which we have components and profiler and whatever other tabs we choose to add later? Just "React" makes it super clear.

@hoxyq
Copy link
Contributor

hoxyq commented Aug 28, 2024

Btw the icon in Firefox looks terrible in light mode too. Is there a way to make that use a transparent background instead that can work in both?

I think Firefox is using one of the icons, which are defined in the manifest file. Updating these icons to have transparent background should fix it, but there could be other implications from having transparent background in the extension logo.

@hoxyq
Copy link
Contributor

hoxyq commented Aug 28, 2024

Could we have a single "React" tab, within which we have components and profiler and whatever other tabs we choose to add later? Just "React" makes it super clear.

It is possible, and I think this is another case we should consider.

The code for it is already there - we do render inner tabs (Components and Profiler) in React DevTools UI for React Native (both in legacy standalone electron shell and in new Chrome DevTools-based approach).

One potential downside is cross-panel deeplinking in Chrome DevTools: we want to be able to navigate to / from Performance panel, for example, this is something Chrome DevTools team is currently exploring. Although it would probably not affect the complexity of the potential implementation (we could still implement inner tab navigation by parsing deeplink), having multiple panels is more obvious to the user, because you only have single level of depth for panels.

@sebmarkbage
Copy link
Collaborator Author

sebmarkbage commented Aug 28, 2024

Could we have a single "React" tab, within which we have components and profiler and whatever other tabs we choose to add later? Just "React" makes it super clear.

The goal with all of this work (performance.measure instead of React Profiler, elements/source panel extensions, server console logs, console.createTask for native stacks everywhere etc) is to great an integrated experience that works throughout the DevTools. Then there's also Next.js DevTools tabs etc.

React is only a small part of a larger system. So the idea of centralizing around you just opening the "React" tab and staying there is counter to that principle. It's more like the React Suspense tab is closer to a theoretical Next.js Network tab or Performance tab than it is to the React Components tab.

Given that the tabs are customizable and some tabs are more useful than others for specific work I don't think this is good. For example, I would likely hide the the React Components tab and just bring forward the React Suspense tab and the Elements tab. I wouldn't want to click React tab and then Suspense tab every time I want to get there.

@josephsavona
Copy link
Contributor

josephsavona commented Aug 28, 2024

@sebmarkbage That makes sense for why not grouping into a React tab. I think it's helpful for docs and new users if there is something a bit more specific than just "Components" as a tab name, and "React Components" is too long. The unicode symbol is a bit more subtle (i've never loved the current emoji either) so I'm supportive of this change as a good compromise.

If we can use the actual logo later great, but we don't have to block on it.

@sebmarkbage
Copy link
Collaborator Author

Tbh, I don't love the real icons in Firefox neither. It's very cluttered. I think Chrome probably did the right thing by removing them to avoid too many colorful icons there but maybe should've banned emojis at the same time. But then they added the green Node.js icon (which is great but green). 🙈

@sebmarkbage
Copy link
Collaborator Author

sebmarkbage commented Aug 28, 2024

How do we feel about adding it to the end? That way when they're presented in lists the letters line up as opposed to:

Screenshot 2024-08-28 at 4 07 00 PM

This happens in Performance tab and extension panes in Sources tab too.

There's precedence in Chrome itself for icons at the end for example for Experimental features.

Screenshot 2024-08-28 at 4 04 21 PM

@josephsavona
Copy link
Contributor

josephsavona commented Aug 28, 2024

At the end seems fine too

@hoxyq hoxyq dismissed their stale review August 29, 2024 10:03

I still don't see a reason why we are optimizing spelling size, but also agree that it should not block this PR from landing. Whatever we decide on styling, I would prefer to change it only once, and then maybe migrate to using React logo as an icon, in case this will ever be supported again by Chrome.

@sebmarkbage sebmarkbage merged commit d160aa0 into facebook:main Sep 10, 2024
184 checks passed
github-actions bot pushed a commit that referenced this pull request Sep 10, 2024
This reverts #19603.

Before:
<img width="724" alt="Screenshot 2024-08-28 at 12 07 29 AM"
src="https://github.com/user-attachments/assets/0613088f-c013-4f1c-92c3-fbdae8c1f109">

After:
<img width="771" alt="Screenshot 2024-08-28 at 12 08 13 AM"
src="https://github.com/user-attachments/assets/eef21bee-d11f-4f0a-9147-053a163f720f">

Consensus seems to be that while the purple on is a bit clearer and
easier to read. The purple is not on brand so it doesn't look like
React. It looks ugly. It's distracting (too eye catching). Taking away
attention from other tabs in an unfair way.

It also gets worse with more tabs added. We plan on both adding another
tab and panes inside other tabs (elements/sources) soon. Each needs to
be marked somehow as part of React but spelling it out is too long.
Putting inside a second tab means two clicks and takes away real-estate
from our extension and doesn't solve the problem with extension panes in
other tabs. We also plan on adding multiple different tracks to the
Performance tab which also needs a name other than just React and
spelling out React as a prefix is too long. The Emoji is too
distracting. So it seems best to uniformly apply the symbol - albeit it
might just look like a dot to many.

Dark mode looks close to on brand:

<img width="1089" alt="Screenshot 2024-08-28 at 12 32 50 AM"
src="https://github.com/user-attachments/assets/7175a540-4241-4c26-9e4d-4d367873af57">

DiffTrain build for [d160aa0](d160aa0)
gnoff pushed a commit to vercel/next.js that referenced this pull request Sep 12, 2024
**breaking change for canary users: Bumps peer dependency of React from
`19.0.0-rc-7771d3a7-20240827` to `19.0.0-rc-94e652d5-20240912`**

[diff
facebook/react@7771d3a7...94e652d5](facebook/react@7771d3a...94e652d)

<details>
<summary>React upstream changes</summary>

- facebook/react#30952
- facebook/react#30950
- facebook/react#30946
- facebook/react#30934
- facebook/react#30947
- facebook/react#30945
- facebook/react#30938
- facebook/react#30936
- facebook/react#30879
- facebook/react#30888
- facebook/react#30931
- facebook/react#30930
- facebook/react#30832
- facebook/react#30929
- facebook/react#30926
- facebook/react#30925
- facebook/react#30905
- facebook/react#30900
- facebook/react#30910
- facebook/react#30906
- facebook/react#30899
- facebook/react#30919
- facebook/react#30708
- facebook/react#30907
- facebook/react#30897
- facebook/react#30896
- facebook/react#30895
- facebook/react#30887
- facebook/react#30889
- facebook/react#30893
- facebook/react#30892
- facebook/react#30891
- facebook/react#30882
- facebook/react#30881
- facebook/react#30870
- facebook/react#30849
- facebook/react#30878
- facebook/react#30865
- facebook/react#30869
- facebook/react#30875
- facebook/react#30800
- facebook/react#30762
- facebook/react#30831
- facebook/react#30866
- facebook/react#30853
- facebook/react#30850
- facebook/react#30847
- facebook/react#30842
- facebook/react#30837
- facebook/react#30848
- facebook/react#30844
- facebook/react#30839
- facebook/react#30802
- facebook/react#30841
- facebook/react#30827
- facebook/react#30826
- facebook/react#30825
- facebook/react#30824
- facebook/react#30840
- facebook/react#30838
- facebook/react#30836
- facebook/react#30819
- facebook/react#30816
- facebook/react#30814
- facebook/react#30813
- facebook/react#30812
- facebook/react#30811

</details>

---------

Co-authored-by: vercel-release-bot <[email protected]>
hoxyq added a commit that referenced this pull request Sep 25, 2024
Full list of changes:
* refactor: data source for errors and warnings tracking is now in Store
([hoxyq](https://github.com/hoxyq) in
[#31010](#31010))
* fix: consider alternate as a key for componentLogsEntry when
inspecting raw fiber instance ([hoxyq](https://github.com/hoxyq) in
[#31009](#31009))
* Fix: profiling crashes #30661 #28838
([EdmondChuiHW](https://github.com/EdmondChuiHW) in
[#31024](#31024))
* chore: remove using local storage for persisting console settings on
the frontend ([hoxyq](https://github.com/hoxyq) in
[#31002](#31002))
* feat: display message if user ended up opening hook script
([hoxyq](https://github.com/hoxyq) in
[#31000](#31000))
* feat: expose installHook with settings argument from
react-devtools-core/backend ([hoxyq](https://github.com/hoxyq) in
[#30987](#30987))
* chore: remove settings manager from react-devtools-core
([hoxyq](https://github.com/hoxyq) in
[#30986](#30986))
* feat[react-devtools/extension]: use chrome.storage to persist settings
across sessions ([hoxyq](https://github.com/hoxyq) in
[#30636](#30636))
* refactor[react-devtools]: propagate settings from global hook object
to frontend ([hoxyq](https://github.com/hoxyq) in
[#30610](#30610))
* chore[react-devtools]: extract some utils into separate modules to
unify implementations ([hoxyq](https://github.com/hoxyq) in
[#30597](#30597))
* refactor[react-devtools]: move console patching to global hook
([hoxyq](https://github.com/hoxyq) in
[#30596](#30596))
* refactor[react-devtools]: remove browserTheme from
ConsolePatchSettings ([hoxyq](https://github.com/hoxyq) in
[#30566](#30566))
* feat[react-devtools]: add settings to global hook object
([hoxyq](https://github.com/hoxyq) in
[#30564](#30564))
* fix: add Error prefix to Error objects names
([hoxyq](https://github.com/hoxyq) in
[#30969](#30969))
* Add enableComponentPerformanceTrack Flag
([sebmarkbage](https://github.com/sebmarkbage) in
[#30960](#30960))
* fix[rdt/fiber/renderer.js]: getCurrentFiber can be injected as null
([hoxyq](https://github.com/hoxyq) in
[#30968](#30968))
* disable `enableSiblingPrerendering` in experimental channel
([gnoff](https://github.com/gnoff) in
[#30952](#30952))
* refactor[react-devtools]: initialize renderer interface early
([hoxyq](https://github.com/hoxyq) in
[#30946](#30946))
* Start prerendering Suspense retries immediately
([acdlite](https://github.com/acdlite) in
[#30934](#30934))
* refactor[Agent/Store]: Store to send messages only after Agent is
initialized ([hoxyq](https://github.com/hoxyq) in
[#30945](#30945))
* refactor[RendererInterface]: expose onErrorOrWarning and
getComponentStack ([hoxyq](https://github.com/hoxyq) in
[#30931](#30931))
* Implement getComponentStack and onErrorOrWarning for replayed Flight
logs ([sebmarkbage](https://github.com/sebmarkbage) in
[#30930](#30930))
* Use Unicode Atom Symbol instead of Atom Emoji
([sebmarkbage](https://github.com/sebmarkbage) in
[#30832](#30832))
* Improve Layering Between Console and Renderer
([sebmarkbage](https://github.com/sebmarkbage) in
[#30925](#30925))
* Add Map for Server Component Logs
([sebmarkbage](https://github.com/sebmarkbage) in
[#30905](#30905))
* Delete fiberToFiberInstanceMap
([sebmarkbage](https://github.com/sebmarkbage) in
[#30900](#30900))
* Add Flight Renderer ([sebmarkbage](https://github.com/sebmarkbage) in
[#30906](#30906))
* Refactor Error / Warning Count Tracking
([sebmarkbage](https://github.com/sebmarkbage) in
[#30899](#30899))
* [flow] Upgrade Flow to 0.245.2
([SamChou19815](https://github.com/SamChou19815) in
[#30919](#30919))
* Separate RDT Fusebox into single-panel entry points
([huntie](https://github.com/huntie) in
[#30708](#30708))
* Build Updater List from the Commit instead of Map
([sebmarkbage](https://github.com/sebmarkbage) in
[#30897](#30897))
* Simplify Context Change Tracking in Profiler
([sebmarkbage](https://github.com/sebmarkbage) in
[#30896](#30896))
* Remove use of .alternate in root and recordProfilingDurations
([sebmarkbage](https://github.com/sebmarkbage) in
[#30895](#30895))
* Handle reordered contexts in Profiler
([sebmarkbage](https://github.com/sebmarkbage) in
[#30887](#30887))
* Refactor Forcing Fallback / Error of Suspense / Error Boundaries
([sebmarkbage](https://github.com/sebmarkbage) in
[#30870](#30870))
* Avoid getFiberIDUnsafe in debug() Helper
([sebmarkbage](https://github.com/sebmarkbage) in
[#30878](#30878))
* Include some Filtered Fiber Instances
([sebmarkbage](https://github.com/sebmarkbage) in
[#30865](#30865))
* Track root instances in a root Map
([sebmarkbage](https://github.com/sebmarkbage) in
[#30875](#30875))
* Track all public HostInstances in a Map
([sebmarkbage](https://github.com/sebmarkbage) in
[#30831](#30831))
* Support VirtualInstances in findAllCurrentHostInstances
([sebmarkbage](https://github.com/sebmarkbage) in
[#30853](#30853))
* Add Filtering of Environment Names
([sebmarkbage](https://github.com/sebmarkbage) in
[#30850](#30850))
* Support secondary environment name when it changes
([sebmarkbage](https://github.com/sebmarkbage) in
[#30842](#30842))
* Increase max payload for websocket in standalone app
([runeb](https://github.com/runeb) in
[#30848](#30848))
* Filter Server Components
([sebmarkbage](https://github.com/sebmarkbage) in
[#30839](#30839))
* Track virtual instances on the tracked path for selections
([sebmarkbage](https://github.com/sebmarkbage) in
[#30802](#30802))
* Remove displayName from inspected data
([sebmarkbage](https://github.com/sebmarkbage) in
[#30841](#30841))
* chore[react-devtools/hook]: remove unused native values
([hoxyq](https://github.com/hoxyq) in
[#30827](#30827))
* chore[react-devtools/extensions]: remove unused storage permission
([hoxyq](https://github.com/hoxyq) in
[#30826](#30826))
* fix[react-devtools/extensions]: fixed tabs API calls and displaying
restricted access popup ([hoxyq](https://github.com/hoxyq) in
[#30825](#30825))
* feat[react-devtools]: support Manifest v3 for Firefox extension
([hoxyq](https://github.com/hoxyq) in
[#30824](#30824))
* Reconcile Fibers Against Previous Children Instances
([sebmarkbage](https://github.com/sebmarkbage) in
[#30822](#30822))
* Remove findCurrentFiberUsingSlowPathByFiberInstance
([sebmarkbage](https://github.com/sebmarkbage) in
[#30818](#30818))
* Track Tree Base Duration of Virtual Instances
([sebmarkbage](https://github.com/sebmarkbage) in
[#30817](#30817))
* Use Owner Stacks to Implement View Source of a Server Component
([sebmarkbage](https://github.com/sebmarkbage) in
[#30798](#30798))
* Make function inspection instant
([sebmarkbage](https://github.com/sebmarkbage) in
[#30786](#30786))
* Make Functions Clickable to Jump to Definition
([sebmarkbage](https://github.com/sebmarkbage) in
[#30769](#30769))
* Support REACT_LEGACY_ELEMENT_TYPE for formatting JSX
([sebmarkbage](https://github.com/sebmarkbage) in
[#30779](#30779))
* Find owners from the parent path that matches the Fiber or
ReactComponentInfo ([sebmarkbage](https://github.com/sebmarkbage) in
[#30717](#30717))
* [Flight/DevTools] Pass the Server Component's "key" as Part of the
ReactComponentInfo ([sebmarkbage](https://github.com/sebmarkbage) in
[#30703](#30703))
* Hide props section if it is null
([sebmarkbage](https://github.com/sebmarkbage) in
[#30696](#30696))
* Support Server Components in Tree
([sebmarkbage](https://github.com/sebmarkbage) in
[#30684](#30684))
* fix[react-devtools/InspectedElement]: fixed border stylings when some
of the panels are not rendered ([hoxyq](https://github.com/hoxyq) in
[#30676](#30676))
* Compute new reordered child set from the instance tree
([sebmarkbage](https://github.com/sebmarkbage) in
[#30668](#30668))
* Unmount instance by walking the instance tree instead of the fiber
tree ([sebmarkbage](https://github.com/sebmarkbage) in
[#30665](#30665))
* Further Refactoring of Unmounts
([sebmarkbage](https://github.com/sebmarkbage) in
[#30658](#30658))
* Remove lodash.throttle ([sebmarkbage](https://github.com/sebmarkbage)
in [#30657](#30657))
* Unmount by walking previous nodes no longer in the new tree
([sebmarkbage](https://github.com/sebmarkbage) in
[#30644](#30644))
* Build up DevTools Instance Shadow Tree
([sebmarkbage](https://github.com/sebmarkbage) in
[#30625](#30625))
* chore[packages/react-devtools]: remove unused index.js
([hoxyq](https://github.com/hoxyq) in
[#30579](#30579))
* Track DOM nodes to Fiber map for HostHoistable Resources
([sebmarkbage](https://github.com/sebmarkbage) in
[#30590](#30590))
* Rename mountFiberRecursively/updateFiberRecursively
([sebmarkbage](https://github.com/sebmarkbage) in
[#30586](#30586))
* Allow Highlighting/Inspect HostSingletons/Hoistables and Resources
([sebmarkbage](https://github.com/sebmarkbage) in
[#30584](#30584))
* chore[react-devtools]: add global for native and use it to fork
backend implementation ([hoxyq](https://github.com/hoxyq) in
[#30533](#30533))
* Enable pointEvents while scrolling
([sebmarkbage](https://github.com/sebmarkbage) in
[#30560](#30560))
* Make Element Inspection Feel Snappy
([sebmarkbage](https://github.com/sebmarkbage) in
[#30555](#30555))
* Track the parent DevToolsInstance while mounting a tree
([sebmarkbage](https://github.com/sebmarkbage) in
[#30542](#30542))
* Add DevToolsInstance to Store Stateful Information
([sebmarkbage](https://github.com/sebmarkbage) in
[#30517](#30517))
* Implement "best renderer" by taking the inner most matched node
([sebmarkbage](https://github.com/sebmarkbage) in
[#30494](#30494))
* Rename NativeElement to HostInstance in the Bridge
([sebmarkbage](https://github.com/sebmarkbage) in
[#30491](#30491))
* Rename Fiber to Element in the Bridge Protocol and RendererInterface
([sebmarkbage](https://github.com/sebmarkbage) in
[#30490](#30490))
* Stop filtering owner stacks
([sebmarkbage](https://github.com/sebmarkbage) in
[#30438](#30438))
* [Fiber] Call life-cycles with a react-stack-bottom-frame stack frame
([sebmarkbage](https://github.com/sebmarkbage) in
[#30429](#30429))
* [Flight] Prefix owner stacks added to the console.log with the current
stack ([sebmarkbage](https://github.com/sebmarkbage) in
[#30427](#30427))
* [BE] switch to hermes parser for prettier
([kassens](https://github.com/kassens) in
[#30421](#30421))
* Implement Owner Stacks ([sebmarkbage](https://github.com/sebmarkbage)
in [#30417](#30417))
* [BE] upgrade prettier to 3.3.3 ([kassens](https://github.com/kassens)
in [#30420](#30420))
* [ci] Add yarn_test_build job to gh actions
* [Fizz] Refactor Component Stack Nodes
([sebmarkbage](https://github.com/sebmarkbage) in
[#30298](#30298))
* Print component stacks as error objects to get source mapping
([sebmarkbage](https://github.com/sebmarkbage) in
[#30289](#30289))
* Upgrade flow to 0.235.0 ([kassens](https://github.com/kassens) in
[#30118](#30118))
* fix: path handling in react devtools
([Jack-Works](https://github.com/Jack-Works) in
[#29199](#29199))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed React Core Team Opened by a member of the React Core Team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants