Skip to content

Commit 6a60eff

Browse files
committed
Merge branch 'release-v0.38.0' into develop
2 parents a5e5545 + 5ace5d6 commit 6a60eff

File tree

8 files changed

+23
-10
lines changed

8 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
0.37.1 (2023-03-07)
1+
0.38.0 (2023-04-12)
2+
===================
3+
4+
Bugfixes
5+
--------
6+
7+
- Fix SQL syntax errors in the PostgreSQL data store. ([\#1660](https://github.com/matrix-org/matrix-appservice-irc/issues/1660))
8+
- Fix unlink command showing an error. ([\#1692](https://github.com/matrix-org/matrix-appservice-irc/issues/1692))
9+
10+
11+
Internal Changes
12+
----------------
13+
14+
- RoomAccessSyncer: Await processing of cached channel modes that changed. ([\#1620](https://github.com/matrix-org/matrix-appservice-irc/issues/1620))
15+
- Fix tests when running with 'yarnpkg link matrix-appservice-bridge'. ([\#1679](https://github.com/matrix-org/matrix-appservice-irc/issues/1679))
16+
- Add tests that cover publicity syncing behaviour. ([\#1698](https://github.com/matrix-org/matrix-appservice-irc/issues/1698))
17+
18+
19+
0.37.1 (2023-03-07)
220
====================
321

422
Bugfixes

changelog.d/1620.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1660.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1679.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1692.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/1698.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-appservice-irc",
3-
"version": "0.37.1",
3+
"version": "0.38.0",
44
"description": "An IRC Bridge for Matrix",
55
"main": "app.js",
66
"bin": "./bin/matrix-appservice-irc",
@@ -14,7 +14,7 @@
1414
"build:widget": "vite build --config widget/vite.config.ts",
1515
"dev:widget": "vite dev --config widget/vite.config.ts",
1616
"test": "BLUEBIRD_DEBUG=1 ts-node --project spec/tsconfig.json node_modules/jasmine/bin/jasmine --stop-on-failure=true",
17-
"test:e2e": "jest --config spec/e2e/jest.config.js --forceExit # Can be removed after https://github.com/matrix-org/matrix-appservice-bridge/pull/439 is merged",
17+
"test:e2e": "jest --config spec/e2e/jest.config.js --forceExit",
1818
"lint": "eslint -c .eslintrc --max-warnings 0 'spec/**/*.js' 'src/**/*.ts' && eslint -c ./widget/.eslintrc.js 'widget/src/**/*.{ts,tsx}'",
1919
"check": "npm test && npm run lint",
2020
"ci-test": "nyc --report text jasmine",

0 commit comments

Comments
 (0)