Skip to content

Commit c298436

Browse files
committed
Bump version to v0.12.2
1 parent 3697418 commit c298436

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# v0.12.2 (2025-06-16)
2+
3+
* Improved support for `@lid` users.
4+
* **N.B.** As mentioned in the v0.12.0 release, old registration files may
5+
have `[0-9]+` in the `users` regex. You must change it to `.+`, as the new
6+
`lid` identifiers are bridged as `lid-<number>` instead of just `<phone number>`.
7+
* Updated Docker image to Alpine 3.22.
8+
* Fixed network errors on first connect not triggering automatic reconnect.
9+
* Fixed animated sticker zips not being extracted when using direct media.
10+
111
# v0.12.1 (2025-05-16)
212

313
* Added prefix to identify forwarded messages on WhatsApp.
@@ -13,6 +23,9 @@
1323

1424
* Migrated Signal session store to use new `@lid` identifiers to support future
1525
chats that don't expose phone numbers.
26+
* **N.B.** Old registration files may have `[0-9]+` in the `users` regex. You
27+
must change it to `.+`, as the new `lid` identifiers are bridged as
28+
`lid-<number>` instead of just `<phone number>`.
1629
* Added fallbacks for various business message types.
1730
* Added support for bridging invites, kicks and leaves in groups.
1831
* Re-added `invite-link`, `join` and `sync` commands for groups.

cmd/mautrix-whatsapp/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var m = mxmain.BridgeMain{
2323
Name: "mautrix-whatsapp",
2424
URL: "https://github.com/mautrix/whatsapp",
2525
Description: "A Matrix-WhatsApp puppeting bridge.",
26-
Version: "0.12.1",
26+
Version: "0.12.2",
2727
Connector: c,
2828
}
2929

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ require (
99
github.com/gorilla/websocket v1.5.0
1010
github.com/lib/pq v1.10.9
1111
github.com/rs/zerolog v1.34.0
12-
go.mau.fi/util v0.8.8-0.20250612103042-2aa072eb60f0
12+
go.mau.fi/util v0.8.8
1313
go.mau.fi/webp v0.2.0
14-
go.mau.fi/whatsmeow v0.0.0-20250614130217-d5152ad30f01
14+
go.mau.fi/whatsmeow v0.0.0-20250616150942-80f2a1807103
1515
golang.org/x/image v0.28.0
1616
golang.org/x/net v0.41.0
1717
golang.org/x/sync v0.15.0
1818
google.golang.org/protobuf v1.36.6
1919
gopkg.in/yaml.v3 v3.0.1
20-
maunium.net/go/mautrix v0.24.1-0.20250614093103-c836dbafdfd9
20+
maunium.net/go/mautrix v0.24.1
2121
)
2222

2323
require (

go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ github.com/yuin/goldmark v1.7.12 h1:YwGP/rrea2/CnCtUHgjuolG/PnMxdQtPMO5PvaE2/nY=
6565
github.com/yuin/goldmark v1.7.12/go.mod h1:ip/1k0VRfGynBgxOz0yCqHrbZXhcjxyuS66Brc7iBKg=
6666
go.mau.fi/libsignal v0.2.0 h1:oRXj3OHhEJq51BFEM8/50UZblmWiTYH93hsNTPcbk90=
6767
go.mau.fi/libsignal v0.2.0/go.mod h1:tvjoDsMejgT38CXTXwqaYu8itBiY8O2Mb6biWvZBb9k=
68-
go.mau.fi/util v0.8.8-0.20250612103042-2aa072eb60f0 h1:EcDJfYWX6aVT3c6nWTg9Qly41rNKabzzERt7OFzVerA=
69-
go.mau.fi/util v0.8.8-0.20250612103042-2aa072eb60f0/go.mod h1:Y/kS3loxTEhy8Vill513EtPXr+CRDdae+Xj2BXXMy/c=
68+
go.mau.fi/util v0.8.8 h1:OnuEEc/sIJFhnq4kFggiImUpcmnmL/xpvQMRu5Fiy5c=
69+
go.mau.fi/util v0.8.8/go.mod h1:Y/kS3loxTEhy8Vill513EtPXr+CRDdae+Xj2BXXMy/c=
7070
go.mau.fi/webp v0.2.0 h1:QVMenHw7JDb4vall5sV75JNBQj9Hw4u8AKbi1QetHvg=
7171
go.mau.fi/webp v0.2.0/go.mod h1:VSg9MyODn12Mb5pyG0NIyNFhujrmoFSsZBs8syOZD1Q=
72-
go.mau.fi/whatsmeow v0.0.0-20250614130217-d5152ad30f01 h1:sB4V19Cvf68lQTrCTmpf3AxUyV9Vl/MTR/zs92z1kpk=
73-
go.mau.fi/whatsmeow v0.0.0-20250614130217-d5152ad30f01/go.mod h1:Qy3L3BNBcnxfrAQ09lmFMa0ItZfg8zl9DzxKrptzfU4=
72+
go.mau.fi/whatsmeow v0.0.0-20250616150942-80f2a1807103 h1:9X0vTlbEPIa9X7Vr/dszlJnKdGjCXftmasc81qo7Wxk=
73+
go.mau.fi/whatsmeow v0.0.0-20250616150942-80f2a1807103/go.mod h1:bEyyFvXlwr/18B2pOkdX1vWAx1+y1NJX+sCXVyw01UA=
7474
go.mau.fi/zeroconfig v0.1.3 h1:As9wYDKmktjmNZW5i1vn8zvJlmGKHeVxHVIBMXsm4kM=
7575
go.mau.fi/zeroconfig v0.1.3/go.mod h1:NcSJkf180JT+1IId76PcMuLTNa1CzsFFZ0nBygIQM70=
7676
golang.org/x/crypto v0.39.0 h1:SHs+kF4LP+f+p14esP5jAoDpHU8Gu/v9lFRK6IT5imM=
@@ -101,5 +101,5 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
101101
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
102102
maunium.net/go/mauflag v1.0.0 h1:YiaRc0tEI3toYtJMRIfjP+jklH45uDHtT80nUamyD4M=
103103
maunium.net/go/mauflag v1.0.0/go.mod h1:nLivPOpTpHnpzEh8jEdSL9UqO9+/KBJFmNRlwKfkPeA=
104-
maunium.net/go/mautrix v0.24.1-0.20250614093103-c836dbafdfd9 h1:4wv3FArgoOG2Ro+pYUdQdtBo+25TdzIGwtL44DFbSbY=
105-
maunium.net/go/mautrix v0.24.1-0.20250614093103-c836dbafdfd9/go.mod h1:IKIE5XbiJ38HbWzHcq9Bo3LYTiKARiEFQfzlZYmi5KE=
104+
maunium.net/go/mautrix v0.24.1 h1:09/xi4qTeA03g1n/DPmmqAlT8Cx4QrgwiPlmLVzA9AU=
105+
maunium.net/go/mautrix v0.24.1/go.mod h1:Xy6o+pXmbqmgWsUWh15EQ1eozjC+k/VT/7kloByv9PI=

0 commit comments

Comments
 (0)