Flipper Release: v0.37.0

Summary: Releasing version 0.37.0

Reviewed By: jknoxville

Differential Revision: D20919249

fbshipit-source-id: 59ec28ba10043da03c460d9eaadb30a8fd2e4a6f
This commit is contained in:
generatedunixname89002005306973
2020-04-09 03:04:57 -07:00
committed by Facebook GitHub Bot
parent 25222606c6
commit 2d27b90bd9
20 changed files with 32 additions and 25 deletions

View File

@@ -1,3 +1,10 @@
# 0.37.0 (8/4/2020)
* D20868923 - Fix connections on Android devices with older SDKs (19)
* D20822063 - The QPL plugin now shows qpl start times
* D20836635 - Stabilized QPL plugin to avoid crashes with iOS devices, normalized event times to always report in milliseconds.
# 0.36.0 (3/4/2020)
* D20673166 - New Hermes Debugger plugin for React Native apps.

View File

@@ -3,7 +3,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
flipperkit_version = '0.36.0'
flipperkit_version = '0.37.0'
Pod::Spec.new do |spec|
spec.name = 'Flipper'
spec.version = flipperkit_version

View File

@@ -5,7 +5,7 @@
folly_compiler_flags = '-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0'
yogakit_version = '~> 1.18'
flipperkit_version = '0.36.0'
flipperkit_version = '0.37.0'
Pod::Spec.new do |spec|
spec.name = 'FlipperKit'
spec.version = flipperkit_version

View File

@@ -1,6 +1,6 @@
{
"name": "flipper",
"version": "0.36.0",
"version": "0.37.0",
"description": "Mobile development tool",
"productName": "Flipper",
"author": "Facebook Inc",
@@ -32,7 +32,7 @@
"expand-tilde": "^2.0.2",
"express": "^4.15.2",
"fb-watchman": "^2.0.0",
"flipper-doctor": "0.36.0",
"flipper-doctor": "0.37.0",
"fs-extra": "^8.0.1",
"immer": "^6.0.0",
"immutable": "^4.0.0-rc.12",

View File

@@ -1,6 +1,6 @@
{
"name": "flipper-babel-transformer",
"version": "0.36.0",
"version": "0.37.0",
"description": "Babel transformer for Flipper plugins",
"repository": "facebook/flipper",
"main": "lib/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "flipper-doctor",
"version": "0.36.0",
"version": "0.37.0",
"description": "Utility for checking for issues with a flipper installation",
"main": "lib/index.js",
"flipper:source": "src",

View File

@@ -1,6 +1,6 @@
{
"name": "flipper-headless-tests",
"version": "0.36.0",
"version": "0.37.0",
"main": "index.js",
"private": true,
"scripts": {

View File

@@ -1,6 +1,6 @@
{
"name": "flipper-project",
"version": "0.36.0",
"version": "0.37.0",
"description": "Mobile development tool",
"productName": "Flipper",
"author": "Facebook Inc",

View File

@@ -1,6 +1,6 @@
{
"name": "flipper-pkg",
"version": "0.36.0",
"version": "0.37.0",
"description": "Utility for building and publishing Flipper plugins",
"repository": "facebook/flipper",
"main": "lib/index.js",
@@ -20,7 +20,7 @@
"@types/node": "^13.7.5",
"cli-ux": "^5.4.5",
"fs-extra": "^8.1.0",
"flipper-babel-transformer": "0.36.0",
"flipper-babel-transformer": "0.37.0",
"inquirer": "^7.0.5",
"metro": "^0.58.0",
"tslib": "^1"

View File

@@ -1,6 +1,6 @@
{
"name": "flipper-static",
"version": "0.36.0",
"version": "0.37.0",
"main": "index.js",
"private": true,
"license": "MIT",
@@ -10,7 +10,7 @@
"fb-watchman": "^2.0.0",
"fix-path": "^3.0.0",
"fs-extra": "^8.1.0",
"flipper-babel-transformer": "0.36.0",
"flipper-babel-transformer": "0.37.0",
"mem": "^6.0.0",
"metro": "^0.58.0",
"mkdirp": "^1.0.0",

View File

@@ -24,10 +24,10 @@ repositories {
}
dependencies {
debugImplementation 'com.facebook.flipper:flipper:0.36.0'
debugImplementation 'com.facebook.flipper:flipper:0.37.0'
debugImplementation 'com.facebook.soloader:soloader:0.8.2'
releaseImplementation 'com.facebook.flipper:flipper-noop:0.36.0'
releaseImplementation 'com.facebook.flipper:flipper-noop:0.37.0'
}
```
@@ -112,4 +112,4 @@ Finally, you need to add plugins to your Flipper client. Above, we have only add
## Having trouble?
See the [troubleshooting page](troubleshooting.html) for help with known problems.
See the [troubleshooting page](troubleshooting.html) for help with known problems.

View File

@@ -15,7 +15,7 @@ The following configuration assumed CocoaPods 1.9+.
```ruby
project 'MyApp.xcodeproj'
flipperkit_version = '0.36.0'
flipperkit_version = '0.37.0'
target 'MyApp' do
platform :ios, '9.0'
@@ -77,7 +77,7 @@ end
```ruby
project 'MyApp.xcodeproj'
flipperkit_version = '0.36.0'
flipperkit_version = '0.37.0'
target 'MyApp' do
platform :ios, '9.0'

View File

@@ -114,4 +114,4 @@ public class MainApplication extends Application implements ReactApplication {
## Further Steps
To create your own plugins and integrate with Flipper using JavaScript, check out our [writing plugins for React Native](tutorial/react-native) tutorial!
To create your own plugins and integrate with Flipper using JavaScript, check out our [writing plugins for React Native](tutorial/react-native) tutorial!

View File

@@ -16,7 +16,7 @@ Add this code to your `ios/Podfile`:
platform :ios, '9.0'
def flipper_pods()
flipperkit_version = '0.36.0'
flipperkit_version = '0.37.0'
pod 'FlipperKit', '~>' + flipperkit_version, :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutPlugin', '~>' + flipperkit_version, :configuration => 'Debug'
pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version, :configuration => 'Debug'

View File

@@ -28,7 +28,7 @@ gradle configuration:
```groovy
dependencies {
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.36.0'
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.37.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-leakcanary-plugin:0.36.0'
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.37.0'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'
}

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
project 'Tutorial.xcodeproj'
swift_version = "4.1"
flipperkit_version = '0.36.0'
flipperkit_version = '0.37.0'
use_frameworks!
target 'Tutorial' do

View File

@@ -1,7 +1,7 @@
{
"name": "react-native-flipper",
"title": "React Native Flipper Bindings",
"version": "0.36.0",
"version": "0.37.0",
"description": "TODO",
"main": "index.js",
"types": "index.d.ts",