Skip to content

Commit 66ba28d

Browse files
committed
Bump version to v0.6.1
1 parent 3c968d7 commit 66ba28d

File tree

8 files changed

+24
-18
lines changed

8 files changed

+24
-18
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v0.6.1 (2025-03-16)
2+
3+
* Bumped minimum Go version to 1.23.
4+
* Added support for signaling supported features to clients using the
5+
`com.beeper.room_features` state event.
6+
17
# v0.6.0 (2024-12-16)
28

39
* Added support for re-authenticating expired Google logins without having to

cmd/mautrix-gmessages/legacyprovision.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ import (
2929
"go.mau.fi/util/exslices"
3030
"go.mau.fi/util/exsync"
3131

32-
"maunium.net/go/mautrix/bridge/status"
3332
"maunium.net/go/mautrix/bridgev2"
3433
"maunium.net/go/mautrix/bridgev2/networkid"
34+
"maunium.net/go/mautrix/bridgev2/status"
3535
"maunium.net/go/mautrix/id"
3636

3737
"go.mau.fi/mautrix-gmessages/pkg/connector"

cmd/mautrix-gmessages/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ var m = mxmain.BridgeMain{
3636
Name: "mautrix-gmessages",
3737
Description: "A Matrix-Google Messages puppeting bridge",
3838
URL: "https://github.com/mautrix/gmessages",
39-
Version: "0.6.0",
39+
Version: "0.6.1",
4040
Connector: c,
4141
}
4242

go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ module go.mau.fi/mautrix-gmessages
22

33
go 1.23.0
44

5-
toolchain go1.24.0
5+
toolchain go1.24.1
66

77
require (
88
github.com/gabriel-vasile/mimetype v1.4.8
99
github.com/google/uuid v1.6.0
1010
github.com/rs/zerolog v1.33.0
1111
github.com/stretchr/testify v1.10.0
12-
go.mau.fi/util v0.8.6-0.20250227184636-7ff63b0b9d95
12+
go.mau.fi/util v0.8.6
1313
golang.org/x/crypto v0.36.0
1414
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
1515
google.golang.org/protobuf v1.36.5
1616
gopkg.in/yaml.v3 v3.0.1
17-
maunium.net/go/mautrix v0.23.2-0.20250312103017-6bba74ecb6a6
17+
maunium.net/go/mautrix v0.23.2
1818
)
1919

2020
require (
@@ -28,7 +28,7 @@ require (
2828
github.com/mattn/go-colorable v0.1.14 // indirect
2929
github.com/mattn/go-isatty v0.0.20 // indirect
3030
github.com/mattn/go-sqlite3 v1.14.24 // indirect
31-
github.com/petermattis/goid v0.0.0-20250211185408-f2b9d978cd7a // indirect
31+
github.com/petermattis/goid v0.0.0-20250303134427-723919f7f203 // indirect
3232
github.com/pmezard/go-difflib v1.0.0 // indirect
3333
github.com/rogpeppe/go-internal v1.10.0 // indirect
3434
github.com/rs/xid v1.6.0 // indirect
@@ -39,7 +39,7 @@ require (
3939
github.com/tidwall/sjson v1.2.5 // indirect
4040
github.com/yuin/goldmark v1.7.8 // indirect
4141
go.mau.fi/zeroconfig v0.1.3 // indirect
42-
golang.org/x/net v0.35.0 // indirect
42+
golang.org/x/net v0.37.0 // indirect
4343
golang.org/x/sync v0.12.0 // indirect
4444
golang.org/x/sys v0.31.0 // indirect
4545
golang.org/x/text v0.23.0 // indirect

go.sum

+8-8
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE
3636
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
3737
github.com/mattn/go-sqlite3 v1.14.24 h1:tpSp2G2KyMnnQu99ngJ47EIkWVmliIizyZBfPrBWDRM=
3838
github.com/mattn/go-sqlite3 v1.14.24/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
39-
github.com/petermattis/goid v0.0.0-20250211185408-f2b9d978cd7a h1:ckxP/kGzsxvxXo8jO6E/0QJ8MMmwI7IRj4Fys9QbAZA=
40-
github.com/petermattis/goid v0.0.0-20250211185408-f2b9d978cd7a/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
39+
github.com/petermattis/goid v0.0.0-20250303134427-723919f7f203 h1:E7Kmf11E4K7B5hDti2K2NqPb1nlYlGYsu02S1JNd/Bs=
40+
github.com/petermattis/goid v0.0.0-20250303134427-723919f7f203/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4=
4141
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
4242
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
4343
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
@@ -66,16 +66,16 @@ github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
6666
github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
6767
github.com/yuin/goldmark v1.7.8 h1:iERMLn0/QJeHFhxSt3p6PeN9mGnvIKSpG9YYorDMnic=
6868
github.com/yuin/goldmark v1.7.8/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
69-
go.mau.fi/util v0.8.6-0.20250227184636-7ff63b0b9d95 h1:5EfVWWjU2Hte9uE6B/hBgvjnVfBx/7SYDZBnsuo+EBs=
70-
go.mau.fi/util v0.8.6-0.20250227184636-7ff63b0b9d95/go.mod h1:Ycug9mrbztlahHPEJ6H5r8Nu/xqZaWbE5vPHVWmfz6M=
69+
go.mau.fi/util v0.8.6 h1:AEK13rfgtiZJL2YsNK+W4ihhYCuukcRom8WPP/w/L54=
70+
go.mau.fi/util v0.8.6/go.mod h1:uNB3UTXFbkpp7xL1M/WvQks90B/L4gvbLpbS0603KOE=
7171
go.mau.fi/zeroconfig v0.1.3 h1:As9wYDKmktjmNZW5i1vn8zvJlmGKHeVxHVIBMXsm4kM=
7272
go.mau.fi/zeroconfig v0.1.3/go.mod h1:NcSJkf180JT+1IId76PcMuLTNa1CzsFFZ0nBygIQM70=
7373
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34=
7474
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
7575
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 h1:nDVHiLt8aIbd/VzvPWN6kSOPE7+F/fNFDSXLVYkE/Iw=
7676
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394/go.mod h1:sIifuuw/Yco/y6yb6+bDNfyeQ/MdPUy/hKEMYQV17cM=
77-
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
78-
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
77+
golang.org/x/net v0.37.0 h1:1zLorHbz+LYj7MQlSf1+2tPIIgibq2eL5xkrGk6f+2c=
78+
golang.org/x/net v0.37.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
7979
golang.org/x/sync v0.12.0 h1:MHc5BpPuC30uJk597Ri8TV3CNZcTLu6B6z4lJy+g6Jw=
8080
golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
8181
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
@@ -96,5 +96,5 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
9696
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
9797
maunium.net/go/mauflag v1.0.0 h1:YiaRc0tEI3toYtJMRIfjP+jklH45uDHtT80nUamyD4M=
9898
maunium.net/go/mauflag v1.0.0/go.mod h1:nLivPOpTpHnpzEh8jEdSL9UqO9+/KBJFmNRlwKfkPeA=
99-
maunium.net/go/mautrix v0.23.2-0.20250312103017-6bba74ecb6a6 h1:yQ7WyN5cnycf1LNEBOY0zRix3wc9TqdfBIcsE4MF44Q=
100-
maunium.net/go/mautrix v0.23.2-0.20250312103017-6bba74ecb6a6/go.mod h1:IHMaSJh7YIxMrZSDVefS+nLdr3RbeLowsCSa6ibONZ0=
99+
maunium.net/go/mautrix v0.23.2 h1:Bo3tPrQJwkxyL7aMmy/T+d2tqIrypZjHqeHe8fyeAOg=
100+
maunium.net/go/mautrix v0.23.2/go.mod h1:pCYLHmo02Jauak/9VlTkbGPrBMvLXsGqTGMNOx+L2PE=

pkg/connector/bridgestate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package connector
1818

1919
import (
20-
"maunium.net/go/mautrix/bridge/status"
20+
"maunium.net/go/mautrix/bridgev2/status"
2121
)
2222

2323
const (

pkg/connector/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ import (
2525

2626
"github.com/rs/zerolog"
2727
"go.mau.fi/util/exsync"
28-
"maunium.net/go/mautrix/bridge/status"
2928
"maunium.net/go/mautrix/bridgev2"
3029
"maunium.net/go/mautrix/bridgev2/networkid"
30+
"maunium.net/go/mautrix/bridgev2/status"
3131

3232
"go.mau.fi/mautrix-gmessages/pkg/libgm"
3333
"go.mau.fi/mautrix-gmessages/pkg/libgm/events"

pkg/connector/handlegmessages.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ import (
3131
"github.com/rs/zerolog"
3232
"go.mau.fi/util/ffmpeg"
3333
"golang.org/x/exp/maps"
34-
"maunium.net/go/mautrix/bridge/status"
3534
"maunium.net/go/mautrix/bridgev2"
3635
"maunium.net/go/mautrix/bridgev2/database"
3736
"maunium.net/go/mautrix/bridgev2/networkid"
3837
"maunium.net/go/mautrix/bridgev2/simplevent"
38+
"maunium.net/go/mautrix/bridgev2/status"
3939
"maunium.net/go/mautrix/event"
4040
"maunium.net/go/mautrix/id"
4141

0 commit comments

Comments
 (0)