Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Flipper Release: v0.22.0
Browse files Browse the repository at this point in the history
Summary:
Overall improvements

* Fixed a memory leak caused by promise chaining
* Fixing multi-row selection using shift in tables
* Option to include column names when copying from a table
* Copying table rows which are currently outside the viewport
* Support regex search
* Making client connection more reliable

Plugins

Layout

* fixed a bug in layout search which caused a crash
* Adding accessibilityIdentifier for iOS

Logs

* Debouncing user input in search
* Fixing “stick to bottom” in logs
* Showing timestamp with logs
* Logs for a disconnected device are kept

Network

* Catching malformed URLs in network plugin
* copy full network request and response
* search network request using regex
* Correctly calculate response size

Fresco

* UI fixes in Fresco plugin
* Add missing events
* Add open-source documentation

Crash Reporter

* Account for long crash titles
* Fixing crash notifications
* Fixing display of long stacktraces

Export

* Fix error display

Other Plugins

* Add analytics logging to export
* Fixing UI glitch in Sections plugin

Infrastructure

* Add experimental support for mixed mode with TypeScript
* Upgraded to Flow 0.101.1
* Fix tracking of request/response types between client and device
* Improved iOS simulator compatibility

Reviewed By: jknoxville

Differential Revision: D15963819

fbshipit-source-id: 8af009381c05b9891d46f05a4b8f018754ae6517
  • Loading branch information
passy authored and facebook-github-bot committed Jun 24, 2019
1 parent 136eca4 commit ebe4166
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Flipper.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flipperkit_version = '0.21.1'
flipperkit_version = '0.22.0'
Pod::Spec.new do |spec|
spec.name = 'Flipper'
spec.version = flipperkit_version
Expand Down
2 changes: 1 addition & 1 deletion FlipperKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,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'
yoga_version = '~> 1.14'
yogakit_version = '~> 1.14'
flipperkit_version = '0.21.1'
flipperkit_version = '0.22.0'
Pod::Spec.new do |spec|
spec.name = 'FlipperKit'
spec.version = flipperkit_version
Expand Down
8 changes: 4 additions & 4 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ repositories {
}
dependencies {
debugImplementation 'com.facebook.flipper:flipper:0.21.1'
debugImplementation 'com.facebook.flipper:flipper:0.22.0'
debugImplementation 'com.facebook.soloader:soloader:0.5.1'
releaseImplementation 'com.facebook.flipper:flipper-noop:0.21.1'
releaseImplementation 'com.facebook.flipper:flipper-noop:0.22.0'
}
```

Expand Down Expand Up @@ -108,7 +108,7 @@ We support both Swift and Objective-C for Flipper with CocoaPods as build and di
```ruby
project 'MyApp.xcodeproj'
swift_version = "4.1"
flipperkit_version = '0.21.1'
flipperkit_version = '0.22.0'

target 'MyApp' do
platform :ios, '9.0'
Expand Down Expand Up @@ -140,7 +140,7 @@ end
```ruby
project 'MyApp.xcodeproj'
swift_version = "4.1"
flipperkit_version = '0.21.1'
flipperkit_version = '0.22.0'

target 'MyApp' do
platform :ios, '9.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# in the root directory of this source tree.

# POM publishing constants
VERSION_NAME=0.21.2-SNAPSHOT
VERSION_NAME=0.22.0
GROUP=com.facebook.flipper
POM_URL=https://github.com/facebook/flipper
POM_SCM_URL=https://github.com/facebook/flipper.git
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flipper",
"private": true,
"version": "0.21.1",
"version": "0.22.0",
"versionDate": "2018-4-12",
"description": "Mobile development tool",
"productName": "Flipper",
Expand Down

0 comments on commit ebe4166

Please sign in to comment.