Skip to content

Commit d417c0f

Browse files
committed
Merge branch 'main' into fix/rntester-tests
2 parents e53a30a + dc73ec4 commit d417c0f

169 files changed

Lines changed: 5284 additions & 2538 deletions

File tree

Some content is hidden

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

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ untyped-import
9898
untyped-type-import
9999

100100
[version]
101-
^0.291.0
101+
^0.293.0

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,3 @@ fix_*.patch
176176

177177
# [Experimental] Generated TS type definitions
178178
/packages/**/types_generated/
179-
180-
/packages/debugger-shell/build/
181-
/packages/*/dist/

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## v0.83.0-rc.4
4+
5+
### Fixed
6+
7+
- **Codegen**: Ensure codegen CLI supports unspecified --outputPath argument and respects codegenConfig.outputDir configurations (https://github.com/facebook/react-native/commit/f8207d6c757552ddac472aa278d7dd56ad04fb7e by [@kitten](https://github.com/kitten))
8+
- Fixed an `ENOENT` exception when a dependency does not export `package.json`, and your repo is set up as a monorepo using pnpm (https://github.com/facebook/react-native/commit/ad5e2680c8e491d89d7544ffb2fff45190cd5ef6 by [@tido64](https://github.com/tido64))
9+
- Fixed `hermes-compiler` not being resolved correctly when your repo is set up as a monorepo using pnpm (https://github.com/facebook/react-native/commit/45281ba48fc17508539c0b881327ef8b4bf8e530 by [@tido64](https://github.com/tido64))
10+
- Fix loading bundle using `debug_http_host` preferences (https://github.com/facebook/react-native/commit/2ac54881f3967346faafa4e5a6bc3b9a68c29e46 by [@coado](https://github.com/coado))
11+
- Fixed copying symbol bundles into correct slice folder (https://github.com/facebook/react-native/commit/2bc6b0083237839b224d5427407d33cab3e2de6b by [@chrfalch](https://github.com/chrfalch))
12+
13+
### Changed
14+
15+
- **React Native DevTools**: Enable standalone app shell by default (https://github.com/facebook/react-native/commit/3341bb57b188d0e20ac6e9ebb1e8b1fbb6b26514 by [@huntie](https://github.com/huntie))
16+
- **React Native DevTools**: Add "What's new" highlight to welcome panel (https://github.com/facebook/react-native-devtools-frontend/pull/226 by [@huntie](https://github.com/huntie))
17+
318
## v0.83.0-rc.3
419

520
### Fixed

flow-typed/environment/node.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1917,6 +1917,7 @@ type http$agentOptions = {
19171917
declare class http$Agent<+SocketT = net$Socket> {
19181918
constructor(options: http$agentOptions): void;
19191919
destroy(): void;
1920+
// $FlowFixMe[incompatible-variance]
19201921
freeSockets: {[name: string]: $ReadOnlyArray<SocketT>, ...};
19211922
getName(options: {
19221923
host: string,
@@ -1926,7 +1927,9 @@ declare class http$Agent<+SocketT = net$Socket> {
19261927
}): string;
19271928
maxFreeSockets: number;
19281929
maxSockets: number;
1930+
// $FlowFixMe[incompatible-variance]
19291931
requests: {[name: string]: $ReadOnlyArray<http$ClientRequest<SocketT>>, ...};
1932+
// $FlowFixMe[incompatible-variance]
19301933
sockets: {[name: string]: $ReadOnlyArray<SocketT>, ...};
19311934
}
19321935

flow-typed/npm/glob_v7.x.x.js

Lines changed: 0 additions & 79 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
declare module 'tinyglobby' {
2+
import typeof FSModule from 'fs';
3+
4+
declare type FileSystemAdapter = Partial<FSModule>;
5+
6+
declare type GlobOptions = {
7+
absolute?: boolean,
8+
braceExpansion?: boolean,
9+
caseSensitiveMatch?: boolean,
10+
cwd?: string | URL,
11+
debug?: boolean,
12+
deep?: number,
13+
dot?: boolean,
14+
expandDirectories?: boolean,
15+
extglob?: boolean,
16+
followSymbolicLinks?: boolean,
17+
fs?: FileSystemAdapter,
18+
globstar?: boolean,
19+
ignore?: string | $ReadOnlyArray<string>,
20+
onlyDirectories?: boolean,
21+
onlyFiles?: boolean,
22+
signal?: AbortSignal,
23+
};
24+
25+
declare type GlobModule = {
26+
convertPathToPattern(path: string): string;
27+
escapePath(path: string): string;
28+
isDynamicPattern(pattern: string, options?: { caseSensitiveMatch: boolean }): boolean;
29+
glob(patterns: string | $ReadOnlyArray<string>, options?: GlobOptions): Promise<string[]>;
30+
globSync(patterns: string | $ReadOnlyArray<string>, options?: GlobOptions): string[];
31+
};
32+
33+
declare module.exports: GlobModule;
34+
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@
8686
"eslint-plugin-relay": "^1.8.3",
8787
"fb-dotslash": "0.5.8",
8888
"flow-api-translator": "0.32.0",
89-
"flow-bin": "^0.291.0",
90-
"glob": "^7.1.1",
89+
"flow-bin": "^0.293.0",
9190
"hermes-eslint": "0.32.0",
9291
"hermes-transform": "0.32.0",
9392
"ini": "^5.0.0",
@@ -116,6 +115,7 @@
116115
"supports-color": "^7.1.0",
117116
"temp-dir": "^2.0.0",
118117
"tinybench": "^4.1.0",
118+
"tinyglobby": "^0.2.15",
119119
"typescript": "5.8.3",
120120
"ws": "^7.5.10"
121121
},

packages/debugger-frontend/BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
@generated SignedSource<<751aedacf03b8419823a1c8bf43404e2>>
2-
Git revision: 7f2543355b81b7e57266a76c96d0e25bcfdde000
1+
@generated SignedSource<<46c7cdbd2b88ce6feb708d0da064aaff>>
2+
Git revision: 40e2a7dee6e26d24ca6f0f742a62c75a76bab653
33
Built with --nohooks: false
44
Is local checkout: false
55
Remote URL: https://github.com/facebook/react-native-devtools-frontend

packages/debugger-frontend/dist/third-party/front_end/Images/Images.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
87.1 KB
Loading

0 commit comments

Comments
 (0)