Skip to content

Commit d161462

Browse files
Version Packages (#955)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 56a2fa1 commit d161462

File tree

12 files changed

+70
-34
lines changed

12 files changed

+70
-34
lines changed

.changeset/cool-carrots-fetch.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fruity-bats-fly.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/rare-beans-send.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

example-widget-mui/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"private": true,
88
"type": "module",
99
"dependencies": {
10-
"@matrix-widget-toolkit/api": "4.2.0",
11-
"@matrix-widget-toolkit/mui": "2.1.3",
12-
"@matrix-widget-toolkit/react": "2.0.6",
10+
"@matrix-widget-toolkit/api": "5.0.0",
11+
"@matrix-widget-toolkit/mui": "2.2.0",
12+
"@matrix-widget-toolkit/react": "2.1.0",
1313
"@mui/icons-material": "6.4.12",
1414
"@mui/material": "6.4.12",
1515
"@reduxjs/toolkit": "2.6.1",
@@ -56,7 +56,7 @@
5656
]
5757
},
5858
"devDependencies": {
59-
"@matrix-widget-toolkit/testing": "3.1.0",
59+
"@matrix-widget-toolkit/testing": "4.0.0",
6060
"@testing-library/dom": "10.4.0",
6161
"@testing-library/jest-dom": "6.6.3",
6262
"@testing-library/react": "16.3.0",

packages/api/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# `@matrix-widget-toolkit/api`
22

3+
## 5.0.0
4+
5+
### Major Changes
6+
7+
- 56a2fa1: Rework powerlevel calculations to comply with spec in all room versions.
8+
9+
Note this now requires the create room event to be passed to the power level functions.
10+
Additionally, the mock widget api now has changed user id and room id defaults to comply with matrix spec.
11+
12+
### Minor Changes
13+
14+
- ce67d9c: Reduce strictness on room_ids to comply with changes in room version 12
15+
316
## 4.2.0
417

518
### Minor Changes

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@matrix-widget-toolkit/api",
3-
"version": "4.2.0",
3+
"version": "5.0.0",
44
"description": "A simplified layer on top of matrix-widget-api to use build widgets.",
55
"author": "Nordeck IT + Consulting GmbH",
66
"license": "Apache-2.0",

packages/mui/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# `@matrix-widget-toolkit/mui`
22

3+
## 2.2.0
4+
5+
### Minor Changes
6+
7+
- ce67d9c: Reduce strictness on room_ids to comply with changes in room version 12
8+
9+
### Patch Changes
10+
11+
- c10df6a: Fix typo in mobile-client instructions
12+
- Updated dependencies [56a2fa1]
13+
- Updated dependencies [ce67d9c]
14+
- @matrix-widget-toolkit/api@5.0.0
15+
- @matrix-widget-toolkit/react@2.1.0
16+
317
## 2.1.3
418

519
### Patch Changes

packages/mui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@matrix-widget-toolkit/mui",
3-
"version": "2.1.3",
3+
"version": "2.2.0",
44
"description": "A customized material-ui theme that matches the style of the Element Matrix client",
55
"author": "Nordeck IT + Consulting GmbH",
66
"license": "Apache-2.0",
@@ -49,8 +49,8 @@
4949
"@emotion/react": "11.14.0",
5050
"@emotion/styled": "11.14.1",
5151
"@fontsource/inter": "5.1.1",
52-
"@matrix-widget-toolkit/api": "^4.2.0",
53-
"@matrix-widget-toolkit/react": "^2.0.6",
52+
"@matrix-widget-toolkit/api": "^5.0.0",
53+
"@matrix-widget-toolkit/react": "^2.1.0",
5454
"@mui/icons-material": "6.4.12",
5555
"@mui/material": "6.4.12",
5656
"@mui/utils": "6.4.9",

packages/react/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# `@matrix-widget-toolkit/react`
22

3+
## 2.1.0
4+
5+
### Minor Changes
6+
7+
- ce67d9c: Reduce strictness on room_ids to comply with changes in room version 12
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [56a2fa1]
12+
- Updated dependencies [ce67d9c]
13+
- @matrix-widget-toolkit/api@5.0.0
14+
315
## 2.0.6
416

517
### Patch Changes

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@matrix-widget-toolkit/react",
3-
"version": "2.0.6",
3+
"version": "2.1.0",
44
"description": "A simplified layer on top of @matrix-widget-toolkit/api to use it in a React based widget.",
55
"author": "Nordeck IT + Consulting GmbH",
66
"license": "Apache-2.0",
@@ -38,7 +38,7 @@
3838
"clean:cache": "echo 'script not implemented package'"
3939
},
4040
"dependencies": {
41-
"@matrix-widget-toolkit/api": "^4.2.0",
41+
"@matrix-widget-toolkit/api": "^5.0.0",
4242
"matrix-widget-api": "1.13.1",
4343
"react-error-boundary": "6.0.0",
4444
"react-use": "17.6.0"

0 commit comments

Comments
 (0)