mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Merge branch 'master' into develop
This commit is contained in:
commit
f8cdd51fe3
3 changed files with 60 additions and 5 deletions
54
CHANGELOG.md
54
CHANGELOG.md
|
@ -1,3 +1,57 @@
|
|||
Changes in [3.1.0](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v3.1.0) (2020-08-05)
|
||||
===================================================================================================
|
||||
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v3.1.0-rc.1...v3.1.0)
|
||||
|
||||
* Upgrade JS SDK to 8.0.1
|
||||
* Fix room list scrolling in Safari
|
||||
[\#5091](https://github.com/matrix-org/matrix-react-sdk/pull/5091)
|
||||
* Add null guard in InviteDialog
|
||||
[\#5084](https://github.com/matrix-org/matrix-react-sdk/pull/5084)
|
||||
* Add null guard in InviteDialog
|
||||
[\#5082](https://github.com/matrix-org/matrix-react-sdk/pull/5082)
|
||||
* Handle tag changes in sticky room updates
|
||||
[\#5080](https://github.com/matrix-org/matrix-react-sdk/pull/5080)
|
||||
|
||||
Changes in [3.1.0-rc.1](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v3.1.0-rc.1) (2020-07-31)
|
||||
=============================================================================================================
|
||||
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v3.0.0...v3.1.0-rc.1)
|
||||
|
||||
* Upgrade JS SDK to 8.0.1-rc.1
|
||||
* Update from Weblate
|
||||
[\#5071](https://github.com/matrix-org/matrix-react-sdk/pull/5071)
|
||||
* Add local echo for notifications in the new room list
|
||||
[\#5065](https://github.com/matrix-org/matrix-react-sdk/pull/5065)
|
||||
* Fix various small regressions in the room list's behaviour
|
||||
[\#5070](https://github.com/matrix-org/matrix-react-sdk/pull/5070)
|
||||
* Remove redundant lint dependencies
|
||||
[\#5059](https://github.com/matrix-org/matrix-react-sdk/pull/5059)
|
||||
* Fix key backup warning on soft logout page
|
||||
[\#5069](https://github.com/matrix-org/matrix-react-sdk/pull/5069)
|
||||
* Bump elliptic from 6.5.2 to 6.5.3
|
||||
[\#5066](https://github.com/matrix-org/matrix-react-sdk/pull/5066)
|
||||
* Fix crash on logging in again after soft logout
|
||||
[\#5068](https://github.com/matrix-org/matrix-react-sdk/pull/5068)
|
||||
* Convert right_panel to TS
|
||||
[\#5036](https://github.com/matrix-org/matrix-react-sdk/pull/5036)
|
||||
* Remove all unreferenced images
|
||||
[\#5063](https://github.com/matrix-org/matrix-react-sdk/pull/5063)
|
||||
* Provide nicer error for no known servers error when accepting an invite
|
||||
[\#5061](https://github.com/matrix-org/matrix-react-sdk/pull/5061)
|
||||
* add logging for keytar/pickle key
|
||||
[\#5057](https://github.com/matrix-org/matrix-react-sdk/pull/5057)
|
||||
* Don't speak the outgoing message if it is in the Sending state.
|
||||
[\#4075](https://github.com/matrix-org/matrix-react-sdk/pull/4075)
|
||||
* Remove poorly contrasted "dark style" heading in Room Preview Bar
|
||||
[\#5052](https://github.com/matrix-org/matrix-react-sdk/pull/5052)
|
||||
* Fix Query Matcher regression with certain unhomoglyph'd characters
|
||||
[\#5050](https://github.com/matrix-org/matrix-react-sdk/pull/5050)
|
||||
* Fix handlebar interaction
|
||||
[\#4989](https://github.com/matrix-org/matrix-react-sdk/pull/4989)
|
||||
* Minor improvements to filtering performance
|
||||
[\#5054](https://github.com/matrix-org/matrix-react-sdk/pull/5054)
|
||||
* Fix TextWithTooltip "leaking" tooltip wrappers
|
||||
[\#5055](https://github.com/matrix-org/matrix-react-sdk/pull/5055)
|
||||
|
||||
Changes in [3.0.0](https://github.com/matrix-org/matrix-react-sdk/releases/tag/v3.0.0) (2020-07-27)
|
||||
===================================================================================================
|
||||
[Full Changelog](https://github.com/matrix-org/matrix-react-sdk/compare/v2.10.1...v3.0.0)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "matrix-react-sdk",
|
||||
"version": "3.0.0",
|
||||
"version": "3.1.0",
|
||||
"description": "SDK for matrix.org using React",
|
||||
"author": "matrix.org",
|
||||
"repository": {
|
||||
|
@ -79,7 +79,7 @@
|
|||
"is-ip": "^2.0.0",
|
||||
"linkifyjs": "^2.1.9",
|
||||
"lodash": "^4.17.19",
|
||||
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
|
||||
"matrix-js-sdk": "8.0.1",
|
||||
"minimist": "^1.2.5",
|
||||
"pako": "^1.0.11",
|
||||
"parse5": "^5.1.1",
|
||||
|
|
|
@ -6470,9 +6470,10 @@ mathml-tag-names@^2.0.1:
|
|||
resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3"
|
||||
integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==
|
||||
|
||||
"matrix-js-sdk@github:matrix-org/matrix-js-sdk#develop":
|
||||
version "8.0.0"
|
||||
resolved "https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/c669382e12c8cd1d7d538421dfad4f50812af44d"
|
||||
matrix-js-sdk@8.0.1:
|
||||
version "8.0.1"
|
||||
resolved "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-8.0.1.tgz#dafd41023671249c01e4278e7103c93200b34e5e"
|
||||
integrity sha512-DT2YjWi8l2eHyNTKZOhBkN/EakIMDDEglSCg+RWY4QzFaXYlSwfwfzzCujjtq1hxVSKim8NC7KqxgNetOiBegA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.8.3"
|
||||
another-json "^0.2.0"
|
||||
|
|
Loading…
Reference in a new issue