Skip to content

Commit 208e899

Browse files
nikoantfacebook-github-bot
authored andcommitted
Flipper Release: v0.76.0
Summary: Releasing version 0.76.0 Reviewed By: jknoxville Differential Revision: D26515193 fbshipit-source-id: 38d547195a2d1e214e6f31a990c1d9e3f7869869
1 parent b25de27 commit 208e899

File tree

10 files changed

+18
-12
lines changed

10 files changed

+18
-12
lines changed

desktop/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@
257257
"test:debug": "yarn build:pkg && node --inspect node_modules/.bin/jest --runInBand",
258258
"watch": "jest --watch"
259259
},
260-
"version": "0.75.1",
260+
"version": "0.76.0",
261261
"workspaces": {
262262
"nohoist": [
263263
"flipper-plugin-kaios-big-allocations/firefox-client"

desktop/static/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.76.0 (18/2/2021)
2+
3+
* [D26337377](https://github.com/facebook/flipper/search?q=D26337377&type=Commits) - It is now possible to disable and uninstall device plugins if some of them not required
4+
* [D26225203](https://github.com/facebook/flipper/search?q=D26225203&type=Commits) - Android video is now always captured in 1280x720 / 720x1280 to avoid the issue when video cannot be captured because of unsupported resolution (err=-38)
5+
6+
17
# 0.75.1 (12/2/2021)
28

39
* [D26370235](https://github.com/facebook/flipper/search?q=D26370235&type=Commits) - Reduce spamminess of iOS connection warnings
@@ -61,7 +67,7 @@
6167

6268
# 0.59.0 (29/9/2020)
6369

64-
* [D23908151](https://github.com/facebook/flipper/search?q=D23908151&type=Commits) -
70+
* [D23908151](https://github.com/facebook/flipper/search?q=D23908151&type=Commits) -
6571
* [D23729972](https://github.com/facebook/flipper/search?q=D23729972&type=Commits) - Ability to reload single auto-updated plugin without full Flipper restart.
6672

6773

docs/getting-started/android-native.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ repositories {
2626
}
2727
2828
dependencies {
29-
debugImplementation 'com.facebook.flipper:flipper:0.75.1'
29+
debugImplementation 'com.facebook.flipper:flipper:0.76.0'
3030
debugImplementation 'com.facebook.soloader:soloader:0.10.1'
3131
32-
releaseImplementation 'com.facebook.flipper:flipper-noop:0.75.1'
32+
releaseImplementation 'com.facebook.flipper:flipper-noop:0.76.0'
3333
}
3434
```
3535

docs/getting-started/react-native-ios.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ In 0.62, the setup includes a bit more code (which was moved to a helper in 0.63
4949
platform :ios, '9.0'
5050

5151
def flipper_pods()
52-
flipperkit_version = '0.75.1' # should match the version of your Flipper client app
52+
flipperkit_version = '0.76.0' # should match the version of your Flipper client app
5353
pod 'FlipperKit', '~>' + flipperkit_version, :configuration => 'Debug'
5454
pod 'FlipperKit/FlipperKitLayoutPlugin', '~>' + flipperkit_version, :configuration => 'Debug'
5555
pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version, :configuration => 'Debug'

docs/getting-started/react-native.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ By default React Native might ship with an outdated Flipper SDK. To make sure yo
3232

3333
Android:
3434

35-
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.75.1`.
35+
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.76.0`.
3636
2. Run `./gradlew clean` in the `android` directory.
3737

3838
iOS:
3939

40-
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.75.1' })`.
40+
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.76.0' })`.
4141
2. Run `pod install` in the `ios` directory.
4242

4343
## Manual Setup

docs/setup/layout-plugin.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gradle configuration:
3131

3232
```groovy
3333
dependencies {
34-
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.75.1'
34+
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.76.0'
3535
debugImplementation 'com.facebook.litho:litho-annotations:0.19.0'
3636
// ...
3737
}

docs/setup/leak-canary-plugin.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Ensure that you already have an explicit dependency in your application's
99

1010
```groovy
1111
dependencies {
12-
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.75.1'
12+
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.76.0'
1313
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
1414
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'
1515
}

docs/setup/network-plugin.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The network plugin is shipped as a separate Maven artifact:
1515

1616
```groovy
1717
dependencies {
18-
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.75.1'
18+
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.76.0'
1919
}
2020
```
2121

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# LICENSE file in the root directory of this source tree.
55

66
# POM publishing constants
7-
VERSION_NAME=0.75.2-SNAPSHOT
7+
VERSION_NAME=0.76.0
88
GROUP=com.facebook.flipper
99
SONATYPE_STAGING_PROFILE=comfacebook
1010
POM_URL=https://github.com/facebook/flipper

react-native/react-native-flipper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-flipper",
33
"title": "React Native Flipper Bindings",
4-
"version": "0.75.1",
4+
"version": "0.76.0",
55
"description": "Flipper bindings for React Native",
66
"main": "index.js",
77
"types": "index.d.ts",

0 commit comments

Comments
 (0)