Flipper Release: v0.73.0
Summary: Releasing version 0.73.0 Reviewed By: nikoant Differential Revision: D26125287 fbshipit-source-id: 7fd00aa679a5ac3d69013d0bdb0cf5d868fd5cc7
This commit is contained in:
committed by
Facebook GitHub Bot
parent
97256318fa
commit
20cd25f726
@@ -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",
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@@ -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'
|
||||
// ...
|
||||
}
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user