From 2cda6655d73e2c0aa2f765cefeb95495858f4d02 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 3 Oct 2023 11:08:31 +0100 Subject: [PATCH 1/9] Prepare changelog for v29.0.0-rc.1 --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee00f1795..801ce1d8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +Changes in [29.0.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v29.0.0-rc.1) (2023-10-03) +============================================================================================================ + +## 🚨 BREAKING CHANGES + * Remove browserify builds ([\#3759](https://github.com/matrix-org/matrix-js-sdk/pull/3759)). + +## ✨ Features + * Export AutoDiscoveryError and fix type of ALL_ERRORS ([\#3768](https://github.com/matrix-org/matrix-js-sdk/pull/3768)). + * Support for stable MSC3882 get_login_token ([\#3416](https://github.com/matrix-org/matrix-js-sdk/pull/3416)). Contributed by @hughns. + * Remove IsUserMention and IsRoomMention from DEFAULT_OVERRIDE_RULES ([\#3752](https://github.com/matrix-org/matrix-js-sdk/pull/3752)). Contributed by @kerryarchibald. + +## 🐛 Bug Fixes + * Fix a case where joinRoom creates a duplicate Room object ([\#3747](https://github.com/matrix-org/matrix-js-sdk/pull/3747)). + * Add membershipID to call memberships ([\#3745](https://github.com/matrix-org/matrix-js-sdk/pull/3745)). + * Fix the warning for messages from unsigned devices ([\#3743](https://github.com/matrix-org/matrix-js-sdk/pull/3743)). + * Stop keep alive, when sync was stoped ([\#3720](https://github.com/matrix-org/matrix-js-sdk/pull/3720)). Contributed by @finsterwalder. + Changes in [28.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v28.2.0) (2023-09-26) ================================================================================================== From f01037fe0dbbde4bea0d595a66b6361170ab1e15 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 3 Oct 2023 11:08:34 +0100 Subject: [PATCH 2/9] v29.0.0-rc.1 --- package.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index b82abe542..f7c16b6c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "28.2.0", + "version": "29.0.0-rc.1", "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", @@ -132,5 +132,6 @@ "outputDirectory": "coverage", "outputName": "jest-sonar-report.xml", "relativePaths": true - } + }, + "typings": "./lib/index.d.ts" } From 5f0ada957831a15ab1d4943cd0cab6e59c728279 Mon Sep 17 00:00:00 2001 From: Andy Balaam Date: Tue, 3 Oct 2023 11:22:09 +0100 Subject: [PATCH 3/9] Remove the dist script since we no longer have a browserify build --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index f7c16b6c2..ecb7b680c 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,7 @@ "scripts": { "prepublishOnly": "yarn build", "start": "echo THIS IS FOR LEGACY PURPOSES ONLY. && babel src -w -s -d lib --verbose --extensions \".ts,.js\"", - "dist": "echo 'This is for the release script so it can make assets (browser bundle).' && yarn build", - "clean": "rimraf lib dist", + "clean": "rimraf lib", "build": "yarn build:dev", "build:dev": "yarn clean && git rev-parse HEAD > git-revision.txt && yarn build:compile && yarn build:types", "build:types": "tsc -p tsconfig-build.json --emitDeclarationOnly", @@ -40,7 +39,6 @@ "author": "matrix.org", "license": "Apache-2.0", "files": [ - "dist", "lib", "src", "git-revision.txt", From 14aafb797795593262e981df10124317315eeaa4 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 3 Oct 2023 11:39:03 +0100 Subject: [PATCH 4/9] Revert "Prepare changelog for v29.0.0-rc.1" This reverts commit 2cda6655d73e2c0aa2f765cefeb95495858f4d02. --- CHANGELOG.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 801ce1d8c..ee00f1795 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,3 @@ -Changes in [29.0.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v29.0.0-rc.1) (2023-10-03) -============================================================================================================ - -## 🚨 BREAKING CHANGES - * Remove browserify builds ([\#3759](https://github.com/matrix-org/matrix-js-sdk/pull/3759)). - -## ✨ Features - * Export AutoDiscoveryError and fix type of ALL_ERRORS ([\#3768](https://github.com/matrix-org/matrix-js-sdk/pull/3768)). - * Support for stable MSC3882 get_login_token ([\#3416](https://github.com/matrix-org/matrix-js-sdk/pull/3416)). Contributed by @hughns. - * Remove IsUserMention and IsRoomMention from DEFAULT_OVERRIDE_RULES ([\#3752](https://github.com/matrix-org/matrix-js-sdk/pull/3752)). Contributed by @kerryarchibald. - -## 🐛 Bug Fixes - * Fix a case where joinRoom creates a duplicate Room object ([\#3747](https://github.com/matrix-org/matrix-js-sdk/pull/3747)). - * Add membershipID to call memberships ([\#3745](https://github.com/matrix-org/matrix-js-sdk/pull/3745)). - * Fix the warning for messages from unsigned devices ([\#3743](https://github.com/matrix-org/matrix-js-sdk/pull/3743)). - * Stop keep alive, when sync was stoped ([\#3720](https://github.com/matrix-org/matrix-js-sdk/pull/3720)). Contributed by @finsterwalder. - Changes in [28.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v28.2.0) (2023-09-26) ================================================================================================== From 1457ab0cf480cfbe0e06a506be4c791fb7fbc43c Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 3 Oct 2023 11:39:12 +0100 Subject: [PATCH 5/9] Revert "v29.0.0-rc.1" This reverts commit f01037fe0dbbde4bea0d595a66b6361170ab1e15. --- package.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index ecb7b680c..b92cc9d65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "29.0.0-rc.1", + "version": "28.2.0", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=18.0.0" @@ -29,8 +29,8 @@ "keywords": [ "matrix-org" ], - "main": "./lib/index.js", - "browser": "./lib/browser-index.js", + "main": "./src/index.ts", + "browser": "./src/browser-index.ts", "matrix_src_main": "./src/index.ts", "matrix_src_browser": "./src/browser-index.ts", "matrix_lib_main": "./lib/index.js", @@ -130,6 +130,5 @@ "outputDirectory": "coverage", "outputName": "jest-sonar-report.xml", "relativePaths": true - }, - "typings": "./lib/index.d.ts" + } } From 75e710d93e2976bd24e9bceeba93e058806c265c Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 3 Oct 2023 11:39:58 +0100 Subject: [PATCH 6/9] Prepare changelog for v29.0.0-rc.1 --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee00f1795..801ce1d8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +Changes in [29.0.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v29.0.0-rc.1) (2023-10-03) +============================================================================================================ + +## 🚨 BREAKING CHANGES + * Remove browserify builds ([\#3759](https://github.com/matrix-org/matrix-js-sdk/pull/3759)). + +## ✨ Features + * Export AutoDiscoveryError and fix type of ALL_ERRORS ([\#3768](https://github.com/matrix-org/matrix-js-sdk/pull/3768)). + * Support for stable MSC3882 get_login_token ([\#3416](https://github.com/matrix-org/matrix-js-sdk/pull/3416)). Contributed by @hughns. + * Remove IsUserMention and IsRoomMention from DEFAULT_OVERRIDE_RULES ([\#3752](https://github.com/matrix-org/matrix-js-sdk/pull/3752)). Contributed by @kerryarchibald. + +## 🐛 Bug Fixes + * Fix a case where joinRoom creates a duplicate Room object ([\#3747](https://github.com/matrix-org/matrix-js-sdk/pull/3747)). + * Add membershipID to call memberships ([\#3745](https://github.com/matrix-org/matrix-js-sdk/pull/3745)). + * Fix the warning for messages from unsigned devices ([\#3743](https://github.com/matrix-org/matrix-js-sdk/pull/3743)). + * Stop keep alive, when sync was stoped ([\#3720](https://github.com/matrix-org/matrix-js-sdk/pull/3720)). Contributed by @finsterwalder. + Changes in [28.2.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v28.2.0) (2023-09-26) ================================================================================================== From 53a72df01ba684340f83a0d68ab5c29248a8e9d4 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 3 Oct 2023 11:40:01 +0100 Subject: [PATCH 7/9] v29.0.0-rc.1 --- package.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index b92cc9d65..ecb7b680c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "28.2.0", + "version": "29.0.0-rc.1", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=18.0.0" @@ -29,8 +29,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", @@ -130,5 +130,6 @@ "outputDirectory": "coverage", "outputName": "jest-sonar-report.xml", "relativePaths": true - } + }, + "typings": "./lib/index.d.ts" } From 6c8e3d0707d98f59cf1e604a1e6f9454a9ad7d68 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 10 Oct 2023 09:13:01 +0100 Subject: [PATCH 8/9] Prepare changelog for v29.0.0 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 801ce1d8c..21ebc1a86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -Changes in [29.0.0-rc.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v29.0.0-rc.1) (2023-10-03) -============================================================================================================ +Changes in [29.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v29.0.0) (2023-10-10) +================================================================================================== ## 🚨 BREAKING CHANGES * Remove browserify builds ([\#3759](https://github.com/matrix-org/matrix-js-sdk/pull/3759)). From 25e5d79cf63d461deaf6fc0efd241019c1466599 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 10 Oct 2023 09:13:04 +0100 Subject: [PATCH 9/9] v29.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ecb7b680c..f975e5765 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "29.0.0-rc.1", + "version": "29.0.0", "description": "Matrix Client-Server SDK for Javascript", "engines": { "node": ">=18.0.0"