diff --git a/CHANGELOG.md b/CHANGELOG.md index c9124fa3b..26ccb8d00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Flipper.podspec b/Flipper.podspec index 49078d3e1..ffb4aa2aa 100644 --- a/Flipper.podspec +++ b/Flipper.podspec @@ -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 diff --git a/FlipperKit.podspec b/FlipperKit.podspec index f1dc65293..5ee88559c 100644 --- a/FlipperKit.podspec +++ b/FlipperKit.podspec @@ -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 diff --git a/desktop/app/package.json b/desktop/app/package.json index 1fb659a35..dcfa4422e 100644 --- a/desktop/app/package.json +++ b/desktop/app/package.json @@ -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", diff --git a/desktop/babel-transformer/package.json b/desktop/babel-transformer/package.json index a8d9abe6b..957900baf 100644 --- a/desktop/babel-transformer/package.json +++ b/desktop/babel-transformer/package.json @@ -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", diff --git a/desktop/doctor/package.json b/desktop/doctor/package.json index 5f1aade57..3fc715a0f 100644 --- a/desktop/doctor/package.json +++ b/desktop/doctor/package.json @@ -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", diff --git a/desktop/headless-tests/package.json b/desktop/headless-tests/package.json index 647dc80d6..1c847059b 100644 --- a/desktop/headless-tests/package.json +++ b/desktop/headless-tests/package.json @@ -1,6 +1,6 @@ { "name": "flipper-headless-tests", - "version": "0.36.0", + "version": "0.37.0", "main": "index.js", "private": true, "scripts": { diff --git a/desktop/package.json b/desktop/package.json index ad413e336..c04c94df1 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,6 +1,6 @@ { "name": "flipper-project", - "version": "0.36.0", + "version": "0.37.0", "description": "Mobile development tool", "productName": "Flipper", "author": "Facebook Inc", diff --git a/desktop/pkg/package.json b/desktop/pkg/package.json index e1055cc38..b2df4ef4b 100644 --- a/desktop/pkg/package.json +++ b/desktop/pkg/package.json @@ -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" diff --git a/desktop/static/package.json b/desktop/static/package.json index 30cc38c84..bc0a4e040 100644 --- a/desktop/static/package.json +++ b/desktop/static/package.json @@ -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", diff --git a/docs/getting-started/android-native.md b/docs/getting-started/android-native.md index 9c44a08b2..92c5b7fc0 100644 --- a/docs/getting-started/android-native.md +++ b/docs/getting-started/android-native.md @@ -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. \ No newline at end of file +See the [troubleshooting page](troubleshooting.html) for help with known problems. diff --git a/docs/getting-started/ios-native.md b/docs/getting-started/ios-native.md index a889286da..53e317ae2 100644 --- a/docs/getting-started/ios-native.md +++ b/docs/getting-started/ios-native.md @@ -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' diff --git a/docs/getting-started/react-native-android.md b/docs/getting-started/react-native-android.md index f81099f39..a1501d07d 100644 --- a/docs/getting-started/react-native-android.md +++ b/docs/getting-started/react-native-android.md @@ -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! \ No newline at end of file +To create your own plugins and integrate with Flipper using JavaScript, check out our [writing plugins for React Native](tutorial/react-native) tutorial! diff --git a/docs/getting-started/react-native-ios.md b/docs/getting-started/react-native-ios.md index 4cbfdda25..bd9b7cc59 100644 --- a/docs/getting-started/react-native-ios.md +++ b/docs/getting-started/react-native-ios.md @@ -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' diff --git a/docs/setup/layout-plugin.md b/docs/setup/layout-plugin.md index 6cf5d0dc9..edc5900e0 100644 --- a/docs/setup/layout-plugin.md +++ b/docs/setup/layout-plugin.md @@ -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' // ... } diff --git a/docs/setup/leak-canary-plugin.md b/docs/setup/leak-canary-plugin.md index 12fdbb5b4..b0b987867 100644 --- a/docs/setup/leak-canary-plugin.md +++ b/docs/setup/leak-canary-plugin.md @@ -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' } diff --git a/docs/setup/network-plugin.md b/docs/setup/network-plugin.md index b727a46ea..42f6fe437 100644 --- a/docs/setup/network-plugin.md +++ b/docs/setup/network-plugin.md @@ -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' } ``` diff --git a/gradle.properties b/gradle.properties index 1af8b506d..e3f330872 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/iOS/Tutorial/Podfile b/iOS/Tutorial/Podfile index 096b3b849..5f5955709 100644 --- a/iOS/Tutorial/Podfile +++ b/iOS/Tutorial/Podfile @@ -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 diff --git a/react-native/react-native-flipper/package.json b/react-native/react-native-flipper/package.json index d07d22ac8..231fccbb3 100644 --- a/react-native/react-native-flipper/package.json +++ b/react-native/react-native-flipper/package.json @@ -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",