Skip to content

Tags: Inconnu08/flutter

Tags

v1.9.1+hotfix.1

Toggle v1.9.1+hotfix.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[CFE/VM] Fix merge/typo for bump to kernel version 29 (flutter#39783)

Before this fix, trying to run a dill with version 28 (with named types
in it) on a new VM would crash.

Change-Id: I47851c236332aa14511f595b4b129e6354b395a7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/113689
Commit-Queue: Jens Johansen <jensj@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
Auto-Submit: Jens Johansen <jensj@google.com>
Reviewed-by: Johnni Winther <johnniwinther@google.com>

v1.9.7

Toggle v1.9.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
update packages (flutter#39429)

v1.9.6

Toggle v1.9.6's commit message
respect reversed scroll views (flutter#39195)

This PR makes Scrollable scroll in correct direction when reverse: true on desktop and web

v1.9.5

Toggle v1.9.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Normalize assert checking of clipBehavior (flutter#38568)

I noticed that we were pretty inconsistent with the way that we checked the value of clipBehavior in the framework, so I normalized the usages and updated docs where necessary.

This is a breaking change if you used to pass null explicitly to FlatButton, OutlineButton or RaisedButton constructors, expecting to get Clip.none. It will now assert if you do that. Existing implementations that pass null implicitly by not specifying clipBehavior won't need to change their call sites. It always implicitly defaulted to Clip.none before, and it will continue to do that, it's only places where it was explicitly set to null in order to get the implicit default that it will fail.

v1.9.4

Toggle v1.9.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Correct InheritedTheme.captureAll() for multiple theme ancestors of t…

…he same type (flutter#39089)

v1.9.3

Toggle v1.9.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert "Automatic focus highlight mode for FocusManager (flutter#37825)…

…" (flutter#38866)

This reverts commit a11d731 because of a regression in
flutter_gallery_ios32__transition_perf's 90th_percentile_frame_build_time_millis.

Fixes flutter#38860.

v1.9.2

Toggle v1.9.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Roll engine 21ae926..3e10d92 (7 commits) (flutter#38855)

git@github.com:flutter/engine.git/compare/21ae92651a38...3e10d92

git log 21ae926..3e10d92 --no-merges --oneline
2019-08-19 bkonyi@google.com Roll src/third_party/dart 0e201edeeb..9f13d07670 (27 commits)
2019-08-19 matthew-carroll@users.noreply.github.com Notify framework to clear input connection when app is backgrounded (flutter#35054) (flutter/engine#9498)
2019-08-19 dnfield@google.com Re-enable firebase test and don't use google login (flutter/engine#11228)
2019-08-19 ariaye@google.com Update tflite_native and language_model revisions to match the Dart SDK (flutter/engine#11230)
2019-08-19 skia-flutter-autoroll@skia.org Roll src/third_party/skia f8221786d088..8566dda51b42 (4 commits) (flutter/engine#11220)
2019-08-19 chinmaygarde@google.com Update metal layer drawable size on relayout. (flutter/engine#11224)
2019-08-19 dnfield@google.com Make firebase testlab always pass (flutter/engine#11226)

The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff (stuartmorgan@google.com), and stop
the roller if necessary.

v1.9.1

Toggle v1.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Roll engine 3dc233f..5540684 (5 commits) (flutter#38756)

git@github.com:flutter/engine.git/compare/3dc233f04e8e...5540684

git log 3dc233f..5540684 --no-merges --oneline
2019-08-17 skia-flutter-autoroll@skia.org Roll src/third_party/skia 9318a6cfbcdd..4b567cd679ab (1 commits) (flutter/engine#11077)
2019-08-17 iska.kaushik@gmail.com [dynamic_thread_merging] Resubmit only on the frame where the merge (flutter/engine#11075)
2019-08-17 skia-flutter-autoroll@skia.org Roll fuchsia/clang/mac-amd64 from VdFWD... to 4uAyd... (flutter/engine#11074)
2019-08-17 skia-flutter-autoroll@skia.org Roll src/third_party/skia a0c9d43c2075..9318a6cfbcdd (1 commits) (flutter/engine#11073)
2019-08-17 bkonyi@google.com Roll src/third_party/dart beee442625..79e6c74337 (8 commits)

The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md

If the roll is causing failures, please contact the current sheriff (stuartmorgan@google.com), and stop
the roller if necessary.

v1.9.0

Toggle v1.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[linux] Receives the unmodified characters obtained from GLFW (flutte…

…r#34752)

v1.8.4

Toggle v1.8.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Hide text selection handle after entering text (flutter#37436)

The text caret wasn't being hidden after entering text, this fixes it.