From a1172eec2e7c9ba2b87deda8454c0d88f277b901 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Mon, 14 Sep 2020 18:39:26 +0100 Subject: [PATCH] v2.0.0-rc1 --- CHANGELOG.md | 55 +++++++++++++++++++++++++++++++++++++++++ changelog.d/184.bugfix | 1 - changelog.d/185.misc | 1 - changelog.d/186.misc | 1 - changelog.d/187.misc | 1 - changelog.d/188.bugfix | 1 - changelog.d/189.misc | 1 - changelog.d/190.misc | 1 - changelog.d/191.bugfix | 1 - changelog.d/194.feature | 1 - changelog.d/195.misc | 1 - changelog.d/197.misc | 1 - changelog.d/199.feature | 1 - changelog.d/200.bugfix | 1 - changelog.d/201.bugfix | 1 - changelog.d/202.misc | 1 - changelog.d/203.misc | 1 - changelog.d/204.misc | 1 - changelog.d/205.misc | 1 - changelog.d/206.misc | 1 - changelog.d/207.feature | 2 -- changelog.d/208.misc | 1 - changelog.d/209.misc | 1 - changelog.d/210.misc | 1 - changelog.d/211.misc | 1 - changelog.d/212.misc | 1 - changelog.d/213.misc | 1 - changelog.d/216.feature | 1 - changelog.d/217.feature | 1 - changelog.d/218.misc | 1 - changelog.d/219.misc | 1 - changelog.d/224.misc | 2 -- changelog.d/225.misc | 2 -- changelog.d/226.misc | 1 - changelog.d/227.feature | 1 - package-lock.json | 29 ++++++++-------------- package.json | 2 +- 37 files changed, 66 insertions(+), 57 deletions(-) delete mode 100644 changelog.d/184.bugfix delete mode 100644 changelog.d/185.misc delete mode 100644 changelog.d/186.misc delete mode 100644 changelog.d/187.misc delete mode 100644 changelog.d/188.bugfix delete mode 100644 changelog.d/189.misc delete mode 100644 changelog.d/190.misc delete mode 100644 changelog.d/191.bugfix delete mode 100644 changelog.d/194.feature delete mode 100644 changelog.d/195.misc delete mode 100644 changelog.d/197.misc delete mode 100644 changelog.d/199.feature delete mode 100644 changelog.d/200.bugfix delete mode 100644 changelog.d/201.bugfix delete mode 100644 changelog.d/202.misc delete mode 100644 changelog.d/203.misc delete mode 100644 changelog.d/204.misc delete mode 100644 changelog.d/205.misc delete mode 100644 changelog.d/206.misc delete mode 100644 changelog.d/207.feature delete mode 100644 changelog.d/208.misc delete mode 100644 changelog.d/209.misc delete mode 100644 changelog.d/210.misc delete mode 100644 changelog.d/211.misc delete mode 100644 changelog.d/212.misc delete mode 100644 changelog.d/213.misc delete mode 100644 changelog.d/216.feature delete mode 100644 changelog.d/217.feature delete mode 100644 changelog.d/218.misc delete mode 100644 changelog.d/219.misc delete mode 100644 changelog.d/224.misc delete mode 100644 changelog.d/225.misc delete mode 100644 changelog.d/226.misc delete mode 100644 changelog.d/227.feature diff --git a/CHANGELOG.md b/CHANGELOG.md index bbba070f..9bb7b5fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,58 @@ + 2.0.0-rc1 (2020-09-14) +======================= + +Features +-------- + +- Bump matrix-js-sdk to 8.0.1 ([\#194](https://github.com/matrix-org/matrix-appservice-bridge/issues/194)) +- Use Typedoc over JSDoc for hosted documentation ([\#199](https://github.com/matrix-org/matrix-appservice-bridge/issues/199)) +- The bridge can now optionally reload the config file on a `SIGHUP` signal. Developers should define the `onConfigChanged` callback + when constructing `Cli` to make use of this feature. ([\#207](https://github.com/matrix-org/matrix-appservice-bridge/issues/207)) +- **Breaking**: Remove Bluebird Promise support. Promises returned by the library will now be native. ([\#216](https://github.com/matrix-org/matrix-appservice-bridge/issues/216)) +- Make url parameter optional when generating registration. ([\#217](https://github.com/matrix-org/matrix-appservice-bridge/issues/217)) +- Add `Bridge.close` method to close the appservice ([\#227](https://github.com/matrix-org/matrix-appservice-bridge/issues/227)) + + +Bugfixes +-------- + +- Refactor RoomLinkValidator to not hastily approve a link if one user is exempt ([\#184](https://github.com/matrix-org/matrix-appservice-bridge/issues/184)) +- Fix bluebird defer warnings by using our own defer implementation. ([\#188](https://github.com/matrix-org/matrix-appservice-bridge/issues/188)) +- Bridge.run() now throws if it fails to listen to a port instead of creating a floating promise ([\#191](https://github.com/matrix-org/matrix-appservice-bridge/issues/191)) +- Fixed some broken typings and defer failures ([\#200](https://github.com/matrix-org/matrix-appservice-bridge/issues/200)) +- Fix issue where providing a custom Registry to getPrometheusMetrics would cause /metrics to emit no response ([\#201](https://github.com/matrix-org/matrix-appservice-bridge/issues/201)) + + +Internal Changes +---------------- + +- Convert intent.js to TypeScript ([\#185](https://github.com/matrix-org/matrix-appservice-bridge/issues/185)) +- Convert `ClientFactory` to Typescript ([\#186](https://github.com/matrix-org/matrix-appservice-bridge/issues/186)) +- Linter warnings no longer fail the linter, and `no-explicit-any` is a warning. ([\#187](https://github.com/matrix-org/matrix-appservice-bridge/issues/187)) +- Port RequestFactory and Request to Typescript ([\#189](https://github.com/matrix-org/matrix-appservice-bridge/issues/189)) +- Remove some bluebird imports and use async/await in some tests ([\#190](https://github.com/matrix-org/matrix-appservice-bridge/issues/190)) +- Convert Cli to Typescript ([\#195](https://github.com/matrix-org/matrix-appservice-bridge/issues/195)) +- Remove `request` dependency ([\#197](https://github.com/matrix-org/matrix-appservice-bridge/issues/197)) +- Typescriptify models/* ([\#202](https://github.com/matrix-org/matrix-appservice-bridge/issues/202)) +- Typescriptify MembershipCache ([\#203](https://github.com/matrix-org/matrix-appservice-bridge/issues/203)) +- Typescriptify ClientRequestCache ([\#204](https://github.com/matrix-org/matrix-appservice-bridge/issues/204)) +- Port Logging to Typescript. This change makes `winston`, `winston-daily-rotate-file` and `chalk` a required dependency. ([\#205](https://github.com/matrix-org/matrix-appservice-bridge/issues/205)) +- Typescriptify ConfigValidator ([\#206](https://github.com/matrix-org/matrix-appservice-bridge/issues/206)) +- **Breaking**: Typescriptify the room, user and event stores. The stores will now return pure Promises (not Bluebird), which means code that relys on Bluebird features will **break**. ([\#208](https://github.com/matrix-org/matrix-appservice-bridge/issues/208)) +- Port RoomUpgradeHandler to Typescript ([\#209](https://github.com/matrix-org/matrix-appservice-bridge/issues/209)) +- Typescriptify BridgeContext ([\#210](https://github.com/matrix-org/matrix-appservice-bridge/issues/210)) +- Typescriptify bridge errors. The `wrap` function has been renamed to `wrapError`. ([\#211](https://github.com/matrix-org/matrix-appservice-bridge/issues/211)) +- Typescriptify AppserviceBot ([\#212](https://github.com/matrix-org/matrix-appservice-bridge/issues/212)) +- Port the `Bridge` object to Typescript and remove javascript linting ([\#213](https://github.com/matrix-org/matrix-appservice-bridge/issues/213)) +- Implement tweaks to typings to support existing bridges ([\#218](https://github.com/matrix-org/matrix-appservice-bridge/issues/218)) +- Upgrade internal tooling to use TypeScript 4 ([\#219](https://github.com/matrix-org/matrix-appservice-bridge/issues/219)) +- Types: Make some options of Cli optional + Small corrections to HOWTO.md ([\#224](https://github.com/matrix-org/matrix-appservice-bridge/issues/224)) +- Types: Make some options of Bridge optional + Add a project example: slack-starter ([\#225](https://github.com/matrix-org/matrix-appservice-bridge/issues/225)) +- Upgrade dependency: matrix-appservice ([\#226](https://github.com/matrix-org/matrix-appservice-bridge/issues/226)) + + 1.13.2 (2020-07-24) ==================== diff --git a/changelog.d/184.bugfix b/changelog.d/184.bugfix deleted file mode 100644 index e093a2d2..00000000 --- a/changelog.d/184.bugfix +++ /dev/null @@ -1 +0,0 @@ -Refactor RoomLinkValidator to not hastily approve a link if one user is exempt \ No newline at end of file diff --git a/changelog.d/185.misc b/changelog.d/185.misc deleted file mode 100644 index fd713d1f..00000000 --- a/changelog.d/185.misc +++ /dev/null @@ -1 +0,0 @@ -Convert intent.js to TypeScript \ No newline at end of file diff --git a/changelog.d/186.misc b/changelog.d/186.misc deleted file mode 100644 index 7d2c557c..00000000 --- a/changelog.d/186.misc +++ /dev/null @@ -1 +0,0 @@ -Convert `ClientFactory` to Typescript \ No newline at end of file diff --git a/changelog.d/187.misc b/changelog.d/187.misc deleted file mode 100644 index cab39355..00000000 --- a/changelog.d/187.misc +++ /dev/null @@ -1 +0,0 @@ -Linter warnings no longer fail the linter, and `no-explicit-any` is a warning. \ No newline at end of file diff --git a/changelog.d/188.bugfix b/changelog.d/188.bugfix deleted file mode 100644 index ada94a9e..00000000 --- a/changelog.d/188.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix bluebird defer warnings by using our own defer implementation. \ No newline at end of file diff --git a/changelog.d/189.misc b/changelog.d/189.misc deleted file mode 100644 index 56583557..00000000 --- a/changelog.d/189.misc +++ /dev/null @@ -1 +0,0 @@ -Port RequestFactory and Request to Typescript \ No newline at end of file diff --git a/changelog.d/190.misc b/changelog.d/190.misc deleted file mode 100644 index 70ec3f6f..00000000 --- a/changelog.d/190.misc +++ /dev/null @@ -1 +0,0 @@ -Remove some bluebird imports and use async/await in some tests \ No newline at end of file diff --git a/changelog.d/191.bugfix b/changelog.d/191.bugfix deleted file mode 100644 index 3d9e5261..00000000 --- a/changelog.d/191.bugfix +++ /dev/null @@ -1 +0,0 @@ -Bridge.run() now throws if it fails to listen to a port instead of creating a floating promise \ No newline at end of file diff --git a/changelog.d/194.feature b/changelog.d/194.feature deleted file mode 100644 index 331e3765..00000000 --- a/changelog.d/194.feature +++ /dev/null @@ -1 +0,0 @@ -Bump matrix-js-sdk to 8.0.1 \ No newline at end of file diff --git a/changelog.d/195.misc b/changelog.d/195.misc deleted file mode 100644 index 07be91d2..00000000 --- a/changelog.d/195.misc +++ /dev/null @@ -1 +0,0 @@ -Convert Cli to Typescript \ No newline at end of file diff --git a/changelog.d/197.misc b/changelog.d/197.misc deleted file mode 100644 index 3ce1c305..00000000 --- a/changelog.d/197.misc +++ /dev/null @@ -1 +0,0 @@ -Remove `request` dependency \ No newline at end of file diff --git a/changelog.d/199.feature b/changelog.d/199.feature deleted file mode 100644 index 23f7e116..00000000 --- a/changelog.d/199.feature +++ /dev/null @@ -1 +0,0 @@ -Use Typedoc over JSDoc for hosted documentation \ No newline at end of file diff --git a/changelog.d/200.bugfix b/changelog.d/200.bugfix deleted file mode 100644 index 397671d6..00000000 --- a/changelog.d/200.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed some broken typings and defer failures \ No newline at end of file diff --git a/changelog.d/201.bugfix b/changelog.d/201.bugfix deleted file mode 100644 index 2230cd58..00000000 --- a/changelog.d/201.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix issue where providing a custom Registry to getPrometheusMetrics would cause /metrics to emit no response \ No newline at end of file diff --git a/changelog.d/202.misc b/changelog.d/202.misc deleted file mode 100644 index 9f01961d..00000000 --- a/changelog.d/202.misc +++ /dev/null @@ -1 +0,0 @@ -Typescriptify models/* \ No newline at end of file diff --git a/changelog.d/203.misc b/changelog.d/203.misc deleted file mode 100644 index 3b7bf3bd..00000000 --- a/changelog.d/203.misc +++ /dev/null @@ -1 +0,0 @@ -Typescriptify MembershipCache \ No newline at end of file diff --git a/changelog.d/204.misc b/changelog.d/204.misc deleted file mode 100644 index d55d2f64..00000000 --- a/changelog.d/204.misc +++ /dev/null @@ -1 +0,0 @@ -Typescriptify ClientRequestCache \ No newline at end of file diff --git a/changelog.d/205.misc b/changelog.d/205.misc deleted file mode 100644 index e0fbe534..00000000 --- a/changelog.d/205.misc +++ /dev/null @@ -1 +0,0 @@ -Port Logging to Typescript. This change makes `winston`, `winston-daily-rotate-file` and `chalk` a required dependency. \ No newline at end of file diff --git a/changelog.d/206.misc b/changelog.d/206.misc deleted file mode 100644 index 7af8a6f2..00000000 --- a/changelog.d/206.misc +++ /dev/null @@ -1 +0,0 @@ -Typescriptify ConfigValidator \ No newline at end of file diff --git a/changelog.d/207.feature b/changelog.d/207.feature deleted file mode 100644 index 54968a76..00000000 --- a/changelog.d/207.feature +++ /dev/null @@ -1,2 +0,0 @@ -The bridge can now optionally reload the config file on a `SIGHUP` signal. Developers should define the `onConfigChanged` callback -when constructing `Cli` to make use of this feature. \ No newline at end of file diff --git a/changelog.d/208.misc b/changelog.d/208.misc deleted file mode 100644 index 16ab23db..00000000 --- a/changelog.d/208.misc +++ /dev/null @@ -1 +0,0 @@ -**Breaking**: Typescriptify the room, user and event stores. The stores will now return pure Promises (not Bluebird), which means code that relys on Bluebird features will **break**. \ No newline at end of file diff --git a/changelog.d/209.misc b/changelog.d/209.misc deleted file mode 100644 index 8c7f41be..00000000 --- a/changelog.d/209.misc +++ /dev/null @@ -1 +0,0 @@ -Port RoomUpgradeHandler to Typescript \ No newline at end of file diff --git a/changelog.d/210.misc b/changelog.d/210.misc deleted file mode 100644 index a239666e..00000000 --- a/changelog.d/210.misc +++ /dev/null @@ -1 +0,0 @@ -Typescriptify BridgeContext \ No newline at end of file diff --git a/changelog.d/211.misc b/changelog.d/211.misc deleted file mode 100644 index 59fe85f4..00000000 --- a/changelog.d/211.misc +++ /dev/null @@ -1 +0,0 @@ -Typescriptify bridge errors. The `wrap` function has been renamed to `wrapError`. diff --git a/changelog.d/212.misc b/changelog.d/212.misc deleted file mode 100644 index 0273baa8..00000000 --- a/changelog.d/212.misc +++ /dev/null @@ -1 +0,0 @@ -Typescriptify AppserviceBot \ No newline at end of file diff --git a/changelog.d/213.misc b/changelog.d/213.misc deleted file mode 100644 index 1059c8e9..00000000 --- a/changelog.d/213.misc +++ /dev/null @@ -1 +0,0 @@ -Port the `Bridge` object to Typescript and remove javascript linting \ No newline at end of file diff --git a/changelog.d/216.feature b/changelog.d/216.feature deleted file mode 100644 index 61eb6628..00000000 --- a/changelog.d/216.feature +++ /dev/null @@ -1 +0,0 @@ -**Breaking**: Remove Bluebird Promise support. Promises returned by the library will now be native. \ No newline at end of file diff --git a/changelog.d/217.feature b/changelog.d/217.feature deleted file mode 100644 index 59d8addb..00000000 --- a/changelog.d/217.feature +++ /dev/null @@ -1 +0,0 @@ -Make url parameter optional when generating registration. diff --git a/changelog.d/218.misc b/changelog.d/218.misc deleted file mode 100644 index cb36cfe8..00000000 --- a/changelog.d/218.misc +++ /dev/null @@ -1 +0,0 @@ -Implement tweaks to typings to support existing bridges diff --git a/changelog.d/219.misc b/changelog.d/219.misc deleted file mode 100644 index 595c5485..00000000 --- a/changelog.d/219.misc +++ /dev/null @@ -1 +0,0 @@ -Upgrade internal tooling to use TypeScript 4 \ No newline at end of file diff --git a/changelog.d/224.misc b/changelog.d/224.misc deleted file mode 100644 index 2ad98f34..00000000 --- a/changelog.d/224.misc +++ /dev/null @@ -1,2 +0,0 @@ -Types: Make some options of Cli optional -Small corrections to HOWTO.md \ No newline at end of file diff --git a/changelog.d/225.misc b/changelog.d/225.misc deleted file mode 100644 index c6ee726f..00000000 --- a/changelog.d/225.misc +++ /dev/null @@ -1,2 +0,0 @@ -Types: Make some options of Bridge optional -Add a project example: slack-starter \ No newline at end of file diff --git a/changelog.d/226.misc b/changelog.d/226.misc deleted file mode 100644 index e302121a..00000000 --- a/changelog.d/226.misc +++ /dev/null @@ -1 +0,0 @@ -Upgrade dependency: matrix-appservice \ No newline at end of file diff --git a/changelog.d/227.feature b/changelog.d/227.feature deleted file mode 100644 index 59711e04..00000000 --- a/changelog.d/227.feature +++ /dev/null @@ -1 +0,0 @@ -Add `Bridge.close` method to close the appservice diff --git a/package-lock.json b/package-lock.json index 2367db3f..d2885fbf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-bridge", - "version": "1.13.2", + "version": "2.0.0-rc1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -419,7 +419,6 @@ "version": "1.19.0", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz", "integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==", - "dev": true, "requires": { "@types/connect": "*", "@types/node": "*" @@ -434,7 +433,6 @@ "version": "3.4.33", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz", "integrity": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==", - "dev": true, "requires": { "@types/node": "*" } @@ -443,7 +441,6 @@ "version": "4.17.8", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.8.tgz", "integrity": "sha512-wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ==", - "dev": true, "requires": { "@types/body-parser": "*", "@types/express-serve-static-core": "*", @@ -455,7 +452,6 @@ "version": "4.17.12", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.12.tgz", "integrity": "sha512-EaEdY+Dty1jEU7U6J4CUWwxL+hyEGMkO5jan5gplfegUgCUsIUWqXxqw47uGjimeT4Qgkz/XUfwoau08+fgvKA==", - "dev": true, "requires": { "@types/node": "*", "@types/qs": "*", @@ -483,8 +479,7 @@ "@types/mime": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz", - "integrity": "sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==", - "dev": true + "integrity": "sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==" }, "@types/nedb": { "version": "1.8.10", @@ -498,8 +493,7 @@ "@types/node": { "version": "10.17.28", "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.28.tgz", - "integrity": "sha512-dzjES1Egb4c1a89C7lKwQh8pwjYmlOAG9dW1pBgxEk57tMrLnssOfEthz8kdkNaBd7lIqQx7APm5+mZ619IiCQ==", - "dev": true + "integrity": "sha512-dzjES1Egb4c1a89C7lKwQh8pwjYmlOAG9dW1pBgxEk57tMrLnssOfEthz8kdkNaBd7lIqQx7APm5+mZ619IiCQ==" }, "@types/nopt": { "version": "3.0.29", @@ -510,20 +504,17 @@ "@types/qs": { "version": "6.9.4", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.4.tgz", - "integrity": "sha512-+wYo+L6ZF6BMoEjtf8zB2esQsqdV6WsjRK/GP9WOgLPrq87PbNWgIxS76dS5uvl/QXtHGakZmwTznIfcPXcKlQ==", - "dev": true + "integrity": "sha512-+wYo+L6ZF6BMoEjtf8zB2esQsqdV6WsjRK/GP9WOgLPrq87PbNWgIxS76dS5uvl/QXtHGakZmwTznIfcPXcKlQ==" }, "@types/range-parser": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", - "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==", - "dev": true + "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" }, "@types/serve-static": { "version": "1.13.5", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.5.tgz", "integrity": "sha512-6M64P58N+OXjU432WoLLBQxbA0LRGBCRm7aAGQJ+SMC1IMl0dgRVi9EFfoDcS2a7Xogygk/eGN94CfwU9UF7UQ==", - "dev": true, "requires": { "@types/express-serve-static-core": "*", "@types/mime": "*" @@ -2943,15 +2934,15 @@ "dev": true }, "matrix-appservice": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.4.2.tgz", - "integrity": "sha512-YD2zFiPo9FedjA86gfWFN2UVDwDBhWL1Kas/txG0iwpT6jcJmOvpPqbfuFeYk3Q3G3c5BZ8k8tABMpzS9Bu39A==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/matrix-appservice/-/matrix-appservice-0.5.0.tgz", + "integrity": "sha512-TzfoXdZCFbwnjHFwkmpxWEDN0SWu4Sgho8Jaa47wTei+Kg8/hLCc/JvRN3AXNtx419+tolsXYX8KO0JJorQSpA==", "requires": { + "@types/express": "^4.17.8", "body-parser": "^1.19.0", "express": "^4.17.1", "js-yaml": "^3.14.0", - "morgan": "^1.10.0", - "request": "^2.88.2" + "morgan": "^1.10.0" } }, "matrix-js-sdk": { diff --git a/package.json b/package.json index af1f99a2..acc31247 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-bridge", - "version": "1.13.2", + "version": "2.0.0-rc1", "description": "Bridging infrastructure for Matrix Application Services", "main": "lib/index.js", "types": "lib/index.d.ts",