From ee8413beff1fc14cc6cc62884f83bcec6ab6967c Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 5 Mar 2024 14:03:49 +0000 Subject: [PATCH 1/2] v31.5.0-rc.0 --- package.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 1d560ce23..c2c160d87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "31.4.0", + "version": "31.5.0-rc.0", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=18.0.0" @@ -30,8 +30,8 @@ "keywords": [ "matrix-org" ], - "main": "./src/index.ts", - "browser": "./src/browser-index.ts", + "main": "./lib/index.js", + "browser": "./lib/browser-index.js", "matrix_src_main": "./src/index.ts", "matrix_src_browser": "./src/browser-index.ts", "matrix_lib_main": "./lib/index.js", @@ -133,5 +133,6 @@ "outputDirectory": "coverage", "outputName": "jest-sonar-report.xml", "relativePaths": true - } + }, + "typings": "./lib/index.d.ts" } From da3d5c4a436daa5c6cca70f629817d12c9f989b8 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 12 Mar 2024 18:33:38 +0000 Subject: [PATCH 2/2] v31.5.0 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fa65a2bb..1ad9c4ad2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +Changes in [31.5.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v31.5.0) (2024-03-12) +================================================================================================== +## ✨ Features + +* Update MSC2965 OIDC Discovery implementation ([#4064](https://github.com/matrix-org/matrix-js-sdk/pull/4064)). Contributed by @t3chguy. + +## 🐛 Bug Fixes + +* Add basic retry for rust crypto outgoing requests ([#4061](https://github.com/matrix-org/matrix-js-sdk/pull/4061)). Contributed by @BillCarsonFr. + + Changes in [31.4.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v31.4.0) (2024-02-27) ================================================================================================== ## ✨ Features diff --git a/package.json b/package.json index c2c160d87..e1088af62 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "31.5.0-rc.0", + "version": "31.5.0", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=18.0.0"