Skip to content

Commit 33b603d

Browse files
committed
Re-add idx_topic to messages table
1 parent 6eff555 commit 33b603d

File tree

6 files changed

+64
-102
lines changed

6 files changed

+64
-102
lines changed

docs/releases.md

+6
Original file line numberDiff line numberDiff line change
@@ -1373,3 +1373,9 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
13731373
**Additional languages:**
13741374

13751375
* Swedish (thanks to [@hellbown](https://hosted.weblate.org/user/hellbown/))
1376+
1377+
### ntfy server v2.11.0
1378+
1379+
**Bug fixes + maintenance:**
1380+
1381+
* Re-add database index `idx_topic` to the `messages` table to fix performance issues on ntfy.sh (no ticket, big thanks to [@tcaputi](https://github.com/tcaputi) for finding this issue)

go.mod

+5-7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ require (
4141
cloud.google.com/go v0.112.2 // indirect
4242
cloud.google.com/go/auth v0.3.0 // indirect
4343
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
44-
cloud.google.com/go/compute v1.25.1 // indirect
4544
cloud.google.com/go/compute/metadata v0.3.0 // indirect
4645
cloud.google.com/go/iam v1.1.7 // indirect
4746
cloud.google.com/go/longrunning v0.5.6 // indirect
@@ -73,15 +72,14 @@ require (
7372
github.com/stretchr/objx v0.5.2 // indirect
7473
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
7574
go.opencensus.io v0.24.0 // indirect
76-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.50.0 // indirect
77-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.50.0 // indirect
78-
go.opentelemetry.io/otel v1.25.0 // indirect
79-
go.opentelemetry.io/otel/metric v1.25.0 // indirect
80-
go.opentelemetry.io/otel/trace v1.25.0 // indirect
75+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.51.0 // indirect
76+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect
77+
go.opentelemetry.io/otel v1.26.0 // indirect
78+
go.opentelemetry.io/otel/metric v1.26.0 // indirect
79+
go.opentelemetry.io/otel/trace v1.26.0 // indirect
8180
golang.org/x/net v0.24.0 // indirect
8281
golang.org/x/sys v0.19.0 // indirect
8382
golang.org/x/text v0.14.0 // indirect
84-
google.golang.org/appengine v1.6.8 // indirect
8583
google.golang.org/appengine/v2 v2.0.6 // indirect
8684
google.golang.org/genproto v0.0.0-20240415180920-8c6c420018be // indirect
8785
google.golang.org/genproto/googleapis/api v0.0.0-20240415180920-8c6c420018be // indirect

0 commit comments

Comments
 (0)