From 20cd25f72608e5b1c5b2c6062578dbdbaf201e8e Mon Sep 17 00:00:00 2001 From: generatedunixname89002005306973 Date: Thu, 28 Jan 2021 06:51:15 -0800 Subject: [PATCH] Flipper Release: v0.73.0 Summary: Releasing version 0.73.0 Reviewed By: nikoant Differential Revision: D26125287 fbshipit-source-id: 7fd00aa679a5ac3d69013d0bdb0cf5d868fd5cc7 --- desktop/package.json | 10 ++++++---- desktop/static/CHANGELOG.md | 5 +++++ docs/getting-started/android-native.mdx | 4 ++-- docs/setup/layout-plugin.mdx | 2 +- docs/setup/leak-canary-plugin.mdx | 2 +- docs/setup/network-plugin.mdx | 2 +- gradle.properties | 2 +- react-native/react-native-flipper/package.json | 2 +- 8 files changed, 18 insertions(+), 11 deletions(-) diff --git a/desktop/package.json b/desktop/package.json index 3b533c2c8..692507067 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,6 +1,6 @@ { "name": "flipper-project", - "version": "0.72.0", + "version": "0.73.0", "description": "Mobile development tool", "productName": "Flipper", "author": { @@ -82,7 +82,9 @@ "sign": null }, "asar": true, - "asarUnpack": ["PortForwardingMacApp.app/**/*"], + "asarUnpack": [ + "PortForwardingMacApp.app/**/*" + ], "fileAssociations": [ { "ext": [ @@ -113,6 +115,7 @@ "node-notifier": "^8.0.1" }, "devDependencies": { + "@adobe/node-fetch-retry": "^1.1.0", "@babel/code-frame": "^7.12.11", "@babel/eslint-parser": "^7.11.5", "@jest-runner/electron": "^3.0.0", @@ -170,6 +173,7 @@ "@typescript-eslint/eslint-plugin": "^4.13.0", "@typescript-eslint/parser": "^4.2.0", "ansi-to-html": "^0.6.3", + "app-builder-lib": "22.9.1", "babel-eslint": "^10.1.0", "chalk": "^4.0.0", "cross-env": "^7.0.2", @@ -177,8 +181,6 @@ "dotenv": "^8.2.0", "electron": "11.1.0", "electron-builder": "22.9.1", - "@adobe/node-fetch-retry": "^1.1.0", - "app-builder-lib": "22.9.1", "eslint": "^7.12.1", "eslint-config-fbjs": "^3.1.1", "eslint-config-prettier": "^6.15.0", diff --git a/desktop/static/CHANGELOG.md b/desktop/static/CHANGELOG.md index 8cad661fb..80fcd0de9 100644 --- a/desktop/static/CHANGELOG.md +++ b/desktop/static/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.73.0 (28/1/2021) + + * [D26072928](https://github.com/facebook/flipper/search?q=D26072928&type=Commits) - [Network] Mock routes can now be imported and exported. Thanks @bizzguy! + + # 0.70.0 (6/1/2021) * [D25466557](https://github.com/facebook/flipper/search?q=D25466557&type=Commits) - [Internal] diff --git a/docs/getting-started/android-native.mdx b/docs/getting-started/android-native.mdx index 6e7573b15..8bf5e95bc 100644 --- a/docs/getting-started/android-native.mdx +++ b/docs/getting-started/android-native.mdx @@ -26,10 +26,10 @@ repositories { } dependencies { - debugImplementation 'com.facebook.flipper:flipper:0.72.0' + debugImplementation 'com.facebook.flipper:flipper:0.73.0' debugImplementation 'com.facebook.soloader:soloader:0.9.0' - releaseImplementation 'com.facebook.flipper:flipper-noop:0.72.0' + releaseImplementation 'com.facebook.flipper:flipper-noop:0.73.0' } ``` diff --git a/docs/setup/layout-plugin.mdx b/docs/setup/layout-plugin.mdx index ad8132b26..dfd322886 100644 --- a/docs/setup/layout-plugin.mdx +++ b/docs/setup/layout-plugin.mdx @@ -31,7 +31,7 @@ gradle configuration: ```groovy dependencies { - debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.72.0' + debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.73.0' debugImplementation 'com.facebook.litho:litho-annotations:0.19.0' // ... } diff --git a/docs/setup/leak-canary-plugin.mdx b/docs/setup/leak-canary-plugin.mdx index 60ebba987..03320b7d3 100644 --- a/docs/setup/leak-canary-plugin.mdx +++ b/docs/setup/leak-canary-plugin.mdx @@ -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.72.0' + debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.73.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.mdx b/docs/setup/network-plugin.mdx index 93b6751be..bdf767b03 100644 --- a/docs/setup/network-plugin.mdx +++ b/docs/setup/network-plugin.mdx @@ -15,7 +15,7 @@ The network plugin is shipped as a separate Maven artifact: ```groovy dependencies { - debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.72.0' + debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.73.0' } ``` diff --git a/gradle.properties b/gradle.properties index 9d0c2fdb2..0dc4cf98e 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.72.1-SNAPSHOT +VERSION_NAME=0.73.0 GROUP=com.facebook.flipper POM_URL=https://github.com/facebook/flipper POM_SCM_URL=https://github.com/facebook/flipper.git diff --git a/react-native/react-native-flipper/package.json b/react-native/react-native-flipper/package.json index 01c532da4..e2b080638 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.72.0", + "version": "0.73.0", "description": "Flipper bindings for React Native", "main": "index.js", "types": "index.d.ts",