Commit Graph

11809 Commits

Author SHA1 Message Date
Alex Hornby
4ae736d142 fix eden fs build with GCC 13.2.1 (#748)
Summary:
X-link: https://github.com/facebookincubator/velox/pull/7070

fix eden fs build with GCC 13.2.1

Fixing two problems that broke builds on Fedora 38, which comes with GCC 13.2.1

   * GCC 13.2.1 can't build the old rocksdb, so update the version
   * there was a missing include in BackingStoreType.h

Pull Request resolved: https://github.com/facebook/sapling/pull/748

Test Plan:
build locally with:
```
./build/fbcode_builder/getdeps.py --allow-system-packages build --src-dir=. --project-install-prefix eden:/usr/local eden
```

Before, eden fs build breaks at rocksdb on uint8_t
```
FAILED: CMakeFiles/rocksdb.dir/table/block_based/data_block_hash_index.cc.o
/usr/bin/c++ -DLZ4 -DOS_LINUX -DROCKSDB_FALLOCATE_PRESENT -DROCKSDB_LIB_IO_POSIX -DROCKSDB_MALLOC_USABLE_SIZE -DROCKSDB_NO_DYNAMIC_EXTENSION -DROCKSDB_PLATFORM_POSIX -DROCKSDB_PTHREAD_ADAPTIVE_MUTEX -DROCKSDB_RANGESYNC_PRESENT -DROCKSDB_SCHED_GETCPU_PRESENT -DSNAPPY -I/home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/extracted/rocksdb-v7.7.3.tar.gz/rocksdb-7.7.3 -I/home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/extracted/rocksdb-v7.7.3.tar.gz/rocksdb-7.7.3/include -isystem /home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/extracted/rocksdb-v7.7.3.tar.gz/rocksdb-7.7.3/third-party/gtest-1.8.1/fused-src -W -Wextra -Wall -pthread -Wsign-compare -Wshadow -Wno-unused-parameter -Wno-unused-variable -Woverloaded-virtual -Wnon-virtual-dtor -Wno-missing-field-initializers -Wno-strict-aliasing -Wno-invalid-offsetof -fno-omit-frame-pointer -momit-leaf-frame-pointer -fno-builtin-memcmp -O2 -g -DNDEBUG -std=gnu++17 -MD -MT CMakeFiles/rocksdb.dir/table/block_based/data_block_hash_index.cc.o -MF CMakeFiles/rocksdb.dir/table/block_based/data_block_hash_index.cc.o.d -o CMakeFiles/rocksdb.dir/table/block_based/data_block_hash_index.cc.o -c /home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/extracted/rocksdb-v7.7.3.tar.gz/rocksdb-7.7.3/table/block_based/data_block_hash_index.cc
In file included from /home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/extracted/rocksdb-v7.7.3.tar.gz/rocksdb-7.7.3/table/block_based/data_block_hash_index.cc:9:
/home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/extracted/rocksdb-v7.7.3.tar.gz/rocksdb-7.7.3/table/block_based/data_block_hash_index.h:65:7: error: ‘uint8_t’ does not name a type
   65 | const uint8_t kNoEntry = 255;
      |       ^~~~~~~
/home/alex/local/tmp/fridge/fbc
```

After, works

Reviewed By: mitrandir77

Differential Revision: D50313436

Pulled By: genevievehelsel

fbshipit-source-id: 970227f29641768c8314aa0537654470d097d7bf
2023-11-21 20:33:33 -08:00
Open Source Bot
ef11d0d55e Updating submodules
Summary:
GitHub commits:

ea810d04bf
9d9996f6e0
2b0df3b358
2fbd5cf24d
258a8f615f
64a6a5d50e
1388406473
1621abd520
336a74db60
83d2aecc12
616e4ee952
bad71dabd4
0a127d76e2
6ed855a77e
42bbf8cb8c
d4fb0bb63b
2b3f861528
490f305345

Reviewed By: jailby

fbshipit-source-id: 1cac0ab342ce23822be5e73bfbbfc5761c1535dd
2023-11-21 09:31:10 -08:00
Open Source Bot
70f39a8545 Updating submodules
Summary:
GitHub commits:

e61499eff4
f1dcb8d01b
ab82b94930
df253704bc
c3b97d3fdd
d4350a0987
6983dc11b2
b059c5680e
51983b375f
cfd99dd908
996a1a2ad5
f6dae42208
f045897e53
ead70bc587
b2db47769d

Reviewed By: bigfootjon

fbshipit-source-id: 569b4b5bdb3aa1db0acaf3284c6491cf762630bd
2023-11-20 09:31:50 -08:00
Alex Hornby
35dceece26 fix eden build with python 3.12 (#778)
Summary:
X-link: https://github.com/facebookincubator/velox/pull/7653

fix eden build with python 3.12

python 3.12 removes many long deprecated unittest features including  _TextTestResult (deprecated in Python 3.2)

notices as fedora 39 ships with python 3.12

Pull Request resolved: https://github.com/facebook/sapling/pull/778

Test Plan:
Local build with `./build/fbcode_builder/getdeps.py --allow-system-packages build --src-dir=. eden`

Before:
```
FAILED: eden/integration/CMakeFiles/integration_tests.GEN_PY_EXE.util eden/integration/integration_tests_tests.cmake /home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/build/eden/eden/integration/integration_tests_tests.cmake
cd /home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/build/eden/eden/integration && /usr/bin/cmake -D TEST_TARGET=integration_tests -D TEST_INTERPRETER=/usr/bin/python3.12 -D TEST_ENV=CMAKE_SOURCE_DIR=/home/alex/local/sapling -D TEST_EXECUTABLE=/home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/build/eden/eden/integration/integration_tests -D TEST_WORKING_DIR=/home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/build/eden -D TEST_LIST=integration_tests_TESTS -D TEST_PREFIX=integration_tests:: -D TEST_PROPERTIES= -D CTEST_FILE=/home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/build/eden/eden/integration/integration_tests_tests.cmake -P /home/alex/local/sapling/build/fbcode_builder/CMake/FBPythonTestAddTests.cmake
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "/home/alex/local/tmp/fridge/fbcode_builder_getdeps-ZhomeZalexZlocalZsaplingZbuildZfbcode_builder/build/eden/eden/integration/integration_tests/__main__.py", line 197, in <module>
  File "/usr/lib64/python3.12/unittest/__init__.py", line 85, in __getattr__
    raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
AttributeError: module 'unittest' has no attribute '_TextTestResult'. Did you mean: 'TextTestResult'?
```

After, works

Differential Revision: D51455615

fbshipit-source-id: f690f14b24b2645578113f769669179fba476657
2023-11-20 07:20:07 -08:00
Open Source Bot
425e18bc58 Updating submodules
Summary:
GitHub commits:

9e4ee3dd89
285d0c5c68
0d87d2068b
577bb7d287
da1cd93693
58ff629228
a86cd7be88
4c0fad5aad

Reviewed By: bigfootjon

fbshipit-source-id: d6eea19beb2159e1fe5a361dfecf4a3223dde275
2023-11-19 09:31:38 -08:00
Open Source Bot
1693fbf1be Updating submodules
Summary:
GitHub commits:

b3029744ca
d10e7c76eb
f6bd3b52d2
737dc8675d
ff4e533c60
3b2130c5c9
01ef8ea284
7780e98268
ab95051cc4
c3e7ce813b
c85c50363e
460c4f1d58
92388c170c

Reviewed By: bigfootjon

fbshipit-source-id: 535ca909542ab59302fbcb73c4d7adde03fc36cd
2023-11-18 09:32:15 -08:00
Open Source Bot
aac8c2fba2 Updating submodules
Summary:
GitHub commits:

e9d595d20f
38afea6b2b
decfb21b26
9218180ea3
419d6cb54e
ede708ca92
66469d84f7
2f9ea8193f
3f80520d07
a1de1a06b3
c0fafa2ba4
8a66edcc44
c3d011399a
1974a00b10
f1bbb608d2
76bf290e0b

Reviewed By: jailby

fbshipit-source-id: f069ba5be304d6731da4f7a12135cb6aab5951bf
2023-11-17 09:31:20 -08:00
Open Source Bot
9887bdd555 Updating submodules
Summary:
GitHub commits:

f7c904926f
b43090b2a6
ffe42664aa
26a2c0267a
23e35c62d5
b13444210e
407dbc919c
c697461a08
9202db1867
11607a1995
4bec06637e
2e4a55770b
d17bd97085
362148f210
2802b2cb3b
8550a15cd6
6433f8fce3
e41be16d0b
5da5a1626e
d1b7159f9f

Reviewed By: bigfootjon

fbshipit-source-id: 46ccaac20dd1bf7e9805cf9514828150f811c5f9
2023-11-16 09:34:41 -08:00
Open Source Bot
413fb6a3b9 Updating submodules
Summary:
GitHub commits:

8ba425c72b
49b1c46936
ce7e07ab23
960d0d8eeb
9b20471572
223584af63
fb6ef784bf
3cc5ea1393
1e067d515f
2222caec9e
459b168c25
b1fa0d1198
c98d5f723d
75a4586292
5a90f41ef8
06b5b4ac25
c7bc0e0bbb
4cc6e0d263
25b12e91cf
975cb0156d
33fdaada63
055676de4b

Reviewed By: bigfootjon

fbshipit-source-id: 5dd4bb3a5ce0317ac4bc22d45d3d6a03fca2ef39
2023-11-15 09:33:52 -08:00
John Elliott
1264b9881c Add rust_cxx_bridge CMake function
Summary:
X-link: https://github.com/facebookincubator/hsthrift/pull/120

X-link: https://github.com/facebook/folly/pull/2096

X-link: https://github.com/facebookexperimental/edencommon/pull/14

X-link: https://github.com/facebook/mvfst/pull/322

X-link: https://github.com/facebookincubator/delos_core/pull/9

X-link: https://github.com/facebook/fboss/pull/166

X-link: https://github.com/facebookincubator/zstrong/pull/617

X-link: https://github.com/facebookincubator/katran/pull/208

X-link: https://github.com/facebookincubator/fizz/pull/102

X-link: https://github.com/facebookexternal/traffixr/pull/4

X-link: https://github.com/facebook/watchman/pull/1173

X-link: https://github.com/facebook/proxygen/pull/473

X-link: https://github.com/facebook/hhvm/pull/9411

X-link: https://github.com/facebook/fbthrift/pull/587

X-link: https://github.com/facebookincubator/velox/pull/7518

We need a better way to create cxxbridges - something that uses the recommended method of cxxbridge-cmd.

This function creates C++ bindings using the [cxx] crate.

Original function found here: https://github.com/corrosion-rs/corrosion/blob/master/cmake/Corrosion.cmake#L1390

Reviewed By: xavierd

Differential Revision: D51160627

fbshipit-source-id: c293c48ef8fabd043c1746798b6e85212d3d0f76
2023-11-14 20:10:26 -08:00
Open Source Bot
f09e2c5a70 Updating submodules
Summary:
GitHub commits:

b6b5e69bfb
b7f0a90ea9
b62fffec1c
ced26fe4e6
46cb69441a
99fe355348
0a7d2e50eb
e1fe032249
37064d631b
570d3bdcef
e3bf55c290
4d9d236d2d
9b294a0ed7
1304886a45
60c25f63bd
260ee61077
09ab470c7e

Reviewed By: bigfootjon

fbshipit-source-id: 1a3c6ede88f49dc5bcbeda35a4d5b30ba87d2a87
2023-11-14 09:36:37 -08:00
Genevieve (Genna) Helsel
4f8e90b558 LMDBInodeCatalog + LMDBFileContentStore
Summary:
X-link: https://github.com/facebookincubator/velox/pull/7542

ties all of the pieces together. The bulk of the net-new logic is in `OverlayFile`, with the LMDB stuff being ported from other implementations or just delegating calls to other classes.

Reviewed By: kmancini

Differential Revision: D46914322

fbshipit-source-id: 3434b71c92ece6b94a3c08828df286b04152d50f
2023-11-13 12:47:14 -08:00
Open Source Bot
0a9891c440 Updating submodules
Summary:
GitHub commits:

30d8a0c874
75ddc20b33
ebc7d0f77d
7ed8c613d1
bdfc1ea390
c1432e1c7b
bbca1ba5c7
2c9db8e844
509947ce2c
92375ed1f2
8827452c8e
7daa8f52a9
2d1c666074
a862043906
3f0883cb22
f8d591c2d6
e6b92b589f
2117dd33d4
61d911163f

Reviewed By: jurajh-fb

fbshipit-source-id: 7e566be19678c2fd95f1007911fe42a10f434804
2023-11-13 09:31:42 -08:00
Open Source Bot
0d118c4c6e Updating submodules
Summary:
GitHub commits:

6d835505db
b46c00a8d4
dd46d65fc0
cb336bf359
d3d588f357
7336b143e4
fd3c951f04
9e63f7bcd1
f337533b6f
fa26c96799
d04a5def34
31aa23254b
30229b25a9
10141dd577
7a84d745d7
9cfa1a6fd4
79d1729452

Reviewed By: jurajh-fb

fbshipit-source-id: 74ee69d5b95fd5a5d2b52003429974cb74dec674
2023-11-09 09:32:14 -08:00
Open Source Bot
2c5a39ad9f Updating submodules
Summary:
GitHub commits:

bed7ee7313
b10e9813b4
33ebfeb85c
bfc531d279
470c4ada5f
dcdb32b087
cc9ccc8f99
444399ca48
d9a43f0d15
9af25a392b
b735439eb3
5c4874f543
005ceb29ff
f59f342c1a
2afd1a6174
1e3e06404f
b3e37fbc6c
e5236c8d22
8d99b09a25

Reviewed By: jurajh-fb

fbshipit-source-id: 30fd9b152b08b814f0fabbc8c960611cffbbbdc8
2023-11-08 09:34:37 -08:00
Open Source Bot
aa42a7c28b Updating submodules
Summary:
GitHub commits:

90d6313971
5cef3774fa
6f62a17c12
28e4df9a6c
4c1491a23e
4702f7791e
f797ecd25b
044fe10bc1
2adef5367a
f228a3ac5e
7f59e36f23
183111bd11
2dbf6df6ff
e60e7117b6
7f148ba006
db352f05a9
b8f6beb785
59506b7fdb

Reviewed By: jurajh-fb

fbshipit-source-id: 45f534672cd60270f8a478a78b4dc0f5ffa4e2a5
2023-11-07 10:44:07 -08:00
Harvey Hunt
3d54cfb2b7 opensource: getdeps: Add show-scratch-dir command
Summary:
X-link: https://github.com/facebookincubator/velox/pull/7446

Add a new command to show the location of the scratch dir that getdeps
will use.

Reviewed By: xavierd

Differential Revision: D51027807

fbshipit-source-id: 80a7cfc04320002588d5ec8964fc88914771c6c7
2023-11-07 06:41:39 -08:00
Open Source Bot
6d623e7bed Updating submodules
Summary:
GitHub commits:

10d22ca4b1
fb4c4b4681
8c02de96ac
ee062c8468
520c64fd2e
7d37de5c30
992168e450
106367938b
0e7c1010b5
6000a5ce23

Reviewed By: jurajh-fb

fbshipit-source-id: b7b9c440d5ba83a2dd7cb06811343cdb1f9c1a59
2023-11-06 09:47:40 -08:00
Open Source Bot
7b4dc7aee6 Updating submodules
Summary:
GitHub commits:

837f55942e
19890bdbf8
6b3e9fa51b
300230a571
14f70dc888
f95141d995
c77311aa3c
897171cba9
be79415774
725bd18bad
53930fcd65
5cce9f7a9f

Reviewed By: jailby

fbshipit-source-id: 376e46bb832265dc6b5b022580982c0d354d503e
2023-11-06 07:09:33 -08:00
Open Source Bot
36fd971132 Updating submodules
Summary:
GitHub commits:

50b561a348
9e5fb91e8f
d2e577a8c8
5b914e9979
5c3fe8da13
20a4d43c84

Reviewed By: jailby

fbshipit-source-id: 0c960da1dcffd07afe1211e14ddb9f2056912d05
2023-11-06 06:00:02 -08:00
Open Source Bot
b2be82ac03 Updating submodules
Summary:
GitHub commits:

99b10cc7ec
6dcfdb0e4c
8f1705aa8f

Reviewed By: jailby

fbshipit-source-id: 8b84db3135901da9600e5813189923ad8bbb7418
2023-11-05 19:40:22 -08:00
Open Source Bot
c38c704809 Updating submodules
Summary:
GitHub commits:

116a3f78e4
a110b146a8
ba34c56f65

Reviewed By: jailby

fbshipit-source-id: aaf66e12f8fad0eda9853d7dd02faf0c9a129d90
2023-11-05 04:57:19 -08:00
Open Source Bot
53a96913a9 Updating submodules
Summary:
GitHub commits:

d1f042b967
10c418ee70
66a1ee704d

Reviewed By: jailby

fbshipit-source-id: fdfc83655c14d0cca6123448daadcf407f56dfec
2023-11-04 18:45:15 -07:00
Open Source Bot
5aebc4448e Updating submodules
Summary:
GitHub commits:

c14ea4a738
d1632ffcf1

Reviewed By: jailby

fbshipit-source-id: 76420d81532b40efe43bfd0e41ab01e85e959eb1
2023-11-04 04:04:57 -07:00
Open Source Bot
26053e359b Updating submodules
Summary:
GitHub commits:

d9a52a7b4b
d2f52f3b49
9ea32b2463

Reviewed By: jailby

fbshipit-source-id: e5ab66d73267b830a776f7969cb8da16b226f013
2023-11-04 02:36:36 -07:00
Open Source Bot
cde565e53a Updating submodules
Summary:
GitHub commits:

27e873bef5
52f792d8b1
c11f1b374c

Reviewed By: jailby

fbshipit-source-id: 953924f9b05f96faee00b015ffe0c8add1570c10
2023-11-03 21:12:05 -07:00
Open Source Bot
2207d0f711 Updating submodules
Summary:
GitHub commits:

0b9cdde39f
d11d74fe62
e52d346cbe

Reviewed By: jailby

fbshipit-source-id: f93e7aff7a9580509acd161268989ea83a332327
2023-11-03 19:59:32 -07:00
Open Source Bot
f1bfe8de1f Updating submodules
Summary:
GitHub commits:

6b8b0de9ca
957b10698b
d7d9179e99
b48480cfd0

Reviewed By: jailby

fbshipit-source-id: dd7079d98c2b24167935a4e10a5c4f5b0c57b382
2023-11-03 18:34:48 -07:00
Open Source Bot
b80d60d195 Updating submodules
Summary:
GitHub commits:

c7d0b62f61
957efaed7f
ef2fb2c06b
c9b94a4887
850c3be8ea

Reviewed By: jailby

fbshipit-source-id: b944eea46aa235b18d71006f640d0eaedfc45144
2023-11-03 14:09:31 -07:00
Open Source Bot
2a51867ff3 Updating submodules
Summary:
GitHub commits:

45c5ea6474
5fca38ef00
8505b26db1
b27692b508
4ff6893cbd
781caf34e0

Reviewed By: jailby

fbshipit-source-id: ba56e928327ac092d11d1f588b55bdfd43af760e
2023-11-03 12:41:21 -07:00
Open Source Bot
5476e43b22 Updating submodules
Summary:
GitHub commits:

73e5e06453
25c99ae588

Reviewed By: jailby

fbshipit-source-id: 89668f13278b123b99f65c314320bc73bbcbed4f
2023-11-03 09:12:15 -07:00
Open Source Bot
6fe1903eb6 Updating submodules
Summary:
GitHub commits:

e7287b3b89
98bcda8e67
0a75b60592

Reviewed By: jailby

fbshipit-source-id: cc1882eefecbb42d31d369a620475a299876f255
2023-11-03 07:34:19 -07:00
Open Source Bot
3ec63a0ec3 Updating submodules
Summary:
GitHub commits:

175fd51711
49d206a8ed

Reviewed By: jailby

fbshipit-source-id: 43184ee380cdc076aee0d13bae1435c8a1b9636c
2023-11-03 04:53:13 -07:00
Open Source Bot
5322782915 Updating submodules
Summary:
GitHub commits:

114ffeceac
bd9d6717d5

Reviewed By: jailby

fbshipit-source-id: fe3d46816fdb540f9f06e23b00df17aa8d02e3d7
2023-11-03 00:55:46 -07:00
Open Source Bot
522067798b Updating submodules
Summary:
GitHub commits:

79d37e349e
b787289835
e0d4bc86f6

Reviewed By: jailby

fbshipit-source-id: 5490817d2ef5b685d4a42806a4ee34f114a79c92
2023-11-02 16:04:38 -07:00
Open Source Bot
f11a98fa4a Updating submodules
Summary:
GitHub commits:

f949ffbaba
2648e0a747
d985e4e704
47b8372c08
060232f864
cbb31308cd

Reviewed By: jailby

fbshipit-source-id: 3d340a9993050bb01302c9dbad122f5172568781
2023-11-02 14:53:35 -07:00
Open Source Bot
1bbc9aa257 Updating submodules
Summary:
GitHub commits:

a6e21655bb
6a0e1ab17b
c8c8dfb634
ebc61427c5
a33a8b888a

Reviewed By: jailby

fbshipit-source-id: fd2c4a02514af7436e5fae8c7126826a8c1457d5
2023-11-02 13:44:29 -07:00
Open Source Bot
3206f3a325 Updating submodules
Summary:
GitHub commits:

64b4776627
1f58e47402
af568adc2f
58d8725277
f5a09d0ea7
6637ef52bc
89e383588e
2664d257b6
824ef10481

Reviewed By: jailby

fbshipit-source-id: 79907aa993724eafc84d50d453a5a8fc05f9d178
2023-11-02 12:31:05 -07:00
Open Source Bot
0fec12c3e6 Updating submodules
Summary:
GitHub commits:

b589527a84
d62707bf4d
957b12fde5
0eeddc6fe0
8785f3780a
8e1adab5ce
488f147df8
9b6b30735d
63618b7cfc
80eaddf917

Reviewed By: jailby

fbshipit-source-id: 89c68e2a53505a5108579971ab78cba3abb5fcbd
2023-11-02 10:39:42 -07:00
Open Source Bot
18aaa04e1d Updating submodules
Summary:
GitHub commits:

e89b990eae
ba2734ab4d

Reviewed By: jailby

fbshipit-source-id: 185be2633a44760c1a08a48717eed88a7fc6d569
2023-11-02 08:42:14 -07:00
Open Source Bot
359a86e1c7 Updating submodules
Summary:
GitHub commits:

5b807f7675

Reviewed By: jailby

fbshipit-source-id: 42e5df954fe358502fec4fcfac891adf7936a9f6
2023-11-02 07:02:52 -07:00
Open Source Bot
d870673856 Updating submodules
Summary:
GitHub commits:

3ee84a41ca

Reviewed By: jailby

fbshipit-source-id: 629199cb21cba82eaefcb0418148b8db096e4c73
2023-11-02 05:55:03 -07:00
Open Source Bot
bdd0631951 Updating submodules
Summary:
GitHub commits:

ad32cab5ab
955f6cb2c5

Reviewed By: jailby

fbshipit-source-id: 5e5911fcd6c892d7eb4b9fdfcf726e4294512672
2023-11-02 00:13:37 -07:00
Open Source Bot
c204207fbc Updating submodules
Summary:
GitHub commits:

401ff69774
9658f20ba9
071e0336be
123180eb58
9019be7dd8
da344ae1c9
b6518c95f3
9d3b282649
9bfe78ab7a

Reviewed By: jailby

fbshipit-source-id: 115112450058d95d29402f9de694ff0d63b3121e
2023-11-01 16:47:04 -07:00
Open Source Bot
64e4cc6268 Updating submodules
Summary:
GitHub commits:

a70bcad9c2
6a4beff885
4b013dcbed

Reviewed By: jailby

fbshipit-source-id: 6cdc5cadc91b7368bd47b35f1d06d6ddc1386de7
2023-11-01 14:54:27 -07:00
Open Source Bot
09bf1e5db0 Updating submodules
Summary:
GitHub commits:

6b17ab300c
3a6ed8a51d
d8bec61414
145819d858
28b3a655a2
bbcb0a8e35
e56a684bb7

Reviewed By: jailby

fbshipit-source-id: 33c5cb6e3b63337c33e6c28ed20080959543cf35
2023-11-01 12:41:42 -07:00
Open Source Bot
16a78854a2 Updating submodules
Summary:
GitHub commits:

29e29eb4fe
7e46d628dd
7eab1a72e4
e598eabe5c
0c7dba57fc
651ef98651

Reviewed By: jailby

fbshipit-source-id: 695d825f73ff53116e7512a18857f12fb5cacdc3
2023-11-01 10:48:45 -07:00
Open Source Bot
c3b1eba494 Updating submodules
Summary:
GitHub commits:

f53ec94db1
1e6693dbf6
1420959833
69d0a3f1e8

Reviewed By: jailby

fbshipit-source-id: 6335b733aac37b77427aa0cc79ed584c30b2c8db
2023-11-01 09:09:28 -07:00
Open Source Bot
19b6241945 Updating submodules
Summary:
GitHub commits:

0b4f0abd90

Reviewed By: jailby

fbshipit-source-id: e8c210fe718d8cbe63a82d006ccdb61956552385
2023-11-01 04:37:28 -07:00
Open Source Bot
5a0588da90 Updating submodules
Summary:
GitHub commits:

111203168e

Reviewed By: jailby

fbshipit-source-id: 3c22ff268f513d39282c6f449364d8ba6bb79a46
2023-11-01 01:52:44 -07:00