a0e91484c910943f7e257a1c93acaabbd972b402
607 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
a0e91484c9 |
Automated: Update Podfile.lock (#4973)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4973 Reviewed By: lblasa Differential Revision: D47916691 Pulled By: passy fbshipit-source-id: c9f752b8c452b6b4dab0b550b5d12de31db106c0 |
||
|
|
27d98663c5 |
Flipper Release: v0.209.0
Summary: Releasing version 0.209.0 Reviewed By: lblasa Differential Revision: D47836467 fbshipit-source-id: 4bf76e428a505a5182bb8d5a8608cae9c12e426e |
||
|
|
530a621e6b |
Automated: Update Podfile.lock (#4971)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4971 Reviewed By: lblasa Differential Revision: D47829475 Pulled By: passy fbshipit-source-id: 6e897ecb76776be3b36de590fe76afa233e2e435 |
||
|
|
6962289ad9 |
Flipper Release: v0.208.0
Summary: Releasing version 0.208.0 Reviewed By: aigoncharov Differential Revision: D47791662 fbshipit-source-id: 9a93f9d49c0fa9a3e1598e3f00f988a94cc1eea0 |
||
|
|
24df607007 |
Delete and gitignore unwanted lock files (#4899)
Summary: This diff deletes unnecessary lock files which were checked out but aren't necessary and `gitignore` those files: - `yarn.lock` - `js/yarn.lock` - `react-native/yarn.lock` ## Changelog [General] [Removed] - Delete unnecessary lock files. Pull Request resolved: https://github.com/facebook/flipper/pull/4899 Test Plan: - None Reviewed By: aigoncharov Differential Revision: D47755862 Pulled By: passy fbshipit-source-id: 8e9a03b59df1a2891004de3edbd9c3569d2d6055 |
||
|
|
503abd6d22 |
Flipper Release: v0.207.0
Summary: Releasing version 0.207.0 Reviewed By: lblasa Differential Revision: D47629967 fbshipit-source-id: 625011003adde117d024754aab65327dc44e147a |
||
|
|
e51b1afd71 |
Flipper Release: v0.206.0
Summary: Releasing version 0.206.0 Reviewed By: lblasa Differential Revision: D47461479 fbshipit-source-id: a298f0877ae48062d31e8a824f780f70b503e7ab |
||
|
|
64db93136c |
Flipper Release: v0.205.0
Summary: Releasing version 0.205.0 Reviewed By: lblasa Differential Revision: D47439005 fbshipit-source-id: 85b299368111d48cee7be184a2745146e19bd835 |
||
|
|
49d1a8b0fa |
Removing unused yarn resolutions
Summary: These resolutions aren't used, validated with `yarn why`. See the diff higher in the stack for automation. Reviewed By: yungsters Differential Revision: D47282205 fbshipit-source-id: a2e909e3802f780fbe7525e5945faebee7004aef |
||
|
|
54b7d8feea |
Fix react native windows (#4905)
Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/4905 Use fully qualified names in an attempt to fix the broken build. Reviewed By: passy Differential Revision: D47148297 fbshipit-source-id: bb2e81f62a65b9d4516a0bc4cfe2abddfc18a566 |
||
|
|
5363dc8652 |
Flipper Release: v0.204.0
Summary: Releasing version 0.204.0 Reviewed By: lblasa Differential Revision: D47130672 fbshipit-source-id: feb4c7aa2e702cfdcc3e6e247d25d61c7c5bb48f |
||
|
|
883993d2ec |
Bump SocketRocket 0.7.0
Summary:
About to release React Native 0.72.1. This version of React Native has to depend on SocketRocket 0.7.0, released yesterday.
Cocoapods is failing to install dependencies with the following error:
```
In snapshot (Podfile.lock):
SocketRocket (= 0.7.0)
In Podfile:
FlipperKit/FlipperKitReactPlugin (= 0.182.0) was resolved to 0.182.0, which depends on
FlipperKit/Core (= 0.182.0) was resolved to 0.182.0, which depends on
SocketRocket (~> 0.6.0)
React-Core/RCTWebSocket (from `../react-native/`) was resolved to 1000.0.0, which depends on
SocketRocket (= 0.7.0)
React-CoreModules (from `../react-native/React/CoreModules`) was resolved to 1000.0.0, which depends on
SocketRocket
```
By bumping the SocketRocket dependencies and publishing a new version of FlipperKit, we would be able to release React Native.
Reviewed By: passy, cipolleschi
Differential Revision: D47125059
fbshipit-source-id: d0797880c502c14db9f0261c3e8abf2652e7bba2
|
||
|
|
ae6344d051 |
Automated: Update Podfile.lock (#4890)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4890 Reviewed By: ivanmisuno Differential Revision: D47091378 Pulled By: passy fbshipit-source-id: 254b1a6ca737c2ccfa40db3bae147d0db1b1594b |
||
|
|
e42db220ee |
Socket connect no longer synchronous and blocking
Summary: Never really liked this code. Before this change, calls to connect were blocking. Because of this, we had to make use of promises and a bit of really not that good-looking code. So, this change makes connect non-blocking meaning that we make full use of our event handler. These changes contain: - CSR is not getting generated after each failed attempt. - Connect is no longer blocking. - Do not report events via the handler when explicitly disconnecting. Reviewed By: jknoxville Differential Revision: D46853228 fbshipit-source-id: 00e6a9c7c039a756175fe14982959e078d92bacb |
||
|
|
29f873bdcb |
Flipper Release: v0.203.0
Summary: Releasing version 0.203.0 Reviewed By: lblasa Differential Revision: D47089143 fbshipit-source-id: e280b3eb0a92246ebca3be30fdb240e065a68b18 |
||
|
|
86b1fd6390 |
Flipper Release: v0.202.0
Summary: Releasing version 0.202.0 Reviewed By: lblasa Differential Revision: D47059436 fbshipit-source-id: 42d8525ea1164fb2d48736ad9ff1976b7cfbc221 |
||
|
|
ad9d77ee8c |
Flipper Release: v0.201.0
Summary: Releasing version 0.201.0 Reviewed By: lblasa Differential Revision: D46892243 fbshipit-source-id: 47e2389e5e5fa276ae4e1738b9691b9f9dfc4bea |
||
|
|
2ea745010a |
Flipper Release: v0.200.0
Summary: Releasing version 0.200.0 Reviewed By: lblasa Differential Revision: D46839331 fbshipit-source-id: 1f578200c45444757165e41c9c6bc96bd66cc476 |
||
|
|
6b17bcbaf3 |
Flipper Release: v0.199.0
Summary: Releasing version 0.199.0 Reviewed By: aigoncharov Differential Revision: D46835486 fbshipit-source-id: 7e882d55fff5945af1fd0c9d0a0f7e603daba823 |
||
|
|
8f20631f6a |
Automated: Update Podfile.lock (#4836)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4836 Reviewed By: lblasa Differential Revision: D46756889 Pulled By: passy fbshipit-source-id: 8151a079e6a80a7bdd729bb836cdfeb6cc331994 |
||
|
|
401d14227d |
Flipper Release: v0.198.0
Summary: Releasing version 0.198.0 Reviewed By: lblasa Differential Revision: D46729896 fbshipit-source-id: 9f125925f5796dd3ba2062878da388d78951ec94 |
||
|
|
a60f5aa049 |
Flipper Release: v0.197.0
Summary: Releasing version 0.197.0 Reviewed By: lblasa Differential Revision: D46722287 fbshipit-source-id: 365052d289415dd3cc47326753c124427c6c7e67 |
||
|
|
9da5e62023 |
Flipper Release: v0.196.0
Summary: Releasing version 0.196.0 Reviewed By: lblasa Differential Revision: D46718282 fbshipit-source-id: c4084217c5d89b1f83beeff2dd7fede7516ae064 |
||
|
|
6108769464 |
Automated: Update Podfile.lock (#4826)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4826 Reviewed By: lblasa Differential Revision: D46679156 Pulled By: passy fbshipit-source-id: 81cf60d16ea7ce2954ce16896f2dec84b11119c2 |
||
|
|
d4cb23446e |
Bump react-native-flipper from 0.192.0 to 0.195.0 in /react-native/ReactNativeFlipperExample (#4825)
Summary: Bumps [react-native-flipper](https://github.com/facebook/flipper) from 0.192.0 to 0.195.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/flipper/releases">react-native-flipper's releases</a>.</em></p> <blockquote> <h2>v0.195.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.194.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.193.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
cbadce41db |
Flipper Release: v0.195.0
Summary: Releasing version 0.195.0 Reviewed By: lblasa Differential Revision: D46643992 fbshipit-source-id: 1c50201061ec0335f80d49d46eddfe1b534f39a6 |
||
|
|
3afe8175d3 |
Flipper Release: v0.194.0
Summary: Releasing version 0.194.0 Reviewed By: lblasa Differential Revision: D46560117 fbshipit-source-id: 13413931f46397082c83449845025af646982c2c |
||
|
|
1f296ba6fc |
Flipper Release: v0.193.0
Summary: Releasing version 0.193.0 Reviewed By: aigoncharov Differential Revision: D46442118 fbshipit-source-id: 8e50914b36a4fde8ca710014f5c98f17780396b1 |
||
|
|
3607b7f996 |
Automated: Update Podfile.lock (#4794)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4794 Reviewed By: antonk52 Differential Revision: D46355046 Pulled By: passy fbshipit-source-id: e676d4c9d8bef0b3ab29bc9e6cb23838b262c5bf |
||
|
|
4bf4be9558 |
Bump react-native-flipper from 0.190.0 to 0.192.0 in /react-native/ReactNativeFlipperExample (#4792)
Summary: Bumps [react-native-flipper](https://github.com/facebook/flipper) from 0.190.0 to 0.192.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/flipper/releases">react-native-flipper's releases</a>.</em></p> <blockquote> <h2>v0.192.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.191.1</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.191.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
abcfbd822c |
Flipper Release: v0.192.0
Summary: Releasing version 0.192.0 Reviewed By: lblasa Differential Revision: D46309559 fbshipit-source-id: 94bb3a17dde4554ce903cb8c8d01b0c241ad2976 |
||
|
|
9c934325ac |
Flipper Release: v0.191.1
Summary: Releasing version 0.191.1 Reviewed By: passy Differential Revision: D46218568 fbshipit-source-id: 11752bdc05d29387966a64980b7a0457fe5173a4 |
||
|
|
4647f52a5b |
Bump metro-react-native-babel-preset from 0.76.0 to 0.76.4 in /react-native/ReactNativeFlipperExample (#4740)
Summary: Bumps [metro-react-native-babel-preset](https://github.com/facebook/metro) from 0.76.0 to 0.76.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-react-native-babel-preset's releases</a>.</em></p> <blockquote> <h2>v0.76.4</h2> <ul> <li><strong>[Feature]</strong>: Support the <a href="https://developer.chrome.com/articles/x-google-ignore-list/"><code>x_google_ignoreList</code></a> source map extension. (<a href="https://redirect.github.com/facebook/metro/pull/973">facebook/metro#973</a>, 82bd64a9720174a9e2a02fb73bbef292153e20f1 by <a href="https://github.com/motiz88"><code>@motiz88</code></a>)</li> <li><strong>[Feature]</strong>: Support bundling KTX files as image assets. (<a href="https://redirect.github.com/facebook/metro/pull/975">facebook/metro#975</a> by <a href="https://github.com/rshest"><code>@rshest</code></a>)</li> <li><strong>[Fix]</strong>: Fix crash on a module added+modified+removed between updates. (5d7305e2f3a9f5f4aebc889a452afb03b1db12a7 by <a href="https://github.com/robhogan"><code>@robhogan</code></a>)</li> <li><strong>[Fix]</strong>: Fix missed modification on module removed+modified+added between updates. (5d7305e2f3a9f5f4aebc889a452afb03b1db12a7 by <a href="https://github.com/robhogan"><code>@robhogan</code></a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/metro/compare/v0.76.3...v0.76.4">https://github.com/facebook/metro/compare/v0.76.3...v0.76.4</a></p> <h2>v0.76.3</h2> <ul> <li><strong>[Feature]</strong>: Support custom <code>__loadBundleAsync</code> implementations in the default <code>asyncRequire</code> function. See the <a href="https://github.com/react-native-community/discussions-and-proposals/blob/main/proposals/0605-lazy-bundling.md">lazy bundling RFC</a> for more details. (<a href=" |
||
|
|
a3ca62d160 |
Bump metro-config from 0.76.0 to 0.76.4 in /react-native/ReactNativeFlipperExample (#4742)
Summary: Bumps [metro-config](https://github.com/facebook/metro) from 0.76.0 to 0.76.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-config's releases</a>.</em></p> <blockquote> <h2>v0.76.4</h2> <ul> <li><strong>[Feature]</strong>: Support the <a href="https://developer.chrome.com/articles/x-google-ignore-list/"><code>x_google_ignoreList</code></a> source map extension. (<a href="https://redirect.github.com/facebook/metro/pull/973">facebook/metro#973</a>, 82bd64a9720174a9e2a02fb73bbef292153e20f1 by <a href="https://github.com/motiz88"><code>@motiz88</code></a>)</li> <li><strong>[Feature]</strong>: Support bundling KTX files as image assets. (<a href="https://redirect.github.com/facebook/metro/pull/975">facebook/metro#975</a> by <a href="https://github.com/rshest"><code>@rshest</code></a>)</li> <li><strong>[Fix]</strong>: Fix crash on a module added+modified+removed between updates. (5d7305e2f3a9f5f4aebc889a452afb03b1db12a7 by <a href="https://github.com/robhogan"><code>@robhogan</code></a>)</li> <li><strong>[Fix]</strong>: Fix missed modification on module removed+modified+added between updates. (5d7305e2f3a9f5f4aebc889a452afb03b1db12a7 by <a href="https://github.com/robhogan"><code>@robhogan</code></a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/metro/compare/v0.76.3...v0.76.4">https://github.com/facebook/metro/compare/v0.76.3...v0.76.4</a></p> <h2>v0.76.3</h2> <ul> <li><strong>[Feature]</strong>: Support custom <code>__loadBundleAsync</code> implementations in the default <code>asyncRequire</code> function. See the <a href="https://github.com/react-native-community/discussions-and-proposals/blob/main/proposals/0605-lazy-bundling.md">lazy bundling RFC</a> for more details. (<a href=" |
||
|
|
871073c096 |
Bump metro-config from 0.76.0 to 0.76.4 in /react-native/react-native-flipper (#4741)
Summary: Bumps [metro-config](https://github.com/facebook/metro) from 0.76.0 to 0.76.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-config's releases</a>.</em></p> <blockquote> <h2>v0.76.4</h2> <ul> <li><strong>[Feature]</strong>: Support the <a href="https://developer.chrome.com/articles/x-google-ignore-list/"><code>x_google_ignoreList</code></a> source map extension. (<a href="https://redirect.github.com/facebook/metro/pull/973">facebook/metro#973</a>, 82bd64a9720174a9e2a02fb73bbef292153e20f1 by <a href="https://github.com/motiz88"><code>@motiz88</code></a>)</li> <li><strong>[Feature]</strong>: Support bundling KTX files as image assets. (<a href="https://redirect.github.com/facebook/metro/pull/975">facebook/metro#975</a> by <a href="https://github.com/rshest"><code>@rshest</code></a>)</li> <li><strong>[Fix]</strong>: Fix crash on a module added+modified+removed between updates. (5d7305e2f3a9f5f4aebc889a452afb03b1db12a7 by <a href="https://github.com/robhogan"><code>@robhogan</code></a>)</li> <li><strong>[Fix]</strong>: Fix missed modification on module removed+modified+added between updates. (5d7305e2f3a9f5f4aebc889a452afb03b1db12a7 by <a href="https://github.com/robhogan"><code>@robhogan</code></a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/metro/compare/v0.76.3...v0.76.4">https://github.com/facebook/metro/compare/v0.76.3...v0.76.4</a></p> <h2>v0.76.3</h2> <ul> <li><strong>[Feature]</strong>: Support custom <code>__loadBundleAsync</code> implementations in the default <code>asyncRequire</code> function. See the <a href="https://github.com/react-native-community/discussions-and-proposals/blob/main/proposals/0605-lazy-bundling.md">lazy bundling RFC</a> for more details. (<a href=" |
||
|
|
55271bcfa4 |
Flipper Release: v0.191.0
Summary: Releasing version 0.191.0 Reviewed By: lblasa Differential Revision: D45986192 fbshipit-source-id: 15f544da6c3904647ffd4c9b165042ab66fef933 |
||
|
|
8a50364652 |
Bump react-native-flipper from 0.184.0 to 0.190.0 in /react-native/ReactNativeFlipperExample (#4702)
Summary: Bumps [react-native-flipper](https://github.com/facebook/flipper) from 0.184.0 to 0.190.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/flipper/releases">react-native-flipper's releases</a>.</em></p> <blockquote> <h2>v0.190.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.189.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.188.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.187.1</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.187.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.186.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> <h2>v0.185.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
f8ca1551d7 |
Flipper Release: v0.190.0
Summary: Releasing version 0.190.0 Reviewed By: mweststrate Differential Revision: D45308248 fbshipit-source-id: 3b03945474d644fec9a686f0f908864dbbca2322 |
||
|
|
ee76a2f7e0 |
Automated: Update Podfile.lock (#4661)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4661 Reviewed By: ivanmisuno Differential Revision: D44995374 Pulled By: passy fbshipit-source-id: 4c93a3750da5ae9977e62451e0bf7f3717b8c233 |
||
|
|
8b33b25eda |
Flipper Release: v0.189.0
Summary: Releasing version 0.189.0 Reviewed By: ivanmisuno Differential Revision: D44703759 fbshipit-source-id: 447ecacea6f9ae59ddedb405e5fa3915193bc50c |
||
|
|
af1842a027 |
Flipper Release: v0.188.0
Summary: Releasing version 0.188.0 Reviewed By: LukeDefeo Differential Revision: D44628090 fbshipit-source-id: a6f22b743331e3e18f2a2787e2fb6471b32cd430 |
||
|
|
bc9d53660a |
Flipper Release: v0.187.1
Summary: Releasing version 0.187.1 Reviewed By: aigoncharov Differential Revision: D44416758 fbshipit-source-id: 2c390e1124c63d873fc442dcdfba7a9ac272530e |
||
|
|
81d37ee085 |
Bump metro-config from 0.75.0 to 0.76.0 in /react-native/react-native-flipper (#4580)
Summary: Bumps [metro-config](https://github.com/facebook/metro) from 0.75.0 to 0.76.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-config's releases</a>.</em></p> <blockquote> <h2>v0.76.0</h2> <ul> <li><strong>[Breaking]</strong>: Increase minimum Node version from 14 to 16. (<a href=" |
||
|
|
182afaa3d8 |
Bump metro-react-native-babel-preset from 0.74.1 to 0.76.0 in /react-native/ReactNativeFlipperExample (#4581)
Summary: Bumps [metro-react-native-babel-preset](https://github.com/facebook/metro) from 0.74.1 to 0.76.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-react-native-babel-preset's releases</a>.</em></p> <blockquote> <h2>v0.76.0</h2> <ul> <li><strong>[Breaking]</strong>: Increase minimum Node version from 14 to 16. (<a href=" |
||
|
|
90a398cdea |
Bump babel-jest from 29.4.3 to 29.5.0 in /react-native/ReactNativeFlipperExample (#4574)
Summary:
Bumps [babel-jest](https://github.com/facebook/jest/tree/HEAD/packages/babel-jest) from 29.4.3 to 29.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/releases">babel-jest's releases</a>.</em></p>
<blockquote>
<h2>v29.5.0</h2>
<h2>Features</h2>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h2>Fixes</h2>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h2>Chore & Maintenance</h2>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/frosas"><code>@frosas</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13932">facebook/jest#13932</a></li>
<li><a href="https://github.com/akshitsinha"><code>@akshitsinha</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">facebook/jest#13915</a></li>
<li><a href="https://github.com/trajano"><code>@trajano</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">facebook/jest#13827</a></li>
<li><a href="https://github.com/DercilioFontes"><code>@DercilioFontes</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">facebook/jest#13954</a></li>
<li><a href="https://github.com/jsnajdr"><code>@jsnajdr</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">facebook/jest#13952</a></li>
<li><a href="https://github.com/SteveFlames"><code>@SteveFlames</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">facebook/jest#13895</a></li>
<li><a href="https://github.com/willc001"><code>@willc001</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">facebook/jest#13970</a></li>
<li><a href="https://github.com/benjaminhobbs"><code>@benjaminhobbs</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13901">facebook/jest#13901</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/jest/compare/v29.4.3...v29.5.0">https://github.com/facebook/jest/compare/v29.4.3...v29.5.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/blob/main/CHANGELOG.md">babel-jest's changelog</a>.</em></p>
<blockquote>
<h2>29.5.0</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h3>Chore & Maintenance</h3>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="
|
||
|
|
565d26a72f |
Bump @babel/runtime from 7.20.13 to 7.21.0 in /react-native/ReactNativeFlipperExample (#4555)
Summary: Bumps [babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.20.13 to 7.21.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/runtime</code>'s releases</a>.</em></p> <blockquote> <h2>v7.21.0 (2023-02-20)</h2> <p>Thanks <a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>, <a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>, <a href="https://github.com/fwienber"><code>@fwienber</code></a>, and <a href="https://github.com/Lioness100"><code>@Lioness100</code></a> for your first PRs!</p> <h4>🚀 New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15435">#15435</a> feat: Implement <code>privateFieldsAsSymbols</code> assumption for classes (<a href="https://github.com/fwienber"><code>@fwienber</code></a>)</li> </ul> </li> <li><code>babel-helper-create-regexp-features-plugin</code>, <code>babel-plugin-proposal-regexp-modifiers</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15226">#15226</a> feat: Support regexp modifiers proposal (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15022">#15022</a> feat: Generate sourcemaps of friendly call frames (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15384">#15384</a> [ts] Support <code>const</code> modifier in type parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-helpers</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15405">#15405</a> Implement decorators as presented at <code>2023-01</code> TC39 meeting (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15114">#15114</a> Parser option to allow <code>new.target</code> outside functions (<a href="https://github.com/overlookmotel"><code>@overlookmotel</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15320">#15320</a> Add <code>annexb: false</code> parser option to disable Annex B (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15283">#15283</a> feat: Support <code>.cts</code> as configuration file (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15381">#15381</a> [ts] Support <code>export type * from</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15379">#15379</a> [ts5.0] Better inlining of constants in enums (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15366">#15366</a> handling circular/shared structures in deep-clone (<a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-new-target</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15406">#15406</a> Preserve class elements comments in class transform (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15414">#15414</a> [ts] Fix restrictions for optional parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15400">#15400</a> polish: improve "<code>await</code> as identifier" error in modules (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15137">#15137</a> Improve CJS compat with ESM-based <code>babel/core</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🔬 Output optimization</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15418">#15418</a> [ts] Handle exponentiation operator in constant folding (<a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>)</li> </ul> </li> </ul> <h4>Committers: 11</h4> <ul> <li>Abdulaziz Ghuloum (<a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>)</li> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@babel-bot</code></a>)</li> <li>Emanuel Hoogeveen (<a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>)</li> <li>Frank Wienberg (<a href="https://github.com/fwienber"><code>@fwienber</code></a>)</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/runtime</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.21.0 (2023-02-20)</h2> <h4>🚀 New Feature</h4> <ul> <li><code>babel-core</code>, <code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-proposal-private-property-in-object</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15435">#15435</a> feat: Implement <code>privateFieldsAsSymbols</code> assumption for classes (<a href="https://github.com/fwienber"><code>@fwienber</code></a>)</li> </ul> </li> <li><code>babel-helper-create-regexp-features-plugin</code>, <code>babel-plugin-proposal-regexp-modifiers</code>, <code>babel-standalone</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15226">#15226</a> feat: Support regexp modifiers proposal (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15022">#15022</a> feat: Generate sourcemaps of friendly call frames (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15384">#15384</a> [ts] Support <code>const</code> modifier in type parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-helpers</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15405">#15405</a> Implement decorators as presented at <code>2023-01</code> TC39 meeting (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15114">#15114</a> Parser option to allow <code>new.target</code> outside functions (<a href="https://github.com/overlookmotel"><code>@overlookmotel</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15320">#15320</a> Add <code>annexb: false</code> parser option to disable Annex B (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15283">#15283</a> feat: Support <code>.cts</code> as configuration file (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15381">#15381</a> [ts] Support <code>export type * from</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15379">#15379</a> [ts5.0] Better inlining of constants in enums (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15366">#15366</a> handling circular/shared structures in deep-clone (<a href="https://github.com/azizghuloum"><code>@azizghuloum</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code>, <code>babel-plugin-proposal-class-static-block</code>, <code>babel-plugin-proposal-private-methods</code>, <code>babel-plugin-transform-classes</code>, <code>babel-plugin-transform-new-target</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15406">#15406</a> Preserve class elements comments in class transform (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-parser</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-flow-strip-types</code>, <code>babel-types</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15414">#15414</a> [ts] Fix restrictions for optional parameters (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15400">#15400</a> polish: improve "<code>await</code> as identifier" error in modules (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-core</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15137">#15137</a> Improve CJS compat with ESM-based <code>babel/core</code> (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🔬 Output optimization</h4> <ul> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15418">#15418</a> [ts] Handle exponentiation operator in constant folding (<a href="https://github.com/ehoogeveen-medweb"><code>@ehoogeveen-medweb</code></a>)</li> </ul> </li> </ul> <h2>v7.20.15 (2023-02-02)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15391">#15391</a> Disallow await as bound name in using declaration (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-generator</code>, <code>babel-parser</code>, <code>babel-plugin-proposal-export-namespace-from</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15385">#15385</a> Disallows specifiers after export * as ns (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
8daa322305 |
Bump jest from 29.4.3 to 29.5.0 in /react-native/ReactNativeFlipperExample (#4572)
Summary:
Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) from 29.4.3 to 29.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/releases">jest's releases</a>.</em></p>
<blockquote>
<h2>v29.5.0</h2>
<h2>Features</h2>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h2>Fixes</h2>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h2>Chore & Maintenance</h2>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/frosas"><code>@frosas</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13932">facebook/jest#13932</a></li>
<li><a href="https://github.com/akshitsinha"><code>@akshitsinha</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">facebook/jest#13915</a></li>
<li><a href="https://github.com/trajano"><code>@trajano</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">facebook/jest#13827</a></li>
<li><a href="https://github.com/DercilioFontes"><code>@DercilioFontes</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">facebook/jest#13954</a></li>
<li><a href="https://github.com/jsnajdr"><code>@jsnajdr</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">facebook/jest#13952</a></li>
<li><a href="https://github.com/SteveFlames"><code>@SteveFlames</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">facebook/jest#13895</a></li>
<li><a href="https://github.com/willc001"><code>@willc001</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">facebook/jest#13970</a></li>
<li><a href="https://github.com/benjaminhobbs"><code>@benjaminhobbs</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13901">facebook/jest#13901</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/facebook/jest/compare/v29.4.3...v29.5.0">https://github.com/facebook/jest/compare/v29.4.3...v29.5.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/facebook/jest/blob/main/CHANGELOG.md">jest's changelog</a>.</em></p>
<blockquote>
<h2>29.5.0</h2>
<h3>Features</h3>
<ul>
<li><code>[jest-changed-files]</code> Support Sapling (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13941">#13941</a>)</li>
<li><code>[jest-circus, jest/cli, jest-config]</code> Add feature to randomize order of tests via CLI flag or through the config file(<a href="https://github-redirect.dependabot.com/facebook/jest/pull/12922">#12922</a>)</li>
<li><code>[jest-cli, jest-config, jest/core, jest-haste-map, jest/reporters, jest-runner, jest-runtime, jest/types]</code> Add <code>workerThreads</code> configuration option to allow using <a href="https://nodejs.org/dist/latest/docs/api/worker_threads.html">worker threads</a> for parallelization (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13939">#13939</a>)</li>
<li><code>[jest-cli]</code> Export <code>yargsOptions</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13970">#13970</a>)</li>
<li><code>[jest-config]</code> Add <code>openHandlesTimeout</code> option to configure possible open handles warning. (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13875">#13875</a>)</li>
<li><code>[jest/create-cache-key-function]</code> Allow passing <code>length</code> argument to <code>createCacheKey()</code> function and set its default value to <code>16</code> on Windows (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13827">#13827</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError">AggregateError</a> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13946">#13946</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13947">#13947</a>)</li>
<li><code>[jest-message-util]</code> Add support for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause">Error causes</a> in <code>test</code> and <code>it</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13935">#13935</a> & <a href="https://github-redirect.dependabot.com/facebook/jest/pull/13966">#13966</a>)</li>
<li><code>[jest-reporters]</code> Add <code>summaryThreshold</code> option to summary reporter to allow overriding the internal threshold that is used to print the summary of all failed tests when the number of test suites surpasses it (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13895">#13895</a>)</li>
<li><code>[jest-runtime]</code> Expose <code>sinonjs/fake-timers</code> async APIs functions <code>advanceTimersByTimeAsync(msToRun)</code> (<code>tickAsync(msToRun)</code>), <code>advanceTimersToNextTimerAsync(steps)</code> (<code>nextAsync</code>), <code>runAllTimersAsync</code> (<code>runAllAsync</code>), and <code>runOnlyPendingTimersAsync</code> (<code>runToLastAsync</code>) (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13981">#13981</a>)</li>
<li><code>[jest-runtime, jest/transform]</code> Allow V8 coverage provider to collect coverage from files which were not loaded explicitly (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13974">#13974</a>)</li>
<li><code>[jest-snapshot]</code> Add support to <code>cts</code> and <code>mts</code> TypeScript files to inline snapshots (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13975">#13975</a>)</li>
<li><code>[jest-worker]</code> Add <code>start</code> method to worker farms (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13937">#13937</a>)</li>
<li><code>[jest-worker]</code> Support passing a URL as path to worker (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13982">#13982</a>)</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>[babel-plugin-jest-hoist]</code> Fix unwanted hoisting of nested <code>jest</code> usages (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13952">#13952</a>)</li>
<li><code>[jest-circus]</code> Send test case results for <code>todo</code> tests (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13915">#13915</a>)</li>
<li><code>[jest-circus]</code> Update message printed on test timeout (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13830">#13830</a>)</li>
<li><code>[jest-circus]</code> Avoid creating the word "testfalse" when <code>takesDoneCallback</code> is <code>false</code> in the message printed on test timeout AND updated timeouts test (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13954">#13954</a>)</li>
<li><code>[jest-environment-jsdom]</code> Stop setting <code>document</code> to <code>null</code> on teardown (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13972">#13972</a>)</li>
<li><code>[jest/expect-utils]</code> Update <code>toStrictEqual()</code> to be able to check <code>jest.fn().mock.calls</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13960">#13960</a>)</li>
<li><code>[jest/test-result]</code> Allow <code>TestResultsProcessor</code> type to return a Promise (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13950">#13950</a>)</li>
</ul>
<h3>Chore & Maintenance</h3>
<ul>
<li><code>[jest-snapshot]</code> Remove dependency on <code>jest-haste-map</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/13977">#13977</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="
|
||
|
|
14b1966d50 |
Bump react-native-flipper from 0.183.0 to 0.184.0 in /react-native/ReactNativeFlipperExample (#4592)
Summary: Bumps [react-native-flipper](https://github.com/facebook/flipper) from 0.183.0 to 0.184.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/flipper/releases">react-native-flipper's releases</a>.</em></p> <blockquote> <h2>v0.184.0</h2> <p>See <a href="https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md">https://github.com/facebook/flipper/blob/main/desktop/static/CHANGELOG.md</a> for full notes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
b45d56d9fe |
Automated: Update Podfile.lock (#4624)
Summary: This is an automated PR to update the Podfile.lock. - Make sure that the Podfile.lock contains latest FlipperKit and Flipper pod versions. - Also make sure that all the dependencies are updated to the latest one. - This is auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) Pull Request resolved: https://github.com/facebook/flipper/pull/4624 Reviewed By: passy Differential Revision: D44301473 Pulled By: aigoncharov fbshipit-source-id: 8edee27e69b441aed959e9555a1fe5e1d1582e88 |
||
|
|
477ba906f9 |
Bump @babel/core from 7.20.12 to 7.21.3 in /react-native/ReactNativeFlipperExample (#4600)
Summary: Bumps [babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.20.12 to 7.21.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/core</code>'s releases</a>.</em></p> <blockquote> <h2>v7.21.3 (2023-03-14)</h2> <p>Thanks <a href="https://github.com/amoeller"><code>@amoeller</code></a>, <a href="https://github.com/Harpica"><code>@Harpica</code></a>, and <a href="https://github.com/nzakas"><code>@nzakas</code></a> for your first PRs!</p> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15479">#15479</a> disallow mixins/implements in flow interface (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15423">#15423</a> [ts] Allow keywords in tuple labels (<a href="https://github.com/Harpica"><code>@Harpica</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15489">#15489</a> Register <code>var</code> decls generated by <code>import ... =</code> TS transform (<a href="https://github.com/amoeller"><code>@amoeller</code></a>)</li> <li><a href="https://redirect.github.com/babel/babel/pull/15494">#15494</a> fix: Consider <code>export { type foo }</code> as type-only usage (<a href="https://github.com/magic-akari"><code>@magic-akari</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15484">#15484</a> Skip node deprecation warnings when used by an old <code>babel</code> package (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-generator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15480">#15480</a> chore: Improve <code>jsonCompatibleStrings</code> deprecation (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15465">#15465</a> Add ESLint-readable package name (<a href="https://github.com/nzakas"><code>@nzakas</code></a>)</li> </ul> <h4>🔬 Output optimization</h4> <ul> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15467">#15467</a> Optimize TS enums output (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>Committers: 8</h4> <ul> <li>Alexandra Kadykova (<a href="https://github.com/Harpica"><code>@Harpica</code></a>)</li> <li>Anders Møller (<a href="https://github.com/amoeller"><code>@amoeller</code></a>)</li> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@babel-bot</code></a>)</li> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li>Nicholas C. Zakas (<a href="https://github.com/nzakas"><code>@nzakas</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a></li> <li>magic-akari (<a href="https://github.com/magic-akari"><code>@magic-akari</code></a>)</li> </ul> <h2>v7.21.2 (2023-02-23)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15439">#15439</a> fix: Throws on <code>new foo?.bar!()</code> (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15448">#15448</a> Reduce warnings for deprecated node aliases (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-types</code></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/core</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.21.3 (2023-03-14)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15479">#15479</a> disallow mixins/implements in flow interface (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15423">#15423</a> [ts] Allow keywords in tuple labels (<a href="https://github.com/Harpica"><code>@Harpica</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15489">#15489</a> Register <code>var</code> decls generated by <code>import ... =</code> TS transform (<a href="https://github.com/amoeller"><code>@amoeller</code></a>)</li> <li><a href="https://redirect.github.com/babel/babel/pull/15494">#15494</a> fix: Consider <code>export { type foo }</code> as type-only usage (<a href="https://github.com/magic-akari"><code>@magic-akari</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15484">#15484</a> Skip node deprecation warnings when used by an old <code>babel</code> package (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-generator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15480">#15480</a> chore: Improve <code>jsonCompatibleStrings</code> deprecation (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15465">#15465</a> Add ESLint-readable package name (<a href="https://github.com/nzakas"><code>@nzakas</code></a>)</li> </ul> <h4>🔬 Output optimization</h4> <ul> <li><code>babel-plugin-transform-typescript</code>, <code>babel-preset-typescript</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15467">#15467</a> Optimize TS enums output (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h2>v7.21.2 (2023-02-23)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15439">#15439</a> fix: Throws on <code>new foo?.bar!()</code> (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15448">#15448</a> Reduce warnings for deprecated node aliases (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>🏠 Internal</h4> <ul> <li><code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15451">#15451</a> Update babel-types docs generator (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>🔬 Output optimization</h4> <ul> <li><code>babel-helper-module-transforms</code>, <code>babel-plugin-transform-modules-commonjs</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15449">#15449</a> Avoid unnecessary code for unused lazy imports (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h2>v7.21.1 (2023-02-20)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-core</code>, <code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15440">#15440</a> Fix problems found while publishing 7.21.0 (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> <li><code>babel-generator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/15445">#15445</a> fix: Handling source maps without <code>sourcesContent</code> (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |