Flipper Release: v0.82.0

Summary: Releasing version 0.82.0

Reviewed By: mweststrate

Differential Revision: D27328585

fbshipit-source-id: 720bc154078611295664a34a567299a94a790711
This commit is contained in:
generatedunixname89002005306973
2021-03-25 09:34:58 -07:00
committed by Facebook GitHub Bot
parent 740fbe57fd
commit 9bccaf3951
14 changed files with 22 additions and 15 deletions

View File

@@ -258,7 +258,7 @@
"test:debug": "yarn build:tsc && node --inspect node_modules/.bin/jest --runInBand",
"watch": "node --expose-gc ./node_modules/.bin/jest --watch"
},
"version": "0.81.0",
"version": "0.82.0",
"workspaces": {
"nohoist": [
"flipper-plugin-kaios-big-allocations/firefox-client"

View File

@@ -1,3 +1,10 @@
# 0.82.0 (25/3/2021)
* [D27188241](https://github.com/facebook/flipper/search?q=D27188241&type=Commits) - Restored the possibility to use Regex in logs search
* [D27233899](https://github.com/facebook/flipper/search?q=D27233899&type=Commits) - Layout.Top / Left / Bottom / Right now support a resizable option
* [D27302961](https://github.com/facebook/flipper/search?q=D27302961&type=Commits) - Fixed an issue where Flipper would crash when decoding large partial requests.
# 0.81.0 (17/3/2021)
* [D26947007](https://github.com/facebook/flipper/search?q=D26947007&type=Commits) - The new logs plugin will linkify urls and pretty print json-like messages

View File

@@ -26,10 +26,10 @@ repositories {
}
dependencies {
debugImplementation 'com.facebook.flipper:flipper:0.81.0'
debugImplementation 'com.facebook.flipper:flipper:0.82.0'
debugImplementation 'com.facebook.soloader:soloader:0.10.1'
releaseImplementation 'com.facebook.flipper:flipper-noop:0.81.0'
releaseImplementation 'com.facebook.flipper:flipper-noop:0.82.0'
}
```

View File

@@ -49,7 +49,7 @@ In 0.62, the setup includes a bit more code (which was moved to a helper in 0.63
platform :ios, '9.0'
def flipper_pods()
flipperkit_version = '0.81.0' # should match the version of your Flipper client app
flipperkit_version = '0.82.0' # should match the version of your Flipper client app
pod 'FlipperKit', '~>' + flipperkit_version, :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutPlugin', '~>' + flipperkit_version, :configuration => 'Debug'
pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version, :configuration => 'Debug'

View File

@@ -32,12 +32,12 @@ By default React Native might ship with an outdated Flipper SDK. To make sure yo
Android:
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.81.0`.
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.82.0`.
2. Run `./gradlew clean` in the `android` directory.
iOS:
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.81.0' })`.
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.82.0' })`.
2. Run `pod install` in the `ios` directory.
## Manual Setup

View File

@@ -31,7 +31,7 @@ gradle configuration:
```groovy
dependencies {
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.81.0'
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.82.0'
debugImplementation 'com.facebook.litho:litho-annotations:0.19.0'
// ...
}

View File

@@ -9,7 +9,7 @@ Ensure that you already have an explicit dependency in your application's
```groovy
dependencies {
debugImplementation 'com.facebook.flipper:flipper-leakcanary2-plugin:0.81.0'
debugImplementation 'com.facebook.flipper:flipper-leakcanary2-plugin:0.82.0'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.6'
}
```

View File

@@ -9,7 +9,7 @@ Ensure that you already have an explicit dependency in your application's
```groovy
dependencies {
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.81.0'
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.82.0'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'
}

View File

@@ -15,7 +15,7 @@ The network plugin is shipped as a separate Maven artifact:
```groovy
dependencies {
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.81.0'
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.82.0'
}
```

View File

@@ -4,7 +4,7 @@
# LICENSE file in the root directory of this source tree.
# POM publishing constants
VERSION_NAME=0.81.1-SNAPSHOT
VERSION_NAME=0.82.0
GROUP=com.facebook.flipper
SONATYPE_STAGING_PROFILE=comfacebook
POM_URL=https://github.com/facebook/flipper

View File

@@ -30,4 +30,4 @@ android.useAndroidX=true
android.enableJetifier=true
# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.79.0
FLIPPER_VERSION=0.82.0

View File

@@ -19,7 +19,7 @@ target 'ReactNativeFlipperExample' do
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
use_flipper!({ 'Flipper' => '0.79.0' })
use_flipper!({ 'Flipper' => '0.82.0' })
post_install do |installer|
flipper_post_install(installer)
end

View File

@@ -12,7 +12,7 @@
"dependencies": {
"react": "^17.0.1",
"react-native": "^0.64.0",
"react-native-flipper": "^0.80.0"
"react-native-flipper": "^0.82.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",

View File

@@ -1,7 +1,7 @@
{
"name": "react-native-flipper",
"title": "React Native Flipper Bindings",
"version": "0.81.0",
"version": "0.82.0",
"description": "Flipper bindings for React Native",
"main": "index.js",
"types": "index.d.ts",