From d88dbbc90f28af884b7d0d989bb0fe34118c9a4e Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 2 Apr 2023 13:59:26 -0400
Subject: [PATCH 001/182] WIP
---
go.mod | 3 +
go.sum | 6 ++
server/smtp_server.go | 77 +++++++++++++++++++----
server/smtp_server_test.go | 125 +++++++++++++++++++++++++++++++++++++
4 files changed, 200 insertions(+), 11 deletions(-)
diff --git a/go.mod b/go.mod
index d5a9025e..10d32350 100644
--- a/go.mod
+++ b/go.mod
@@ -27,6 +27,7 @@ require github.com/pkg/errors v0.9.1 // indirect
require (
firebase.google.com/go/v4 v4.10.0
+ github.com/microcosm-cc/bluemonday v1.0.23
github.com/prometheus/client_golang v1.14.0
github.com/stripe/stripe-go/v74 v74.14.0
)
@@ -39,6 +40,7 @@ require (
cloud.google.com/go/longrunning v0.4.1 // indirect
github.com/AlekSi/pointer v1.2.0 // indirect
github.com/MicahParks/keyfunc v1.9.0 // indirect
+ github.com/aymerick/douceur v0.2.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -50,6 +52,7 @@ require (
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
+ github.com/gorilla/css v1.0.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
diff --git a/go.sum b/go.sum
index 8c166afd..27679caa 100644
--- a/go.sum
+++ b/go.sum
@@ -22,6 +22,8 @@ github.com/BurntSushi/toml v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak
github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/MicahParks/keyfunc v1.9.0 h1:lhKd5xrFHLNOWrDc4Tyb/Q1AJ4LCzQ48GVJyVIID3+o=
github.com/MicahParks/keyfunc v1.9.0/go.mod h1:IdnCilugA0O/99dW+/MkvlyrsX8+L8+x95xuVNtM5jw=
+github.com/aymerick/douceur v0.2.0 h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk=
+github.com/aymerick/douceur v0.2.0/go.mod h1:wlT5vV2O3h55X9m7iVYN0TBM0NH/MmbLnd30/FjWUq4=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
@@ -85,6 +87,8 @@ github.com/googleapis/enterprise-certificate-proxy v0.2.3 h1:yk9/cqRKtT9wXZSsRH9
github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k=
github.com/googleapis/gax-go/v2 v2.8.0 h1:UBtEZqx1bjXtOQ5BVTkuYghXrr3N4V123VKJK67vJZc=
github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI=
+github.com/gorilla/css v1.0.0 h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY=
+github.com/gorilla/css v1.0.0/go.mod h1:Dn721qIggHpt4+EFCcTLTU/vk5ySda2ReITrtgBl60c=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
@@ -95,6 +99,8 @@ github.com/mattn/go-sqlite3 v1.14.16 h1:yOQRA0RpS5PFz/oikGwBEqvAWhWg5ufRz4ETLjwp
github.com/mattn/go-sqlite3 v1.14.16/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
+github.com/microcosm-cc/bluemonday v1.0.23 h1:SMZe2IGa0NuHvnVNAZ+6B38gsTbi5e4sViiWJyDDqFY=
+github.com/microcosm-cc/bluemonday v1.0.23/go.mod h1:mN70sk7UkkF8TUr2IGBpNN0jAgStuPzlK76QuruE/z4=
github.com/olebedev/when v0.0.0-20221205223600-4d190b02b8d8 h1:0uFGkScHef2Xd8g74BMHU1jFcnKEm0PzrPn4CluQ9FI=
github.com/olebedev/when v0.0.0-20221205223600-4d190b02b8d8/go.mod h1:T0THb4kP9D3NNqlvCwIG4GyUioTAzEhB4RNVzig/43E=
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
diff --git a/server/smtp_server.go b/server/smtp_server.go
index 16d97328..fe7e3298 100644
--- a/server/smtp_server.go
+++ b/server/smtp_server.go
@@ -6,6 +6,7 @@ import (
"errors"
"fmt"
"github.com/emersion/go-smtp"
+ "github.com/microcosm-cc/bluemonday"
"io"
"mime"
"mime/multipart"
@@ -13,6 +14,7 @@ import (
"net/http"
"net/http/httptest"
"net/mail"
+ "regexp"
"strings"
"sync"
)
@@ -231,37 +233,66 @@ func readMailBody(body io.Reader, header mail.Header) (string, error) {
if err != nil {
return "", err
}
- if strings.ToLower(contentType) == "text/plain" {
- return readPlainTextMailBody(body, header.Get("Content-Transfer-Encoding"))
- } else if strings.HasPrefix(strings.ToLower(contentType), "multipart/") {
- return readMultipartMailBody(body, params, 0)
+ canonicalContentType := strings.ToLower(contentType)
+ if canonicalContentType == "text/plain" || canonicalContentType == "text/html" {
+ return readTextMailBody(body, canonicalContentType, header.Get("Content-Transfer-Encoding"))
+ } else if strings.HasPrefix(canonicalContentType, "multipart/") {
+ return readMultipartMailBody(body, params)
}
return "", errUnsupportedContentType
}
-func readMultipartMailBody(body io.Reader, params map[string]string, depth int) (string, error) {
+func readMultipartMailBody(body io.Reader, params map[string]string) (string, error) {
+ parts := make(map[string]string)
+ if err := readMultipartMailBodyParts(body, params, 0, parts); err != nil && err != io.EOF {
+ return "", err
+ } else if s, ok := parts["text/plain"]; ok {
+ return s, nil
+ } else if s, ok := parts["text/html"]; ok {
+ return s, nil
+ }
+ return "", io.EOF
+}
+
+func readMultipartMailBodyParts(body io.Reader, params map[string]string, depth int, parts map[string]string) error {
if depth >= maxMultipartDepth {
- return "", errMultipartNestedTooDeep
+ return errMultipartNestedTooDeep
}
mr := multipart.NewReader(body, params["boundary"])
for {
part, err := mr.NextPart()
if err != nil { // may be io.EOF
- return "", err
+ return err
}
partContentType, partParams, err := mime.ParseMediaType(part.Header.Get("Content-Type"))
if err != nil {
- return "", err
+ return err
}
- if strings.ToLower(partContentType) == "text/plain" {
- return readPlainTextMailBody(part, part.Header.Get("Content-Transfer-Encoding"))
+ canonicalPartContentType := strings.ToLower(partContentType)
+ if canonicalPartContentType == "text/plain" || canonicalPartContentType == "text/html" {
+ s, err := readTextMailBody(part, canonicalPartContentType, part.Header.Get("Content-Transfer-Encoding"))
+ if err != nil {
+ return err
+ }
+ parts[canonicalPartContentType] = s
} else if strings.HasPrefix(strings.ToLower(partContentType), "multipart/") {
- return readMultipartMailBody(part, partParams, depth+1)
+ if err := readMultipartMailBodyParts(part, partParams, depth+1, parts); err != nil {
+ return err
+ }
}
// Continue with next part
}
}
+func readTextMailBody(reader io.Reader, contentType, transferEncoding string) (string, error) {
+ if contentType == "text/plain" {
+ return readPlainTextMailBody(reader, transferEncoding)
+ } else if contentType == "text/html" {
+ return readHTMLMailBody(reader, transferEncoding)
+ }
+ return "", fmt.Errorf("unsupported content type: %s", contentType)
+}
+
func readPlainTextMailBody(reader io.Reader, transferEncoding string) (string, error) {
if strings.ToLower(transferEncoding) == "base64" {
reader = base64.NewDecoder(base64.StdEncoding, reader)
@@ -272,3 +303,27 @@ func readPlainTextMailBody(reader io.Reader, transferEncoding string) (string, e
}
return string(body), nil
}
+
+func readHTMLMailBody(reader io.Reader, transferEncoding string) (string, error) {
+ body, err := readPlainTextMailBody(reader, transferEncoding)
+ if err != nil {
+ return "", err
+ }
+ stripped := bluemonday.
+ StrictPolicy().
+ AddSpaceWhenStrippingTag(true).
+ Sanitize(body)
+ return removeExtraEmptyLines(stripped), nil
+}
+
+func removeExtraEmptyLines(str string) string {
+ // Replace lines that contain only spaces with empty lines
+ re := regexp.MustCompile(`(?m)^\s+$`)
+ str = re.ReplaceAllString(str, "")
+
+ // Remove more than 2 consecutive empty lines
+ re = regexp.MustCompile(`\n{3,}`)
+ str = re.ReplaceAllString(str, "\n\n")
+
+ return str
+}
diff --git a/server/smtp_server_test.go b/server/smtp_server_test.go
index 49085d79..1e504521 100644
--- a/server/smtp_server_test.go
+++ b/server/smtp_server_test.go
@@ -492,6 +492,131 @@ L0VOIj4KClRoaXMgaXMgYSB0ZXN0IG1lc3NhZ2UgZnJvbSBUcnVlTkFTIENPUkUuCg==
writeAndReadUntilLine(t, email, c, scanner, "554 5.0.0 Error: transaction failed, blame it on the weather: multipart message nested too deep")
}
+func TestSmtpBackend_HTMLEmail(t *testing.T) {
+ email := `EHLO example.com
+MAIL FROM: test@mydomain.me
+RCPT TO: ntfy-mytopic@ntfy.sh
+DATA
+Message-Id: <51610934ss4.mmailer@fritz.box>
+From:
+To: ,
+
+Date: Thu, 30 Mar 2023 02:56:53 +0000
+Subject: A HTML email
+Mime-Version: 1.0
+Content-Type: text/html;
+ charset="utf-8"
+Content-Transfer-Encoding: quoted-printable
+
+<=21DOCTYPE html>
+
+
+Alerttitle
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+headertext of table
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+" Very important information about a change in your
+home automation setup
+
+Now the light is on
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+If you don't want to recieve this message anymore, stop the push
+ services in your FRITZ=21Box =2E
+Here you can see the active push services: "System > Push Service"=2E
+
+
+
+
+
+
+
+
+
+
+This mail has ben sent by your FRITZ=21Box automatically=2E
+
+
+
+
+
+
+
+
+
+
+
+.
+`
+
+ s, c, _, scanner := newTestSMTPServer(t, func(w http.ResponseWriter, r *http.Request) {
+ require.Equal(t, "/mytopic", r.URL.Path)
+ require.Equal(t, "A HTML email", r.Header.Get("Title"))
+ require.Equal(t, "what's up", readAll(t, r.Body))
+ })
+ defer s.Close()
+ defer c.Close()
+ writeAndReadUntilLine(t, email, c, scanner, "250 2.0.0 OK: queued")
+}
+
func TestSmtpBackend_PlaintextWithToken(t *testing.T) {
email := `EHLO example.com
MAIL FROM: phil@example.com
From 76667ffcf9937cb4dd0428b5858710c218ee9f71 Mon Sep 17 00:00:00 2001
From: nisbet-hubbard <87453615+nisbet-hubbard@users.noreply.github.com>
Date: Wed, 12 Jul 2023 18:18:48 +0800
Subject: [PATCH 002/182] Use mod_proxy_http for websocket upgrade
mod_proxy_wstunnel is deprecated as of httpd 2.4.47. It also uses more resources since it relies on mod_rewrite.
See https://httpd.apache.org/docs/2.4/mod/mod_proxy.html#protoupgrade.
---
docs/config.md | 19 +++++--------------
1 file changed, 5 insertions(+), 14 deletions(-)
diff --git a/docs/config.md b/docs/config.md
index 9af79992..3577bb48 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -649,8 +649,8 @@ or the root domain:
ServerName ntfy.sh
- # Proxy connections to ntfy (requires "a2enmod proxy")
- ProxyPass / http://127.0.0.1:2586/
+ # Proxy connections to ntfy (requires "a2enmod proxy proxy_http")
+ ProxyPass / http://127.0.0.1:2586/ upgrade=websocket
ProxyPassReverse / http://127.0.0.1:2586/
SetEnv proxy-nokeepalive 1
@@ -661,11 +661,6 @@ or the root domain:
# Enable mod_rewrite (requires "a2enmod rewrite")
RewriteEngine on
-
- # WebSockets support (requires "a2enmod rewrite proxy_wstunnel")
- RewriteCond %{HTTP:Upgrade} websocket [NC]
- RewriteCond %{HTTP:Connection} upgrade [NC]
- RewriteRule ^/?(.*) "ws://127.0.0.1:2586/$1" [P,L]
# Redirect HTTP to HTTPS, but only for GET topic addresses, since we want
# it to work with curl without the annoying https:// prefix
@@ -681,8 +676,8 @@ or the root domain:
SSLCertificateKeyFile /etc/letsencrypt/live/ntfy.sh/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
- # Proxy connections to ntfy (requires "a2enmod proxy")
- ProxyPass / http://127.0.0.1:2586/
+ # Proxy connections to ntfy (requires "a2enmod proxy proxy_http")
+ ProxyPass / http://127.0.0.1:2586/ upgrade=websocket
ProxyPassReverse / http://127.0.0.1:2586/
SetEnv proxy-nokeepalive 1
@@ -693,11 +688,7 @@ or the root domain:
# Enable mod_rewrite (requires "a2enmod rewrite")
RewriteEngine on
-
- # WebSockets support (requires "a2enmod rewrite proxy_wstunnel")
- RewriteCond %{HTTP:Upgrade} websocket [NC]
- RewriteCond %{HTTP:Connection} upgrade [NC]
- RewriteRule ^/?(.*) "ws://127.0.0.1:2586/$1" [P,L]
+
```
From e52132c85b1297a53911f97302546aab227097eb Mon Sep 17 00:00:00 2001
From: nisbet-hubbard <87453615+nisbet-hubbard@users.noreply.github.com>
Date: Wed, 12 Jul 2023 19:48:51 +0800
Subject: [PATCH 003/182] Use mod_alias for redirection
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
It’s a less resource-intensive alternative to mod_rewrite.
---
docs/config.md | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/docs/config.md b/docs/config.md
index 3577bb48..af84dae9 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -658,14 +658,13 @@ or the root domain:
# Higher than the max message size of 4096 bytes
LimitRequestBody 102400
-
- # Enable mod_rewrite (requires "a2enmod rewrite")
- RewriteEngine on
# Redirect HTTP to HTTPS, but only for GET topic addresses, since we want
- # it to work with curl without the annoying https:// prefix
- RewriteCond %{REQUEST_METHOD} GET
- RewriteRule ^/([-_A-Za-z0-9]{0,64})$ https://%{SERVER_NAME}/$1 [R,L]
+ # it to work with curl without the annoying https:// prefix (requires "a2enmod alias")
+
+ RedirectMatch permanent "^/([-_A-Za-z0-9]{0,64})$" "https://%{SERVER_NAME}/$1"
+
+
@@ -685,9 +684,6 @@ or the root domain:
# Higher than the max message size of 4096 bytes
LimitRequestBody 102400
-
- # Enable mod_rewrite (requires "a2enmod rewrite")
- RewriteEngine on
```
From a534cc9ecacb5985c1de4b503ae435fe9973c768 Mon Sep 17 00:00:00 2001
From: nisbet-hubbard <87453615+nisbet-hubbard@users.noreply.github.com>
Date: Wed, 12 Jul 2023 20:00:48 +0800
Subject: [PATCH 004/182] Add server.yml ex. when using proxy
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This would help inexperienced sysadmins who may not realise that since TLS terminates at proxy, ntfy is actually listening on a TCP socket that’s using http rather than https.
---
docs/config.md | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/docs/config.md b/docs/config.md
index af84dae9..bb7f7e1b 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -44,6 +44,14 @@ Here are a few working sample configs:
attachment-cache-dir: "/var/cache/ntfy/attachments"
```
+=== "server.yml (behind proxy, with cache + attachments)"
+ ``` yaml
+ base-url: "http://ntfy.example.com"
+ listen-http: ":2586"
+ cache-file: "/var/cache/ntfy/cache.db"
+ attachment-cache-dir: "/var/cache/ntfy/attachments"
+ ```
+
=== "server.yml (ntfy.sh config)"
``` yaml
# All the things: Behind a proxy, Firebase, cache, attachments,
From 4e9eeb1fa168e0d27d6df013242aefc6e172fe5a Mon Sep 17 00:00:00 2001
From: nisbet-hubbard <87453615+nisbet-hubbard@users.noreply.github.com>
Date: Wed, 12 Jul 2023 20:24:57 +0800
Subject: [PATCH 005/182] Add missing note on log file permissions
---
server/server.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/server/server.yml b/server/server.yml
index 6b2fc989..b044a914 100644
--- a/server/server.yml
+++ b/server/server.yml
@@ -342,6 +342,10 @@
# - "field -> level" to match any value, e.g. "time_taken_ms -> debug"
# Warning: Using log-level-overrides has a performance penalty. Only use it for temporary debugging.
#
+# Check your permissions:
+# If you are running ntfy with systemd, make sure this log file is owned by the
+# ntfy user and group by running: chown ntfy.ntfy .
+#
# Example (good for production):
# log-level: info
# log-format: json
From 2e08c48742aa07934ada49a49d7e567341b755b5 Mon Sep 17 00:00:00 2001
From: Christian Meis
Date: Thu, 3 Aug 2023 14:56:43 +0000
Subject: [PATCH 006/182] Translated using Weblate (German)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/de/
---
web/public/static/langs/de.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/public/static/langs/de.json b/web/public/static/langs/de.json
index 6343deec..d29760f1 100644
--- a/web/public/static/langs/de.json
+++ b/web/public/static/langs/de.json
@@ -310,7 +310,7 @@
"prefs_reservations_delete_button": "Zugriff auf Thema zurücksetzen",
"prefs_reservations_table": "Übersicht reservierter Themen",
"prefs_reservations_table_topic_header": "Thema",
- "prefs_reservations_table_everyone_deny_all": "Nur kann veröffentlichen und lesen",
+ "prefs_reservations_table_everyone_deny_all": "Nur ich kann veröffentlichen und lesen",
"prefs_reservations_table_everyone_write_only": "Ich kann veröffentlichen und lesen, jeder kann veröffentlichen",
"prefs_reservations_table_not_subscribed": "Nicht abonniert",
"prefs_reservations_table_click_to_subscribe": "Klicken um zu abonnieren",
From 8544733048d6f1bc001ea1e12793cab57a8b1416 Mon Sep 17 00:00:00 2001
From: Nguyen Loc
Date: Mon, 7 Aug 2023 03:58:56 +0200
Subject: [PATCH 007/182] Added translation using Weblate (Vietnamese)
---
web/public/static/langs/vi.json | 1 +
1 file changed, 1 insertion(+)
create mode 100644 web/public/static/langs/vi.json
diff --git a/web/public/static/langs/vi.json b/web/public/static/langs/vi.json
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/web/public/static/langs/vi.json
@@ -0,0 +1 @@
+{}
From 17e634c56311ca093df09f103a9e1e63841569a7 Mon Sep 17 00:00:00 2001
From: Shjosan
Date: Mon, 7 Aug 2023 09:14:48 +0000
Subject: [PATCH 008/182] Translated using Weblate (Swedish)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/sv/
---
web/public/static/langs/sv.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/public/static/langs/sv.json b/web/public/static/langs/sv.json
index bc4a5405..90647542 100644
--- a/web/public/static/langs/sv.json
+++ b/web/public/static/langs/sv.json
@@ -277,7 +277,7 @@
"publish_dialog_priority_low": "Låg prioritet",
"publish_dialog_priority_default": "Standard prioritet",
"publish_dialog_priority_high": "Hög prioritet",
- "publish_dialog_priority_max": "Högsta prioritet",
+ "publish_dialog_priority_max": "Max. prioritet",
"publish_dialog_base_url_label": "Service-URL",
"publish_dialog_email_label": "E-post",
"publish_dialog_attach_reset": "Ta bort URL för bifogade filer",
From ea9f2c6e3549e5f5fb6f88c0a224d8664c4e3242 Mon Sep 17 00:00:00 2001
From: CaptB
Date: Thu, 10 Aug 2023 10:00:55 +0000
Subject: [PATCH 009/182] Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/zh_Hans/
---
web/public/static/langs/zh_Hans.json | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/zh_Hans.json b/web/public/static/langs/zh_Hans.json
index 52e0a1b8..f6858715 100644
--- a/web/public/static/langs/zh_Hans.json
+++ b/web/public/static/langs/zh_Hans.json
@@ -359,5 +359,26 @@
"publish_dialog_chip_call_no_verified_numbers_tooltip": "未验证的手机号",
"account_basics_phone_numbers_title": "电话号码",
"account_basics_phone_numbers_description": "电话通知",
- "account_basics_phone_numbers_dialog_description": "要使用来电通知功能,您需要添加并验证至少一个电话号码。可以通过短信或电话进行验证。"
+ "account_basics_phone_numbers_dialog_description": "要使用来电通知功能,您需要添加并验证至少一个电话号码。可以通过短信或电话进行验证。",
+ "account_basics_phone_numbers_dialog_code_label": "验证码",
+ "account_basics_phone_numbers_dialog_code_placeholder": "例如:123456",
+ "account_basics_phone_numbers_dialog_check_verification_button": "确认码",
+ "account_basics_phone_numbers_dialog_channel_sms": "短信",
+ "account_basics_phone_numbers_dialog_channel_call": "拨打",
+ "publish_dialog_call_reset": "清空拨号",
+ "account_basics_phone_numbers_no_phone_numbers_yet": "无可执行的电话号码",
+ "account_basics_phone_numbers_dialog_title": "添加电话号码",
+ "account_basics_phone_numbers_copied_to_clipboard": "电话号码已复制到剪贴板",
+ "account_basics_phone_numbers_dialog_number_label": "电话号码",
+ "account_basics_phone_numbers_dialog_number_placeholder": "例如:+1222333444",
+ "account_usage_calls_title": "已拨打电话",
+ "account_usage_calls_none": "此帐号无法拨打电话",
+ "account_upgrade_dialog_tier_features_reservations_one": "一条保留主题",
+ "account_upgrade_dialog_tier_features_emails_one": "一封每日邮件",
+ "account_upgrade_dialog_tier_features_calls_one": "一通每日电话",
+ "account_basics_phone_numbers_dialog_verify_button_sms": "发送信息",
+ "account_basics_phone_numbers_dialog_verify_button_call": "拨打电话",
+ "account_upgrade_dialog_tier_features_messages_one": "一条每日消息",
+ "account_upgrade_dialog_tier_features_calls_other": "{{calls}} 通每日电话",
+ "account_upgrade_dialog_tier_features_no_calls": "无电话呼叫"
}
From f77958fc358dcd59122ad02318ada336d71bed7c Mon Sep 17 00:00:00 2001
From: Erik S
Date: Tue, 15 Aug 2023 04:02:23 +0000
Subject: [PATCH 010/182] Translated using Weblate (Russian)
Currently translated at 95.5% (365 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/ru/
---
web/public/static/langs/ru.json | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/ru.json b/web/public/static/langs/ru.json
index 9633d97d..d2c8d7fc 100644
--- a/web/public/static/langs/ru.json
+++ b/web/public/static/langs/ru.json
@@ -352,5 +352,16 @@
"account_upgrade_dialog_tier_price_billed_monthly": "{{price}} в год. Оплата помесячно.",
"account_upgrade_dialog_tier_price_billed_yearly": "{{price}} ежегодно. Сэкономьте {{save}}.",
"account_upgrade_dialog_billing_contact_email": "По вопросам оплаты, пожалуйста свяжитесь с нами.",
- "account_upgrade_dialog_billing_contact_website": "По вопросам оплаты, пожалуйста обратитесь к нашему сайту."
+ "account_upgrade_dialog_billing_contact_website": "По вопросам оплаты, пожалуйста обратитесь к нашему сайту.",
+ "publish_dialog_call_reset": "Удалить вызов",
+ "account_basics_phone_numbers_dialog_description": "Для использования уведомлений необходимо добавить и подтвердить хотя бы один номер телефона. Проверить можно используя SMS или звонок.",
+ "account_basics_phone_numbers_dialog_title": "Добавить номер телефона",
+ "account_basics_phone_numbers_dialog_number_placeholder": "например +1222333444",
+ "account_basics_phone_numbers_dialog_code_placeholder": "например 123456",
+ "account_basics_phone_numbers_dialog_verify_button_sms": "Отправить SMS",
+ "account_usage_calls_title": "Совершённые вызовы",
+ "account_usage_calls_none": "Невозможно совершать вызовы с этим аккаунтом",
+ "publish_dialog_chip_call_no_verified_numbers_tooltip": "Нет проверенных номеров",
+ "account_basics_phone_numbers_copied_to_clipboard": "Номер телефона скопирован в буфер обмена",
+ "account_upgrade_dialog_tier_features_no_calls": "Нет вызовов"
}
From 3e3b556108209eeab3410188e6f6cc14d425a4d8 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 21:42:40 +0200
Subject: [PATCH 011/182] Fix excess token deletion bug
---
docs/releases.md | 3 +-
go.mod | 30 +-
go.sum | 30 ++
user/manager.go | 5 +-
user/manager_test.go | 66 +++-
web/package-lock.json | 837 +++++++++++++++++++++++++-----------------
6 files changed, 591 insertions(+), 380 deletions(-)
diff --git a/docs/releases.md b/docs/releases.md
index 4cdbb312..9cee59af 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -1260,9 +1260,10 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
**Bug fixes + maintenance:**
-* Fix issues with date/time with different locales ([#700](https://github.com/binwiederhier/ntfy/issues/700), thanks to [@nimbleghost](https://github.com/nimbleghost))
+* Fix issues with date/time with different locales ([#700](https://github.com/binwiederhier/ntfy/issues/700), thanks to [@nimbleghost](https://github.com/nimbleghost))
* Re-init i18n on each service worker message to avoid missing translations ([#817](https://github.com/binwiederhier/ntfy/pull/817), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
* You can now unset the default user:pass/token in `client.yml` for an individual subscription to remove the Authorization header ([#829](https://github.com/binwiederhier/ntfy/issues/829), thanks to [@tomeon](https://github.com/tomeon) for reporting and to [@wunter8](https://github.com/wunter8) for fixing)
+* Fixes issue with tokens getting deleted in certain cases ([#838](https://github.com/binwiederhier/ntfy/issues/838))
### ntfy Android app v1.16.1 (UNRELEASED)
diff --git a/go.mod b/go.mod
index 1f17fcac..d46c3deb 100644
--- a/go.mod
+++ b/go.mod
@@ -4,22 +4,22 @@ go 1.18
require (
cloud.google.com/go/firestore v1.12.0 // indirect
- cloud.google.com/go/storage v1.31.0 // indirect
+ cloud.google.com/go/storage v1.32.0 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
- github.com/emersion/go-smtp v0.17.0
+ github.com/emersion/go-smtp v0.18.0
github.com/gabriel-vasile/mimetype v1.4.2
github.com/gorilla/websocket v1.5.0
github.com/mattn/go-sqlite3 v1.14.17
github.com/olebedev/when v1.0.0
github.com/stretchr/testify v1.8.1
github.com/urfave/cli/v2 v2.25.7
- golang.org/x/crypto v0.11.0
- golang.org/x/oauth2 v0.10.0 // indirect
+ golang.org/x/crypto v0.12.0
+ golang.org/x/oauth2 v0.11.0 // indirect
golang.org/x/sync v0.3.0
- golang.org/x/term v0.10.0
+ golang.org/x/term v0.11.0
golang.org/x/time v0.3.0
- google.golang.org/api v0.134.0
+ google.golang.org/api v0.137.0
gopkg.in/yaml.v2 v2.4.0
)
@@ -29,14 +29,14 @@ require (
firebase.google.com/go/v4 v4.12.0
github.com/SherClockHolmes/webpush-go v1.2.0
github.com/prometheus/client_golang v1.16.0
- github.com/stripe/stripe-go/v74 v74.28.0
+ github.com/stripe/stripe-go/v74 v74.30.0
)
require (
cloud.google.com/go v0.110.7 // indirect
cloud.google.com/go/compute v1.23.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
- cloud.google.com/go/iam v1.1.1 // indirect
+ cloud.google.com/go/iam v1.1.2 // indirect
cloud.google.com/go/longrunning v0.5.1 // indirect
github.com/AlekSi/pointer v1.2.0 // indirect
github.com/MicahParks/keyfunc v1.9.0 // indirect
@@ -49,7 +49,7 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
- github.com/google/s2a-go v0.1.4 // indirect
+ github.com/google/s2a-go v0.1.5 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
@@ -63,15 +63,15 @@ require (
github.com/stretchr/objx v0.5.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.opencensus.io v0.24.0 // indirect
- golang.org/x/net v0.13.0 // indirect
- golang.org/x/sys v0.10.0 // indirect
- golang.org/x/text v0.11.0 // indirect
+ golang.org/x/net v0.14.0 // indirect
+ golang.org/x/sys v0.11.0 // indirect
+ golang.org/x/text v0.12.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/appengine/v2 v2.0.4 // indirect
- google.golang.org/genproto v0.0.0-20230731193218-e0aa005b6bdf // indirect
- google.golang.org/genproto/googleapis/api v0.0.0-20230731193218-e0aa005b6bdf // indirect
- google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf // indirect
+ google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 // indirect
+ google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect
google.golang.org/grpc v1.57.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
diff --git a/go.sum b/go.sum
index 6775fa86..3c804522 100644
--- a/go.sum
+++ b/go.sum
@@ -18,10 +18,14 @@ cloud.google.com/go/firestore v1.12.0 h1:aeEA/N7DW7+l2u5jtkO8I0qv0D95YwjggD8kUHr
cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4=
cloud.google.com/go/iam v1.1.1 h1:lW7fzj15aVIXYHREOqjRBV9PsH0Z6u8Y46a1YGvQP4Y=
cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU=
+cloud.google.com/go/iam v1.1.2 h1:gacbrBdWcoVmGLozRuStX45YKvJtzIjJdAolzUs1sm4=
+cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU=
cloud.google.com/go/longrunning v0.5.1 h1:Fr7TXftcqTudoyRJa113hyaqlGdiBQkp0Gq7tErFDWI=
cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc=
cloud.google.com/go/storage v1.31.0 h1:+S3LjjEN2zZ+L5hOwj4+1OkGCsLVe0NzpXKQ1pSdTCI=
cloud.google.com/go/storage v1.31.0/go.mod h1:81ams1PrhW16L4kF7qg+4mTq7SRs5HsbDTM0bWvrwJ0=
+cloud.google.com/go/storage v1.32.0 h1:5w6DxEGOnktmJHarxAOUywxVW9lbNWIzlzzUltG/3+o=
+cloud.google.com/go/storage v1.32.0/go.mod h1:Hhh/dogNRGca7IWv1RC2YqEn0c0G77ctA/OxflYkiD8=
firebase.google.com/go/v4 v4.11.0 h1:szjBoiF33A2FavRLIDZjW1mw+OsW/XAtHoYNIqWOjRk=
firebase.google.com/go/v4 v4.11.0/go.mod h1:60c36dWLK4+j05Vw5XMllek3b3PCynU3BfI46OSwsUE=
firebase.google.com/go/v4 v4.12.0 h1:I6dCkcWUMFNkFdWgzlf8SLWecQnKdFgJhMv5fT9l1qI=
@@ -62,6 +66,8 @@ github.com/emersion/go-smtp v0.16.0 h1:eB9CY9527WdEZSs5sWisTmilDX7gG+Q/2IdRcmubp
github.com/emersion/go-smtp v0.16.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ=
github.com/emersion/go-smtp v0.17.0 h1:tq90evlrcyqRfE6DSXaWVH54oX6OuZOQECEmhWBMEtI=
github.com/emersion/go-smtp v0.17.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ=
+github.com/emersion/go-smtp v0.18.0 h1:lrVQqB0JdxYjC8CsBt55pSwB756bRRN6vK0DSr0pXfM=
+github.com/emersion/go-smtp v0.18.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ=
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
@@ -109,6 +115,8 @@ github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN
github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw=
github.com/google/s2a-go v0.1.4 h1:1kZ/sQM3srePvKs3tXAvQzo66XfcReoqFpIpIccE7Oc=
github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
+github.com/google/s2a-go v0.1.5 h1:8IYp3w9nysqv3JH+NJgXJzGbDHzLOTj43BmSkp+O7qg=
+github.com/google/s2a-go v0.1.5/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
@@ -165,6 +173,8 @@ github.com/stripe/stripe-go/v74 v74.25.0 h1:mGJp9L1ymxjFvq5MlmG6ynv/fAGX6LLU8MyM
github.com/stripe/stripe-go/v74 v74.25.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
github.com/stripe/stripe-go/v74 v74.28.0 h1:ItzPPy+cjMKbR3Oihknt/8dv6PANp3hTThUGZjhF9lc=
github.com/stripe/stripe-go/v74 v74.28.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
+github.com/stripe/stripe-go/v74 v74.30.0 h1:0Kf0KkeFnY7iRhOwvTerX0Ia1BRw+eV1CVJ51mGYAUY=
+github.com/stripe/stripe-go/v74 v74.30.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
github.com/urfave/cli/v2 v2.25.7 h1:VAzn5oq403l5pHjc4OhD54+XGO9cdKVL/7lDjF+iKUs=
github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ=
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 h1:bAn7/zixMGCfxrRTfdpNzjtPYqr8smhKouy9mxVdGPU=
@@ -182,6 +192,8 @@ golang.org/x/crypto v0.10.0 h1:LKqV2xt9+kDzSTfOhx4FrkEBcMrAgHSYgzywV9zcGmM=
golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45I=
golang.org/x/crypto v0.11.0 h1:6Ewdq3tDic1mg5xRO4milcWCfMVQhI4NkqWWvqejpuA=
golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio=
+golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk=
+golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
@@ -207,12 +219,16 @@ golang.org/x/net v0.12.0 h1:cfawfvKITfUsFCeJIHJrbSxpeu/E81khclypR0GVT50=
golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA=
golang.org/x/net v0.13.0 h1:Nvo8UFsZ8X3BhAC9699Z1j7XQ3rsZnUUm7jfBEk1ueY=
golang.org/x/net v0.13.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA=
+golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
+golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.9.0 h1:BPpt2kU7oMRq3kCHAA1tbSEshXRw1LpG2ztgDwrzuAs=
golang.org/x/oauth2 v0.9.0/go.mod h1:qYgFZaFiu6Wg24azG8bdV52QJXJGbZzIIsRCdVKzbLw=
golang.org/x/oauth2 v0.10.0 h1:zHCpF2Khkwy4mMB4bv0U37YtJdTGW8jI0glAApi0Kh8=
golang.org/x/oauth2 v0.10.0/go.mod h1:kTpgurOux7LqtuxjuyZa4Gj2gdezIt/jQtGnNFfypQI=
+golang.org/x/oauth2 v0.11.0 h1:vPL4xzxBM4niKCW6g9whtaWVXTJf1U5e4aZxxFx/gbU=
+golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -232,12 +248,16 @@ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA=
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
+golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.9.0 h1:GRRCnKYhdQrD8kfRAdQ6Zcw1P0OcELxGLKJvtjVMZ28=
golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo=
golang.org/x/term v0.10.0 h1:3R7pNqamzBraeqj/Tj8qt1aQ2HpmlC+Cx/qL/7hn4/c=
golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o=
+golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0=
+golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
@@ -246,6 +266,8 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4=
golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
+golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
+golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -266,6 +288,8 @@ google.golang.org/api v0.130.0 h1:A50ujooa1h9iizvfzA4rrJr2B7uRmWexwbekQ2+5FPQ=
google.golang.org/api v0.130.0/go.mod h1:J/LCJMYSDFvAVREGCbrESb53n4++NMBDetSHGL5I5RY=
google.golang.org/api v0.134.0 h1:ktL4Goua+UBgoP1eL1/60LwZJqa1sIzkLmvoR3hR6Gw=
google.golang.org/api v0.134.0/go.mod h1:sjRL3UnjTx5UqNQS9EWr9N8p7xbHpy1k0XGRLCf3Spk=
+google.golang.org/api v0.137.0 h1:QrKX6uNvzJLr0Fd3vWVqcyrcmFoYi036VUAsZbiF4+s=
+google.golang.org/api v0.137.0/go.mod h1:4xyob8CxC+0GChNBvEUAk8VBKNvYOTWM9T3v3UfRxuY=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
@@ -284,18 +308,24 @@ google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130 h1:Au6te5hbKUV8pIY
google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y=
google.golang.org/genproto v0.0.0-20230731193218-e0aa005b6bdf h1:v5Cf4E9+6tawYrs/grq1q1hFpGtzlGFzgWHqwt6NFiU=
google.golang.org/genproto v0.0.0-20230731193218-e0aa005b6bdf/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8=
+google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 h1:Iveh6tGCJkHAjJgEqUQYGDGgbwmhjoAOz8kO/ajxefY=
+google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529 h1:s5YSX+ZH5b5vS9rnpGymvIyMpLRJizowqDlOuyjXnTk=
google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig=
google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130 h1:XVeBY8d/FaK4848myy41HBqnDwvxeV3zMZhwN1TvAMU=
google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ=
google.golang.org/genproto/googleapis/api v0.0.0-20230731193218-e0aa005b6bdf h1:xkVZ5FdZJF4U82Q/JS+DcZA83s/GRVL+QrFMlexk9Yo=
google.golang.org/genproto/googleapis/api v0.0.0-20230731193218-e0aa005b6bdf/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q=
+google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 h1:WGq4lvB/mlicysM/dUT3SBvijH4D3sm/Ny1A4wmt2CI=
+google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 h1:DEH99RbiLZhMxrpEJCZ0A+wdTe0EOgou/poSLx9vWf4=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130 h1:2FZP5XuJY9zQyGM5N0rtovnoXjiMUEIUMvw0m9wlpLc=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf h1:guOdSPaeFgN+jEJwTo1dQ71hdBm+yKSCCKuTRkJzcVo=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 h1:lv6/DhyiFFGsmzxbsUUTOkN29II+zeWHxvT8Lpdxsv0=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
diff --git a/user/manager.go b/user/manager.go
index 87b385e6..7f3b8b1d 100644
--- a/user/manager.go
+++ b/user/manager.go
@@ -262,7 +262,8 @@ const (
deleteExpiredTokensQuery = `DELETE FROM user_token WHERE expires > 0 AND expires < ?`
deleteExcessTokensQuery = `
DELETE FROM user_token
- WHERE (user_id, token) NOT IN (
+ WHERE user_id = ?
+ AND (user_id, token) NOT IN (
SELECT user_id, token
FROM user_token
WHERE user_id = ?
@@ -534,7 +535,7 @@ func (a *Manager) CreateToken(userID, label string, expires time.Time, origin ne
if tokenCount >= tokenMaxCount {
// This pruning logic is done in two queries for efficiency. The SELECT above is a lookup
// on two indices, whereas the query below is a full table scan.
- if _, err := tx.Exec(deleteExcessTokensQuery, userID, tokenMaxCount); err != nil {
+ if _, err := tx.Exec(deleteExcessTokensQuery, userID, userID, tokenMaxCount); err != nil {
return nil, err
}
}
diff --git a/user/manager_test.go b/user/manager_test.go
index 85e3c428..3c30a716 100644
--- a/user/manager_test.go
+++ b/user/manager_test.go
@@ -580,46 +580,80 @@ func TestManager_Token_Extend(t *testing.T) {
}
func TestManager_Token_MaxCount_AutoDelete(t *testing.T) {
+ // Tests that tokens are automatically deleted when the maximum number of tokens is reached
+
a := newTestManager(t, PermissionDenyAll)
require.Nil(t, a.AddUser("ben", "ben", RoleUser))
+ require.Nil(t, a.AddUser("phil", "phil", RoleUser))
- // Try to extend token for user without token
- u, err := a.User("ben")
+ ben, err := a.User("ben")
require.Nil(t, err)
- // Tokens
+ phil, err := a.User("phil")
+ require.Nil(t, err)
+
+ // Create 2 tokens for phil
+ philTokens := make([]string, 0)
+ token, err := a.CreateToken(phil.ID, "", time.Now().Add(72*time.Hour), netip.IPv4Unspecified())
+ require.Nil(t, err)
+ require.NotEmpty(t, token.Value)
+ philTokens = append(philTokens, token.Value)
+
+ token, err = a.CreateToken(phil.ID, "", time.Unix(0, 0), netip.IPv4Unspecified())
+ require.Nil(t, err)
+ require.NotEmpty(t, token.Value)
+ philTokens = append(philTokens, token.Value)
+
+ // Create 22 tokens for ben (only 20 allowed!)
baseTime := time.Now().Add(24 * time.Hour)
- tokens := make([]string, 0)
- for i := 0; i < 22; i++ {
- token, err := a.CreateToken(u.ID, "", time.Now().Add(72*time.Hour), netip.IPv4Unspecified())
+ benTokens := make([]string, 0)
+ for i := 0; i < 22; i++ { //
+ token, err := a.CreateToken(ben.ID, "", time.Now().Add(72*time.Hour), netip.IPv4Unspecified())
require.Nil(t, err)
require.NotEmpty(t, token.Value)
- tokens = append(tokens, token.Value)
+ benTokens = append(benTokens, token.Value)
// Manually modify expiry date to avoid sorting issues (this is a hack)
_, err = a.db.Exec(`UPDATE user_token SET expires=? WHERE token=?`, baseTime.Add(time.Duration(i)*time.Minute).Unix(), token.Value)
require.Nil(t, err)
}
- _, err = a.AuthenticateToken(tokens[0])
+ // Ben: The first 2 tokens should have been wiped and should not work anymore!
+ _, err = a.AuthenticateToken(benTokens[0])
require.Equal(t, ErrUnauthenticated, err)
- _, err = a.AuthenticateToken(tokens[1])
+ _, err = a.AuthenticateToken(benTokens[1])
require.Equal(t, ErrUnauthenticated, err)
+ // Ben: The other tokens should still work
for i := 2; i < 22; i++ {
- userWithToken, err := a.AuthenticateToken(tokens[i])
- require.Nil(t, err, "token[%d]=%s failed", i, tokens[i])
+ userWithToken, err := a.AuthenticateToken(benTokens[i])
+ require.Nil(t, err, "token[%d]=%s failed", i, benTokens[i])
require.Equal(t, "ben", userWithToken.Name)
- require.Equal(t, tokens[i], userWithToken.Token)
+ require.Equal(t, benTokens[i], userWithToken.Token)
}
- var count int
- rows, err := a.db.Query(`SELECT COUNT(*) FROM user_token`)
+ // Phil: All tokens should still work
+ for i := 0; i < 2; i++ {
+ userWithToken, err := a.AuthenticateToken(philTokens[i])
+ require.Nil(t, err, "token[%d]=%s failed", i, philTokens[i])
+ require.Equal(t, "phil", userWithToken.Name)
+ require.Equal(t, philTokens[i], userWithToken.Token)
+ }
+
+ var benCount int
+ rows, err := a.db.Query(`SELECT COUNT(*) FROM user_token WHERE user_id=?`, ben.ID)
require.Nil(t, err)
require.True(t, rows.Next())
- require.Nil(t, rows.Scan(&count))
- require.Equal(t, 20, count)
+ require.Nil(t, rows.Scan(&benCount))
+ require.Equal(t, 20, benCount)
+
+ var philCount int
+ rows, err = a.db.Query(`SELECT COUNT(*) FROM user_token WHERE user_id=?`, phil.ID)
+ require.Nil(t, err)
+ require.True(t, rows.Next())
+ require.Nil(t, rows.Scan(&philCount))
+ require.Equal(t, 2, philCount)
}
func TestManager_EnqueueStats_ResetStats(t *testing.T) {
diff --git a/web/package-lock.json b/web/package-lock.json
index f9ab3153..735fc42b 100644
--- a/web/package-lock.json
+++ b/web/package-lock.json
@@ -68,11 +68,12 @@
}
},
"node_modules/@babel/code-frame": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz",
- "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz",
+ "integrity": "sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==",
"dependencies": {
- "@babel/highlight": "^7.22.5"
+ "@babel/highlight": "^7.22.10",
+ "chalk": "^2.4.2"
},
"engines": {
"node": ">=6.9.0"
@@ -88,21 +89,21 @@
}
},
"node_modules/@babel/core": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.9.tgz",
- "integrity": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz",
+ "integrity": "sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.22.5",
- "@babel/generator": "^7.22.9",
- "@babel/helper-compilation-targets": "^7.22.9",
+ "@babel/code-frame": "^7.22.10",
+ "@babel/generator": "^7.22.10",
+ "@babel/helper-compilation-targets": "^7.22.10",
"@babel/helper-module-transforms": "^7.22.9",
- "@babel/helpers": "^7.22.6",
- "@babel/parser": "^7.22.7",
+ "@babel/helpers": "^7.22.10",
+ "@babel/parser": "^7.22.10",
"@babel/template": "^7.22.5",
- "@babel/traverse": "^7.22.8",
- "@babel/types": "^7.22.5",
+ "@babel/traverse": "^7.22.10",
+ "@babel/types": "^7.22.10",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
@@ -118,12 +119,12 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.9.tgz",
- "integrity": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz",
+ "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==",
"dev": true,
"dependencies": {
- "@babel/types": "^7.22.5",
+ "@babel/types": "^7.22.10",
"@jridgewell/gen-mapping": "^0.3.2",
"@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
@@ -145,21 +146,21 @@
}
},
"node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz",
- "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz",
+ "integrity": "sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==",
"dev": true,
"dependencies": {
- "@babel/types": "^7.22.5"
+ "@babel/types": "^7.22.10"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz",
- "integrity": "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz",
+ "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.22.9",
@@ -170,15 +171,12 @@
},
"engines": {
"node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz",
- "integrity": "sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz",
+ "integrity": "sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.22.5",
@@ -424,40 +422,40 @@
}
},
"node_modules/@babel/helper-wrap-function": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.9.tgz",
- "integrity": "sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz",
+ "integrity": "sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==",
"dev": true,
"dependencies": {
"@babel/helper-function-name": "^7.22.5",
"@babel/template": "^7.22.5",
- "@babel/types": "^7.22.5"
+ "@babel/types": "^7.22.10"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
- "version": "7.22.6",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz",
- "integrity": "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz",
+ "integrity": "sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==",
"dev": true,
"dependencies": {
"@babel/template": "^7.22.5",
- "@babel/traverse": "^7.22.6",
- "@babel/types": "^7.22.5"
+ "@babel/traverse": "^7.22.10",
+ "@babel/types": "^7.22.10"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz",
- "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz",
+ "integrity": "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.5",
- "chalk": "^2.0.0",
+ "chalk": "^2.4.2",
"js-tokens": "^4.0.0"
},
"engines": {
@@ -465,9 +463,9 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.22.7",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz",
- "integrity": "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz",
+ "integrity": "sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==",
"dev": true,
"bin": {
"parser": "bin/babel-parser.js"
@@ -520,22 +518,6 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz",
- "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==",
- "dev": true,
- "dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.18.6",
- "@babel/helper-plugin-utils": "^7.18.6"
- },
- "engines": {
- "node": ">=4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
"node_modules/@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
@@ -787,14 +769,14 @@
}
},
"node_modules/@babel/plugin-transform-async-generator-functions": {
- "version": "7.22.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz",
- "integrity": "sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz",
+ "integrity": "sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==",
"dev": true,
"dependencies": {
"@babel/helper-environment-visitor": "^7.22.5",
"@babel/helper-plugin-utils": "^7.22.5",
- "@babel/helper-remap-async-to-generator": "^7.22.5",
+ "@babel/helper-remap-async-to-generator": "^7.22.9",
"@babel/plugin-syntax-async-generators": "^7.8.4"
},
"engines": {
@@ -837,9 +819,9 @@
}
},
"node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz",
- "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz",
+ "integrity": "sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -924,9 +906,9 @@
}
},
"node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz",
- "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz",
+ "integrity": "sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -1293,9 +1275,9 @@
}
},
"node_modules/@babel/plugin-transform-optional-chaining": {
- "version": "7.22.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz",
- "integrity": "sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz",
+ "integrity": "sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1404,13 +1386,13 @@
}
},
"node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz",
- "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz",
+ "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
- "regenerator-transform": "^0.15.1"
+ "regenerator-transform": "^0.15.2"
},
"engines": {
"node": ">=6.9.0"
@@ -1511,9 +1493,9 @@
}
},
"node_modules/@babel/plugin-transform-unicode-escapes": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz",
- "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz",
+ "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -1574,13 +1556,13 @@
}
},
"node_modules/@babel/preset-env": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.9.tgz",
- "integrity": "sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz",
+ "integrity": "sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.22.9",
- "@babel/helper-compilation-targets": "^7.22.9",
+ "@babel/helper-compilation-targets": "^7.22.10",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/helper-validator-option": "^7.22.5",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5",
@@ -1605,15 +1587,15 @@
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.22.5",
- "@babel/plugin-transform-async-generator-functions": "^7.22.7",
+ "@babel/plugin-transform-async-generator-functions": "^7.22.10",
"@babel/plugin-transform-async-to-generator": "^7.22.5",
"@babel/plugin-transform-block-scoped-functions": "^7.22.5",
- "@babel/plugin-transform-block-scoping": "^7.22.5",
+ "@babel/plugin-transform-block-scoping": "^7.22.10",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-class-static-block": "^7.22.5",
"@babel/plugin-transform-classes": "^7.22.6",
"@babel/plugin-transform-computed-properties": "^7.22.5",
- "@babel/plugin-transform-destructuring": "^7.22.5",
+ "@babel/plugin-transform-destructuring": "^7.22.10",
"@babel/plugin-transform-dotall-regex": "^7.22.5",
"@babel/plugin-transform-duplicate-keys": "^7.22.5",
"@babel/plugin-transform-dynamic-import": "^7.22.5",
@@ -1636,27 +1618,27 @@
"@babel/plugin-transform-object-rest-spread": "^7.22.5",
"@babel/plugin-transform-object-super": "^7.22.5",
"@babel/plugin-transform-optional-catch-binding": "^7.22.5",
- "@babel/plugin-transform-optional-chaining": "^7.22.6",
+ "@babel/plugin-transform-optional-chaining": "^7.22.10",
"@babel/plugin-transform-parameters": "^7.22.5",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/plugin-transform-private-property-in-object": "^7.22.5",
"@babel/plugin-transform-property-literals": "^7.22.5",
- "@babel/plugin-transform-regenerator": "^7.22.5",
+ "@babel/plugin-transform-regenerator": "^7.22.10",
"@babel/plugin-transform-reserved-words": "^7.22.5",
"@babel/plugin-transform-shorthand-properties": "^7.22.5",
"@babel/plugin-transform-spread": "^7.22.5",
"@babel/plugin-transform-sticky-regex": "^7.22.5",
"@babel/plugin-transform-template-literals": "^7.22.5",
"@babel/plugin-transform-typeof-symbol": "^7.22.5",
- "@babel/plugin-transform-unicode-escapes": "^7.22.5",
+ "@babel/plugin-transform-unicode-escapes": "^7.22.10",
"@babel/plugin-transform-unicode-property-regex": "^7.22.5",
"@babel/plugin-transform-unicode-regex": "^7.22.5",
"@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
- "@babel/preset-modules": "^0.1.5",
- "@babel/types": "^7.22.5",
- "babel-plugin-polyfill-corejs2": "^0.4.4",
- "babel-plugin-polyfill-corejs3": "^0.8.2",
- "babel-plugin-polyfill-regenerator": "^0.5.1",
+ "@babel/preset-modules": "0.1.6-no-external-plugins",
+ "@babel/types": "^7.22.10",
+ "babel-plugin-polyfill-corejs2": "^0.4.5",
+ "babel-plugin-polyfill-corejs3": "^0.8.3",
+ "babel-plugin-polyfill-regenerator": "^0.5.2",
"core-js-compat": "^3.31.0",
"semver": "^6.3.1"
},
@@ -1668,14 +1650,12 @@
}
},
"node_modules/@babel/preset-modules": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz",
- "integrity": "sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==",
+ "version": "0.1.6-no-external-plugins",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
+ "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
"@babel/types": "^7.4.4",
"esutils": "^2.0.2"
},
@@ -1690,11 +1670,11 @@
"dev": true
},
"node_modules/@babel/runtime": {
- "version": "7.22.6",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz",
- "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz",
+ "integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==",
"dependencies": {
- "regenerator-runtime": "^0.13.11"
+ "regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
@@ -1715,19 +1695,19 @@
}
},
"node_modules/@babel/traverse": {
- "version": "7.22.8",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.8.tgz",
- "integrity": "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz",
+ "integrity": "sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==",
"dev": true,
"dependencies": {
- "@babel/code-frame": "^7.22.5",
- "@babel/generator": "^7.22.7",
+ "@babel/code-frame": "^7.22.10",
+ "@babel/generator": "^7.22.10",
"@babel/helper-environment-visitor": "^7.22.5",
"@babel/helper-function-name": "^7.22.5",
"@babel/helper-hoist-variables": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.22.7",
- "@babel/types": "^7.22.5",
+ "@babel/parser": "^7.22.10",
+ "@babel/types": "^7.22.10",
"debug": "^4.1.0",
"globals": "^11.1.0"
},
@@ -1736,9 +1716,9 @@
}
},
"node_modules/@babel/types": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz",
- "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==",
+ "version": "7.22.10",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz",
+ "integrity": "sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==",
"dependencies": {
"@babel/helper-string-parser": "^7.22.5",
"@babel/helper-validator-identifier": "^7.22.5",
@@ -1892,9 +1872,9 @@
"integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww=="
},
"node_modules/@esbuild/android-arm": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.17.tgz",
- "integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
+ "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
"cpu": [
"arm"
],
@@ -1908,9 +1888,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz",
- "integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
+ "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
"cpu": [
"arm64"
],
@@ -1924,9 +1904,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.17.tgz",
- "integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
+ "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
"cpu": [
"x64"
],
@@ -1940,9 +1920,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz",
- "integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
+ "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
"cpu": [
"arm64"
],
@@ -1956,9 +1936,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz",
- "integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
+ "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
"cpu": [
"x64"
],
@@ -1972,9 +1952,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz",
- "integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
+ "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
"cpu": [
"arm64"
],
@@ -1988,9 +1968,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz",
- "integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
+ "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
"cpu": [
"x64"
],
@@ -2004,9 +1984,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz",
- "integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
+ "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
"cpu": [
"arm"
],
@@ -2020,9 +2000,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz",
- "integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
+ "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
"cpu": [
"arm64"
],
@@ -2036,9 +2016,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz",
- "integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
+ "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
"cpu": [
"ia32"
],
@@ -2052,9 +2032,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz",
- "integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
+ "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
"cpu": [
"loong64"
],
@@ -2068,9 +2048,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz",
- "integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
+ "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
"cpu": [
"mips64el"
],
@@ -2084,9 +2064,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz",
- "integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
+ "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
"cpu": [
"ppc64"
],
@@ -2100,9 +2080,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz",
- "integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
+ "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
"cpu": [
"riscv64"
],
@@ -2116,9 +2096,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz",
- "integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
+ "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
"cpu": [
"s390x"
],
@@ -2132,9 +2112,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz",
- "integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
+ "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
"cpu": [
"x64"
],
@@ -2148,9 +2128,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz",
- "integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
+ "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
"cpu": [
"x64"
],
@@ -2164,9 +2144,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz",
- "integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
+ "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
"cpu": [
"x64"
],
@@ -2180,9 +2160,9 @@
}
},
"node_modules/@esbuild/sunos-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz",
- "integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
+ "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
"cpu": [
"x64"
],
@@ -2196,9 +2176,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz",
- "integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
+ "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
"cpu": [
"arm64"
],
@@ -2212,9 +2192,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz",
- "integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
+ "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
"cpu": [
"ia32"
],
@@ -2228,9 +2208,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz",
- "integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
+ "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
"cpu": [
"x64"
],
@@ -2268,9 +2248,9 @@
}
},
"node_modules/@eslint/eslintrc": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz",
- "integrity": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz",
+ "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
@@ -2291,9 +2271,9 @@
}
},
"node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "13.20.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
- "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
+ "version": "13.21.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz",
+ "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==",
"dev": true,
"dependencies": {
"type-fest": "^0.20.2"
@@ -2318,9 +2298,9 @@
}
},
"node_modules/@eslint/js": {
- "version": "8.46.0",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.46.0.tgz",
- "integrity": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==",
+ "version": "8.47.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.47.0.tgz",
+ "integrity": "sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -2374,9 +2354,9 @@
}
},
"node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
- "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
+ "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
"dev": true,
"engines": {
"node": ">=6.0.0"
@@ -2408,21 +2388,15 @@
"dev": true
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.18",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
- "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
+ "version": "0.3.19",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
+ "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
"dev": true,
"dependencies": {
- "@jridgewell/resolve-uri": "3.1.0",
- "@jridgewell/sourcemap-codec": "1.4.14"
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
}
},
- "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.14",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
- "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==",
- "dev": true
- },
"node_modules/@mapbox/hast-util-table-cell-style": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@mapbox/hast-util-table-cell-style/-/hast-util-table-cell-style-0.2.0.tgz",
@@ -2435,14 +2409,14 @@
}
},
"node_modules/@mui/base": {
- "version": "5.0.0-beta.9",
- "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.9.tgz",
- "integrity": "sha512-gm6gnPnc/lS5Z3neH0iuOrK7IbS02+oh6KsMtXYLhI6bJpHs+PNWFsBmISx7x4FSPVJZvZkb8Bw6pEXpIMFt7Q==",
+ "version": "5.0.0-beta.11",
+ "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.11.tgz",
+ "integrity": "sha512-FdKZGPd8qmC3ZNke7CNhzcEgToc02M6WYZc9hcBsNQ17bgAd3s9F//1bDDYgMVBYxDM71V0sv/hBHlOY4I1ZVA==",
"dependencies": {
"@babel/runtime": "^7.22.6",
"@emotion/is-prop-valid": "^1.2.1",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.3",
+ "@mui/utils": "^5.14.5",
"@popperjs/core": "^2.11.8",
"clsx": "^2.0.0",
"prop-types": "^15.8.1",
@@ -2467,9 +2441,9 @@
}
},
"node_modules/@mui/core-downloads-tracker": {
- "version": "5.14.3",
- "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.3.tgz",
- "integrity": "sha512-QxvrcDqphZoXRjsAmCaQylmWjC/8/qKWwIde1MJMna5YIst3R9O0qhKRPu36/OE2d8AeTbCVjRcRvNqhhW8jyg==",
+ "version": "5.14.5",
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.5.tgz",
+ "integrity": "sha512-+wpGH1USwPcKMFPMvXqYPC6fEvhxM3FzxC8lyDiNK/imLyyJ6y2DPb1Oue7OGIKJWBmYBqrWWtfovrxd1aJHTA==",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui"
@@ -2501,16 +2475,16 @@
}
},
"node_modules/@mui/material": {
- "version": "5.14.3",
- "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.3.tgz",
- "integrity": "sha512-dlu4SOcCp9Cy+wkcfZ/ns9ZkP40nr/WPgqxX0HmrE0o+dkE1ropY9BbHsLrTlYJCko8yzcC8bLghrD4xqZG1og==",
+ "version": "5.14.5",
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.5.tgz",
+ "integrity": "sha512-4qa4GMfuZH0Ai3mttk5ccXP8a3sf7aPlAJwyMrUSz6h9hPri6BPou94zeu3rENhhmKLby9S/W1y+pmficy8JKA==",
"dependencies": {
"@babel/runtime": "^7.22.6",
- "@mui/base": "5.0.0-beta.9",
- "@mui/core-downloads-tracker": "^5.14.3",
- "@mui/system": "^5.14.3",
+ "@mui/base": "5.0.0-beta.11",
+ "@mui/core-downloads-tracker": "^5.14.5",
+ "@mui/system": "^5.14.5",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.3",
+ "@mui/utils": "^5.14.5",
"@types/react-transition-group": "^4.4.6",
"clsx": "^2.0.0",
"csstype": "^3.1.2",
@@ -2545,12 +2519,12 @@
}
},
"node_modules/@mui/private-theming": {
- "version": "5.13.7",
- "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.13.7.tgz",
- "integrity": "sha512-qbSr+udcij5F9dKhGX7fEdx2drXchq7htLNr2Qg2Ma+WJ6q0ERlEqGSBiPiVDJkptcjeVL4DGmcf1wl5+vD4EA==",
+ "version": "5.14.5",
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.14.5.tgz",
+ "integrity": "sha512-cC4C5RrpXpDaaZyH9QwmPhRLgz+f2SYbOty3cPkk4qPSOSfif2ZEcDD9HTENKDDd9deB+xkPKzzZhi8cxIx8Ig==",
"dependencies": {
- "@babel/runtime": "^7.22.5",
- "@mui/utils": "^5.13.7",
+ "@babel/runtime": "^7.22.6",
+ "@mui/utils": "^5.14.5",
"prop-types": "^15.8.1"
},
"engines": {
@@ -2602,15 +2576,15 @@
}
},
"node_modules/@mui/system": {
- "version": "5.14.3",
- "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.14.3.tgz",
- "integrity": "sha512-b+C+j9+75+/iIYSa+1S4eCMc9MDNrj9hzWfExJqS2GffuNocRagjBZFyjtMqsLWLxMxQIX8Cg6j0hAioiw+WfQ==",
+ "version": "5.14.5",
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.14.5.tgz",
+ "integrity": "sha512-mextXZHDeGcR7E1kx43TRARrVXy+gI4wzpUgNv7MqZs1dvTVXQGVeAT6ydj9d6FUqHBPMNLGV/21vJOrpqsL+w==",
"dependencies": {
"@babel/runtime": "^7.22.6",
- "@mui/private-theming": "^5.13.7",
+ "@mui/private-theming": "^5.14.5",
"@mui/styled-engine": "^5.13.2",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.3",
+ "@mui/utils": "^5.14.5",
"clsx": "^2.0.0",
"csstype": "^3.1.2",
"prop-types": "^15.8.1"
@@ -2654,9 +2628,9 @@
}
},
"node_modules/@mui/utils": {
- "version": "5.14.3",
- "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.14.3.tgz",
- "integrity": "sha512-gZ6Etw+ppO43GYc1HFZSLjwd4DoZoa+RrYTD25wQLfzcSoPjVoC/zZqA2Lkq0zjgwGBQOSxKZI6jfp9uXR+kgw==",
+ "version": "5.14.5",
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.14.5.tgz",
+ "integrity": "sha512-6Hzw63VR9C5xYv+CbjndoRLU6Gntal8rJ5W+GUzkyHrGWIyYPWZPa6AevnyGioySNETATe1H9oXS8f/7qgIHJA==",
"dependencies": {
"@babel/runtime": "^7.22.6",
"@types/prop-types": "^15.7.5",
@@ -2720,11 +2694,11 @@
}
},
"node_modules/@remix-run/router": {
- "version": "1.7.2",
- "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.7.2.tgz",
- "integrity": "sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==",
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.8.0.tgz",
+ "integrity": "sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==",
"engines": {
- "node": ">=14"
+ "node": ">=14.0.0"
}
},
"node_modules/@surma/rollup-plugin-off-main-thread": {
@@ -2760,9 +2734,9 @@
}
},
"node_modules/@types/node": {
- "version": "20.4.6",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.6.tgz",
- "integrity": "sha512-q0RkvNgMweWWIvSMDiXhflGUKMdIxBo2M2tYM/0kEGDueQByFzK4KZAgu5YHGFNxziTlppNpTIBcqHQAxlfHdA==",
+ "version": "20.5.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.0.tgz",
+ "integrity": "sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==",
"dev": true
},
"node_modules/@types/parse-json": {
@@ -2776,9 +2750,9 @@
"integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
},
"node_modules/@types/react": {
- "version": "18.2.18",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.18.tgz",
- "integrity": "sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==",
+ "version": "18.2.20",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.20.tgz",
+ "integrity": "sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
@@ -3048,6 +3022,15 @@
"integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==",
"dev": true
},
+ "node_modules/asynciterator.prototype": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz",
+ "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==",
+ "dev": true,
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ }
+ },
"node_modules/at-least-node": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
@@ -3249,9 +3232,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001519",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001519.tgz",
- "integrity": "sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg==",
+ "version": "1.0.30001521",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001521.tgz",
+ "integrity": "sha512-fnx1grfpEOvDGH+V17eccmNjucGUnCbP6KL+l5KqBIerp26WK/+RQ7CIDE37KGJjaPyqWXXlFUyKiWmvdNNKmQ==",
"dev": true,
"funding": [
{
@@ -3567,9 +3550,9 @@
}
},
"node_modules/electron-to-chromium": {
- "version": "1.4.482",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.482.tgz",
- "integrity": "sha512-h+UqpfmEr1Qkk0zp7ej/jid7CXoq4m4QzW6wNTb0ELJ/BZCpA4wgUylBIMGCe621tnr4l5VmoHjdoSx2lbnNJA==",
+ "version": "1.4.495",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.495.tgz",
+ "integrity": "sha512-mwknuemBZnoOCths4GtpU/SDuVMp3uQHKa2UNJT9/aVD6WVRjGpXOxRGX7lm6ILIenTdGXPSTCTDaWos5tEU8Q==",
"dev": true
},
"node_modules/emoji-regex": {
@@ -3647,6 +3630,28 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/es-iterator-helpers": {
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.13.tgz",
+ "integrity": "sha512-LK3VGwzvaPWobO8xzXXGRUOGw8Dcjyfk62CsY/wfHN75CwsJPbuypOYJxK6g5RyEL8YDjIWcl6jgd8foO6mmrA==",
+ "dev": true,
+ "dependencies": {
+ "asynciterator.prototype": "^1.0.0",
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.21.3",
+ "es-set-tostringtag": "^2.0.1",
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.2.1",
+ "globalthis": "^1.0.3",
+ "has-property-descriptors": "^1.0.0",
+ "has-proto": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "internal-slot": "^1.0.5",
+ "iterator.prototype": "^1.1.0",
+ "safe-array-concat": "^1.0.0"
+ }
+ },
"node_modules/es-set-tostringtag": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
@@ -3688,9 +3693,9 @@
}
},
"node_modules/esbuild": {
- "version": "0.18.17",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.17.tgz",
- "integrity": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==",
+ "version": "0.18.20",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz",
+ "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
"dev": true,
"hasInstallScript": true,
"bin": {
@@ -3700,28 +3705,28 @@
"node": ">=12"
},
"optionalDependencies": {
- "@esbuild/android-arm": "0.18.17",
- "@esbuild/android-arm64": "0.18.17",
- "@esbuild/android-x64": "0.18.17",
- "@esbuild/darwin-arm64": "0.18.17",
- "@esbuild/darwin-x64": "0.18.17",
- "@esbuild/freebsd-arm64": "0.18.17",
- "@esbuild/freebsd-x64": "0.18.17",
- "@esbuild/linux-arm": "0.18.17",
- "@esbuild/linux-arm64": "0.18.17",
- "@esbuild/linux-ia32": "0.18.17",
- "@esbuild/linux-loong64": "0.18.17",
- "@esbuild/linux-mips64el": "0.18.17",
- "@esbuild/linux-ppc64": "0.18.17",
- "@esbuild/linux-riscv64": "0.18.17",
- "@esbuild/linux-s390x": "0.18.17",
- "@esbuild/linux-x64": "0.18.17",
- "@esbuild/netbsd-x64": "0.18.17",
- "@esbuild/openbsd-x64": "0.18.17",
- "@esbuild/sunos-x64": "0.18.17",
- "@esbuild/win32-arm64": "0.18.17",
- "@esbuild/win32-ia32": "0.18.17",
- "@esbuild/win32-x64": "0.18.17"
+ "@esbuild/android-arm": "0.18.20",
+ "@esbuild/android-arm64": "0.18.20",
+ "@esbuild/android-x64": "0.18.20",
+ "@esbuild/darwin-arm64": "0.18.20",
+ "@esbuild/darwin-x64": "0.18.20",
+ "@esbuild/freebsd-arm64": "0.18.20",
+ "@esbuild/freebsd-x64": "0.18.20",
+ "@esbuild/linux-arm": "0.18.20",
+ "@esbuild/linux-arm64": "0.18.20",
+ "@esbuild/linux-ia32": "0.18.20",
+ "@esbuild/linux-loong64": "0.18.20",
+ "@esbuild/linux-mips64el": "0.18.20",
+ "@esbuild/linux-ppc64": "0.18.20",
+ "@esbuild/linux-riscv64": "0.18.20",
+ "@esbuild/linux-s390x": "0.18.20",
+ "@esbuild/linux-x64": "0.18.20",
+ "@esbuild/netbsd-x64": "0.18.20",
+ "@esbuild/openbsd-x64": "0.18.20",
+ "@esbuild/sunos-x64": "0.18.20",
+ "@esbuild/win32-arm64": "0.18.20",
+ "@esbuild/win32-ia32": "0.18.20",
+ "@esbuild/win32-x64": "0.18.20"
}
},
"node_modules/escalade": {
@@ -3745,15 +3750,15 @@
}
},
"node_modules/eslint": {
- "version": "8.46.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.46.0.tgz",
- "integrity": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==",
+ "version": "8.47.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.47.0.tgz",
+ "integrity": "sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==",
"dev": true,
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.6.1",
- "@eslint/eslintrc": "^2.1.1",
- "@eslint/js": "^8.46.0",
+ "@eslint/eslintrc": "^2.1.2",
+ "@eslint/js": "^8.47.0",
"@humanwhocodes/config-array": "^0.11.10",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
@@ -3764,7 +3769,7 @@
"doctrine": "^3.0.0",
"escape-string-regexp": "^4.0.0",
"eslint-scope": "^7.2.2",
- "eslint-visitor-keys": "^3.4.2",
+ "eslint-visitor-keys": "^3.4.3",
"espree": "^9.6.1",
"esquery": "^1.4.2",
"esutils": "^2.0.2",
@@ -3851,14 +3856,14 @@
}
},
"node_modules/eslint-import-resolver-node": {
- "version": "0.3.7",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
- "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==",
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
"dev": true,
"dependencies": {
"debug": "^3.2.7",
- "is-core-module": "^2.11.0",
- "resolve": "^1.22.1"
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
}
},
"node_modules/eslint-import-resolver-node/node_modules/debug": {
@@ -3949,23 +3954,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/eslint-plugin-import/node_modules/resolve": {
- "version": "1.22.3",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz",
- "integrity": "sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==",
- "dev": true,
- "dependencies": {
- "is-core-module": "^2.12.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/eslint-plugin-jsx-a11y": {
"version": "6.7.1",
"resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
@@ -3997,15 +3985,16 @@
}
},
"node_modules/eslint-plugin-react": {
- "version": "7.33.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.1.tgz",
- "integrity": "sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA==",
+ "version": "7.33.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz",
+ "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==",
"dev": true,
"dependencies": {
"array-includes": "^3.1.6",
"array.prototype.flatmap": "^1.3.1",
"array.prototype.tosorted": "^1.1.1",
"doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.0.12",
"estraverse": "^5.3.0",
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
"minimatch": "^3.1.2",
@@ -4083,9 +4072,9 @@
}
},
"node_modules/eslint-visitor-keys": {
- "version": "3.4.2",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.2.tgz",
- "integrity": "sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==",
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -4144,9 +4133,9 @@
"dev": true
},
"node_modules/eslint/node_modules/globals": {
- "version": "13.20.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
- "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
+ "version": "13.21.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz",
+ "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==",
"dev": true,
"dependencies": {
"type-fest": "^0.20.2"
@@ -4888,6 +4877,21 @@
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
},
+ "node_modules/is-async-function": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz",
+ "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-bigint": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
@@ -4951,9 +4955,9 @@
}
},
"node_modules/is-core-module": {
- "version": "2.12.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz",
- "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==",
+ "version": "2.13.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
+ "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
"dependencies": {
"has": "^1.0.3"
},
@@ -4994,6 +4998,33 @@
"node": ">=0.10.0"
}
},
+ "node_modules/is-finalizationregistry": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz",
+ "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-generator-function": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
+ "dev": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-glob": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
@@ -5015,6 +5046,15 @@
"url": "https://github.com/sponsors/wooorm"
}
},
+ "node_modules/is-map": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
+ "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-module": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
@@ -5108,6 +5148,15 @@
"node": ">=0.10.0"
}
},
+ "node_modules/is-set": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
+ "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-shared-array-buffer": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
@@ -5177,6 +5226,15 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/is-weakmap": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
+ "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-weakref": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
@@ -5189,6 +5247,19 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/is-weakset": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
+ "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/isarray": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
@@ -5201,6 +5272,19 @@
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
"dev": true
},
+ "node_modules/iterator.prototype": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.0.tgz",
+ "integrity": "sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.1.4",
+ "get-intrinsic": "^1.1.3",
+ "has-symbols": "^1.0.3",
+ "has-tostringtag": "^1.0.0",
+ "reflect.getprototypeof": "^1.0.3"
+ }
+ },
"node_modules/jake": {
"version": "10.8.7",
"resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz",
@@ -6053,9 +6137,9 @@
}
},
"node_modules/postcss": {
- "version": "8.4.27",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz",
- "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==",
+ "version": "8.4.28",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz",
+ "integrity": "sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==",
"dev": true,
"funding": [
{
@@ -6272,29 +6356,29 @@
}
},
"node_modules/react-router": {
- "version": "6.14.2",
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.14.2.tgz",
- "integrity": "sha512-09Zss2dE2z+T1D03IheqAFtK4UzQyX8nFPWx6jkwdYzGLXd5ie06A6ezS2fO6zJfEb/SpG6UocN2O1hfD+2urQ==",
+ "version": "6.15.0",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.15.0.tgz",
+ "integrity": "sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==",
"dependencies": {
- "@remix-run/router": "1.7.2"
+ "@remix-run/router": "1.8.0"
},
"engines": {
- "node": ">=14"
+ "node": ">=14.0.0"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/react-router-dom": {
- "version": "6.14.2",
- "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.14.2.tgz",
- "integrity": "sha512-5pWX0jdKR48XFZBuJqHosX3AAHjRAzygouMTyimnBPOLdY3WjzUSKhus2FVMihUFWzeLebDgr4r8UeQFAct7Bg==",
+ "version": "6.15.0",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.15.0.tgz",
+ "integrity": "sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==",
"dependencies": {
- "@remix-run/router": "1.7.2",
- "react-router": "6.14.2"
+ "@remix-run/router": "1.8.0",
+ "react-router": "6.15.0"
},
"engines": {
- "node": ">=14"
+ "node": ">=14.0.0"
},
"peerDependencies": {
"react": ">=16.8",
@@ -6316,6 +6400,26 @@
"react-dom": ">=16.6.0"
}
},
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.3.tgz",
+ "integrity": "sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4",
+ "get-intrinsic": "^1.1.1",
+ "globalthis": "^1.0.3",
+ "which-builtin-type": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/regenerate": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
@@ -6335,14 +6439,14 @@
}
},
"node_modules/regenerator-runtime": {
- "version": "0.13.11",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
- "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz",
+ "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
},
"node_modules/regenerator-transform": {
- "version": "0.15.1",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz",
- "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==",
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
+ "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
"dev": true,
"dependencies": {
"@babel/runtime": "^7.8.4"
@@ -6450,11 +6554,11 @@
}
},
"node_modules/resolve": {
- "version": "1.22.2",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz",
- "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
+ "version": "1.22.4",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz",
+ "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==",
"dependencies": {
- "is-core-module": "^2.11.0",
+ "is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -6499,9 +6603,9 @@
}
},
"node_modules/rollup": {
- "version": "3.27.1",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.27.1.tgz",
- "integrity": "sha512-tXNDFwOkN6C2w5Blj1g6ForKeFw6c1mDu5jxoeDO3/pmYjgt+8yvIFjKzH5FQUq70OKZBkOt0zzv0THXL7vwzQ==",
+ "version": "3.28.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.0.tgz",
+ "integrity": "sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==",
"dev": true,
"bin": {
"rollup": "dist/bin/rollup"
@@ -7354,14 +7458,14 @@
}
},
"node_modules/vite": {
- "version": "4.4.8",
- "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.8.tgz",
- "integrity": "sha512-LONawOUUjxQridNWGQlNizfKH89qPigK36XhMI7COMGztz8KNY0JHim7/xDd71CZwGT4HtSRgI7Hy+RlhG0Gvg==",
+ "version": "4.4.9",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz",
+ "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==",
"dev": true,
"dependencies": {
"esbuild": "^0.18.10",
- "postcss": "^8.4.26",
- "rollup": "^3.25.2"
+ "postcss": "^8.4.27",
+ "rollup": "^3.27.1"
},
"bin": {
"vite": "bin/vite.js"
@@ -7491,6 +7595,47 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/which-builtin-type": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz",
+ "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==",
+ "dev": true,
+ "dependencies": {
+ "function.prototype.name": "^1.1.5",
+ "has-tostringtag": "^1.0.0",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.0.5",
+ "is-finalizationregistry": "^1.0.2",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.1.4",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.0.2",
+ "which-collection": "^1.0.1",
+ "which-typed-array": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-collection": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz",
+ "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==",
+ "dev": true,
+ "dependencies": {
+ "is-map": "^2.0.1",
+ "is-set": "^2.0.1",
+ "is-weakmap": "^2.0.1",
+ "is-weakset": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/which-typed-array": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz",
From 67459650d4a8a187f6ccd42eb17732365e1900e0 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 21:59:24 +0200
Subject: [PATCH 012/182] Release notes
---
docs/releases.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docs/releases.md b/docs/releases.md
index 9cee59af..160c5d5d 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -1265,6 +1265,10 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
* You can now unset the default user:pass/token in `client.yml` for an individual subscription to remove the Authorization header ([#829](https://github.com/binwiederhier/ntfy/issues/829), thanks to [@tomeon](https://github.com/tomeon) for reporting and to [@wunter8](https://github.com/wunter8) for fixing)
* Fixes issue with tokens getting deleted in certain cases ([#838](https://github.com/binwiederhier/ntfy/issues/838))
+**Documentation:**
+
+* Update docs for Apache config ([#819](https://github.com/binwiederhier/ntfy/pull/819), thanks to [@nisbet-hubbard](https://github.com/nisbet-hubbard))
+
### ntfy Android app v1.16.1 (UNRELEASED)
**Features:**
From bc4d4f424a7b4f7d30e7c2fd4159e51dc2c1b290 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 22:05:51 +0200
Subject: [PATCH 013/182] Pin go-smtp v0.17.0
---
go.mod | 4 ++-
go.sum | 86 ++--------------------------------------------------------
2 files changed, 5 insertions(+), 85 deletions(-)
diff --git a/go.mod b/go.mod
index d46c3deb..1560c61d 100644
--- a/go.mod
+++ b/go.mod
@@ -19,10 +19,12 @@ require (
golang.org/x/sync v0.3.0
golang.org/x/term v0.11.0
golang.org/x/time v0.3.0
- google.golang.org/api v0.137.0
+ google.golang.org/api v0.138.0
gopkg.in/yaml.v2 v2.4.0
)
+replace github.com/emersion/go-smtp => github.com/emersion/go-smtp v0.17.0 // Pin version due to breaking changes, see #839
+
require github.com/pkg/errors v0.9.1 // indirect
require (
diff --git a/go.sum b/go.sum
index 3c804522..c6761a56 100644
--- a/go.sum
+++ b/go.sum
@@ -1,33 +1,19 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.110.3 h1:wwearW+L7sAPSomPIgJ3bVn6Ck00HGQnn5HMLwf0azo=
-cloud.google.com/go v0.110.3/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI=
-cloud.google.com/go v0.110.4 h1:1JYyxKMN9hd5dR2MYTPWkGUgcoxVVhg0LKNKEo0qvmk=
-cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI=
cloud.google.com/go v0.110.7 h1:rJyC7nWRg2jWGZ4wSJ5nY65GTdYJkg0cd/uXb+ACI6o=
cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI=
-cloud.google.com/go/compute v1.20.1 h1:6aKEtlUiwEpJzM001l0yFkpXmUVXaN8W+fbkb2AZNbg=
-cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM=
cloud.google.com/go/compute v1.23.0 h1:tP41Zoavr8ptEqaW6j+LQOnyBBhO7OkOMAGrgLopTwY=
cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM=
cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY=
cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA=
-cloud.google.com/go/firestore v1.11.0 h1:PPgtwcYUOXV2jFe1bV3nda3RCrOa8cvBjTOn2MQVfW8=
-cloud.google.com/go/firestore v1.11.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4=
cloud.google.com/go/firestore v1.12.0 h1:aeEA/N7DW7+l2u5jtkO8I0qv0D95YwjggD8kUHrTHO4=
cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4=
-cloud.google.com/go/iam v1.1.1 h1:lW7fzj15aVIXYHREOqjRBV9PsH0Z6u8Y46a1YGvQP4Y=
-cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU=
cloud.google.com/go/iam v1.1.2 h1:gacbrBdWcoVmGLozRuStX45YKvJtzIjJdAolzUs1sm4=
cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU=
cloud.google.com/go/longrunning v0.5.1 h1:Fr7TXftcqTudoyRJa113hyaqlGdiBQkp0Gq7tErFDWI=
cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc=
-cloud.google.com/go/storage v1.31.0 h1:+S3LjjEN2zZ+L5hOwj4+1OkGCsLVe0NzpXKQ1pSdTCI=
-cloud.google.com/go/storage v1.31.0/go.mod h1:81ams1PrhW16L4kF7qg+4mTq7SRs5HsbDTM0bWvrwJ0=
cloud.google.com/go/storage v1.32.0 h1:5w6DxEGOnktmJHarxAOUywxVW9lbNWIzlzzUltG/3+o=
cloud.google.com/go/storage v1.32.0/go.mod h1:Hhh/dogNRGca7IWv1RC2YqEn0c0G77ctA/OxflYkiD8=
-firebase.google.com/go/v4 v4.11.0 h1:szjBoiF33A2FavRLIDZjW1mw+OsW/XAtHoYNIqWOjRk=
-firebase.google.com/go/v4 v4.11.0/go.mod h1:60c36dWLK4+j05Vw5XMllek3b3PCynU3BfI46OSwsUE=
firebase.google.com/go/v4 v4.12.0 h1:I6dCkcWUMFNkFdWgzlf8SLWecQnKdFgJhMv5fT9l1qI=
firebase.google.com/go/v4 v4.12.0/go.mod h1:60c36dWLK4+j05Vw5XMllek3b3PCynU3BfI46OSwsUE=
github.com/AlekSi/pointer v1.2.0 h1:glcy/gc4h8HnG2Z3ZECSzZ1IX1x2JxRVuDzaJwQE0+w=
@@ -62,12 +48,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21/go.mod h1:iL2twTeMvZnrg54ZoPDNfJaJaqy0xIQFuBdrLsmspwQ=
github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead h1:fI1Jck0vUrXT8bnphprS1EoVRe2Q5CKCX8iDlpqjQ/Y=
github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead/go.mod h1:iL2twTeMvZnrg54ZoPDNfJaJaqy0xIQFuBdrLsmspwQ=
-github.com/emersion/go-smtp v0.16.0 h1:eB9CY9527WdEZSs5sWisTmilDX7gG+Q/2IdRcmubpa8=
-github.com/emersion/go-smtp v0.16.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ=
github.com/emersion/go-smtp v0.17.0 h1:tq90evlrcyqRfE6DSXaWVH54oX6OuZOQECEmhWBMEtI=
github.com/emersion/go-smtp v0.17.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ=
-github.com/emersion/go-smtp v0.18.0 h1:lrVQqB0JdxYjC8CsBt55pSwB756bRRN6vK0DSr0pXfM=
-github.com/emersion/go-smtp v0.18.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ=
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
@@ -113,8 +95,6 @@ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw=
-github.com/google/s2a-go v0.1.4 h1:1kZ/sQM3srePvKs3tXAvQzo66XfcReoqFpIpIccE7Oc=
-github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
github.com/google/s2a-go v0.1.5 h1:8IYp3w9nysqv3JH+NJgXJzGbDHzLOTj43BmSkp+O7qg=
github.com/google/s2a-go v0.1.5/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
@@ -122,8 +102,6 @@ github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/enterprise-certificate-proxy v0.2.5 h1:UR4rDjcgpgEnqpIEvkiqTYKBCKLNmlge2eVjoZfySzM=
github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w=
-github.com/googleapis/gax-go/v2 v2.11.0 h1:9V9PWXEsWnPpQhu/PeQIkS4eGzMlTLGgt80cUUI8Ki4=
-github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI=
github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56etFpas=
github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
@@ -149,8 +127,6 @@ github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUo
github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU=
github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY=
github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=
-github.com/prometheus/procfs v0.11.0 h1:5EAgkfkMl659uZPbe9AS2N68a7Cc1TJbPEuGzFuRbyk=
-github.com/prometheus/procfs v0.11.0/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM=
github.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI=
github.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY=
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
@@ -167,12 +143,6 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
-github.com/stripe/stripe-go/v74 v74.24.0 h1:h+hXEI5avC5moAh2YLtphMFTBnp11TfXTcP4suuWDLk=
-github.com/stripe/stripe-go/v74 v74.24.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
-github.com/stripe/stripe-go/v74 v74.25.0 h1:mGJp9L1ymxjFvq5MlmG6ynv/fAGX6LLU8MyMVsiRAMY=
-github.com/stripe/stripe-go/v74 v74.25.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
-github.com/stripe/stripe-go/v74 v74.28.0 h1:ItzPPy+cjMKbR3Oihknt/8dv6PANp3hTThUGZjhF9lc=
-github.com/stripe/stripe-go/v74 v74.28.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
github.com/stripe/stripe-go/v74 v74.30.0 h1:0Kf0KkeFnY7iRhOwvTerX0Ia1BRw+eV1CVJ51mGYAUY=
github.com/stripe/stripe-go/v74 v74.30.0/go.mod h1:f9L6LvaXa35ja7eyvP6GQswoaIPaBRvGAimAO+udbBw=
github.com/urfave/cli/v2 v2.25.7 h1:VAzn5oq403l5pHjc4OhD54+XGO9cdKVL/7lDjF+iKUs=
@@ -188,10 +158,6 @@ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACk
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
-golang.org/x/crypto v0.10.0 h1:LKqV2xt9+kDzSTfOhx4FrkEBcMrAgHSYgzywV9zcGmM=
-golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45I=
-golang.org/x/crypto v0.11.0 h1:6Ewdq3tDic1mg5xRO4milcWCfMVQhI4NkqWWvqejpuA=
-golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio=
golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk=
golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
@@ -213,20 +179,10 @@ golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
-golang.org/x/net v0.11.0 h1:Gi2tvZIJyBtO9SDr1q9h5hEQCp/4L2RQ+ar0qjx2oNU=
-golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ=
-golang.org/x/net v0.12.0 h1:cfawfvKITfUsFCeJIHJrbSxpeu/E81khclypR0GVT50=
-golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA=
-golang.org/x/net v0.13.0 h1:Nvo8UFsZ8X3BhAC9699Z1j7XQ3rsZnUUm7jfBEk1ueY=
-golang.org/x/net v0.13.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA=
golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.9.0 h1:BPpt2kU7oMRq3kCHAA1tbSEshXRw1LpG2ztgDwrzuAs=
-golang.org/x/oauth2 v0.9.0/go.mod h1:qYgFZaFiu6Wg24azG8bdV52QJXJGbZzIIsRCdVKzbLw=
-golang.org/x/oauth2 v0.10.0 h1:zHCpF2Khkwy4mMB4bv0U37YtJdTGW8jI0glAApi0Kh8=
-golang.org/x/oauth2 v0.10.0/go.mod h1:kTpgurOux7LqtuxjuyZa4Gj2gdezIt/jQtGnNFfypQI=
golang.org/x/oauth2 v0.11.0 h1:vPL4xzxBM4niKCW6g9whtaWVXTJf1U5e4aZxxFx/gbU=
golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -246,16 +202,10 @@ golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA=
-golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
-golang.org/x/term v0.9.0 h1:GRRCnKYhdQrD8kfRAdQ6Zcw1P0OcELxGLKJvtjVMZ28=
-golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo=
-golang.org/x/term v0.10.0 h1:3R7pNqamzBraeqj/Tj8qt1aQ2HpmlC+Cx/qL/7hn4/c=
-golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o=
golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0=
golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
@@ -264,8 +214,6 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
-golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4=
-golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
@@ -282,48 +230,22 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
-google.golang.org/api v0.129.0 h1:2XbdjjNfFPXQyufzQVwPf1RRnHH8Den2pfNE2jw7L8w=
-google.golang.org/api v0.129.0/go.mod h1:dFjiXlanKwWE3612X97llhsoI36FAoIiRj3aTl5b/zE=
-google.golang.org/api v0.130.0 h1:A50ujooa1h9iizvfzA4rrJr2B7uRmWexwbekQ2+5FPQ=
-google.golang.org/api v0.130.0/go.mod h1:J/LCJMYSDFvAVREGCbrESb53n4++NMBDetSHGL5I5RY=
-google.golang.org/api v0.134.0 h1:ktL4Goua+UBgoP1eL1/60LwZJqa1sIzkLmvoR3hR6Gw=
-google.golang.org/api v0.134.0/go.mod h1:sjRL3UnjTx5UqNQS9EWr9N8p7xbHpy1k0XGRLCf3Spk=
-google.golang.org/api v0.137.0 h1:QrKX6uNvzJLr0Fd3vWVqcyrcmFoYi036VUAsZbiF4+s=
-google.golang.org/api v0.137.0/go.mod h1:4xyob8CxC+0GChNBvEUAk8VBKNvYOTWM9T3v3UfRxuY=
+google.golang.org/api v0.138.0 h1:K/tVp05MxNVbHShRw9m7e9VJGdagNeTdMzqPH7AUqr0=
+google.golang.org/api v0.138.0/go.mod h1:4xyob8CxC+0GChNBvEUAk8VBKNvYOTWM9T3v3UfRxuY=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/appengine/v2 v2.0.3 h1:AyY/mipuqiyCIAqOevfmu5fMDc5/9P/QggWfCQYdkSA=
-google.golang.org/appengine/v2 v2.0.3/go.mod h1:2Z0TTdcXxnHdXzmp8drrmOExUDM2WQgyT33c6JDUlJM=
google.golang.org/appengine/v2 v2.0.4 h1:aAAPYixP9EfTJjNO6F46afaxp+jfzb0VgwVjMeLBtF4=
google.golang.org/appengine/v2 v2.0.4/go.mod h1:WoEXGoXNfa0mLvaH5sV3ZSGXwVmy8yf7Z1JKf3J3wLI=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
-google.golang.org/genproto v0.0.0-20230629202037-9506855d4529 h1:9JucMWR7sPvCxUFd6UsOUNmA5kCcWOfORaT3tpAsKQs=
-google.golang.org/genproto v0.0.0-20230629202037-9506855d4529/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64=
-google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130 h1:Au6te5hbKUV8pIYWHqOUZ1pva5qK/rwbIhoXEUB9Lu8=
-google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y=
-google.golang.org/genproto v0.0.0-20230731193218-e0aa005b6bdf h1:v5Cf4E9+6tawYrs/grq1q1hFpGtzlGFzgWHqwt6NFiU=
-google.golang.org/genproto v0.0.0-20230731193218-e0aa005b6bdf/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8=
google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 h1:Iveh6tGCJkHAjJgEqUQYGDGgbwmhjoAOz8kO/ajxefY=
google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
-google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529 h1:s5YSX+ZH5b5vS9rnpGymvIyMpLRJizowqDlOuyjXnTk=
-google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig=
-google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130 h1:XVeBY8d/FaK4848myy41HBqnDwvxeV3zMZhwN1TvAMU=
-google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ=
-google.golang.org/genproto/googleapis/api v0.0.0-20230731193218-e0aa005b6bdf h1:xkVZ5FdZJF4U82Q/JS+DcZA83s/GRVL+QrFMlexk9Yo=
-google.golang.org/genproto/googleapis/api v0.0.0-20230731193218-e0aa005b6bdf/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q=
google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 h1:WGq4lvB/mlicysM/dUT3SBvijH4D3sm/Ny1A4wmt2CI=
google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 h1:DEH99RbiLZhMxrpEJCZ0A+wdTe0EOgou/poSLx9vWf4=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130 h1:2FZP5XuJY9zQyGM5N0rtovnoXjiMUEIUMvw0m9wlpLc=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf h1:guOdSPaeFgN+jEJwTo1dQ71hdBm+yKSCCKuTRkJzcVo=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230731193218-e0aa005b6bdf/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 h1:lv6/DhyiFFGsmzxbsUUTOkN29II+zeWHxvT8Lpdxsv0=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
@@ -334,10 +256,6 @@ google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTp
google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ=
-google.golang.org/grpc v1.56.1 h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ=
-google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s=
-google.golang.org/grpc v1.56.2 h1:fVRFRnXvU+x6C4IlHZewvJOVHoOv1TUuQyoRsYnB4bI=
-google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s=
google.golang.org/grpc v1.57.0 h1:kfzNeI/klCGD2YPMUlaGNT3pxvYfga7smW3Vth8Zsiw=
google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
From 2f0ec88f40418660e5b99a7ad589d661d8c4ff6f Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 22:17:07 +0200
Subject: [PATCH 014/182] Release bump
---
docs/install.md | 60 ++++++++++++++++++++++++------------------------
docs/releases.md | 37 ++++++++++++++---------------
2 files changed, 49 insertions(+), 48 deletions(-)
diff --git a/docs/install.md b/docs/install.md
index c7febac1..bc5b7a0d 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -29,37 +29,37 @@ deb/rpm packages.
=== "x86_64/amd64"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_amd64.tar.gz
- tar zxvf ntfy_2.6.2_linux_amd64.tar.gz
- sudo cp -a ntfy_2.6.2_linux_amd64/ntfy /usr/local/bin/ntfy
- sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_amd64/{client,server}/*.yml /etc/ntfy
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_amd64.tar.gz
+ tar zxvf ntfy_2.7.0_linux_amd64.tar.gz
+ sudo cp -a ntfy_2.7.0_linux_amd64/ntfy /usr/local/bin/ntfy
+ sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_amd64/{client,server}/*.yml /etc/ntfy
sudo ntfy serve
```
=== "armv6"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv6.tar.gz
- tar zxvf ntfy_2.6.2_linux_armv6.tar.gz
- sudo cp -a ntfy_2.6.2_linux_armv6/ntfy /usr/bin/ntfy
- sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_armv6/{client,server}/*.yml /etc/ntfy
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv6.tar.gz
+ tar zxvf ntfy_2.7.0_linux_armv6.tar.gz
+ sudo cp -a ntfy_2.7.0_linux_armv6/ntfy /usr/bin/ntfy
+ sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_armv6/{client,server}/*.yml /etc/ntfy
sudo ntfy serve
```
=== "armv7/armhf"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv7.tar.gz
- tar zxvf ntfy_2.6.2_linux_armv7.tar.gz
- sudo cp -a ntfy_2.6.2_linux_armv7/ntfy /usr/bin/ntfy
- sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_armv7/{client,server}/*.yml /etc/ntfy
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv7.tar.gz
+ tar zxvf ntfy_2.7.0_linux_armv7.tar.gz
+ sudo cp -a ntfy_2.7.0_linux_armv7/ntfy /usr/bin/ntfy
+ sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_armv7/{client,server}/*.yml /etc/ntfy
sudo ntfy serve
```
=== "arm64"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_arm64.tar.gz
- tar zxvf ntfy_2.6.2_linux_arm64.tar.gz
- sudo cp -a ntfy_2.6.2_linux_arm64/ntfy /usr/bin/ntfy
- sudo mkdir /etc/ntfy && sudo cp ntfy_2.6.2_linux_arm64/{client,server}/*.yml /etc/ntfy
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_arm64.tar.gz
+ tar zxvf ntfy_2.7.0_linux_arm64.tar.gz
+ sudo cp -a ntfy_2.7.0_linux_arm64/ntfy /usr/bin/ntfy
+ sudo mkdir /etc/ntfy && sudo cp ntfy_2.7.0_linux_arm64/{client,server}/*.yml /etc/ntfy
sudo ntfy serve
```
@@ -109,7 +109,7 @@ Manually installing the .deb file:
=== "x86_64/amd64"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_amd64.deb
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_amd64.deb
sudo dpkg -i ntfy_*.deb
sudo systemctl enable ntfy
sudo systemctl start ntfy
@@ -117,7 +117,7 @@ Manually installing the .deb file:
=== "armv6"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv6.deb
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv6.deb
sudo dpkg -i ntfy_*.deb
sudo systemctl enable ntfy
sudo systemctl start ntfy
@@ -125,7 +125,7 @@ Manually installing the .deb file:
=== "armv7/armhf"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv7.deb
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv7.deb
sudo dpkg -i ntfy_*.deb
sudo systemctl enable ntfy
sudo systemctl start ntfy
@@ -133,7 +133,7 @@ Manually installing the .deb file:
=== "arm64"
```bash
- wget https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_arm64.deb
+ wget https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_arm64.deb
sudo dpkg -i ntfy_*.deb
sudo systemctl enable ntfy
sudo systemctl start ntfy
@@ -143,28 +143,28 @@ Manually installing the .deb file:
=== "x86_64/amd64"
```bash
- sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_amd64.rpm
+ sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_amd64.rpm
sudo systemctl enable ntfy
sudo systemctl start ntfy
```
=== "armv6"
```bash
- sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv6.rpm
+ sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv6.rpm
sudo systemctl enable ntfy
sudo systemctl start ntfy
```
=== "armv7/armhf"
```bash
- sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_armv7.rpm
+ sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_armv7.rpm
sudo systemctl enable ntfy
sudo systemctl start ntfy
```
=== "arm64"
```bash
- sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_linux_arm64.rpm
+ sudo rpm -ivh https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_linux_arm64.rpm
sudo systemctl enable ntfy
sudo systemctl start ntfy
```
@@ -194,18 +194,18 @@ NixOS also supports [declarative setup of the ntfy server](https://search.nixos.
## macOS
The [ntfy CLI](subscribe/cli.md) (`ntfy publish` and `ntfy subscribe` only) is supported on macOS as well.
-To install, please [download the tarball](https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_darwin_all.tar.gz),
+To install, please [download the tarball](https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_darwin_all.tar.gz),
extract it and place it somewhere in your `PATH` (e.g. `/usr/local/bin/ntfy`).
If run as `root`, ntfy will look for its config at `/etc/ntfy/client.yml`. For all other users, it'll look for it at
`~/Library/Application Support/ntfy/client.yml` (sample included in the tarball).
```bash
-curl -L https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_darwin_all.tar.gz > ntfy_2.6.2_darwin_all.tar.gz
-tar zxvf ntfy_2.6.2_darwin_all.tar.gz
-sudo cp -a ntfy_2.6.2_darwin_all/ntfy /usr/local/bin/ntfy
+curl -L https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_darwin_all.tar.gz > ntfy_2.7.0_darwin_all.tar.gz
+tar zxvf ntfy_2.7.0_darwin_all.tar.gz
+sudo cp -a ntfy_2.7.0_darwin_all/ntfy /usr/local/bin/ntfy
mkdir ~/Library/Application\ Support/ntfy
-cp ntfy_2.6.2_darwin_all/client/client.yml ~/Library/Application\ Support/ntfy/client.yml
+cp ntfy_2.7.0_darwin_all/client/client.yml ~/Library/Application\ Support/ntfy/client.yml
ntfy --help
```
@@ -223,7 +223,7 @@ brew install ntfy
## Windows
The [ntfy CLI](subscribe/cli.md) (`ntfy publish` and `ntfy subscribe` only) is supported on Windows as well.
-To install, please [download the latest ZIP](https://github.com/binwiederhier/ntfy/releases/download/v2.6.2/ntfy_2.6.2_windows_amd64.zip),
+To install, please [download the latest ZIP](https://github.com/binwiederhier/ntfy/releases/download/v2.7.0/ntfy_2.7.0_windows_amd64.zip),
extract it and place the `ntfy.exe` binary somewhere in your `%Path%`.
The default path for the client config file is at `%AppData%\ntfy\client.yml` (not created automatically, sample in the ZIP file).
diff --git a/docs/releases.md b/docs/releases.md
index 160c5d5d..c907b43d 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -2,6 +2,25 @@
Binaries for all releases can be found on the GitHub releases pages for the [ntfy server](https://github.com/binwiederhier/ntfy/releases)
and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/releases).
+### ntfy server v2.7.0
+Released August 17, 2023
+
+**Features:**
+
+* Add support for [Markdown formatting](publish.md#markdown-formatting) in web app ([#310](https://github.com/binwiederhier/ntfy/issues/310), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
+* Add support for right-to-left languages (RTL) in the web app ([#663](https://github.com/binwiederhier/ntfy/issues/663), thanks to [@nimbleghost](https://github.com/nimbleghost))
+
+**Bug fixes + maintenance:**
+
+* Fix issues with date/time with different locales ([#700](https://github.com/binwiederhier/ntfy/issues/700), thanks to [@nimbleghost](https://github.com/nimbleghost))
+* Re-init i18n on each service worker message to avoid missing translations ([#817](https://github.com/binwiederhier/ntfy/pull/817), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
+* You can now unset the default user:pass/token in `client.yml` for an individual subscription to remove the Authorization header ([#829](https://github.com/binwiederhier/ntfy/issues/829), thanks to [@tomeon](https://github.com/tomeon) for reporting and to [@wunter8](https://github.com/wunter8) for fixing)
+* Fixes issue with tokens getting deleted in certain cases ([#838](https://github.com/binwiederhier/ntfy/issues/838))
+
+**Documentation:**
+
+* Update docs for Apache config ([#819](https://github.com/binwiederhier/ntfy/pull/819), thanks to [@nisbet-hubbard](https://github.com/nisbet-hubbard))
+
## ntfy server v2.6.2
Released June 30, 2023
@@ -1251,24 +1270,6 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
## Not released yet
-### ntfy server v2.7.0 (UNRELEASED)
-
-**Features:**
-
-* Add support for [Markdown formatting](publish.md#markdown-formatting) in web app ([#310](https://github.com/binwiederhier/ntfy/issues/310), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
-* Add support for right-to-left languages (RTL) in the web app ([#663](https://github.com/binwiederhier/ntfy/issues/663), thanks to [@nimbleghost](https://github.com/nimbleghost))
-
-**Bug fixes + maintenance:**
-
-* Fix issues with date/time with different locales ([#700](https://github.com/binwiederhier/ntfy/issues/700), thanks to [@nimbleghost](https://github.com/nimbleghost))
-* Re-init i18n on each service worker message to avoid missing translations ([#817](https://github.com/binwiederhier/ntfy/pull/817), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
-* You can now unset the default user:pass/token in `client.yml` for an individual subscription to remove the Authorization header ([#829](https://github.com/binwiederhier/ntfy/issues/829), thanks to [@tomeon](https://github.com/tomeon) for reporting and to [@wunter8](https://github.com/wunter8) for fixing)
-* Fixes issue with tokens getting deleted in certain cases ([#838](https://github.com/binwiederhier/ntfy/issues/838))
-
-**Documentation:**
-
-* Update docs for Apache config ([#819](https://github.com/binwiederhier/ntfy/pull/819), thanks to [@nisbet-hubbard](https://github.com/nisbet-hubbard))
-
### ntfy Android app v1.16.1 (UNRELEASED)
**Features:**
From 5cf1da974accc3f7ef2f0f814a7b9832a6d968a7 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 22:20:29 +0200
Subject: [PATCH 015/182] Thank you @skorokithakis for your donation
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 1081f4f2..99989a46 100644
--- a/README.md
+++ b/README.md
@@ -143,6 +143,7 @@ account costs. Even small donations are very much appreciated. A big fat **Thank
+
I'd also like to thank JetBrains for their awesome [IntelliJ IDEA](https://www.jetbrains.com/idea/),
and [DigitalOcean](https://m.do.co/c/442b929528db) (*referral link*) for supporting the project:
From 0d395249ff2968595624190d47fd5c8772bd3b27 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 22:21:06 +0200
Subject: [PATCH 016/182] Thank you @eenturk for your donation
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 99989a46..abaddf42 100644
--- a/README.md
+++ b/README.md
@@ -144,6 +144,7 @@ account costs. Even small donations are very much appreciated. A big fat **Thank
+
I'd also like to thank JetBrains for their awesome [IntelliJ IDEA](https://www.jetbrains.com/idea/),
and [DigitalOcean](https://m.do.co/c/442b929528db) (*referral link*) for supporting the project:
From 99eef493d246cea4797a1e6ad4b9b334b4696274 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 22:23:06 +0200
Subject: [PATCH 017/182] Thank you @spirossi for your sponsorship
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index abaddf42..6cc1adbe 100644
--- a/README.md
+++ b/README.md
@@ -145,6 +145,7 @@ account costs. Even small donations are very much appreciated. A big fat **Thank
+
I'd also like to thank JetBrains for their awesome [IntelliJ IDEA](https://www.jetbrains.com/idea/),
and [DigitalOcean](https://m.do.co/c/442b929528db) (*referral link*) for supporting the project:
From d7db3950161881928d8de6ccd2b048c9d685e5c5 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Thu, 17 Aug 2023 23:06:52 +0200
Subject: [PATCH 018/182] Release note details
---
docs/releases.md | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/docs/releases.md b/docs/releases.md
index c907b43d..4cc9b0b0 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -5,17 +5,30 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
### ntfy server v2.7.0
Released August 17, 2023
+This release ships Markdown support for the web app (not in the Android app yet), and adds support for
+right-to-left languages (RTL) in the web app. It also fixes a few issues around date/time formatting,
+internationalization support, a CLI auth bug.
+
+Furthermore, it fixes a security issue around access tokens getting erroneously deleted for other users
+in a specific scenario. This was a denial-of-service-type security issue, since it **effectively allowed a
+single user to deny access to all other users of a ntfy instance**. Please note that while tokens were
+erroneously deleted, **nobody but the token owner ever had access to it.** Please refer to [the ticket](https://github.com/binwiederhier/ntfy/issues/838)
+for details. **Please upgrade your ntfy instance if you run a multi-user system.**
+
**Features:**
* Add support for [Markdown formatting](publish.md#markdown-formatting) in web app ([#310](https://github.com/binwiederhier/ntfy/issues/310), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
* Add support for right-to-left languages (RTL) in the web app ([#663](https://github.com/binwiederhier/ntfy/issues/663), thanks to [@nimbleghost](https://github.com/nimbleghost))
+**Security:** ⚠️
+
+* Fixes issue with access tokens getting deleted ([#838](https://github.com/binwiederhier/ntfy/issues/838))
+
**Bug fixes + maintenance:**
* Fix issues with date/time with different locales ([#700](https://github.com/binwiederhier/ntfy/issues/700), thanks to [@nimbleghost](https://github.com/nimbleghost))
* Re-init i18n on each service worker message to avoid missing translations ([#817](https://github.com/binwiederhier/ntfy/pull/817), thanks to [@nihalgonsalves](https://github.com/nihalgonsalves))
* You can now unset the default user:pass/token in `client.yml` for an individual subscription to remove the Authorization header ([#829](https://github.com/binwiederhier/ntfy/issues/829), thanks to [@tomeon](https://github.com/tomeon) for reporting and to [@wunter8](https://github.com/wunter8) for fixing)
-* Fixes issue with tokens getting deleted in certain cases ([#838](https://github.com/binwiederhier/ntfy/issues/838))
**Documentation:**
From a5f0670f7fd1bec255f1f784f14114f2f38cc29b Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Fri, 18 Aug 2023 22:44:52 +0200
Subject: [PATCH 019/182] ACLs and underscores, resolves #840
---
user/manager.go | 60 ++++++++++---
user/manager_test.go | 205 ++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 248 insertions(+), 17 deletions(-)
diff --git a/user/manager.go b/user/manager.go
index 7f3b8b1d..324b7684 100644
--- a/user/manager.go
+++ b/user/manager.go
@@ -160,7 +160,7 @@ const (
SELECT read, write
FROM user_access a
JOIN user u ON u.id = a.user_id
- WHERE (u.user = ? OR u.user = ?) AND ? LIKE a.topic
+ WHERE (u.user = ? OR u.user = ?) AND ? LIKE a.topic ESCAPE '\'
ORDER BY u.user DESC
`
@@ -235,7 +235,7 @@ const (
selectOtherAccessCountQuery = `
SELECT COUNT(*)
FROM user_access
- WHERE (topic = ? OR ? LIKE topic)
+ WHERE (topic = ? OR ? LIKE topic ESCAPE '\')
AND (owner_user_id IS NULL OR owner_user_id != (SELECT id FROM user WHERE user = ?))
`
deleteAllAccessQuery = `DELETE FROM user_access`
@@ -312,7 +312,7 @@ const (
// Schema management queries
const (
- currentSchemaVersion = 4
+ currentSchemaVersion = 5
insertSchemaVersion = `INSERT INTO schemaVersion VALUES (1, ?)`
updateSchemaVersion = `UPDATE schemaVersion SET version = ? WHERE id = 1`
selectSchemaVersionQuery = `SELECT version FROM schemaVersion WHERE id = 1`
@@ -422,6 +422,11 @@ const (
FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE
);
`
+
+ // 4 -> 5
+ migrate4To5UpdateQueries = `
+ UPDATE user_access SET topic = REPLACE(topic, '_', '\_');
+ `
)
var (
@@ -429,6 +434,7 @@ var (
1: migrateFrom1,
2: migrateFrom2,
3: migrateFrom3,
+ 4: migrateFrom4,
}
)
@@ -1123,7 +1129,7 @@ func (a *Manager) Reservations(username string) ([]Reservation, error) {
return nil, err
}
reservations = append(reservations, Reservation{
- Topic: topic,
+ Topic: unescapeUnderscore(topic),
Owner: NewPermission(ownerRead, ownerWrite),
Everyone: NewPermission(everyoneRead.Bool, everyoneWrite.Bool), // false if null
})
@@ -1133,7 +1139,7 @@ func (a *Manager) Reservations(username string) ([]Reservation, error) {
// HasReservation returns true if the given topic access is owned by the user
func (a *Manager) HasReservation(username, topic string) (bool, error) {
- rows, err := a.db.Query(selectUserHasReservationQuery, username, topic)
+ rows, err := a.db.Query(selectUserHasReservationQuery, username, escapeUnderscore(topic))
if err != nil {
return false, err
}
@@ -1168,7 +1174,7 @@ func (a *Manager) ReservationsCount(username string) (int64, error) {
// ReservationOwner returns user ID of the user that owns this topic, or an
// empty string if it's not owned by anyone
func (a *Manager) ReservationOwner(topic string) (string, error) {
- rows, err := a.db.Query(selectUserReservationsOwnerQuery, topic)
+ rows, err := a.db.Query(selectUserReservationsOwnerQuery, escapeUnderscore(topic))
if err != nil {
return "", err
}
@@ -1263,7 +1269,7 @@ func (a *Manager) AllowReservation(username string, topic string) error {
if (!AllowedUsername(username) && username != Everyone) || !AllowedTopic(topic) {
return ErrInvalidArgument
}
- rows, err := a.db.Query(selectOtherAccessCountQuery, topic, topic, username)
+ rows, err := a.db.Query(selectOtherAccessCountQuery, escapeUnderscore(topic), escapeUnderscore(topic), username)
if err != nil {
return err
}
@@ -1328,10 +1334,10 @@ func (a *Manager) AddReservation(username string, topic string, everyone Permiss
return err
}
defer tx.Rollback()
- if _, err := tx.Exec(upsertUserAccessQuery, username, topic, true, true, username, username); err != nil {
+ if _, err := tx.Exec(upsertUserAccessQuery, username, escapeUnderscore(topic), true, true, username, username); err != nil {
return err
}
- if _, err := tx.Exec(upsertUserAccessQuery, Everyone, topic, everyone.IsRead(), everyone.IsWrite(), username, username); err != nil {
+ if _, err := tx.Exec(upsertUserAccessQuery, Everyone, escapeUnderscore(topic), everyone.IsRead(), everyone.IsWrite(), username, username); err != nil {
return err
}
return tx.Commit()
@@ -1354,10 +1360,10 @@ func (a *Manager) RemoveReservations(username string, topics ...string) error {
}
defer tx.Rollback()
for _, topic := range topics {
- if _, err := tx.Exec(deleteTopicAccessQuery, username, username, topic); err != nil {
+ if _, err := tx.Exec(deleteTopicAccessQuery, username, username, escapeUnderscore(topic)); err != nil {
return err
}
- if _, err := tx.Exec(deleteTopicAccessQuery, Everyone, Everyone, topic); err != nil {
+ if _, err := tx.Exec(deleteTopicAccessQuery, Everyone, Everyone, escapeUnderscore(topic)); err != nil {
return err
}
}
@@ -1484,12 +1490,24 @@ func (a *Manager) Close() error {
return a.db.Close()
}
+// toSQLWildcard converts a wildcard string to a SQL wildcard string. It only allows '*' as wildcards,
+// and escapes '_', assuming '\' as escape character.
func toSQLWildcard(s string) string {
- return strings.ReplaceAll(s, "*", "%")
+ return escapeUnderscore(strings.ReplaceAll(s, "*", "%"))
}
+// fromSQLWildcard converts a SQL wildcard string to a wildcard string. It converts '%' to '*',
+// and removes the '\_' escape character.
func fromSQLWildcard(s string) string {
- return strings.ReplaceAll(s, "%", "*")
+ return strings.ReplaceAll(unescapeUnderscore(s), "%", "*")
+}
+
+func escapeUnderscore(s string) string {
+ return strings.ReplaceAll(s, "_", "\\_")
+}
+
+func unescapeUnderscore(s string) string {
+ return strings.ReplaceAll(s, "\\_", "_")
}
func runStartupQueries(db *sql.DB, startupQueries string) error {
@@ -1627,6 +1645,22 @@ func migrateFrom3(db *sql.DB) error {
return tx.Commit()
}
+func migrateFrom4(db *sql.DB) error {
+ log.Tag(tag).Info("Migrating user database schema: from 4 to 5")
+ tx, err := db.Begin()
+ if err != nil {
+ return err
+ }
+ defer tx.Rollback()
+ if _, err := tx.Exec(migrate4To5UpdateQueries); err != nil {
+ return err
+ }
+ if _, err := tx.Exec(updateSchemaVersion, 5); err != nil {
+ return err
+ }
+ return tx.Commit()
+}
+
func nullString(s string) sql.NullString {
if s == "" {
return sql.NullString{}
diff --git a/user/manager_test.go b/user/manager_test.go
index 3c30a716..468dc36a 100644
--- a/user/manager_test.go
+++ b/user/manager_test.go
@@ -330,7 +330,7 @@ func TestManager_Reservations(t *testing.T) {
a := newTestManager(t, PermissionDenyAll)
require.Nil(t, a.AddUser("phil", "phil", RoleUser))
require.Nil(t, a.AddUser("ben", "ben", RoleUser))
- require.Nil(t, a.AddReservation("ben", "ztopic", PermissionDenyAll))
+ require.Nil(t, a.AddReservation("ben", "ztopic_", PermissionDenyAll))
require.Nil(t, a.AddReservation("ben", "readme", PermissionRead))
require.Nil(t, a.AllowAccess("ben", "something-else", PermissionRead))
@@ -343,7 +343,7 @@ func TestManager_Reservations(t *testing.T) {
Everyone: PermissionRead,
}, reservations[0])
require.Equal(t, Reservation{
- Topic: "ztopic",
+ Topic: "ztopic_",
Owner: PermissionReadWrite,
Everyone: PermissionDenyAll,
}, reservations[1])
@@ -352,6 +352,14 @@ func TestManager_Reservations(t *testing.T) {
require.Nil(t, err)
require.True(t, b)
+ b, err = a.HasReservation("ben", "ztopic_")
+ require.Nil(t, err)
+ require.True(t, b)
+
+ b, err = a.HasReservation("ben", "ztopicX") // _ != X (used to be a SQL wildcard issue)
+ require.Nil(t, err)
+ require.False(t, b)
+
b, err = a.HasReservation("notben", "readme")
require.Nil(t, err)
require.False(t, b)
@@ -371,11 +379,17 @@ func TestManager_Reservations(t *testing.T) {
err = a.AllowReservation("phil", "readme")
require.Equal(t, errTopicOwnedByOthers, err)
+ err = a.AllowReservation("phil", "ztopic_")
+ require.Equal(t, errTopicOwnedByOthers, err)
+
+ err = a.AllowReservation("phil", "ztopicX")
+ require.Nil(t, err)
+
err = a.AllowReservation("phil", "not-reserved")
require.Nil(t, err)
// Now remove them again
- require.Nil(t, a.RemoveReservations("ben", "ztopic", "readme"))
+ require.Nil(t, a.RemoveReservations("ben", "ztopic_", "readme"))
count, err = a.ReservationsCount("ben")
require.Nil(t, err)
@@ -978,7 +992,44 @@ func TestUser_PhoneNumberAdd_Multiple_Users_Same_Number(t *testing.T) {
require.Nil(t, a.AddPhoneNumber(ben.ID, "+1234567890"))
}
-func TestSqliteCache_Migration_From1(t *testing.T) {
+func TestManager_Topic_Wildcard_With_Asterisk_Underscore(t *testing.T) {
+ f := filepath.Join(t.TempDir(), "user.db")
+ a := newTestManagerFromFile(t, f, "", PermissionDenyAll, DefaultUserPasswordBcryptCost, DefaultUserStatsQueueWriterInterval)
+ require.Nil(t, a.AllowAccess(Everyone, "*_", PermissionRead))
+ require.Nil(t, a.AllowAccess(Everyone, "__*_", PermissionRead))
+ require.Nil(t, a.Authorize(nil, "allowed_", PermissionRead))
+ require.Nil(t, a.Authorize(nil, "__allowed_", PermissionRead))
+ require.Nil(t, a.Authorize(nil, "_allowed_", PermissionRead)) // The "%" in "%\_" matches the first "_"
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "notallowed", PermissionRead))
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "_notallowed", PermissionRead))
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "__notallowed", PermissionRead))
+}
+
+func TestManager_Topic_Wildcard_With_Underscore(t *testing.T) {
+ f := filepath.Join(t.TempDir(), "user.db")
+ a := newTestManagerFromFile(t, f, "", PermissionDenyAll, DefaultUserPasswordBcryptCost, DefaultUserStatsQueueWriterInterval)
+ require.Nil(t, a.AllowAccess(Everyone, "mytopic_", PermissionReadWrite))
+ require.Nil(t, a.Authorize(nil, "mytopic_", PermissionRead))
+ require.Nil(t, a.Authorize(nil, "mytopic_", PermissionWrite))
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "mytopicX", PermissionRead))
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "mytopicX", PermissionWrite))
+}
+
+func TestToFromSQLWildcard(t *testing.T) {
+ require.Equal(t, "up%", toSQLWildcard("up*"))
+ require.Equal(t, "up\\_%", toSQLWildcard("up_*"))
+ require.Equal(t, "foo", toSQLWildcard("foo"))
+
+ require.Equal(t, "up*", fromSQLWildcard("up%"))
+ require.Equal(t, "up_*", fromSQLWildcard("up\\_%"))
+ require.Equal(t, "foo", fromSQLWildcard("foo"))
+
+ require.Equal(t, "up*", fromSQLWildcard(toSQLWildcard("up*")))
+ require.Equal(t, "up_*", fromSQLWildcard(toSQLWildcard("up_*")))
+ require.Equal(t, "foo", fromSQLWildcard(toSQLWildcard("foo")))
+}
+
+func TestMigrationFrom1(t *testing.T) {
filename := filepath.Join(t.TempDir(), "user.db")
db, err := sql.Open("sqlite3", filename)
require.Nil(t, err)
@@ -1063,6 +1114,152 @@ func TestSqliteCache_Migration_From1(t *testing.T) {
require.Equal(t, PermissionRead, everyoneGrants[0].Allow)
}
+func TestMigrationFrom4(t *testing.T) {
+ filename := filepath.Join(t.TempDir(), "user.db")
+ db, err := sql.Open("sqlite3", filename)
+ require.Nil(t, err)
+
+ // Create "version 4" schema
+ _, err = db.Exec(`
+ BEGIN;
+ CREATE TABLE IF NOT EXISTS tier (
+ id TEXT PRIMARY KEY,
+ code TEXT NOT NULL,
+ name TEXT NOT NULL,
+ messages_limit INT NOT NULL,
+ messages_expiry_duration INT NOT NULL,
+ emails_limit INT NOT NULL,
+ calls_limit INT NOT NULL,
+ reservations_limit INT NOT NULL,
+ attachment_file_size_limit INT NOT NULL,
+ attachment_total_size_limit INT NOT NULL,
+ attachment_expiry_duration INT NOT NULL,
+ attachment_bandwidth_limit INT NOT NULL,
+ stripe_monthly_price_id TEXT,
+ stripe_yearly_price_id TEXT
+ );
+ CREATE UNIQUE INDEX idx_tier_code ON tier (code);
+ CREATE UNIQUE INDEX idx_tier_stripe_monthly_price_id ON tier (stripe_monthly_price_id);
+ CREATE UNIQUE INDEX idx_tier_stripe_yearly_price_id ON tier (stripe_yearly_price_id);
+ CREATE TABLE IF NOT EXISTS user (
+ id TEXT PRIMARY KEY,
+ tier_id TEXT,
+ user TEXT NOT NULL,
+ pass TEXT NOT NULL,
+ role TEXT CHECK (role IN ('anonymous', 'admin', 'user')) NOT NULL,
+ prefs JSON NOT NULL DEFAULT '{}',
+ sync_topic TEXT NOT NULL,
+ stats_messages INT NOT NULL DEFAULT (0),
+ stats_emails INT NOT NULL DEFAULT (0),
+ stats_calls INT NOT NULL DEFAULT (0),
+ stripe_customer_id TEXT,
+ stripe_subscription_id TEXT,
+ stripe_subscription_status TEXT,
+ stripe_subscription_interval TEXT,
+ stripe_subscription_paid_until INT,
+ stripe_subscription_cancel_at INT,
+ created INT NOT NULL,
+ deleted INT,
+ FOREIGN KEY (tier_id) REFERENCES tier (id)
+ );
+ CREATE UNIQUE INDEX idx_user ON user (user);
+ CREATE UNIQUE INDEX idx_user_stripe_customer_id ON user (stripe_customer_id);
+ CREATE UNIQUE INDEX idx_user_stripe_subscription_id ON user (stripe_subscription_id);
+ CREATE TABLE IF NOT EXISTS user_access (
+ user_id TEXT NOT NULL,
+ topic TEXT NOT NULL,
+ read INT NOT NULL,
+ write INT NOT NULL,
+ owner_user_id INT,
+ PRIMARY KEY (user_id, topic),
+ FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE,
+ FOREIGN KEY (owner_user_id) REFERENCES user (id) ON DELETE CASCADE
+ );
+ CREATE TABLE IF NOT EXISTS user_token (
+ user_id TEXT NOT NULL,
+ token TEXT NOT NULL,
+ label TEXT NOT NULL,
+ last_access INT NOT NULL,
+ last_origin TEXT NOT NULL,
+ expires INT NOT NULL,
+ PRIMARY KEY (user_id, token),
+ FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE
+ );
+ CREATE TABLE IF NOT EXISTS user_phone (
+ user_id TEXT NOT NULL,
+ phone_number TEXT NOT NULL,
+ PRIMARY KEY (user_id, phone_number),
+ FOREIGN KEY (user_id) REFERENCES user (id) ON DELETE CASCADE
+ );
+ CREATE TABLE IF NOT EXISTS schemaVersion (
+ id INT PRIMARY KEY,
+ version INT NOT NULL
+ );
+ INSERT INTO user (id, user, pass, role, sync_topic, created)
+ VALUES ('u_everyone', '*', '', 'anonymous', '', UNIXEPOCH())
+ ON CONFLICT (id) DO NOTHING;
+ INSERT INTO schemaVersion (id, version) VALUES (1, 4);
+ COMMIT;
+ `)
+ require.Nil(t, err)
+
+ // Insert a few ACL entries
+ _, err = db.Exec(`
+ BEGIN;
+ INSERT INTO user_access (user_id, topic, read, write) values ('u_everyone', 'mytopic_', 1, 1);
+ INSERT INTO user_access (user_id, topic, read, write) values ('u_everyone', 'up%', 1, 1);
+ INSERT INTO user_access (user_id, topic, read, write) values ('u_everyone', 'down_%', 1, 1);
+ COMMIT;
+ `)
+ require.Nil(t, err)
+
+ // Create manager to trigger migration
+ a := newTestManagerFromFile(t, filename, "", PermissionDenyAll, bcrypt.MinCost, DefaultUserStatsQueueWriterInterval)
+ checkSchemaVersion(t, a.db)
+
+ // Add another
+ require.Nil(t, a.AllowAccess(Everyone, "left_*", PermissionReadWrite))
+
+ // Check "external view" of grants
+ everyoneGrants, err := a.Grants(Everyone)
+ require.Nil(t, err)
+
+ require.Equal(t, 4, len(everyoneGrants))
+ require.Equal(t, "down_*", everyoneGrants[0].TopicPattern)
+ require.Equal(t, "left_*", everyoneGrants[1].TopicPattern)
+ require.Equal(t, "mytopic_", everyoneGrants[2].TopicPattern)
+ require.Equal(t, "up*", everyoneGrants[3].TopicPattern)
+
+ // Check they are stored correctly in the database
+ rows, err := db.Query(`SELECT topic FROM user_access WHERE user_id = 'u_everyone' ORDER BY topic`)
+ require.Nil(t, err)
+ topicPatterns := make([]string, 0)
+ for rows.Next() {
+ var topicPattern string
+ require.Nil(t, rows.Scan(&topicPattern))
+ topicPatterns = append(topicPatterns, topicPattern)
+ }
+ require.Nil(t, rows.Close())
+ require.Equal(t, 4, len(topicPatterns))
+ require.Equal(t, "down\\_%", topicPatterns[0])
+ require.Equal(t, "left\\_%", topicPatterns[1])
+ require.Equal(t, "mytopic\\_", topicPatterns[2])
+ require.Equal(t, "up%", topicPatterns[3])
+
+ // Check that ACL works as excepted
+ require.Nil(t, a.Authorize(nil, "down_123", PermissionRead))
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "downX123", PermissionRead))
+
+ require.Nil(t, a.Authorize(nil, "left_abc", PermissionRead))
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "leftX123", PermissionRead))
+
+ require.Nil(t, a.Authorize(nil, "mytopic_", PermissionRead))
+ require.Equal(t, ErrUnauthorized, a.Authorize(nil, "mytopicX", PermissionRead))
+
+ require.Nil(t, a.Authorize(nil, "up123", PermissionRead))
+ require.Nil(t, a.Authorize(nil, "up", PermissionRead)) // % matches 0 or more characters
+}
+
func checkSchemaVersion(t *testing.T, db *sql.DB) {
rows, err := db.Query(`SELECT version FROM schemaVersion`)
require.Nil(t, err)
From 9015b278036a69b09d2ff5ccbf938be07c9cc4bd Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Fri, 18 Aug 2023 22:47:36 +0200
Subject: [PATCH 020/182] Release notes
---
docs/releases.md | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/docs/releases.md b/docs/releases.md
index 4cc9b0b0..70682131 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -2,7 +2,7 @@
Binaries for all releases can be found on the GitHub releases pages for the [ntfy server](https://github.com/binwiederhier/ntfy/releases)
and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/releases).
-### ntfy server v2.7.0
+## ntfy server v2.7.0
Released August 17, 2023
This release ships Markdown support for the web app (not in the Android app yet), and adds support for
@@ -1283,6 +1283,12 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
## Not released yet
+### ntfy server v2.8.0 (UNRELEASED)
+
+**Bug fixes + maintenance:**
+
+* Fix ACL issue with topic patterns containing underscores ([#840](https://github.com/binwiederhier/ntfy/issues/840), thanks to [@Joe-0237](https://github.com/Joe-0237) for reporting)
+
### ntfy Android app v1.16.1 (UNRELEASED)
**Features:**
From 02dd72ba5760d99c1e628e2c5442922ec70aebf3 Mon Sep 17 00:00:00 2001
From: Nguyen Loc
Date: Fri, 18 Aug 2023 03:16:37 +0000
Subject: [PATCH 021/182] Translated using Weblate (Vietnamese)
Currently translated at 4.9% (19 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/vi/
---
web/public/static/langs/vi.json | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/vi.json b/web/public/static/langs/vi.json
index 0967ef42..b2f94441 100644
--- a/web/public/static/langs/vi.json
+++ b/web/public/static/langs/vi.json
@@ -1 +1,21 @@
-{}
+{
+ "common_add": "Thêm",
+ "common_back": "Quay lại",
+ "signup_title": "Tạo tài khoản ntfy",
+ "signup_form_toggle_password_visibility": "Hiện mật khẩu",
+ "login_form_button_submit": "Đăng nhập",
+ "common_copy_to_clipboard": "Lưu vào clipboard",
+ "signup_form_username": "Tên user",
+ "signup_already_have_account": "Đã có tài khoản? Đăng nhập!",
+ "signup_disabled": "Đăng kí bị đóng",
+ "signup_error_username_taken": "Tên {{username}} đã được sử dụng",
+ "signup_error_creation_limit_reached": "Đã bị giới hạn tạo tài khoản",
+ "login_title": "Đăng nhập vào tài khoản ntfy",
+ "login_link_signup": "Đăng kí",
+ "login_disabled": "Đăng nhập bị đóng",
+ "action_bar_show_menu": "Hiện menu",
+ "signup_form_password": "Mật khẩu",
+ "action_bar_settings": "Cài đặt",
+ "signup_form_confirm_password": "Xác nhận mật khẩu",
+ "signup_form_button_submit": "Đăng kí"
+}
From 6f68c8cd1f67a51cf5df15ae9bfa4bc6cd54cf09 Mon Sep 17 00:00:00 2001
From: falkheiland
Date: Tue, 22 Aug 2023 11:24:35 +0200
Subject: [PATCH 022/182] Update publish.md
fixed PowerShell examples
---
docs/publish.md | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/docs/publish.md b/docs/publish.md
index 2de0ff73..c03cc4a4 100644
--- a/docs/publish.md
+++ b/docs/publish.md
@@ -457,6 +457,7 @@ You can set the priority with the header `X-Priority` (or any of its aliases: `P
=== "PowerShell"
``` powershell
$Request = @{
+ Method = 'POST'
URI = "https://ntfy.sh/phil_alerts"
Headers = @{
Priority = "5"
@@ -1033,7 +1034,7 @@ is the only required one:
$Request = @{
Method = "POST"
URI = "https://ntfy.sh"
- Body = @{
+ Body = ConvertTo-JSON @{
Topic = "mytopic"
Title = "Low disk space alert"
Message = "Disk space is low at 5.1 GB"
@@ -1042,7 +1043,7 @@ is the only required one:
FileName = "diskspace.jpg"
Tags = @("warning", "cd")
Click = "https://homecamera.lan/xasds1h2xsSsa/"
- Actions = ConvertTo-JSON @(
+ Actions = @(
@{
Action = "view"
Label = "Admin panel"
@@ -1919,10 +1920,10 @@ And the same example using [JSON publishing](#publish-as-json):
$Request = @{
Method = "POST"
URI = "https://ntfy.sh"
- Body = @{
+ Body = ConvertTo-Json -Depth 3 @{
Topic = "wifey"
Message = "Your wife requested you send a picture of yourself."
- Actions = ConvertTo-Json -Depth 3 @(
+ Actions = @(
@{
Action = "broadcast"
Label = "Take picture"
@@ -2072,7 +2073,7 @@ Here's an example using the [`X-Actions` header](#using-a-header):
'method' => 'POST',
'header' =>
"Content-Type: text/plain\r\n" .
- "Actions: http, Close door, https://api.mygarage.lan/, method=PUT, headers.Authorization=Bearer zAzsx1sk.., body={\"action\": \"close\"}",
+ 'Actions: http, Close door, https://api.mygarage.lan/, method=PUT, headers.Authorization=Bearer zAzsx1sk.., body={\"action\": \"close\"}',
'content' => 'Garage door has been open for 15 minutes. Close it?'
]
]));
@@ -2199,10 +2200,10 @@ And the same example using [JSON publishing](#publish-as-json):
$Request = @{
Method = "POST"
URI = "https://ntfy.sh"
- Body = @{
+ Body = ConvertTo-Json -Depth 3 @{
Topic = "myhome"
Message = "Garage door has been open for 15 minutes. Close it?"
- Actions = ConvertTo-Json -Depth 3 @(
+ Actions = @(
@{
Action = "http"
Label = "Close door"
From 115e6e9cf8483ee53560d20dde6cf989aab313f6 Mon Sep 17 00:00:00 2001
From: Markus
Date: Thu, 24 Aug 2023 18:15:48 +0000
Subject: [PATCH 023/182] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?=
=?UTF-8?q?an=20Bokm=C3=A5l)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Currently translated at 51.5% (197 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/nb_NO/
---
web/public/static/langs/nb_NO.json | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/nb_NO.json b/web/public/static/langs/nb_NO.json
index 0dd9571b..bc7d387c 100644
--- a/web/public/static/langs/nb_NO.json
+++ b/web/public/static/langs/nb_NO.json
@@ -190,5 +190,10 @@
"error_boundary_unsupported_indexeddb_title": "Privat surfing støttes ikke",
"action_bar_account": "Konto",
"action_bar_profile_settings": "Innstillinger",
- "nav_button_account": "Konto"
+ "nav_button_account": "Konto",
+ "signup_title": "Opprett en ntfy konto",
+ "signup_form_username": "Brukernavn",
+ "signup_form_password": "Passord",
+ "signup_form_button_submit": "Meld deg på",
+ "signup_form_confirm_password": "Bekreft passord"
}
From 45ca20dec9d10f862025f3d9efc105c7b011cc5a Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sat, 26 Aug 2023 09:26:54 +0200
Subject: [PATCH 024/182] Docs
---
docs/integrations.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/docs/integrations.md b/docs/integrations.md
index 57ae2c10..740d8c40 100644
--- a/docs/integrations.md
+++ b/docs/integrations.md
@@ -23,6 +23,7 @@ I've added a ⭐ to projects or posts that have a significant following, or had
- [Platypush](https://docs.platypush.tech/platypush/plugins/ntfy.html) - Automation platform aimed to run on any device that can run Python
- [diun](https://crazymax.dev/diun/) - Docker Image Update Notifier
- [Cloudron](https://www.cloudron.io/store/sh.ntfy.cloudronapp.html) - Platform that makes it easy to manage web apps on your server
+- [Xitoring](https://xitoring.com/docs/notifications/notification-roles/ntfy/) - Server and Uptime monitoring
## Integration via HTTP/SMTP/etc.
@@ -130,7 +131,8 @@ I've added a ⭐ to projects or posts that have a significant following, or had
## Blog + forum posts
-- [How to install and self host an Ntfy server on Linux](https://linuxconfig.org/how-to-install-and-self-host-an-ntfy-server-on-linux) - linuxconfig.org - 9/2021
+- [Open Source Push Notifications! Get notified of any event you can imagine. Triggers abound!](https://www.youtube.com/watch?v=WJgwWXt79pE) ⭐ - youtube.com - 8/2023
+- [How to install and self host an Ntfy server on Linux](https://linuxconfig.org/how-to-install-and-self-host-an-ntfy-server-on-linux) - linuxconfig.org - 7/2023
- [Basic website monitoring using cronjobs and ntfy.sh](https://burkhardt.dev/2023/website-monitoring-cron-ntfy/) - burkhardt.dev - 6/2023
- [Pingdom alternative in one line of curl through ntfy.sh](https://piqoni.bearblog.dev/uptime-monitoring-in-one-line-of-curl/) - bearblog.dev - 6/2023
- [#OpenSourceDiscovery 78: ntfy.sh](https://opensourcedisc.substack.com/p/opensourcediscovery-78-ntfysh) - opensourcedisc.substack.com - 6/2023
From 62c2ec0614f04a0f5256186fc296871326c27acc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?jos=C3=A9=20m?=
Date: Sat, 26 Aug 2023 12:37:53 +0000
Subject: [PATCH 025/182] Translated using Weblate (Galician)
Currently translated at 33.2% (127 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/gl/
---
web/public/static/langs/gl.json | 130 +++++++++++++++++++++++++++++++-
1 file changed, 129 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/gl.json b/web/public/static/langs/gl.json
index 0967ef42..9c4efb18 100644
--- a/web/public/static/langs/gl.json
+++ b/web/public/static/langs/gl.json
@@ -1 +1,129 @@
-{}
+{
+ "common_cancel": "Cancelar",
+ "common_save": "Gardar",
+ "common_add": "Engadir",
+ "signup_disabled": "O rexistro está desactivado",
+ "signup_error_username_taken": "O identificador {{username}} xa está collido",
+ "login_title": "Accede á túa conta ntfy",
+ "action_bar_send_test_notification": "Enviar notificación de proba",
+ "action_bar_clear_notifications": "Limpar todas as notificacións",
+ "action_bar_unsubscribe": "Retirar subscrición",
+ "action_bar_profile_settings": "Axustes",
+ "message_bar_type_message": "Escribe aquí a mensaxe",
+ "notifications_copied_to_clipboard": "Copiada ao portapapeis",
+ "notifications_attachment_image": "Imaxe anexa",
+ "notifications_attachment_copy_url_title": "Copiar URL do anexo ao portapapeis",
+ "notifications_attachment_copy_url_button": "Copiar URL",
+ "notifications_attachment_open_title": "Ir a {{url}}",
+ "notifications_attachment_file_audio": "ficheiro de audio",
+ "notifications_attachment_file_app": "ficheiro de app Android",
+ "notifications_attachment_file_document": "outro documento",
+ "notifications_click_copy_url_title": "Copiar URL da ligazón ao portapapeis",
+ "notifications_click_copy_url_button": "Copiar ligazón",
+ "notifications_actions_open_url_title": "Ir a {{url}}",
+ "notifications_none_for_topic_description": "Para enviar notificacións a este tema, simplemente usa PUT ou POST co URL do tema.",
+ "notifications_no_subscriptions_description": "Preme en \"{{linktext}} para crear ou subscribirte a un tema. Após, podes enviar mensaxes vía PUT ou POST e recibirás aquí as notificacións.",
+ "display_name_dialog_description": "Establecer un nome alternativo para o tema que será mostrado na lista de subscrición. Isto axudará a identificar os temas que teñan nomes complicados.",
+ "publish_dialog_tags_label": "Etiquetas",
+ "publish_dialog_tags_placeholder": "Lista de etiquetas separadas por vírgulas, ex. aviso, tarefa1",
+ "publish_dialog_priority_label": "Prioridade",
+ "publish_dialog_click_label": "URL a premer",
+ "publish_dialog_click_placeholder": "URL que se abre ao premer na notificación",
+ "publish_dialog_click_reset": "Desbotar o URL a premer",
+ "common_back": "Atrás",
+ "common_copy_to_clipboard": "Copiar ao portapapeis",
+ "signup_title": "Crear unha conta ntfy",
+ "signup_form_username": "Identificador",
+ "signup_form_password": "Contrasinal",
+ "signup_form_confirm_password": "Confirmar contrasinal",
+ "signup_form_button_submit": "Crear conta",
+ "login_form_button_submit": "Acceder",
+ "login_link_signup": "Crear conta",
+ "login_disabled": "O acceso está desactivado",
+ "action_bar_show_menu": "Mostrar menú",
+ "action_bar_toggle_mute": "Acalar/Reactivar as notificacións",
+ "message_bar_error_publishing": "Erro ao publicar a notificación",
+ "message_bar_publish": "Publicar mensaxe",
+ "nav_topics_title": "Temas subscritos",
+ "nav_button_documentation": "Documentación",
+ "nav_button_publish_message": "Publicar notificación",
+ "nav_button_subscribe": "Subscribirse ao tema",
+ "nav_button_muted": "Notificacións acaladas",
+ "nav_button_connecting": "conectando",
+ "nav_upgrade_banner_label": "Mellorar a ntfy Pro",
+ "alert_not_supported_description": "O teu navegador non ten soporte para notificacións.",
+ "notifications_priority_x": "Prioridade {{priority}}",
+ "notifications_attachment_link_expires": "a ligazón caduca o {{date}}",
+ "notifications_attachment_link_expired": "a ligazón de descarga caducou",
+ "notifications_attachment_file_image": "ficheiro de imaxe",
+ "notifications_attachment_file_video": "ficheiro de vídeo",
+ "notifications_actions_not_supported": "Acción non soportada na aplicación web",
+ "notifications_actions_http_request_title": "Enviar HTTP {{method}} a {{url}}",
+ "notifications_none_for_topic_title": "Aínda non recibiches ningunha notificación para este tema.",
+ "reserve_dialog_checkbox_label": "Reservar tema e configurar acceso",
+ "notifications_loading": "Cargando notificacións…",
+ "publish_dialog_base_url_placeholder": "URL de servizo, ex. https://exemplo.com",
+ "publish_dialog_topic_label": "Nome do tema",
+ "publish_dialog_topic_placeholder": "Nome do tema, ex. alertas_equipo",
+ "publish_dialog_topic_reset": "Restablecer tema",
+ "publish_dialog_title_label": "Título",
+ "publish_dialog_title_placeholder": "Título das notificacións, ex. Alerta de reunión",
+ "publish_dialog_message_label": "Mensaxe",
+ "publish_dialog_message_placeholder": "Escribe aquí a mensaxe",
+ "publish_dialog_email_label": "Correo electrónico",
+ "signup_form_toggle_password_visibility": "Cambiar visibilidade do contrasinal",
+ "signup_already_have_account": "Xa tes unha conta? Accede!",
+ "signup_error_creation_limit_reached": "Acadouse o límite de creación de contas",
+ "action_bar_logo_alt": "logo ntfy",
+ "action_bar_settings": "Axustes",
+ "action_bar_account": "Conta",
+ "action_bar_change_display_name": "Cambiar nome público",
+ "action_bar_reservation_add": "Reservar tema",
+ "action_bar_reservation_edit": "Cambiar a reserva",
+ "action_bar_reservation_delete": "Desbotar a reserva",
+ "action_bar_reservation_limit_reached": "Acadouse o límite",
+ "action_bar_toggle_action_menu": "Abrir/Pechar menú de accións",
+ "action_bar_profile_title": "Perfil",
+ "action_bar_profile_logout": "Pechar sesión",
+ "action_bar_sign_in": "Acceder",
+ "action_bar_sign_up": "Crear conta",
+ "message_bar_show_dialog": "Mostrar diálogo para publicar",
+ "nav_button_all_notifications": "Todas as notificacións",
+ "nav_button_account": "Conta",
+ "nav_button_settings": "Axustes",
+ "nav_upgrade_banner_description": "Reserva temas, máis mensaxes e correos electrónicos así como anexos máis grandes",
+ "alert_grant_title": "As notificacións están desactivadas",
+ "alert_grant_description": "Concede permiso no navegador para mostrar notificacións de escritorio.",
+ "alert_grant_button": "Conceder agora",
+ "alert_not_supported_title": "Non hai soporte para notificacións",
+ "alert_not_supported_context_description": "Só hai soporte para notificacións ao usar HTTPS. Esta é unha limitación da API de Notificacións .",
+ "notifications_list": "Lista de notificacións",
+ "notifications_list_item": "Notificación",
+ "notifications_mark_read": "Marcar como lida",
+ "notifications_delete": "Eliminar",
+ "notifications_tags": "Etiquetas",
+ "notifications_new_indicator": "Nova notificación",
+ "notifications_attachment_open_button": "Abrir anexo",
+ "notifications_click_open_button": "Abrir ligazón",
+ "notifications_none_for_any_title": "Non recibiches ningunha notificación.",
+ "notifications_none_for_any_description": "Para enviar notificacións ao tema, simplemente usa PUT ou POST ao URL do tema. Aquí tes un exemplo usando un dos teus temas.",
+ "notifications_no_subscriptions_title": "Semella que aínda non tes subscricións.",
+ "notifications_example": "Exemplo",
+ "display_name_dialog_title": "Cambiar nonme público",
+ "display_name_dialog_placeholder": "Nome público",
+ "publish_dialog_title_topic": "Publicar en {{topic}}",
+ "publish_dialog_title_no_topic": "Publicar notificación",
+ "publish_dialog_progress_uploading": "Enviando…",
+ "publish_dialog_progress_uploading_detail": "Enviando {{loaded}}/{{total}} ({{percent}}%) …",
+ "publish_dialog_message_published": "Notificación publicada",
+ "publish_dialog_attachment_limits_file_and_quota_reached": "supera o límite de ficheiros e cota {{fileSizeLimit}}, quedan {{remainingBytes}}",
+ "publish_dialog_attachment_limits_file_reached": "supera o límite para ficheiros {{fileSizeLimit}}",
+ "publish_dialog_attachment_limits_quota_reached": "supera a cota, quedan {{remainingBytes}}",
+ "publish_dialog_emoji_picker_show": "Elixe emoji",
+ "publish_dialog_priority_min": "Prioridade Mínima",
+ "publish_dialog_priority_low": "Prioridade baixa",
+ "publish_dialog_priority_default": "Prioridade por defecto",
+ "publish_dialog_priority_high": "Prioridade alta",
+ "publish_dialog_priority_max": "Prioridade Máxima",
+ "publish_dialog_base_url_label": "URL de servizo"
+}
From 1d02933481bf1bd8d0b8d066aca1c5cae67a73ea Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?jos=C3=A9=20m?=
Date: Mon, 28 Aug 2023 04:08:45 +0000
Subject: [PATCH 026/182] Translated using Weblate (Galician)
Currently translated at 42.4% (162 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/gl/
---
web/public/static/langs/gl.json | 37 ++++++++++++++++++++++++++++++++-
1 file changed, 36 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/gl.json b/web/public/static/langs/gl.json
index 9c4efb18..efc418ff 100644
--- a/web/public/static/langs/gl.json
+++ b/web/public/static/langs/gl.json
@@ -125,5 +125,40 @@
"publish_dialog_priority_default": "Prioridade por defecto",
"publish_dialog_priority_high": "Prioridade alta",
"publish_dialog_priority_max": "Prioridade Máxima",
- "publish_dialog_base_url_label": "URL de servizo"
+ "publish_dialog_base_url_label": "URL de servizo",
+ "notifications_more_details": "Para máis información, visita o sitio web ou le a documentación .",
+ "publish_dialog_call_label": "Chamada de teléfono",
+ "publish_dialog_call_reset": "Retirar chamada de teléfono",
+ "publish_dialog_delay_placeholder": "Adiar a entrega, ex. {{unixTimestamp}}, {{relativeTime}}, ou \"{{naturalLanguage}}\" (Só en inglés)",
+ "publish_dialog_other_features": "Outras características:",
+ "publish_dialog_chip_click_label": "Premer en URL",
+ "publish_dialog_chip_email_label": "Reenvío por correo",
+ "publish_dialog_chip_call_label": "Chamada de teléfono",
+ "publish_dialog_chip_attach_url_label": "Anexar ficheiro por URL",
+ "publish_dialog_button_cancel_sending": "Cancelar o envío",
+ "publish_dialog_button_cancel": "Cancelar",
+ "publish_dialog_button_send": "Enviar",
+ "publish_dialog_attached_file_title": "Ficheiro anexo:",
+ "publish_dialog_attached_file_filename_placeholder": "Nome do ficheiro anexo",
+ "publish_dialog_drop_file_here": "Soltar aquí o ficheiro",
+ "emoji_picker_search_placeholder": "Buscar emoji",
+ "subscribe_dialog_subscribe_title": "Subscribirse a un tema",
+ "publish_dialog_call_item": "Número de teléfono {{number}}",
+ "publish_dialog_email_placeholder": "Enderezo ao que reenviar a notificación, ex. xoana@exemplo.com",
+ "publish_dialog_email_reset": "Retirar reenvío ao correo",
+ "publish_dialog_attach_label": "URL do anexo",
+ "publish_dialog_attach_placeholder": "Anexa un ficheiro por URL, ex. https://f-droid.org/F-Droid.apk",
+ "publish_dialog_attach_reset": "Retirar URL do anexo",
+ "publish_dialog_filename_placeholder": "Nome do ficheiro anexo",
+ "publish_dialog_filename_label": "Nome do ficheiro",
+ "publish_dialog_delay_label": "Adiar",
+ "publish_dialog_delay_reset": "Retirar o adiadamento da entrega",
+ "publish_dialog_chip_attach_file_label": "Anexar ficheiro local",
+ "publish_dialog_chip_delay_label": "Entrega adiada",
+ "publish_dialog_chip_topic_label": "Cambiar tema",
+ "publish_dialog_details_examples_description": "Para ver exemplos e unha descrición polo miúdo das ferramentas de envío, le a documentación .",
+ "publish_dialog_checkbox_publish_another": "Publicar outra",
+ "emoji_picker_search_clear": "Limpar busca",
+ "publish_dialog_chip_call_no_verified_numbers_tooltip": "Números de teléfono non verificados",
+ "publish_dialog_attached_file_remove": "Retirar ficheiro anexo"
}
From 30a913c05c3d704bd71a9658f13f3e493542f2b2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gustavo=20de=20Le=C3=B3n?=
Date: Mon, 28 Aug 2023 23:20:04 -0600
Subject: [PATCH 027/182] Ignore Cloudflare Priority header
With these changes, If the web request contains the new Priority header (RFC 9218), The server will ignore it and continue searching for other headers or query parameters.
---
server/util.go | 23 +++++++++++++++++++++--
util/util.go | 5 -----
2 files changed, 21 insertions(+), 7 deletions(-)
diff --git a/server/util.go b/server/util.go
index 03eb8661..ee87f2ed 100644
--- a/server/util.go
+++ b/server/util.go
@@ -9,6 +9,7 @@ import (
"net/http"
"net/netip"
"strings"
+ /*"regexp"*/
)
var mimeDecoder mime.WordDecoder
@@ -129,7 +130,25 @@ func fromContext[T any](r *http.Request, key contextKey) (T, error) {
func maybeDecodeHeader(header string) string {
decoded, err := mimeDecoder.DecodeHeader(header)
if err != nil {
- return header
+ return cloudflarePriorityIgnore(header)
}
- return decoded
+ return cloudflarePriorityIgnore(decoded)
+}
+
+// Ignore new HTTP Priority header (see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-priority)
+// Cloudflare adds this to requests when forwarding to the backend (ntfy), so we just ignore it.
+// If the Priority header is set to "u=*, i" or "u=*" (by cloudflare), the header will be ignored.
+// And continue searching for another header (x-priority, prio, p) or in the Query parameters.
+func cloudflarePriorityIgnore(value string) string {
+ if strings.HasPrefix(value, "u=") {
+ return ""
+ }
+
+ // The same but with regex
+ /* pattern := `^u=\d+\s*,\s*i|u=\d+$`
+ regex := regexp.MustCompile(pattern)
+ if regex.MatchString(value) {
+ return ""
+ } */
+ return value
}
diff --git a/util/util.go b/util/util.go
index 4a63e22f..d48487df 100644
--- a/util/util.go
+++ b/util/util.go
@@ -161,11 +161,6 @@ func ParsePriority(priority string) (int, error) {
case "5", "max", "urgent":
return 5, nil
default:
- // Ignore new HTTP Priority header (see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-priority)
- // Cloudflare adds this to requests when forwarding to the backend (ntfy), so we just ignore it.
- if strings.HasPrefix(p, "u=") {
- return 3, nil
- }
return 0, errInvalidPriority
}
}
From a1625c7f156a443e5d1d3ebb1ea1d9f9da7af97c Mon Sep 17 00:00:00 2001
From: Mazurky
Date: Thu, 31 Aug 2023 22:13:26 +0200
Subject: [PATCH 028/182] Added translation using Weblate (Slovak)
---
web/public/static/langs/sk.json | 1 +
1 file changed, 1 insertion(+)
create mode 100644 web/public/static/langs/sk.json
diff --git a/web/public/static/langs/sk.json b/web/public/static/langs/sk.json
new file mode 100644
index 00000000..0967ef42
--- /dev/null
+++ b/web/public/static/langs/sk.json
@@ -0,0 +1 @@
+{}
From c6964502c417c0683ee8c9fcd40952ac04ec746d Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Fri, 1 Sep 2023 15:31:52 -0400
Subject: [PATCH 029/182] Thank you @teomarcdhio and @MarcMichalsky for your
donation/sponsorship
---
README.md | 2 +
go.mod | 10 +-
go.sum | 10 +
web/package-lock.json | 564 +++++++++++++++++++++++-------------------
4 files changed, 324 insertions(+), 262 deletions(-)
diff --git a/README.md b/README.md
index 6cc1adbe..95944639 100644
--- a/README.md
+++ b/README.md
@@ -146,6 +146,8 @@ account costs. Even small donations are very much appreciated. A big fat **Thank
+
+
I'd also like to thank JetBrains for their awesome [IntelliJ IDEA](https://www.jetbrains.com/idea/),
and [DigitalOcean](https://m.do.co/c/442b929528db) (*referral link*) for supporting the project:
diff --git a/go.mod b/go.mod
index 1560c61d..8e493e3b 100644
--- a/go.mod
+++ b/go.mod
@@ -52,7 +52,7 @@ require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/s2a-go v0.1.5 // indirect
- github.com/google/uuid v1.3.0 // indirect
+ github.com/google/uuid v1.3.1 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/kr/text v0.2.0 // indirect
@@ -70,10 +70,10 @@ require (
golang.org/x/text v0.12.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
- google.golang.org/appengine/v2 v2.0.4 // indirect
- google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 // indirect
- google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 // indirect
- google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect
+ google.golang.org/appengine/v2 v2.0.5 // indirect
+ google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
+ google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
google.golang.org/grpc v1.57.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
diff --git a/go.sum b/go.sum
index c6761a56..173e8e9c 100644
--- a/go.sum
+++ b/go.sum
@@ -100,6 +100,8 @@ github.com/google/s2a-go v0.1.5/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkj
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
+github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4=
+github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/enterprise-certificate-proxy v0.2.5 h1:UR4rDjcgpgEnqpIEvkiqTYKBCKLNmlge2eVjoZfySzM=
github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w=
github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56etFpas=
@@ -238,16 +240,24 @@ google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6
google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
google.golang.org/appengine/v2 v2.0.4 h1:aAAPYixP9EfTJjNO6F46afaxp+jfzb0VgwVjMeLBtF4=
google.golang.org/appengine/v2 v2.0.4/go.mod h1:WoEXGoXNfa0mLvaH5sV3ZSGXwVmy8yf7Z1JKf3J3wLI=
+google.golang.org/appengine/v2 v2.0.5 h1:4C+F3Cd3L2nWEfSmFEZDPjQvDwL8T0YCeZBysZifP3k=
+google.golang.org/appengine/v2 v2.0.5/go.mod h1:WoEXGoXNfa0mLvaH5sV3ZSGXwVmy8yf7Z1JKf3J3wLI=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 h1:Iveh6tGCJkHAjJgEqUQYGDGgbwmhjoAOz8kO/ajxefY=
google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
+google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d h1:VBu5YqKPv6XiJ199exd8Br+Aetz+o08F+PLMnwJQHAY=
+google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 h1:WGq4lvB/mlicysM/dUT3SBvijH4D3sm/Ny1A4wmt2CI=
google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
+google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d h1:DoPTO70H+bcDXcd39vOqb2viZxgqeBeSGtZ55yZU4/Q=
+google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 h1:lv6/DhyiFFGsmzxbsUUTOkN29II+zeWHxvT8Lpdxsv0=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
diff --git a/web/package-lock.json b/web/package-lock.json
index 735fc42b..cb15d61f 100644
--- a/web/package-lock.json
+++ b/web/package-lock.json
@@ -68,11 +68,11 @@
}
},
"node_modules/@babel/code-frame": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz",
- "integrity": "sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==",
+ "version": "7.22.13",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
+ "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
"dependencies": {
- "@babel/highlight": "^7.22.10",
+ "@babel/highlight": "^7.22.13",
"chalk": "^2.4.2"
},
"engines": {
@@ -89,9 +89,9 @@
}
},
"node_modules/@babel/core": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz",
- "integrity": "sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz",
+ "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
@@ -99,15 +99,15 @@
"@babel/generator": "^7.22.10",
"@babel/helper-compilation-targets": "^7.22.10",
"@babel/helper-module-transforms": "^7.22.9",
- "@babel/helpers": "^7.22.10",
- "@babel/parser": "^7.22.10",
+ "@babel/helpers": "^7.22.11",
+ "@babel/parser": "^7.22.11",
"@babel/template": "^7.22.5",
- "@babel/traverse": "^7.22.10",
- "@babel/types": "^7.22.10",
+ "@babel/traverse": "^7.22.11",
+ "@babel/types": "^7.22.11",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
- "json5": "^2.2.2",
+ "json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
@@ -174,9 +174,9 @@
}
},
"node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz",
- "integrity": "sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.11.tgz",
+ "integrity": "sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.22.5",
@@ -436,23 +436,23 @@
}
},
"node_modules/@babel/helpers": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz",
- "integrity": "sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz",
+ "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==",
"dev": true,
"dependencies": {
"@babel/template": "^7.22.5",
- "@babel/traverse": "^7.22.10",
- "@babel/types": "^7.22.10"
+ "@babel/traverse": "^7.22.11",
+ "@babel/types": "^7.22.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz",
- "integrity": "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==",
+ "version": "7.22.13",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz",
+ "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.5",
"chalk": "^2.4.2",
@@ -463,9 +463,9 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz",
- "integrity": "sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==",
+ "version": "7.22.14",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz",
+ "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==",
"dev": true,
"bin": {
"parser": "bin/babel-parser.js"
@@ -510,6 +510,7 @@
"version": "7.21.0-placeholder-for-preset-env.2",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
"integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
+ "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.",
"dev": true,
"engines": {
"node": ">=6.9.0"
@@ -769,9 +770,9 @@
}
},
"node_modules/@babel/plugin-transform-async-generator-functions": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz",
- "integrity": "sha512-eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.11.tgz",
+ "integrity": "sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw==",
"dev": true,
"dependencies": {
"@babel/helper-environment-visitor": "^7.22.5",
@@ -850,12 +851,12 @@
}
},
"node_modules/@babel/plugin-transform-class-static-block": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz",
- "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz",
+ "integrity": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==",
"dev": true,
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.22.11",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-syntax-class-static-block": "^7.14.5"
},
@@ -952,9 +953,9 @@
}
},
"node_modules/@babel/plugin-transform-dynamic-import": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz",
- "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz",
+ "integrity": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -984,9 +985,9 @@
}
},
"node_modules/@babel/plugin-transform-export-namespace-from": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz",
- "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz",
+ "integrity": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1032,9 +1033,9 @@
}
},
"node_modules/@babel/plugin-transform-json-strings": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz",
- "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz",
+ "integrity": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1063,9 +1064,9 @@
}
},
"node_modules/@babel/plugin-transform-logical-assignment-operators": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz",
- "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz",
+ "integrity": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1110,12 +1111,12 @@
}
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz",
- "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.11.tgz",
+ "integrity": "sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==",
"dev": true,
"dependencies": {
- "@babel/helper-module-transforms": "^7.22.5",
+ "@babel/helper-module-transforms": "^7.22.9",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/helper-simple-access": "^7.22.5"
},
@@ -1127,13 +1128,13 @@
}
},
"node_modules/@babel/plugin-transform-modules-systemjs": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz",
- "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.11.tgz",
+ "integrity": "sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==",
"dev": true,
"dependencies": {
"@babel/helper-hoist-variables": "^7.22.5",
- "@babel/helper-module-transforms": "^7.22.5",
+ "@babel/helper-module-transforms": "^7.22.9",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/helper-validator-identifier": "^7.22.5"
},
@@ -1192,9 +1193,9 @@
}
},
"node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz",
- "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz",
+ "integrity": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1208,9 +1209,9 @@
}
},
"node_modules/@babel/plugin-transform-numeric-separator": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz",
- "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz",
+ "integrity": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1224,13 +1225,13 @@
}
},
"node_modules/@babel/plugin-transform-object-rest-spread": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz",
- "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.11.tgz",
+ "integrity": "sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw==",
"dev": true,
"dependencies": {
- "@babel/compat-data": "^7.22.5",
- "@babel/helper-compilation-targets": "^7.22.5",
+ "@babel/compat-data": "^7.22.9",
+ "@babel/helper-compilation-targets": "^7.22.10",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.22.5"
@@ -1259,9 +1260,9 @@
}
},
"node_modules/@babel/plugin-transform-optional-catch-binding": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz",
- "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz",
+ "integrity": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1275,9 +1276,9 @@
}
},
"node_modules/@babel/plugin-transform-optional-chaining": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz",
- "integrity": "sha512-MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g==",
+ "version": "7.22.12",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.12.tgz",
+ "integrity": "sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1323,13 +1324,13 @@
}
},
"node_modules/@babel/plugin-transform-private-property-in-object": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz",
- "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz",
+ "integrity": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.22.5",
- "@babel/helper-create-class-features-plugin": "^7.22.5",
+ "@babel/helper-create-class-features-plugin": "^7.22.11",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
},
@@ -1556,9 +1557,9 @@
}
},
"node_modules/@babel/preset-env": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz",
- "integrity": "sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==",
+ "version": "7.22.14",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.14.tgz",
+ "integrity": "sha512-daodMIoVo+ol/g+//c/AH+szBkFj4STQUikvBijRGL72Ph+w+AMTSh55DUETe8KJlPlDT1k/mp7NBfOuiWmoig==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.22.9",
@@ -1587,41 +1588,41 @@
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.22.5",
- "@babel/plugin-transform-async-generator-functions": "^7.22.10",
+ "@babel/plugin-transform-async-generator-functions": "^7.22.11",
"@babel/plugin-transform-async-to-generator": "^7.22.5",
"@babel/plugin-transform-block-scoped-functions": "^7.22.5",
"@babel/plugin-transform-block-scoping": "^7.22.10",
"@babel/plugin-transform-class-properties": "^7.22.5",
- "@babel/plugin-transform-class-static-block": "^7.22.5",
+ "@babel/plugin-transform-class-static-block": "^7.22.11",
"@babel/plugin-transform-classes": "^7.22.6",
"@babel/plugin-transform-computed-properties": "^7.22.5",
"@babel/plugin-transform-destructuring": "^7.22.10",
"@babel/plugin-transform-dotall-regex": "^7.22.5",
"@babel/plugin-transform-duplicate-keys": "^7.22.5",
- "@babel/plugin-transform-dynamic-import": "^7.22.5",
+ "@babel/plugin-transform-dynamic-import": "^7.22.11",
"@babel/plugin-transform-exponentiation-operator": "^7.22.5",
- "@babel/plugin-transform-export-namespace-from": "^7.22.5",
+ "@babel/plugin-transform-export-namespace-from": "^7.22.11",
"@babel/plugin-transform-for-of": "^7.22.5",
"@babel/plugin-transform-function-name": "^7.22.5",
- "@babel/plugin-transform-json-strings": "^7.22.5",
+ "@babel/plugin-transform-json-strings": "^7.22.11",
"@babel/plugin-transform-literals": "^7.22.5",
- "@babel/plugin-transform-logical-assignment-operators": "^7.22.5",
+ "@babel/plugin-transform-logical-assignment-operators": "^7.22.11",
"@babel/plugin-transform-member-expression-literals": "^7.22.5",
"@babel/plugin-transform-modules-amd": "^7.22.5",
- "@babel/plugin-transform-modules-commonjs": "^7.22.5",
- "@babel/plugin-transform-modules-systemjs": "^7.22.5",
+ "@babel/plugin-transform-modules-commonjs": "^7.22.11",
+ "@babel/plugin-transform-modules-systemjs": "^7.22.11",
"@babel/plugin-transform-modules-umd": "^7.22.5",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
"@babel/plugin-transform-new-target": "^7.22.5",
- "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5",
- "@babel/plugin-transform-numeric-separator": "^7.22.5",
- "@babel/plugin-transform-object-rest-spread": "^7.22.5",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",
+ "@babel/plugin-transform-numeric-separator": "^7.22.11",
+ "@babel/plugin-transform-object-rest-spread": "^7.22.11",
"@babel/plugin-transform-object-super": "^7.22.5",
- "@babel/plugin-transform-optional-catch-binding": "^7.22.5",
- "@babel/plugin-transform-optional-chaining": "^7.22.10",
+ "@babel/plugin-transform-optional-catch-binding": "^7.22.11",
+ "@babel/plugin-transform-optional-chaining": "^7.22.12",
"@babel/plugin-transform-parameters": "^7.22.5",
"@babel/plugin-transform-private-methods": "^7.22.5",
- "@babel/plugin-transform-private-property-in-object": "^7.22.5",
+ "@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@babel/plugin-transform-property-literals": "^7.22.5",
"@babel/plugin-transform-regenerator": "^7.22.10",
"@babel/plugin-transform-reserved-words": "^7.22.5",
@@ -1635,7 +1636,7 @@
"@babel/plugin-transform-unicode-regex": "^7.22.5",
"@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
"@babel/preset-modules": "0.1.6-no-external-plugins",
- "@babel/types": "^7.22.10",
+ "@babel/types": "^7.22.11",
"babel-plugin-polyfill-corejs2": "^0.4.5",
"babel-plugin-polyfill-corejs3": "^0.8.3",
"babel-plugin-polyfill-regenerator": "^0.5.2",
@@ -1670,9 +1671,9 @@
"dev": true
},
"node_modules/@babel/runtime": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz",
- "integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.11.tgz",
+ "integrity": "sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
@@ -1695,9 +1696,9 @@
}
},
"node_modules/@babel/traverse": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz",
- "integrity": "sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz",
+ "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==",
"dev": true,
"dependencies": {
"@babel/code-frame": "^7.22.10",
@@ -1706,8 +1707,8 @@
"@babel/helper-function-name": "^7.22.5",
"@babel/helper-hoist-variables": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.22.10",
- "@babel/types": "^7.22.10",
+ "@babel/parser": "^7.22.11",
+ "@babel/types": "^7.22.11",
"debug": "^4.1.0",
"globals": "^11.1.0"
},
@@ -1716,9 +1717,9 @@
}
},
"node_modules/@babel/types": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz",
- "integrity": "sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==",
+ "version": "7.22.11",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz",
+ "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==",
"dependencies": {
"@babel/helper-string-parser": "^7.22.5",
"@babel/helper-validator-identifier": "^7.22.5",
@@ -2239,9 +2240,9 @@
}
},
"node_modules/@eslint-community/regexpp": {
- "version": "4.6.2",
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
- "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
+ "version": "4.8.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz",
+ "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
@@ -2298,18 +2299,52 @@
}
},
"node_modules/@eslint/js": {
- "version": "8.47.0",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.47.0.tgz",
- "integrity": "sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==",
+ "version": "8.48.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.48.0.tgz",
+ "integrity": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
+ "node_modules/@floating-ui/core": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.4.1.tgz",
+ "integrity": "sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==",
+ "dependencies": {
+ "@floating-ui/utils": "^0.1.1"
+ }
+ },
+ "node_modules/@floating-ui/dom": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.1.tgz",
+ "integrity": "sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==",
+ "dependencies": {
+ "@floating-ui/core": "^1.4.1",
+ "@floating-ui/utils": "^0.1.1"
+ }
+ },
+ "node_modules/@floating-ui/react-dom": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.2.tgz",
+ "integrity": "sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==",
+ "dependencies": {
+ "@floating-ui/dom": "^1.5.1"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
+ }
+ },
+ "node_modules/@floating-ui/utils": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.1.tgz",
+ "integrity": "sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw=="
+ },
"node_modules/@humanwhocodes/config-array": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
- "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
+ "version": "0.11.11",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz",
+ "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
@@ -2409,14 +2444,15 @@
}
},
"node_modules/@mui/base": {
- "version": "5.0.0-beta.11",
- "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.11.tgz",
- "integrity": "sha512-FdKZGPd8qmC3ZNke7CNhzcEgToc02M6WYZc9hcBsNQ17bgAd3s9F//1bDDYgMVBYxDM71V0sv/hBHlOY4I1ZVA==",
+ "version": "5.0.0-beta.13",
+ "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.13.tgz",
+ "integrity": "sha512-uC0l97pBspfDAp+iz2cJq8YZ8Sd9i73V77+WzUiOAckIVEyCm5dyVDZCCO2/phmzckVEeZCGcytybkjMQuhPQw==",
"dependencies": {
- "@babel/runtime": "^7.22.6",
+ "@babel/runtime": "^7.22.10",
"@emotion/is-prop-valid": "^1.2.1",
+ "@floating-ui/react-dom": "^2.0.1",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.5",
+ "@mui/utils": "^5.14.7",
"@popperjs/core": "^2.11.8",
"clsx": "^2.0.0",
"prop-types": "^15.8.1",
@@ -2441,20 +2477,20 @@
}
},
"node_modules/@mui/core-downloads-tracker": {
- "version": "5.14.5",
- "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.5.tgz",
- "integrity": "sha512-+wpGH1USwPcKMFPMvXqYPC6fEvhxM3FzxC8lyDiNK/imLyyJ6y2DPb1Oue7OGIKJWBmYBqrWWtfovrxd1aJHTA==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.7.tgz",
+ "integrity": "sha512-sCWTUNElBPgB30iLvWe3PU7SIlTKZNf6/E/sko85iHVeHCM6WPkDw+y89CrZYjhFNmPqt2fIQM/pZu+rP2lFLA==",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui"
}
},
"node_modules/@mui/icons-material": {
- "version": "5.14.3",
- "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.14.3.tgz",
- "integrity": "sha512-XkxWPhageu1OPUm2LWjo5XqeQ0t2xfGe8EiLkRW9oz2LHMMZmijvCxulhgquUVTF1DnoSh+3KoDLSsoAFtVNVw==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.14.7.tgz",
+ "integrity": "sha512-mWp4DwMa8c1Gx9yOEtPgxM4b+e6hAbtZyzfSubdBwrnEE6G5D2rbAJ5MB+If6kfI48JaYaJ5j8+zAdmZLuZc0A==",
"dependencies": {
- "@babel/runtime": "^7.22.6"
+ "@babel/runtime": "^7.22.10"
},
"engines": {
"node": ">=12.0.0"
@@ -2475,16 +2511,16 @@
}
},
"node_modules/@mui/material": {
- "version": "5.14.5",
- "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.5.tgz",
- "integrity": "sha512-4qa4GMfuZH0Ai3mttk5ccXP8a3sf7aPlAJwyMrUSz6h9hPri6BPou94zeu3rENhhmKLby9S/W1y+pmficy8JKA==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.7.tgz",
+ "integrity": "sha512-jIZj9F7zMv6IlyaYDVv5M2Kp20jIX8c0kzuwteySHS/A0IvPVyomQEPtWc51MCbpDNCqzwoZUp3rQtA2lI8k7A==",
"dependencies": {
- "@babel/runtime": "^7.22.6",
- "@mui/base": "5.0.0-beta.11",
- "@mui/core-downloads-tracker": "^5.14.5",
- "@mui/system": "^5.14.5",
+ "@babel/runtime": "^7.22.10",
+ "@mui/base": "5.0.0-beta.13",
+ "@mui/core-downloads-tracker": "^5.14.7",
+ "@mui/system": "^5.14.7",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.5",
+ "@mui/utils": "^5.14.7",
"@types/react-transition-group": "^4.4.6",
"clsx": "^2.0.0",
"csstype": "^3.1.2",
@@ -2519,12 +2555,12 @@
}
},
"node_modules/@mui/private-theming": {
- "version": "5.14.5",
- "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.14.5.tgz",
- "integrity": "sha512-cC4C5RrpXpDaaZyH9QwmPhRLgz+f2SYbOty3cPkk4qPSOSfif2ZEcDD9HTENKDDd9deB+xkPKzzZhi8cxIx8Ig==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.14.7.tgz",
+ "integrity": "sha512-Y86+hmDnJab2Ka42PgxKpK3oL7EiacbeeX3X/lG9LGO0wSc45wZjHeTfIlVSkkUCkexiMKEJp5NlSjZhr27NRQ==",
"dependencies": {
- "@babel/runtime": "^7.22.6",
- "@mui/utils": "^5.14.5",
+ "@babel/runtime": "^7.22.10",
+ "@mui/utils": "^5.14.7",
"prop-types": "^15.8.1"
},
"engines": {
@@ -2545,11 +2581,11 @@
}
},
"node_modules/@mui/styled-engine": {
- "version": "5.13.2",
- "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.13.2.tgz",
- "integrity": "sha512-VCYCU6xVtXOrIN8lcbuPmoG+u7FYuOERG++fpY74hPpEWkyFQG97F+/XfTQVYzlR2m7nPjnwVUgATcTCMEaMvw==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.14.7.tgz",
+ "integrity": "sha512-hKBETEDsIAkL8/mBwPiQj/vw28OeIhMXC3Tvj4J2bb9snxAKpiZioR1PwqP+6P41twsC/GKBd0Vr9oaWYaHuMg==",
"dependencies": {
- "@babel/runtime": "^7.21.0",
+ "@babel/runtime": "^7.22.10",
"@emotion/cache": "^11.11.0",
"csstype": "^3.1.2",
"prop-types": "^15.8.1"
@@ -2576,15 +2612,15 @@
}
},
"node_modules/@mui/system": {
- "version": "5.14.5",
- "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.14.5.tgz",
- "integrity": "sha512-mextXZHDeGcR7E1kx43TRARrVXy+gI4wzpUgNv7MqZs1dvTVXQGVeAT6ydj9d6FUqHBPMNLGV/21vJOrpqsL+w==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.14.7.tgz",
+ "integrity": "sha512-jeZtHglc+Pi6qjGoopT6O4RqYXVBMqHVOsjMGP0hxGSSPm1T4gsAu7jU8eqGx9YwwjvvJ0eotTjFqw7iJ6qE2Q==",
"dependencies": {
- "@babel/runtime": "^7.22.6",
- "@mui/private-theming": "^5.14.5",
- "@mui/styled-engine": "^5.13.2",
+ "@babel/runtime": "^7.22.10",
+ "@mui/private-theming": "^5.14.7",
+ "@mui/styled-engine": "^5.14.7",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.5",
+ "@mui/utils": "^5.14.7",
"clsx": "^2.0.0",
"csstype": "^3.1.2",
"prop-types": "^15.8.1"
@@ -2628,11 +2664,11 @@
}
},
"node_modules/@mui/utils": {
- "version": "5.14.5",
- "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.14.5.tgz",
- "integrity": "sha512-6Hzw63VR9C5xYv+CbjndoRLU6Gntal8rJ5W+GUzkyHrGWIyYPWZPa6AevnyGioySNETATe1H9oXS8f/7qgIHJA==",
+ "version": "5.14.7",
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.14.7.tgz",
+ "integrity": "sha512-RtheP/aBoPogVdi8vj8Vo2IFnRa4mZVmnD0RGlVZ49yF60rZs+xP4/KbpIrTr83xVs34QmHQ2aQ+IX7I0a0dDw==",
"dependencies": {
- "@babel/runtime": "^7.22.6",
+ "@babel/runtime": "^7.22.10",
"@types/prop-types": "^15.7.5",
"@types/react-is": "^18.2.1",
"prop-types": "^15.8.1",
@@ -2734,9 +2770,9 @@
}
},
"node_modules/@types/node": {
- "version": "20.5.0",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.0.tgz",
- "integrity": "sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==",
+ "version": "20.5.7",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz",
+ "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==",
"dev": true
},
"node_modules/@types/parse-json": {
@@ -2750,9 +2786,9 @@
"integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
},
"node_modules/@types/react": {
- "version": "18.2.20",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.20.tgz",
- "integrity": "sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw==",
+ "version": "18.2.21",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz",
+ "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
@@ -2796,9 +2832,9 @@
"dev": true
},
"node_modules/@types/unist": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.7.tgz",
- "integrity": "sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g=="
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.8.tgz",
+ "integrity": "sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw=="
},
"node_modules/@vitejs/plugin-react": {
"version": "4.0.4",
@@ -2923,16 +2959,16 @@
}
},
"node_modules/array.prototype.findlastindex": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz",
- "integrity": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==",
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz",
+ "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0",
- "get-intrinsic": "^1.1.3"
+ "get-intrinsic": "^1.2.1"
},
"engines": {
"node": ">= 0.4"
@@ -3232,9 +3268,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001521",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001521.tgz",
- "integrity": "sha512-fnx1grfpEOvDGH+V17eccmNjucGUnCbP6KL+l5KqBIerp26WK/+RQ7CIDE37KGJjaPyqWXXlFUyKiWmvdNNKmQ==",
+ "version": "1.0.30001525",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001525.tgz",
+ "integrity": "sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==",
"dev": true,
"funding": [
{
@@ -3362,12 +3398,12 @@
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"node_modules/core-js-compat": {
- "version": "3.32.0",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.0.tgz",
- "integrity": "sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==",
+ "version": "3.32.1",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.1.tgz",
+ "integrity": "sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==",
"dev": true,
"dependencies": {
- "browserslist": "^4.21.9"
+ "browserslist": "^4.21.10"
},
"funding": {
"type": "opencollective",
@@ -3550,9 +3586,9 @@
}
},
"node_modules/electron-to-chromium": {
- "version": "1.4.495",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.495.tgz",
- "integrity": "sha512-mwknuemBZnoOCths4GtpU/SDuVMp3uQHKa2UNJT9/aVD6WVRjGpXOxRGX7lm6ILIenTdGXPSTCTDaWos5tEU8Q==",
+ "version": "1.4.508",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.508.tgz",
+ "integrity": "sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==",
"dev": true
},
"node_modules/emoji-regex": {
@@ -3631,15 +3667,15 @@
}
},
"node_modules/es-iterator-helpers": {
- "version": "1.0.13",
- "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.13.tgz",
- "integrity": "sha512-LK3VGwzvaPWobO8xzXXGRUOGw8Dcjyfk62CsY/wfHN75CwsJPbuypOYJxK6g5RyEL8YDjIWcl6jgd8foO6mmrA==",
+ "version": "1.0.14",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.14.tgz",
+ "integrity": "sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==",
"dev": true,
"dependencies": {
"asynciterator.prototype": "^1.0.0",
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
- "es-abstract": "^1.21.3",
+ "es-abstract": "^1.22.1",
"es-set-tostringtag": "^2.0.1",
"function-bind": "^1.1.1",
"get-intrinsic": "^1.2.1",
@@ -3750,15 +3786,15 @@
}
},
"node_modules/eslint": {
- "version": "8.47.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.47.0.tgz",
- "integrity": "sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==",
+ "version": "8.48.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz",
+ "integrity": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==",
"dev": true,
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.6.1",
"@eslint/eslintrc": "^2.1.2",
- "@eslint/js": "^8.47.0",
+ "@eslint/js": "8.48.0",
"@humanwhocodes/config-array": "^0.11.10",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
@@ -3902,9 +3938,9 @@
}
},
"node_modules/eslint-plugin-import": {
- "version": "2.28.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.0.tgz",
- "integrity": "sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q==",
+ "version": "2.28.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz",
+ "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==",
"dev": true,
"dependencies": {
"array-includes": "^3.1.6",
@@ -3916,13 +3952,12 @@
"eslint-import-resolver-node": "^0.3.7",
"eslint-module-utils": "^2.8.0",
"has": "^1.0.3",
- "is-core-module": "^2.12.1",
+ "is-core-module": "^2.13.0",
"is-glob": "^4.0.3",
"minimatch": "^3.1.2",
"object.fromentries": "^2.0.6",
"object.groupby": "^1.0.0",
"object.values": "^1.1.6",
- "resolve": "^1.22.3",
"semver": "^6.3.1",
"tsconfig-paths": "^3.14.2"
},
@@ -4381,16 +4416,17 @@
}
},
"node_modules/flat-cache": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
- "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz",
+ "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==",
"dev": true,
"dependencies": {
- "flatted": "^3.1.0",
+ "flatted": "^3.2.7",
+ "keyv": "^4.5.3",
"rimraf": "^3.0.2"
},
"engines": {
- "node": "^10.12.0 || >=12.0.0"
+ "node": ">=12.0.0"
}
},
"node_modules/flatted": {
@@ -4430,9 +4466,9 @@
"dev": true
},
"node_modules/fsevents": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
- "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"dev": true,
"hasInstallScript": true,
"optional": true,
@@ -4449,15 +4485,15 @@
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
},
"node_modules/function.prototype.name": {
- "version": "1.1.5",
- "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
- "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz",
+ "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.19.0",
- "functions-have-names": "^1.2.2"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "functions-have-names": "^1.2.3"
},
"engines": {
"node": ">= 0.4"
@@ -5273,15 +5309,14 @@
"dev": true
},
"node_modules/iterator.prototype": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.0.tgz",
- "integrity": "sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.1.tgz",
+ "integrity": "sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==",
"dev": true,
"dependencies": {
- "define-properties": "^1.1.4",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.0",
+ "get-intrinsic": "^1.2.1",
"has-symbols": "^1.0.3",
- "has-tostringtag": "^1.0.0",
"reflect.getprototypeof": "^1.0.3"
}
},
@@ -5442,6 +5477,12 @@
"node": ">=4"
}
},
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true
+ },
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
@@ -5513,6 +5554,15 @@
"node": ">=4.0"
}
},
+ "node_modules/keyv": {
+ "version": "4.5.3",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz",
+ "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==",
+ "dev": true,
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
"node_modules/language-subtag-registry": {
"version": "0.3.22",
"resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
@@ -5905,28 +5955,28 @@
}
},
"node_modules/object.entries": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz",
- "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==",
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz",
+ "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/object.fromentries": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz",
- "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz",
+ "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
@@ -5936,39 +5986,39 @@
}
},
"node_modules/object.groupby": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.0.tgz",
- "integrity": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz",
+ "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
- "es-abstract": "^1.21.2",
+ "es-abstract": "^1.22.1",
"get-intrinsic": "^1.2.1"
}
},
"node_modules/object.hasown": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz",
- "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz",
+ "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==",
"dev": true,
"dependencies": {
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/object.values": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
- "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==",
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz",
+ "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
@@ -6137,9 +6187,9 @@
}
},
"node_modules/postcss": {
- "version": "8.4.28",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz",
- "integrity": "sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==",
+ "version": "8.4.29",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz",
+ "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",
"dev": true,
"funding": [
{
@@ -6401,15 +6451,15 @@
}
},
"node_modules/reflect.getprototypeof": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.3.tgz",
- "integrity": "sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz",
+ "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.1",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
"globalthis": "^1.0.3",
"which-builtin-type": "^1.1.3"
},
@@ -6603,9 +6653,9 @@
}
},
"node_modules/rollup": {
- "version": "3.28.0",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.0.tgz",
- "integrity": "sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==",
+ "version": "3.28.1",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.1.tgz",
+ "integrity": "sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==",
"dev": true,
"bin": {
"rollup": "dist/bin/rollup"
@@ -6847,18 +6897,18 @@
}
},
"node_modules/string.prototype.matchall": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz",
- "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==",
+ "version": "4.0.9",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.9.tgz",
+ "integrity": "sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
"has-symbols": "^1.0.3",
- "internal-slot": "^1.0.3",
- "regexp.prototype.flags": "^1.4.3",
+ "internal-slot": "^1.0.5",
+ "regexp.prototype.flags": "^1.5.0",
"side-channel": "^1.0.4"
},
"funding": {
@@ -7040,9 +7090,9 @@
}
},
"node_modules/terser": {
- "version": "5.19.2",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz",
- "integrity": "sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==",
+ "version": "5.19.3",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.3.tgz",
+ "integrity": "sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==",
"dev": true,
"dependencies": {
"@jridgewell/source-map": "^0.3.3",
From 60d5e66e34f51823cb89230a10ea62343a1ca0e7 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Fri, 1 Sep 2023 15:36:12 -0400
Subject: [PATCH 030/182] Integration links
---
docs/integrations.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/docs/integrations.md b/docs/integrations.md
index 740d8c40..68bc4c46 100644
--- a/docs/integrations.md
+++ b/docs/integrations.md
@@ -128,9 +128,11 @@ I've added a ⭐ to projects or posts that have a significant following, or had
- [msgdrop](https://github.com/jbrubake/msgdrop) - Send and receive encrypted messages (Bash)
- [vigilant](https://github.com/VerifiedJoseph/vigilant) - Monitor RSS/ATOM and JSON feeds, and send push notifications on new entries (PHP)
- [ansible-role-ntfy-alertmanager](https://github.com/bleetube/ansible-role-ntfy-alertmanager) - Ansible role to install xenrox/ntfy-alertmanager
+- [NtfyMe-Blender](https://github.com/NotNanook/NtfyMe-Blender) - Blender addon to send notifications to NtfyMe (Python)
## Blog + forum posts
+- [NetworkChunk - how did I NOT know about this?](https://www.youtube.com/watch?v=poDIT2ruQ9M) ⭐ - youtube.com - 8/2023
- [Open Source Push Notifications! Get notified of any event you can imagine. Triggers abound!](https://www.youtube.com/watch?v=WJgwWXt79pE) ⭐ - youtube.com - 8/2023
- [How to install and self host an Ntfy server on Linux](https://linuxconfig.org/how-to-install-and-self-host-an-ntfy-server-on-linux) - linuxconfig.org - 7/2023
- [Basic website monitoring using cronjobs and ntfy.sh](https://burkhardt.dev/2023/website-monitoring-cron-ntfy/) - burkhardt.dev - 6/2023
From d999dbe0a0d09b8da4d8cd3b9f9a1794d68dc8dc Mon Sep 17 00:00:00 2001
From: Ikko Eltociear Ashimine
Date: Sat, 2 Sep 2023 22:29:45 +0900
Subject: [PATCH 031/182] Update releases.md
suport -> support
---
docs/releases.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/releases.md b/docs/releases.md
index 70682131..1e518c76 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -110,7 +110,7 @@ if you use promo code `MYTOPIC`). ntfy will always remain open source.
## ntfy server v2.4.0
Released Apr 26, 2023
-This release adds a tiny `v1/stats` endpoint to expose how many messages have been published, and adds suport to encode the `X-Title`,
+This release adds a tiny `v1/stats` endpoint to expose how many messages have been published, and adds support to encode the `X-Title`,
`X-Message` and `X-Tags` header as RFC 2047. It's a pretty small release, and mainly enables the release of the new ntfy.sh website.
❤️ If you like ntfy, **please consider sponsoring me** via [GitHub Sponsors](https://github.com/sponsors/binwiederhier)
From e2d7f2cf296c1078b14e399533ac85a8fed634b4 Mon Sep 17 00:00:00 2001
From: masterujjval
Date: Sat, 2 Sep 2023 23:09:53 +0530
Subject: [PATCH 032/182] readme modified
---
README.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 95944639..a6e0e8da 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ notification service. With ntfy, you can **send notifications to your phone or d
**without having to sign up or pay any fees**. If you'd like to run your own instance of the service, you can easily do
so since ntfy is open source.
-You can access the free version of ntfy at **[ntfy.sh](https://ntfy.sh)**. There is also an [open source Android app](https://github.com/binwiederhier/ntfy-android)
+You can access the free version of ntfy at **[ntfy.sh](https://ntfy.sh)**. There is also an [open-source Android app](https://github.com/binwiederhier/ntfy-android)
available on [Google Play](https://play.google.com/store/apps/details?id=io.heckel.ntfy) or [F-Droid](https://f-droid.org/en/packages/io.heckel.ntfy/),
as well as an [open source iOS app](https://github.com/binwiederhier/ntfy-ios) available on the [App Store](https://apps.apple.com/us/app/ntfy/id1625396347).
@@ -41,7 +41,7 @@ I now offer paid plans for [ntfy.sh](https://ntfy.sh/) if you don't want to self
[Install / Self-hosting](https://ntfy.sh/docs/install/) |
[Building](https://ntfy.sh/docs/develop/)
-## Chat / forum
+## Chat/forum
There are a few ways to get in touch with me and/or the rest of the community. Feel free to use any of these methods. Whatever
works best for you:
@@ -50,13 +50,13 @@ works best for you:
* [Lemmy discussion board](https://discuss.ntfy.sh/c/ntfy) - asynchronous forum (_new as of June 2023_)
* [GitHub issues](https://github.com/binwiederhier/ntfy/issues) - questions, features, bugs
-## Announcements / beta testers
+## Announcements/beta testers
For announcements of new releases and cutting-edge beta versions, please subscribe to the [ntfy.sh/announcements](https://ntfy.sh/announcements)
topic. If you'd like to test the iOS app, join [TestFlight](https://testflight.apple.com/join/P1fFnAm9). For Android betas,
join Discord/Matrix (I'll eventually make a testing channel in Google Play).
## Contributing
-I welcome any and all contributions. Just create a PR or an issue. For larger features/ideas, please reach out
+I welcome any contributions. Just create a PR or an issue. For larger features/ideas, please reach out
on Discord/Matrix first to see if I'd accept them. To contribute code, check out the [build instructions](https://ntfy.sh/docs/develop/)
for the server and the Android app. Or, if you'd like to help translate 🇩🇪 🇺🇸 🇧🇬, you can start immediately in
[Hosted Weblate](https://hosted.weblate.org/projects/ntfy/).
@@ -165,7 +165,7 @@ _Please be sure to read the complete [Code of Conduct](CODE_OF_CONDUCT.md)._
Made with ❤️ by [Philipp C. Heckel](https://heckel.io).
The project is dual licensed under the [Apache License 2.0](LICENSE) and the [GPLv2 License](LICENSE.GPLv2).
-Third party libraries and resources:
+Third-party libraries and resources:
* [github.com/urfave/cli](https://github.com/urfave/cli) (MIT) is used to drive the CLI
* [Mixkit sounds](https://mixkit.co/free-sound-effects/notification/) (Mixkit Free License) are used as notification sounds
* [Sounds from notificationsounds.com](https://notificationsounds.com) (Creative Commons Attribution) are used as notification sounds
From 15fa3b7d9ffb7d1c53c973b5de320e99d3849e88 Mon Sep 17 00:00:00 2001
From: "vardy.ng"
Date: Sat, 2 Sep 2023 15:54:29 -0400
Subject: [PATCH 033/182] =?UTF-8?q?break=20=E4=B8=AD=E6=96=87(Chinese)=20i?=
=?UTF-8?q?nto=20=E7=B9=81=E9=AB=94=E4=B8=AD=E6=96=87(Traditional=20Chines?=
=?UTF-8?q?e,=20zh=5FHant)=20and=20=E7=AE=80=E4=BD=93=E4=B8=AD=E6=96=87(Si?=
=?UTF-8?q?mplified=20Chinese,=20zh=5FHans)=20in=20language=20drop=20down?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
web/src/components/Preferences.jsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web/src/components/Preferences.jsx b/web/src/components/Preferences.jsx
index a93032ce..546ecbe3 100644
--- a/web/src/components/Preferences.jsx
+++ b/web/src/components/Preferences.jsx
@@ -571,7 +571,8 @@ const Language = () => {
Bahasa Indonesia
Български
Čeština
- 中文
+ 繁體中文
+ 简体中文
Dansk
Deutsch
Español
From c80f71bd9b6044037b935312e2d33b8ceaaa505b Mon Sep 17 00:00:00 2001
From: "vardy.ng"
Date: Sat, 2 Sep 2023 17:30:34 -0400
Subject: [PATCH 034/182] update Simplified Chinese Translation, align with
English translation by adding missing keys
---
web/public/static/langs/zh_Hans.json | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/zh_Hans.json b/web/public/static/langs/zh_Hans.json
index e2904e9e..f9a9fbcd 100644
--- a/web/public/static/langs/zh_Hans.json
+++ b/web/public/static/langs/zh_Hans.json
@@ -1,11 +1,13 @@
{
"action_bar_show_menu": "显示菜单",
"action_bar_logo_alt": "ntfy图标",
+ "action_bar_mute_notifications": "静音",
"action_bar_settings": "设置",
"action_bar_send_test_notification": "发送测试通知",
"action_bar_clear_notifications": "清除所有通知",
"action_bar_unsubscribe": "取消订阅",
"action_bar_toggle_action_menu": "开启或关闭操作菜单",
+ "action_bar_unmute_notifications": "取消静音",
"message_bar_type_message": "在此处输入消息",
"message_bar_show_dialog": "显示发布对话框",
"message_bar_publish": "发布消息",
@@ -20,6 +22,10 @@
"alert_notification_permission_required_button": "现在授予",
"alert_not_supported_title": "不支持通知",
"alert_not_supported_description": "您的浏览器不支持通知。",
+ "alert_notification_ios_install_required_description": "要接收通知,请在iOS上点击分享图标,然后添加到主屏幕。",
+ "alert_notification_ios_install_required_title": "需要安装iOS应用程序",
+ "alert_notification_permission_denied_description": "你已禁用通知。要重新启用通知,请在浏览器设置中启用通知。",
+ "alert_notification_permission_denied_title": "已禁用通知",
"notifications_list": "通知列表",
"notifications_list_item": "通知",
"notifications_mark_read": "标记为已读",
@@ -129,6 +135,11 @@
"prefs_notifications_delete_after_one_day_description": "一天后自动删除通知",
"prefs_notifications_delete_after_one_week_description": "一周后自动删除通知",
"prefs_notifications_delete_after_one_month_description": "一月后后自动删除通知",
+ "prefs_notifications_web_push_disabled": "已暂用",
+ "prefs_notifications_web_push_disabled_description": "当网页程序在运行时将会收到通知 (透过 WebSocket)",
+ "prefs_notifications_web_push_enabled": "已为 {{server}} 启用",
+ "prefs_notifications_web_push_enabled_description": "即使网页程序未有运行亦会收到通知 (via Web Push)",
+ "prefs_notifications_web_push_title": "背景通知",
"prefs_users_title": "管理用户",
"prefs_users_description": "在此处添加/删除受保护主题的用户。请注意,用户名和密码存储在浏览器的本地存储中。",
"prefs_users_add_button": "添加用户",
@@ -140,6 +151,10 @@
"common_save": "保存",
"prefs_appearance_title": "外观",
"prefs_appearance_language_title": "语言",
+ "prefs_appearance_theme_title": "主題",
+ "prefs_appearance_theme_system": "系統 (預設)",
+ "prefs_appearance_theme_dark": "黑暗模式",
+ "prefs_appearance_theme_light": "光亮模式",
"priority_min": "最低",
"priority_low": "低",
"priority_default": "默认",
@@ -149,6 +164,7 @@
"prefs_users_table_base_url_header": "服务链接地址",
"prefs_users_dialog_base_url_label": "服务链接地址,例如 https://ntfy.sh",
"error_boundary_button_copy_stack_trace": "复制堆栈跟踪",
+ "error_boundary_button_reload_ntfy": "重新加载 ntfy",
"error_boundary_stack_trace": "堆栈跟踪",
"error_boundary_gathering_info": "收集更多信息……",
"error_boundary_unsupported_indexeddb_title": "不支持隐私浏览",
@@ -160,6 +176,7 @@
"notifications_attachment_copy_url_button": "复制链接地址",
"notifications_attachment_open_title": "转到 {{url}}",
"notifications_actions_http_request_title": "发送 HTTP {{method}} 到 {{url}}",
+ "notifications_actions_failed_notification": "通知失败",
"notifications_actions_open_url_title": "转到 {{url}}",
"notifications_none_for_topic_description": "要向此主题发送通知,只需使用 PUT 或 POST 到主题链接即可。",
"subscribe_dialog_subscribe_topic_placeholder": "主题名,例如 phil_alerts",
@@ -168,12 +185,14 @@
"publish_dialog_title_placeholder": "主题标题,例如 磁盘空间告警",
"publish_dialog_email_label": "电子邮件",
"publish_dialog_button_send": "发送",
+ "publish_dialog_checkbox_markdown": "格式化为 Markdown",
"publish_dialog_attachment_limits_quota_reached": "超过配额,剩余 {{remainingBytes}}",
"publish_dialog_attach_label": "附件链接地址",
"publish_dialog_click_reset": "移除点击连接地址",
"publish_dialog_button_cancel": "取消",
"subscribe_dialog_subscribe_button_cancel": "取消",
"subscribe_dialog_subscribe_base_url_label": "服务地址地址",
+ "subscribe_dialog_subscribe_use_another_background_info": "当网页程序未开启, 将不会收到来自其他服务器的通知",
"prefs_notifications_min_priority_description_any": "显示所有通知,无论优先级如何",
"prefs_notifications_delete_after_title": "删除通知",
"prefs_notifications_delete_after_three_hours": "三小时后",
@@ -380,5 +399,9 @@
"account_basics_phone_numbers_dialog_verify_button_call": "拨打电话",
"account_upgrade_dialog_tier_features_messages_one": "一条每日消息",
"account_upgrade_dialog_tier_features_calls_other": "{{calls}} 通每日电话",
- "account_upgrade_dialog_tier_features_no_calls": "无电话呼叫"
+ "account_upgrade_dialog_tier_features_no_calls": "无电话呼叫",
+ "web_push_subscription_expiring_title": "通知将被暂停",
+ "web_push_subscription_expiring_body": "打开ntfy以继续接收通知",
+ "web_push_unknown_notification_title": "接收到未知通知",
+ "web_push_unknown_notification_body": "你可能需要打开网页来更新ntfy"
}
From d0b7336da7331e7a4a752abbf27dd2603e530dee Mon Sep 17 00:00:00 2001
From: "vardy.ng"
Date: Sat, 2 Sep 2023 17:31:07 -0400
Subject: [PATCH 035/182] completed Traditional Chinese Translation, aligned
with Simplified Chinese and English translation
---
web/public/static/langs/zh_Hant.json | 588 ++++++++++++++++++---------
1 file changed, 388 insertions(+), 200 deletions(-)
diff --git a/web/public/static/langs/zh_Hant.json b/web/public/static/langs/zh_Hant.json
index 9b0dd372..ae32e765 100644
--- a/web/public/static/langs/zh_Hant.json
+++ b/web/public/static/langs/zh_Hant.json
@@ -1,220 +1,408 @@
{
+ "action_bar_show_menu": "顯示選單",
"action_bar_logo_alt": "ntfy 標識",
- "action_bar_unsubscribe": "取消訂閱",
- "action_bar_toggle_mute": "通知靜音/解除通知靜音",
- "action_bar_toggle_action_menu": "開啟/關閉操作選單",
- "message_bar_type_message": "在這輸入訊息",
- "alert_notification_permission_required_description": "允許瀏覽器權限以顯示桌面通知。",
- "alert_notification_permission_required_button": "允許",
- "notifications_list": "通知清單",
- "notifications_list_item": "通知",
- "notifications_mark_read": "標示已讀",
- "notifications_attachment_image": "附加圖片",
- "notifications_attachment_copy_url_title": "複製附件 URL 到剪貼簿",
- "notifications_attachment_copy_url_button": "複製 URL",
- "notifications_attachment_open_title": "前往 {{url}}",
- "notifications_attachment_open_button": "開啟附件",
- "notifications_attachment_link_expired": "下載連結已過期",
- "notifications_attachment_file_video": "影片檔案",
- "notifications_attachment_file_app": "Android 應用程式檔案",
- "notifications_attachment_file_document": "其他文件",
- "notifications_click_copy_url_title": "複製連結 URL 到剪貼板",
- "notifications_click_copy_url_button": "複製連結",
- "notifications_click_open_button": "開啟連結",
- "notifications_actions_not_supported": "網頁程式無法支援該動作",
- "notifications_actions_http_request_title": "傳送 HTTP {{method}} 到 {{url}}",
- "notifications_none_for_topic_title": "尚未收到任何此主題的通知。",
- "notifications_none_for_topic_description": "如要寄送通知到此主題,請使用 PUT 或 POST 到此主題URL。",
- "notifications_none_for_any_title": "尚未收到任何通知。",
+ "action_bar_mute_notifications": "靜音",
"action_bar_settings": "設定",
"action_bar_send_test_notification": "發送測試通知",
"action_bar_clear_notifications": "清除所有通知",
- "action_bar_show_menu": "顯示選單",
- "nav_button_documentation": "文件",
- "nav_button_publish_message": "發佈通知",
- "nav_button_muted": "通知已靜音",
- "notifications_copied_to_clipboard": "已複製到剪貼簿",
- "message_bar_publish": "發佈訊息",
- "message_bar_show_dialog": "顯示發佈對話框",
- "message_bar_error_publishing": "發佈通知時發生錯誤",
+ "action_bar_unsubscribe": "取消訂閱",
+ "action_bar_toggle_action_menu": "開啟或關閉操作選單",
+ "action_bar_unmute_notifications": "取消靜音",
+ "message_bar_type_message": "在此處輸入訊息",
+ "message_bar_show_dialog": "顯示發布對話框",
+ "message_bar_publish": "發布訊息",
"nav_topics_title": "訂閱主題",
- "nav_button_all_notifications": "所有通知",
- "nav_button_settings": "設定",
+ "nav_button_all_notifications": "全部通知",
+ "nav_button_documentation": "文檔",
+ "nav_button_publish_message": "發布通知",
"nav_button_subscribe": "訂閱主題",
- "nav_button_connecting": "連線中",
- "alert_notification_permission_required_title": "通知已關閉",
- "alert_not_supported_title": "不支援通知",
- "alert_not_supported_description": "瀏覽器不支援通知。",
- "notifications_tags": "標籤",
- "notifications_priority_x": "優先度 {{priority}}",
+ "nav_button_connecting": "正在連接",
+ "alert_notification_permission_required_title": "已禁用通知",
+ "alert_notification_permission_required_description": "授予瀏覽器顯示桌面通知的權限。",
+ "alert_notification_permission_required_button": "現在授予",
+ "alert_not_supported_title": "不支援通知",
+ "alert_not_supported_description": "你的瀏覽器不支援通知。",
+ "alert_notification_ios_install_required_description": "要接收通知,請在 iOS 上點擊共享,然後添加到主屏幕",
+ "alert_notification_ios_install_required_title": "需要安裝 iOS 應用程式",
+ "alert_notification_permission_denied_description": "你已禁用通知。要重新啟用通知,請在瀏覽器設置中啟用通知。",
+ "alert_notification_permission_denied_title": "已禁用通知",
+ "notifications_list": "通知列表",
+ "notifications_list_item": "通知",
+ "notifications_mark_read": "標記為已讀",
+ "notifications_copied_to_clipboard": "複製到剪貼板",
+ "notifications_tags": "標記",
+ "notifications_priority_x": "優先級 {{priority}}",
"notifications_new_indicator": "新通知",
- "notifications_attachment_file_audio": "聲音檔案",
- "notifications_delete": "刪除",
+ "notifications_attachment_open_button": "打開附件",
"notifications_attachment_link_expires": "連結在 {{date}} 過期",
- "notifications_attachment_file_image": "圖片檔案",
- "notifications_actions_open_url_title": "前往 {{url}}",
- "notifications_no_subscriptions_title": "你尚未有任何訂閱。",
- "notifications_example": "範例",
- "notifications_more_details": "你可以在 ntfy 網站 或者技術文件 中查看更多資訊。",
- "notifications_loading": "載入中…",
- "publish_dialog_title_topic": "發佈到 {{topic}}",
- "publish_dialog_title_no_topic": "發佈通知",
- "publish_dialog_progress_uploading": "上傳中…",
- "publish_dialog_priority_label": "優先度",
- "publish_dialog_email_label": "電郵地址",
- "publish_dialog_filename_label": "檔案名稱",
- "publish_dialog_button_cancel": "取消",
- "publish_dialog_button_send": "傳送",
- "publish_dialog_button_cancel_sending": "取消傳送",
- "subscribe_dialog_subscribe_button_cancel": "取消",
- "subscribe_dialog_subscribe_button_subscribe": "訂閱",
- "emoji_picker_search_clear": "清除",
- "subscribe_dialog_login_password_label": "密碼",
- "common_back": "返回",
- "subscribe_dialog_login_button_login": "登入",
- "prefs_notifications_delete_after_never": "從不",
- "prefs_users_add_button": "新增使用者",
- "prefs_users_dialog_password_label": "密碼",
- "prefs_users_dialog_title_add": "新增使用者",
- "common_save": "儲存",
- "common_cancel": "取消",
- "error_boundary_title": "歐買尬,ntfy 壞掉了",
- "notifications_none_for_any_description": "要開始發送通知到一個主題,只需要對主題 URL 發送 HTTP PUT 或者 POST,例如:",
- "notifications_no_subscriptions_description": "點選 「{{linktext}}」 連結以建立或訂閱主題。完成後,你就可以使用 HTTP PUT 或者 POST 發送通知到這裡了!",
- "error_boundary_description": "很抱歉 ntfy 發生錯誤了。 如果你有時間,煩請到 Github 回報錯誤,或者到 Discord 或者 Matrix 聊天室 裡面告訴我們。",
- "publish_dialog_tags_placeholder": "逗號分隔的標籤,例如 e.g. warning, srv1-backup",
- "publish_dialog_click_label": "點擊網址",
- "publish_dialog_attach_placeholder": "從網址新增附件,例如 https://f-droid.org/F-Droid.apk",
- "publish_dialog_attach_reset": "移除附件網址",
- "publish_dialog_attach_label": "附件網址",
- "publish_dialog_delay_reset": "移除延遲傳送",
- "publish_dialog_delay_label": "延遲",
- "publish_dialog_other_features": "其他功能:",
- "publish_dialog_filename_placeholder": "附件檔案名稱",
- "publish_dialog_delay_placeholder": "延遲傳送,例如 {{unixTimestamp}}, {{relativeTime}} 或 \"{{naturalLanguage}}\" (僅限英文)",
- "publish_dialog_chip_click_label": "點擊網址",
- "publish_dialog_chip_email_label": "轉發到電郵",
- "publish_dialog_chip_attach_url_label": "從網址新增附件",
- "emoji_picker_search_placeholder": "搜尋 emoji",
- "subscribe_dialog_subscribe_title": "訂閱主題",
- "subscribe_dialog_error_user_not_authorized": "用戶 {{username}} 沒有權限",
- "subscribe_dialog_error_user_anonymous": "匿名",
- "login_title": "登入 ntfy 帳戶",
- "action_bar_reservation_add": "保留主題",
- "action_bar_profile_logout": "登出",
- "alert_not_supported_context_description": "訊息只支援 HTTPS. 這是受 Notifications API 的限制",
- "publish_dialog_base_url_placeholder": "服務網址,例如 https://example.com",
- "signup_title": "創建 ntfy 賬戶",
- "signup_form_username": "用戶名稱",
- "signup_form_password": "密碼",
- "signup_form_button_submit": "註冊",
- "signup_form_toggle_password_visibility": "顯示/隱藏密碼",
- "signup_disabled": "註冊已停止",
- "signup_error_username_taken": "用戶名稱 {{username}} 已被取用",
- "signup_error_creation_limit_reached": "註冊賬戶限制",
- "login_form_button_submit": "登入",
- "login_link_signup": "註冊",
- "signup_already_have_account": "已有帳戶? 立即登入!",
- "login_disabled": "登入已停止",
- "action_bar_account": "帳戶",
- "action_bar_change_display_name": "改變顯示名稱",
- "action_bar_reservation_edit": "改變已保留",
- "action_bar_reservation_delete": "移除保留",
- "action_bar_reservation_limit_reached": "達到限制",
- "action_bar_profile_title": "簡介",
- "action_bar_profile_settings": "設置",
- "action_bar_sign_in": "登入",
- "action_bar_sign_up": "註冊",
- "nav_button_account": "帳戶",
- "nav_upgrade_banner_label": "升級到 ntfy 專業版",
- "nav_upgrade_banner_description": "保留主題,更多信息電郵及附件",
- "display_name_dialog_title": "改變顯示名稱",
- "display_name_dialog_description": "為主題新增在訂閱清單顯示的第二名稱, 這會令尋找複雜主題時更方便。",
- "display_name_dialog_placeholder": "顯示名稱",
- "reserve_dialog_checkbox_label": "保留主題及設置權限",
- "publish_dialog_progress_uploading_detail": "上載中 {{loaded}}/{{total}} ({{percent}}%) …",
- "publish_dialog_message_published": "已公佈通訊",
- "publish_dialog_attachment_limits_file_reached": "超出檔案限制 {fileSizeLimit}}",
- "publish_dialog_attachment_limits_quota_reached": "超出限制, 尚餘 {{remainingBytes}}",
- "publish_dialog_emoji_picker_show": "選擇 emoji",
- "publish_dialog_priority_min": "最低優先",
- "publish_dialog_priority_low": "較低優先",
- "publish_dialog_priority_default": "正常優先",
- "publish_dialog_priority_high": "高度優先",
- "publish_dialog_priority_max": "最高優先",
- "publish_dialog_base_url_label": "服務網址",
+ "notifications_attachment_link_expired": "下載連結已過期",
+ "notifications_attachment_file_image": "圖片文件",
+ "notifications_attachment_image": "附件圖片",
+ "notifications_attachment_file_video": "影片文件",
+ "notifications_attachment_file_audio": "聲音文件",
+ "notifications_attachment_file_app": "安卓應用程式",
+ "notifications_attachment_file_document": "其他文件",
+ "notifications_click_copy_url_title": "複製鏈結地址到剪貼板",
+ "notifications_click_copy_url_button": "複製鏈結",
+ "notifications_click_open_button": "打開鏈結",
+ "action_bar_toggle_mute": "通知靜音/解除通知靜音",
+ "nav_button_muted": "已暫停通知",
+ "notifications_actions_not_supported": "網頁應用程序不支援此操作",
+ "notifications_none_for_topic_title": "你尚未收到有關此主題的任何通知。",
+ "notifications_none_for_any_title": "你尚未收到任何通知。",
+ "notifications_none_for_any_description": "要向此主題發送通知,只需使用 PUT 或 POST 到主題鏈結即可。以下是使用你的主題的示例。",
+ "notifications_no_subscriptions_title": "看起來你還未有任何訂閱",
+ "notifications_example": "示例",
+ "notifications_more_details": "有關更多資訊,請查看網站 或文檔 。",
+ "notifications_loading": "正在加載通知……",
+ "publish_dialog_title_topic": "發布到 {{topic}}",
+ "publish_dialog_title_no_topic": "發布通知",
+ "publish_dialog_progress_uploading": "正在上傳……",
+ "publish_dialog_progress_uploading_detail": "正在上傳 {{loaded}}/{{total}} ({{percent}}%) ……",
+ "publish_dialog_message_published": "已發布通知",
+ "publish_dialog_attachment_limits_file_and_quota_reached": "超過 {{fileSizeLimit}} 文件限制和配額,剩餘 {{remainingBytes}}",
+ "publish_dialog_emoji_picker_show": "選擇表情符號",
+ "publish_dialog_priority_min": "最低優先級",
+ "publish_dialog_priority_low": "低優先級",
+ "publish_dialog_priority_default": "默認優先級",
+ "publish_dialog_priority_high": "高優先級",
+ "publish_dialog_priority_max": "最高優先級",
"publish_dialog_topic_label": "主題名稱",
"publish_dialog_topic_placeholder": "主題名稱,例如 phil_alerts",
"publish_dialog_topic_reset": "重置主題",
- "publish_dialog_title_label": "標題",
- "publish_dialog_title_placeholder": "通訊標題,例如 Disk space alert",
+ "publish_dialog_title_label": "主題",
"publish_dialog_message_label": "訊息",
- "publish_dialog_message_placeholder": "這裏輸入訊息",
- "publish_dialog_tags_label": "標籤",
- "publish_dialog_click_placeholder": "通訊被點擊時到訪的網址",
- "publish_dialog_click_reset": "移除點擊網址",
- "publish_dialog_email_reset": "移除電郵轉發",
- "publish_dialog_chip_attach_file_label": "上載檔案",
- "publish_dialog_chip_delay_label": "延遲傳送",
- "publish_dialog_chip_topic_label": "更變主題",
- "publish_dialog_details_examples_description": "可以在 documentation 找到詳細的功能說明及例子。",
- "publish_dialog_checkbox_publish_another": "公佈更多",
- "publish_dialog_attached_file_title": "附件:",
- "publish_dialog_attached_file_filename_placeholder": "附件名稱",
- "subscribe_dialog_subscribe_use_another_label": "使用另一個伺服器",
- "subscribe_dialog_subscribe_base_url_label": "服務網址",
+ "publish_dialog_message_placeholder": "在此輸入訊息",
+ "publish_dialog_tags_label": "標記",
+ "publish_dialog_priority_label": "優先級",
+ "publish_dialog_base_url_label": "服務鏈結地址",
+ "publish_dialog_base_url_placeholder": "服務鏈結地址,例如 https://example.com",
+ "publish_dialog_click_label": "點擊鏈結地址",
+ "publish_dialog_click_placeholder": "點擊通知時打開鏈結地址",
+ "publish_dialog_email_placeholder": "將通知轉發到的地址,例如 phil@example.com",
+ "publish_dialog_email_reset": "移除電子郵件轉發",
+ "publish_dialog_filename_label": "文件名",
+ "publish_dialog_filename_placeholder": "附件文件名",
+ "publish_dialog_delay_label": "延期",
+ "publish_dialog_other_features": "其它功能:",
+ "publish_dialog_attach_placeholder": "使用鏈結地址附加文件,例如 https://f-droid.org/F-Droid.apk",
+ "publish_dialog_delay_reset": "刪除延期投遞",
+ "publish_dialog_attach_reset": "移除附件鏈結地址",
+ "publish_dialog_chip_click_label": "點擊鏈結地址",
+ "publish_dialog_chip_email_label": "轉發郵件",
+ "publish_dialog_chip_attach_file_label": "本地文件附件",
+ "publish_dialog_chip_topic_label": "變更主題",
+ "publish_dialog_button_cancel_sending": "取消發送",
+ "publish_dialog_checkbox_publish_another": "發布另一個",
+ "publish_dialog_attached_file_title": "附件文件:",
+ "publish_dialog_attached_file_filename_placeholder": "附件文件名",
+ "publish_dialog_attached_file_remove": "刪除附件文件",
+ "publish_dialog_drop_file_here": "將文件拖拽至此",
+ "emoji_picker_search_placeholder": "查找表情符號",
+ "emoji_picker_search_clear": "清除搜索",
+ "subscribe_dialog_subscribe_title": "訂閱主題",
+ "publish_dialog_chip_delay_label": "延期投遞",
+ "publish_dialog_chip_attach_url_label": "鏈結附件地址",
+ "subscribe_dialog_subscribe_use_another_label": "使用其他伺服器",
+ "subscribe_dialog_subscribe_button_subscribe": "訂閱",
+ "subscribe_dialog_login_title": "請登錄",
+ "subscribe_dialog_login_description": "本主題受密碼保護,請輸入用戶名和密碼以訂閱。",
+ "subscribe_dialog_login_username_label": "用戶名,例如 phil",
+ "subscribe_dialog_login_password_label": "密碼",
+ "common_back": "返回",
+ "subscribe_dialog_login_button_login": "登入",
+ "subscribe_dialog_error_user_not_authorized": "未授權 {{username}} 使用者",
+ "subscribe_dialog_error_user_anonymous": "匿名",
+ "prefs_notifications_title": "通知",
+ "prefs_notifications_sound_title": "通知提示音",
+ "prefs_notifications_sound_description_none": "收到通知時不播放任何聲音",
+ "prefs_notifications_sound_description_some": "收到通知時播放 {{sound}} 聲音",
+ "prefs_notifications_sound_no_sound": "靜音",
+ "prefs_notifications_sound_play": "播放選中聲音",
+ "prefs_notifications_min_priority_title": "最低優先級",
+ "prefs_notifications_min_priority_description_x_or_higher": "僅顯示優先級為{{number}}({{name}})或以上的通知",
+ "prefs_notifications_min_priority_description_max": "僅顯示最高優先級的通知",
+ "prefs_notifications_min_priority_any": "任意優先級",
+ "prefs_notifications_min_priority_low_and_higher": "低優先級和更高優先級",
+ "prefs_notifications_min_priority_default_and_higher": "默認優先級和更高優先級",
+ "prefs_notifications_min_priority_high_and_higher": "高優先級和更高優先級",
+ "prefs_notifications_min_priority_max_only": "僅最高優先級",
+ "prefs_notifications_delete_after_never": "從不",
+ "prefs_notifications_delete_after_one_month": "一個月後",
+ "prefs_notifications_delete_after_one_week": "一周後",
+ "prefs_notifications_delete_after_never_description": "永不自動刪除通知",
+ "prefs_notifications_delete_after_three_hours_description": "三小時後自動刪除通知",
+ "prefs_notifications_delete_after_one_day_description": "一天後自動刪除通知",
+ "prefs_notifications_delete_after_one_week_description": "一周後自動刪除通知",
+ "prefs_notifications_delete_after_one_month_description": "一個月後自動刪除通知",
+ "prefs_notifications_web_push_enabled_description": "即使網頁程式未有運街亦會收到通知 (via Web Push)",
+ "prefs_notifications_web_push_disabled_description": "當網頁程式在運行時將會收到通知 (透過 WebSocket)",
+ "prefs_notifications_web_push_enabled": "己為 {{server}} 啟用",
+ "prefs_notifications_web_push_disabled": "己暫用",
+ "prefs_notifications_web_push_title": "背景通知",
+ "prefs_users_title": "管理使用者",
+ "prefs_users_description": "在此處新增/刪除受保護主題的使用者。請注意,使用者名和密碼將存儲在瀏覽器的本地存儲中。",
+ "prefs_users_add_button": "新增使用者",
+ "prefs_users_dialog_title_add": "新增使用者",
+ "prefs_users_dialog_title_edit": "編輯使用者",
+ "prefs_users_dialog_username_label": "使用者名,例如 phil",
+ "prefs_users_dialog_password_label": "密碼",
+ "common_cancel": "取消",
+ "common_save": "保存",
+ "prefs_appearance_title": "外觀",
+ "prefs_appearance_language_title": "語言",
+ "prefs_appearance_theme_title": "主題",
+ "prefs_appearance_theme_system": "系統 (預設)",
+ "prefs_appearance_theme_dark": "黑暗模式",
+ "prefs_appearance_theme_light": "光亮模式",
+ "priority_min": "最低",
+ "priority_low": "低",
+ "priority_default": "預設",
+ "priority_high": "高",
+ "priority_max": "最高",
+ "error_boundary_title": "天啊,ntfy 崩潰了",
+ "prefs_users_table_base_url_header": "服務連結地址",
+ "prefs_users_dialog_base_url_label": "服務連結地址,例如 https://ntfy.sh",
+ "error_boundary_button_copy_stack_trace": "複製堆疊追踪",
+ "error_boundary_button_reload_ntfy": "重新加載 ntfy",
+ "error_boundary_stack_trace": "堆疊追踪",
+ "error_boundary_gathering_info": "收集更多資訊……",
+ "error_boundary_unsupported_indexeddb_title": "不支援隱私瀏覽",
+ "error_boundary_unsupported_indexeddb_description": "Ntfy Web應用程式需要IndexedDB才能運行,且你的瀏覽器在隱私瀏覽模式下不支援IndexedDB。 儘管這很不幸,但在隱私瀏覽模式下使用ntfy Web應用程式也沒有多大意義,因為所有東西都存儲在瀏覽器存儲中。你可以在本GitHub問題 中閱讀有關它的更多資訊,或者在Discord 或Matrix 上與我們交談。",
+ "message_bar_error_publishing": "發佈通知時出錯",
+ "nav_button_settings": "設定",
+ "notifications_delete": "刪除",
+ "notifications_attachment_copy_url_title": "將附件中連結地址複製到剪貼板",
+ "notifications_attachment_copy_url_button": "複製連結地址",
+ "notifications_attachment_open_title": "轉到 {{url}}",
+ "notifications_actions_http_request_title": "發送 HTTP {{method}} 到 {{url}}",
+ "notifications_actions_failed_notification": "通知失敗",
+ "notifications_actions_open_url_title": "轉到 {{url}}",
+ "notifications_none_for_topic_description": "要向此主題發送通知,只需使用 PUT 或 POST 到主題連結即可。",
+ "subscribe_dialog_subscribe_topic_placeholder": "主題名,例如 phil_alerts",
+ "notifications_no_subscriptions_description": "點擊 \"{{linktext}}\" 連結以建立或訂閱主題。之後,你可以使用 PUT 或 POST 發送訊息,你將在這裡收到通知。",
+ "publish_dialog_attachment_limits_file_reached": "超過 {{fileSizeLimit}} 文件限制",
+ "publish_dialog_title_placeholder": "主題標題,例如 磁碟空間警告",
+ "publish_dialog_email_label": "電子郵件",
+ "publish_dialog_button_send": "發送",
+ "publish_dialog_checkbox_markdown": "格式化為 Markdown",
+ "publish_dialog_attachment_limits_quota_reached": "超過配額,剩餘 {{remainingBytes}}",
+ "publish_dialog_attach_label": "附件連結地址",
+ "publish_dialog_click_reset": "移除點擊連結地址",
+ "publish_dialog_button_cancel": "取消",
+ "subscribe_dialog_subscribe_button_cancel": "取消",
+ "subscribe_dialog_subscribe_base_url_label": "服務地址地址",
+ "subscribe_dialog_subscribe_use_another_background_info": "當網頁程式未開啟, 將不會收到來自其他伺服器的通知",
+ "prefs_notifications_min_priority_description_any": "顯示所有通知,無論優先級如何",
+ "prefs_notifications_delete_after_title": "刪除通知",
+ "prefs_notifications_delete_after_three_hours": "三小時後",
+ "prefs_users_delete_button": "刪除用戶",
+ "prefs_users_table_user_header": "用戶",
+ "common_add": "新增",
+ "prefs_notifications_delete_after_one_day": "一天後",
+ "error_boundary_description": "這顯然不應該發生。對此非常抱歉。 如果你有時間,請在GitHub 上報告,或通過Discord 或Matrix 告訴我們。",
+ "prefs_users_table": "用戶表",
+ "prefs_users_edit_button": "編輯用戶",
+ "publish_dialog_tags_placeholder": "英文逗號分隔標記列表,例如 warning, srv1-backup",
+ "publish_dialog_details_examples_description": "有關所有發送功能的範例和詳細說明,請參閱文檔 。",
+ "subscribe_dialog_subscribe_description": "主題可能不受密碼保護,因此請選擇一個不容易被猜中的名字。訂閱後,你可以使用 PUT/POST 通知。",
+ "publish_dialog_delay_placeholder": "延期投遞,例如 {{unixTimestamp}}、{{relativeTime}}或「{{naturalLanguage}}」(僅限英語)",
+ "account_usage_basis_ip_description": "此帳戶的使用統計資訊和限制基於你的 IP 地址,因此可能會與其他用戶共享。上面顯示的限制是基於現有速率限制的近似值。",
+ "account_usage_cannot_create_portal_session": "無法打開計費門戶",
+ "account_delete_title": "刪除帳戶",
+ "account_delete_description": "永久刪除你的帳戶",
+ "signup_error_username_taken": "用戶名 {{username}} 已被取用",
+ "signup_error_creation_limit_reached": "已達到帳戶創建限制",
+ "login_title": "請登錄你的 ntfy 帳戶",
+ "action_bar_change_display_name": "更改顯示名稱",
+ "action_bar_reservation_add": "保留主題",
+ "action_bar_reservation_delete": "移除保留",
+ "action_bar_reservation_limit_reached": "達到限制",
+ "action_bar_profile_title": "個人資料",
+ "action_bar_profile_settings": "設定",
+ "action_bar_profile_logout": "登出",
+ "action_bar_mute_notifications": "靜音",
+ "action_bar_sign_in": "登錄",
+ "action_bar_sign_up": "註冊",
+ "nav_button_account": "帳戶",
+ "nav_upgrade_banner_label": "升級到 ntfy Pro",
+ "nav_upgrade_banner_description": "保留主題,更多訊息和郵件,以及更大的附件",
+ "alert_not_supported_context_description": "通知僅支援 HTTPS。這是 Notifications API 的限制。",
+ "display_name_dialog_title": "更改顯示名稱",
+ "display_name_dialog_description": "為訂閱列表中顯示的主題設置一個替代名稱。這有助於更輕鬆地識別名稱複雜的主題。",
+ "display_name_dialog_placeholder": "顯示名稱",
+ "reserve_dialog_checkbox_label": "保留主題並配置訪問",
"subscribe_dialog_subscribe_button_generate_topic_name": "生成名稱",
- "subscribe_dialog_login_title": "需要登入",
- "subscribe_dialog_login_username_label": "用戶名稱,例如 phil",
- "subscribe_dialog_error_topic_already_reserved": "主題已被保留",
+ "account_basics_username_description": "嘿,那是你 ❤",
+ "account_basics_password_description": "更改你的帳戶密碼",
+ "account_basics_password_dialog_title": "更改密碼",
+ "account_basics_password_dialog_current_password_label": "當前密碼",
+ "account_basics_password_dialog_new_password_label": "新密碼",
+ "account_basics_password_dialog_confirm_password_label": "確認密碼",
+ "account_basics_password_dialog_button_submit": "更改密碼",
+ "account_basics_password_dialog_current_password_incorrect": "密碼錯誤",
+ "account_usage_title": "使用量",
+ "account_usage_of_limit": "{{limit}} 的",
+ "account_usage_unlimited": "無限",
+ "account_usage_limits_reset_daily": "使用限制每天午夜 (UTC) 重置",
+ "account_basics_tier_title": "帳戶類型",
+ "account_basics_tier_description": "你帳戶的權限級別",
+ "account_basics_tier_admin": "管理員",
+ "account_basics_tier_admin_suffix_with_tier": "(有 {{tier}} 等級)",
+ "account_basics_tier_admin_suffix_no_tier": "(無等級)",
+ "account_basics_tier_basic": "基礎版",
+ "account_basics_tier_free": "免費",
+ "account_basics_tier_upgrade_button": "升級到專業版",
+ "account_basics_tier_change_button": "改變",
+ "account_basics_tier_paid_until": "訂閱已支付至 {{date}},並將自動續訂",
+ "account_basics_tier_manage_billing_button": "管理計費",
+ "account_usage_messages_title": "已發布訊息",
+ "account_usage_emails_title": "已發送電子郵件",
+ "account_usage_reservations_title": "保留主題",
+ "account_usage_reservations_none": "此帳戶沒有保留主題",
+ "account_usage_attachment_storage_title": "附件存儲",
+ "account_usage_attachment_storage_description": "每個文件 {{filesize}},在 {{expiry}} 後刪除",
+ "account_upgrade_dialog_button_pay_now": "立即付款並訂閱",
+ "account_upgrade_dialog_button_cancel_subscription": "取消訂閱",
+ "account_upgrade_dialog_button_update_subscription": "更新訂閱",
+ "account_tokens_dialog_title_create": "創建訪問令牌",
+ "account_tokens_dialog_title_edit": "編輯訪問令牌",
+ "account_tokens_dialog_title_delete": "刪除訪問令牌",
+ "account_tokens_dialog_button_cancel": "取消",
+ "account_tokens_dialog_expires_label": "訪問令牌過期於",
+ "account_tokens_dialog_expires_unchanged": "保持過期日期不變",
+ "account_tokens_dialog_expires_x_hours": "令牌在 {{hours}} 小時後過期",
+ "account_tokens_dialog_expires_x_days": "令牌在 {{days}} 天後過期",
+ "account_tokens_dialog_expires_never": "令牌永不過期",
+ "account_tokens_delete_dialog_title": "刪除訪問令牌",
+ "account_tokens_delete_dialog_description": "在刪除訪問令牌之前,請確保沒有應用程序或腳本正在活躍使用它。 此操作無法撤銷 。",
+ "account_tokens_delete_dialog_submit_button": "永久删除令牌",
+ "prefs_users_description_no_sync": "用戶和密碼不會同步到你的賬戶。",
+ "prefs_users_table_cannot_delete_or_edit": "無法刪除或編輯已登錄用戶",
+ "prefs_reservations_title": "保留主題",
+ "prefs_reservations_description": "你可以在此處保留主題名稱供個人使用。保留主題使你擁有該主題的所有權,並允許你為其他用戶定義對該主題的訪問權限。",
+ "prefs_reservations_limit_reached": "你已達到保留主題限制。",
+ "prefs_reservations_add_button": "新增保留主題",
+ "prefs_reservations_edit_button": "編輯主題訪問",
+ "prefs_reservations_delete_button": "重置主題訪問",
+ "prefs_reservations_table": "保留主題表格",
+ "prefs_reservations_table_topic_header": "主題",
+ "prefs_reservations_table_access_header": "訪問",
+ "prefs_reservations_table_everyone_deny_all": "只有我可以發佈和訂閱",
+ "prefs_reservations_table_everyone_read_only": "我可以發佈和訂閱,每個人都可以訂閱",
+ "prefs_reservations_table_everyone_write_only": "我可以發佈和訂閱,每個人都可以發佈",
+ "prefs_reservations_table_everyone_read_write": "每個人都可以發佈和訂閱",
+ "prefs_reservations_table_not_subscribed": "未訂閱",
+ "prefs_reservations_table_click_to_subscribe": "點擊以訂閱",
+ "prefs_reservations_dialog_title_add": "保留主題",
+ "prefs_reservations_dialog_title_edit": "編輯保留主題",
+ "prefs_reservations_dialog_title_delete": "刪除主題保留",
+ "prefs_reservations_dialog_description": "保留主題使你擁有該主題的所有權,並允許你為其他用戶定義對該主題的訪問權限。",
+ "prefs_reservations_dialog_topic_label": "主題",
+ "prefs_reservations_dialog_access_label": "訪問",
+ "reservation_delete_dialog_description": "刪除保留會放棄對該主題的所有權,並允許其他人保留它。你可以保留或刪除現有郵件和附件。",
+ "reservation_delete_dialog_action_keep_title": "保留緩存的郵件和附件",
+ "reservation_delete_dialog_action_keep_description": "緩存在伺服器上的訊息和附件將對知道主題名稱的人公開可見。",
+ "reservation_delete_dialog_action_delete_title": "刪除緩存的郵件和附件",
+ "reservation_delete_dialog_action_delete_description": "緩存的郵件和附件將被永久刪除。此操作無法撤銷。",
+ "reservation_delete_dialog_submit_button": "刪除保留",
+ "account_delete_dialog_description": "這將永久刪除你的帳戶,包括存儲在伺服器上的所有數據。刪除後,你的用戶名將在 7 天內不可用。如果你真的想繼續,請在下面的框中使用你的密碼作確認。",
+ "account_delete_dialog_label": "密碼",
+ "account_delete_dialog_button_cancel": "取消",
+ "account_delete_dialog_button_submit": "永久刪除帳戶",
+ "account_delete_dialog_billing_warning": "刪除你的帳戶也會立即取消你的計費訂閱。你將無法再訪問計費儀錶板。",
+ "account_upgrade_dialog_title": "更改帳戶等級",
+ "account_upgrade_dialog_cancel_warning": "這將取消你的訂閱 ,並在 {{date}} 降級你的帳戶。在那一天,主題保留以及緩存在伺服器上的訊息將被刪除 。",
+ "account_upgrade_dialog_proration_info": "按比例分配 :在付費計劃之間升級時,差價將被立刻收取 。在降級到較低級別時,餘額將被用於支付未來的賬單周期。",
+ "account_upgrade_dialog_reservations_warning_one": "所選等級允許的保留主題少於當前等級。在更改你的等級之前,請至少刪除 1 項保留 。你可以在 設置中刪除保留。",
+ "account_upgrade_dialog_reservations_warning_other": "所選等級允許的保留主題少於當前等級。在更改你的等級之前,請至少刪除 {{count}} 項保留 。你可以在 設置中刪除保留。",
+ "account_upgrade_dialog_tier_features_reservations_other": "保留 {{reservations}} 條主題",
+ "account_upgrade_dialog_tier_features_messages_other": "每日 {{messages}} 條訊息",
+ "account_upgrade_dialog_tier_features_emails_other": "每日 {{emails}} 條郵件",
+ "account_upgrade_dialog_tier_features_attachment_file_size": "每個文件 {{filesize}} ",
+ "signup_form_confirm_password": "確認密碼",
+ "signup_form_button_submit": "註冊",
+ "signup_form_toggle_password_visibility": "切換密碼可見性",
+ "signup_title": "創建一個 ntfy 帳戶",
+ "signup_form_username": "用戶名",
+ "signup_form_password": "密碼",
+ "signup_already_have_account": "已有帳戶?登錄!",
+ "signup_disabled": "註冊已禁用",
+ "login_form_button_submit": "登錄",
+ "login_link_signup": "註冊",
+ "login_disabled": "登錄已禁用",
+ "action_bar_account": "帳戶",
+ "action_bar_reservation_edit": "更改保留",
+ "subscribe_dialog_error_topic_already_reserved": "主題已保留",
"account_basics_title": "帳戶",
- "account_basics_username_title": "用戶名稱",
- "account_basics_username_description": "這就是你了❤",
+ "account_basics_username_title": "用戶名",
"account_basics_username_admin_tooltip": "你是管理員",
"account_basics_password_title": "密碼",
- "account_basics_password_description": "更變你的密碼",
- "account_basics_password_dialog_title": "更變密碼",
- "account_basics_password_dialog_new_password_label": "新的密碼",
- "account_basics_password_dialog_confirm_password_label": "確認密碼",
- "account_basics_password_dialog_button_submit": "更變密碼",
- "account_usage_unlimited": "無限制",
- "account_usage_title": "已經使用",
- "account_usage_limits_reset_daily": "使用限制每天午夜重置",
- "account_basics_tier_title": "帳戶類型",
- "account_basics_tier_description": "你的能量值",
- "account_basics_tier_admin": "管理員",
- "account_basics_tier_admin_suffix_with_tier": "(擁有 {{tier}})",
- "account_basics_tier_admin_suffix_no_tier": "(無層)",
- "account_basics_tier_basic": "基礎",
- "account_basics_tier_free": "免費",
- "account_basics_tier_upgrade_button": "升級至專業版",
- "publish_dialog_email_placeholder": "轉發到電郵,例如 phil@example.com",
- "subscribe_dialog_subscribe_topic_placeholder": "主題名稱,例如 phil_alerts",
- "publish_dialog_attached_file_remove": "移除附件",
- "subscribe_dialog_subscribe_description": "主題可能不受到密碼保護, 所以盡量選擇一個不會容易被猜中的主題名稱。 一旦已訂閱,你能夠 PUT/POST 通訊。",
- "subscribe_dialog_login_description": "這個主題受密碼保護,請輸入用戶名稱及密碼以訂閱主題。",
- "account_basics_password_dialog_current_password_label": "現在的密碼",
- "account_basics_password_dialog_current_password_incorrect": "密碼不正確",
- "account_basics_tier_change_button": "更變",
- "common_add": "新增",
- "signup_form_confirm_password": "確認密碼",
- "publish_dialog_drop_file_here": "拖曳檔案到此",
+ "account_basics_tier_payment_overdue": "你的付款已逾期。請更新你的付款方式,否則你的帳戶將很快被降級。",
+ "account_basics_tier_canceled_subscription": "你的訂閱已取消,並將在 {{date}} 降級為免費帳戶。",
+ "account_upgrade_dialog_tier_features_attachment_total_size": "{{totalsize}} 總存儲空間",
+ "account_upgrade_dialog_tier_selected_label": "已選",
+ "account_upgrade_dialog_tier_current_label": "當前",
+ "account_upgrade_dialog_button_cancel": "取消",
+ "account_upgrade_dialog_button_redirect_signup": "立即註冊",
+ "account_tokens_title": "訪問令牌",
+ "account_tokens_description": "通過 ntfy API 發布和訂閱時使用訪問令牌,因此你不必發送你的帳戶憑證。查看 文檔以了解更多資訊。",
+ "account_tokens_table_token_header": "令牌",
+ "account_tokens_table_label_header": "標籤",
+ "account_tokens_table_last_access_header": "最後訪問",
+ "account_tokens_table_expires_header": "過期",
+ "account_tokens_table_never_expires": "永不過期",
+ "account_tokens_table_current_session": "當前瀏覽器會話",
+ "common_copy_to_clipboard": "複製到剪貼板",
+ "account_tokens_table_copied_to_clipboard": "已複製訪問令牌",
+ "account_tokens_table_cannot_delete_or_edit": "無法編輯或刪除當前會話令牌",
+ "account_tokens_table_create_token_button": "創建訪問令牌",
+ "account_tokens_table_last_origin_tooltip": "於IP地址 {{ip}},點擊查找",
+ "account_tokens_dialog_label": "標籤,例如:Radarr 通知",
+ "account_tokens_dialog_button_create": "創建令牌",
+ "account_tokens_dialog_button_update": "更新令牌",
"account_basics_tier_interval_monthly": "每月",
- "common_copy_to_clipboard": "複製到剪貼簿",
- "publish_dialog_call_label": "電話",
- "publish_dialog_call_reset": "移除電話",
- "publish_dialog_chip_call_label": "電話",
- "account_usage_reservations_none": "此帳戶沒有預留主題",
- "account_usage_attachment_storage_title": "附件容量",
- "account_basics_tier_canceled_subscription": "你的付費訂閱已取消,並於 {{date}} 下調為免費帳戶。",
- "account_usage_messages_title": "已發佈的信息",
- "publish_dialog_chip_call_no_verified_numbers_tooltip": "沒有已驗證的電話號碼",
"account_basics_tier_interval_yearly": "每年",
- "account_usage_emails_title": "已發送電郵",
- "account_usage_attachment_storage_description": "每個檔案約 {{filesize}},將於 {{expiry}} 後刪除",
- "publish_dialog_attachment_limits_file_and_quota_reached": "已超過 {{fileSizeLimit}} 檔案上限,尚餘 {{remainingBytes}}",
- "account_basics_tier_paid_until": "已付費訂閱至 {{date}} 並自動續期",
- "account_basics_tier_payment_overdue": "你的費用已逾期。請更新付款方法,否則你的戶口等級將會下調。",
- "publish_dialog_call_item": "致電 {{number}}",
- "account_basics_tier_manage_billing_button": "管理付款方式"
+ "account_upgrade_dialog_interval_monthly": "每月",
+ "account_upgrade_dialog_interval_yearly": "每年",
+ "account_upgrade_dialog_interval_yearly_discount_save": "節省 {{discount}}%",
+ "account_upgrade_dialog_interval_yearly_discount_save_up_to": "節省高達 {{discount}}%",
+ "account_upgrade_dialog_tier_features_no_reservations": "無保留主題",
+ "account_upgrade_dialog_tier_price_per_month": "月",
+ "account_upgrade_dialog_tier_price_billed_monthly": "{{price}} 每年。按月計費。",
+ "account_upgrade_dialog_tier_price_billed_yearly": "{{價格}} 按年計費。節省 {{save}}。",
+ "account_upgrade_dialog_billing_contact_email": "有關賬單問題,請直接 聯繫我們 。",
+ "account_upgrade_dialog_billing_contact_website": "有關賬單問題,請參考我們的 網站 。",
+ "publish_dialog_call_item": "撥打電話 {{number}}",
+ "publish_dialog_call_label": "撥號",
+ "publish_dialog_chip_call_label": "撥號",
+ "publish_dialog_chip_call_no_verified_numbers_tooltip": "未驗證的電話號碼",
+ "account_basics_phone_numbers_title": "電話號碼",
+ "account_basics_phone_numbers_description": "電話通知",
+ "account_basics_phone_numbers_dialog_description": "要使用來電通知功能,你需要新增並驗證至少一個電話號碼。可以通過短信或電話驗證。",
+ "account_basics_phone_numbers_dialog_code_label": "驗證碼",
+ "account_basics_phone_numbers_dialog_code_placeholder": "例如:123456",
+ "account_basics_phone_numbers_dialog_check_verification_button": "確認碼",
+ "account_basics_phone_numbers_dialog_channel_sms": "短信",
+ "account_basics_phone_numbers_dialog_channel_call": "撥打",
+ "publish_dialog_call_reset": "清空撥號",
+ "account_basics_phone_numbers_no_phone_numbers_yet": "無可執行的電話號碼",
+ "account_basics_phone_numbers_dialog_title": "新增電話號碼",
+ "account_basics_phone_numbers_copied_to_clipboard": "電話號碼已複製到剪貼板",
+ "account_basics_phone_numbers_dialog_number_label": "電話號碼",
+ "account_basics_phone_numbers_dialog_number_placeholder": "例如:+1222333444",
+ "account_usage_calls_title": "已撥打電話",
+ "account_usage_calls_none": "此帳號無法撥打電話",
+ "account_upgrade_dialog_tier_features_reservations_one": "保留一條主題",
+ "account_upgrade_dialog_tier_features_emails_one": "每日一封郵件",
+ "account_upgrade_dialog_tier_features_calls_one": "每日一通電話",
+ "account_basics_phone_numbers_dialog_verify_button_sms": "發送資訊",
+ "account_basics_phone_numbers_dialog_verify_button_call": "撥打電話",
+ "account_upgrade_dialog_tier_features_messages_one": "每日一條訊息",
+ "account_upgrade_dialog_tier_features_calls_other": "每日{{calls}} 通電話",
+ "account_upgrade_dialog_tier_features_no_calls": "沒有電話",
+ "web_push_subscription_expiring_title": "通知會被暫停",
+ "web_push_subscription_expiring_body": "開啟ntfy以繼續接收通知",
+ "web_push_unknown_notification_title": "接收到不明通知",
+ "web_push_unknown_notification_body": "你可能需要開啟網頁來更新ntfy"
}
From 1bd77a83bddf9fbc7aa4aa13559eb54cc573af63 Mon Sep 17 00:00:00 2001
From: "vardy.ng"
Date: Sat, 2 Sep 2023 17:34:44 -0400
Subject: [PATCH 036/182] Updated translation for Traditional and Simplified
Chinese, simplified translation for "higher"
---
web/public/static/langs/zh_Hans.json | 6 +++---
web/public/static/langs/zh_Hant.json | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/web/public/static/langs/zh_Hans.json b/web/public/static/langs/zh_Hans.json
index f9a9fbcd..e26e7f14 100644
--- a/web/public/static/langs/zh_Hans.json
+++ b/web/public/static/langs/zh_Hans.json
@@ -123,9 +123,9 @@
"prefs_notifications_min_priority_description_x_or_higher": "仅显示优先级为{{number}}({{name}})或以上的通知",
"prefs_notifications_min_priority_description_max": "仅显示最高优先级的通知",
"prefs_notifications_min_priority_any": "任意优先级",
- "prefs_notifications_min_priority_low_and_higher": "低优先级和更高优先级",
- "prefs_notifications_min_priority_default_and_higher": "默认优先级和更高优先级",
- "prefs_notifications_min_priority_high_and_higher": "高优先级和更高优先级",
+ "prefs_notifications_min_priority_low_and_higher": "低优先级或更高",
+ "prefs_notifications_min_priority_default_and_higher": "默认优先级或更高",
+ "prefs_notifications_min_priority_high_and_higher": "高优先级或更高",
"prefs_notifications_min_priority_max_only": "仅最高优先级",
"prefs_notifications_delete_after_never": "从不",
"prefs_notifications_delete_after_one_month": "一月后",
diff --git a/web/public/static/langs/zh_Hant.json b/web/public/static/langs/zh_Hant.json
index ae32e765..a42b0292 100644
--- a/web/public/static/langs/zh_Hant.json
+++ b/web/public/static/langs/zh_Hant.json
@@ -123,9 +123,9 @@
"prefs_notifications_min_priority_description_x_or_higher": "僅顯示優先級為{{number}}({{name}})或以上的通知",
"prefs_notifications_min_priority_description_max": "僅顯示最高優先級的通知",
"prefs_notifications_min_priority_any": "任意優先級",
- "prefs_notifications_min_priority_low_and_higher": "低優先級和更高優先級",
- "prefs_notifications_min_priority_default_and_higher": "默認優先級和更高優先級",
- "prefs_notifications_min_priority_high_and_higher": "高優先級和更高優先級",
+ "prefs_notifications_min_priority_low_and_higher": "低優先級或更高",
+ "prefs_notifications_min_priority_default_and_higher": "默認優先級或更高",
+ "prefs_notifications_min_priority_high_and_higher": "高優先級或更高",
"prefs_notifications_min_priority_max_only": "僅最高優先級",
"prefs_notifications_delete_after_never": "從不",
"prefs_notifications_delete_after_one_month": "一個月後",
From 59bf3885341ab0da090ecab4cc9852ee817cc055 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 3 Sep 2023 07:13:04 -0400
Subject: [PATCH 037/182] FAQ
---
docs/faq.md | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/docs/faq.md b/docs/faq.md
index 8844566f..6ff97cfe 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -76,6 +76,18 @@ However, if you still want to disable it, you can do so with the `web-root: disa
Think of the ntfy web app like an Android/iOS app. It is freely available and accessible to anyone, yet useless without
a proper backend. So as long as you secure your backend with ACLs, exposing the ntfy web app to the Internet is harmless.
+## If topic names are public, could I not just brute force them?
+If you don't have [ACLs set up](config.md#access-control), the topic name is your password, it says so everywhere. If you
+choose a easy-to-guess/dumb topic name, people will be able to guess it. If you choose a randomly generated topic name,
+the topic is as good as a good password.
+
+As for brute forcing: It's not possible to brute force a ntfy server for very long, as you'll get quickly rate limited.
+In the default configuration, you'll be able to do 60 requests as a burst, and then 1 request per 10 seconds. Assuming you
+choose a random 10 digit topic name using only A-Z, a-z, 0-9, _ and -, there are 64^10 possible topic names. Even if you
+could do hundreds of requests per seconds (which you cannot), it would take many years to brute force a topic name.
+
+For ntfy.sh, there's even a fail2ban in place which will ban your IP pretty quickly.
+
## Where can I donate?
I have just very recently started accepting donations via [GitHub Sponsors](https://github.com/sponsors/binwiederhier).
I would be humbled if you helped me carry the server and developer account costs. Even small donations are very much
From 2305ebca244fb60aa784a3b79270ae6f33b8ee48 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 3 Sep 2023 09:33:54 -0400
Subject: [PATCH 038/182] Add known issues
---
docs/known-issues.md | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/docs/known-issues.md b/docs/known-issues.md
index 401d82a1..190e2bce 100644
--- a/docs/known-issues.md
+++ b/docs/known-issues.md
@@ -27,6 +27,13 @@ Be sure that in your selfhosted server:
* Set `upstream-base-url: "https://ntfy.sh"` (**not your own hostname!**)
* Ensure that the URL you set in `base-url` **matches exactly** what you set the Default Server in iOS to
+## iOS app seeing "New message", but not real message content
+If you see `New message` notifications on iOS, your iPhone can likely not talk to your self-hosted server. Be sure that
+your iOS device and your ntfy server are either on the same network, or that your phone can actually reach the server.
+
+Turn on tracing/debugging on the server (via `log-level: trace` or `log-level: debug`, see [troubleshooting](troubleshooting.md)),
+and read docs on [iOS instant notifications](https://docs.ntfy.sh/config/#ios-instant-notifications).
+
## Firefox on Android not automatically subscribing to web push (see [#789](https://github.com/binwiederhier/ntfy/issues/789))
ntfy defaults to web-push based subscriptions when installed as a [progressive web app](./subscribe/pwa.md). Firefox
Android has an [open bug](https://bugzilla.mozilla.org/show_bug.cgi?id=1796434) where it reports the PWA mode incorrectly.
From 85740d810bf0f6c2e243ce70967c3a7a7981ed0c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gustavo=20de=20Le=C3=B3n?=
Date: Sun, 3 Sep 2023 18:55:57 -0600
Subject: [PATCH 039/182] Fix cloudflarePriorityIgnore
- Now, only if the header being processed is the "priority" header, the cloudflarePriorityIgnore function is called, solving problems with that header injected by CF
- we make the check with regex now.
---
server/util.go | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/server/util.go b/server/util.go
index ee87f2ed..9cbae2e4 100644
--- a/server/util.go
+++ b/server/util.go
@@ -9,7 +9,7 @@ import (
"net/http"
"net/netip"
"strings"
- /*"regexp"*/
+ "regexp"
)
var mimeDecoder mime.WordDecoder
@@ -51,7 +51,7 @@ func readParam(r *http.Request, names ...string) string {
func readHeaderParam(r *http.Request, names ...string) string {
for _, name := range names {
- value := maybeDecodeHeader(r.Header.Get(name))
+ value := maybeDecodeHeader(r.Header.Get(name), name)
if value != "" {
return strings.TrimSpace(value)
}
@@ -127,12 +127,19 @@ func fromContext[T any](r *http.Request, key contextKey) (T, error) {
return t, nil
}
-func maybeDecodeHeader(header string) string {
+func maybeDecodeHeader(header string, name string) string {
decoded, err := mimeDecoder.DecodeHeader(header)
if err != nil {
- return cloudflarePriorityIgnore(header)
+ if name == "priority"{
+ return cloudflarePriorityIgnore(header)
+ }
+ return header
}
- return cloudflarePriorityIgnore(decoded)
+
+ if name == "priority"{
+ return cloudflarePriorityIgnore(decoded)
+ }
+ return decoded
}
// Ignore new HTTP Priority header (see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-priority)
@@ -140,15 +147,10 @@ func maybeDecodeHeader(header string) string {
// If the Priority header is set to "u=*, i" or "u=*" (by cloudflare), the header will be ignored.
// And continue searching for another header (x-priority, prio, p) or in the Query parameters.
func cloudflarePriorityIgnore(value string) string {
- if strings.HasPrefix(value, "u=") {
- return ""
- }
-
- // The same but with regex
- /* pattern := `^u=\d+\s*,\s*i|u=\d+$`
+ pattern := `^u=\d,\s(i|\d)$|^u=\d$`
regex := regexp.MustCompile(pattern)
if regex.MatchString(value) {
return ""
- } */
+ }
return value
}
From 4c4d772a5f1b3a6d6c90b1a3654bee4220d1f92d Mon Sep 17 00:00:00 2001
From: Bastien S
Date: Thu, 31 Aug 2023 13:59:14 +0000
Subject: [PATCH 040/182] Translated using Weblate (French)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/fr/
---
web/public/static/langs/fr.json | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/web/public/static/langs/fr.json b/web/public/static/langs/fr.json
index cf4bb721..91f1b65a 100644
--- a/web/public/static/langs/fr.json
+++ b/web/public/static/langs/fr.json
@@ -272,7 +272,7 @@
"account_delete_dialog_button_submit": "Supprimer définitivement le compte",
"account_delete_dialog_billing_warning": "Supprimer votre compte annule aussi immédiatement votre facturation. Vous n'aurez plus accès à votre tableau de bord de facturation.",
"account_upgrade_dialog_title": "Changer le tarif du compte",
- "account_upgrade_dialog_proration_info": "Facturation : Lors d'un changement entre un plan payant et un autre, la différence de prix sera créditée ou remboursée sur la prochaine facture. Vous ne recevrez pas d'autre facture avant la fin de la prochaine période de facturation.",
+ "account_upgrade_dialog_proration_info": "Facturation : Lors d'un changement vers un tiers payant, la différence de prix sera débitée immédiatement . En passant d'un tiers payant a gratuit, votre solde sera utilisé pour payer de futur factures.",
"account_upgrade_dialog_reservations_warning_other": "Le tarif sélectionné autorise moins de sujets réservés que votre tarif actuel. Avant de changer de tarif, veuillez supprimer au moins {{count}} sujets réservés . Vous pouvez supprimer des sujets réservés dans les Paramètres.",
"account_upgrade_dialog_tier_features_reservations_other": "{{reservations}} sujets réservés",
"account_upgrade_dialog_tier_features_messages_other": "{{messages}} messages journaliers",
@@ -368,8 +368,17 @@
"account_basics_phone_numbers_dialog_code_placeholder": "Ex : 123456",
"account_basics_phone_numbers_dialog_check_verification_button": "Code de confirmarion",
"account_basics_phone_numbers_dialog_channel_sms": "SMS",
- "account_basics_phone_numbers_dialog_channel_call": "Appel",
+ "account_basics_phone_numbers_dialog_channel_call": "Appeler",
"account_usage_calls_none": "Aucun appels téléphoniques ne peut être fait avec ce compte",
"publish_dialog_call_reset": "Supprimer les appels téléphoniques",
- "publish_dialog_chip_call_label": "Appel téléphonique"
+ "publish_dialog_chip_call_label": "Appel téléphonique",
+ "account_upgrade_dialog_tier_features_messages_one": "{{messages}} message journalier",
+ "account_upgrade_dialog_tier_features_emails_one": "{{emails}} mail journalier",
+ "account_upgrade_dialog_tier_features_calls_other": "{{calls}} appels journaliers",
+ "account_upgrade_dialog_tier_features_no_calls": "Aucun appel",
+ "publish_dialog_call_item": "Appeler le numéro {{number}}",
+ "publish_dialog_chip_call_no_verified_numbers_tooltip": "Aucun numéro de téléphone vérifié",
+ "account_upgrade_dialog_tier_features_reservations_one": "{{reservations}} sujet réservé",
+ "account_upgrade_dialog_tier_features_calls_one": "{{calls}} appels journaliers",
+ "account_usage_calls_title": "Appels téléphoniques passés"
}
From 6748a2f2f30d73b546a8d2bd174c1ef0bd223509 Mon Sep 17 00:00:00 2001
From: Max Oliver
Date: Sat, 2 Sep 2023 19:43:47 +0000
Subject: [PATCH 041/182] Translated using Weblate (Portuguese (Brazil))
Currently translated at 57.5% (220 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/pt_BR/
---
web/public/static/langs/pt_BR.json | 35 +++++++++++++++++++++++++-----
1 file changed, 29 insertions(+), 6 deletions(-)
diff --git a/web/public/static/langs/pt_BR.json b/web/public/static/langs/pt_BR.json
index 16ba3a14..1bb0cd92 100644
--- a/web/public/static/langs/pt_BR.json
+++ b/web/public/static/langs/pt_BR.json
@@ -191,10 +191,33 @@
"error_boundary_unsupported_indexeddb_description": "O ntfy web app precisa do IndexedDB para funcionar, e seu navegador não suporta IndexedDB no modo de navegação privada. Embora isso seja lamentável, também não faz muito sentido usar o ntfy web app no modo de navegação privada de qualquer maneira, porque tudo é armazenado no armazenamento do navegador. Você pode ler mais sobre isso nesta edição do GitHub , ou falar conosco em Discord ou Matrix .",
"action_bar_reservation_add": "Reserve topic",
"action_bar_reservation_edit": "Change reservation",
- "signup_disabled": "Signup is disabled",
- "signup_error_username_taken": "Username {{username}} is already taken",
- "signup_error_creation_limit_reached": "Account creation limit reached",
- "action_bar_reservation_delete": "N",
- "action_bar_account": "Account",
- "action_bar_change_display_name": "Change display name"
+ "signup_disabled": "Registrar está desativado",
+ "signup_error_username_taken": "Usuário {{username}} já existe",
+ "signup_error_creation_limit_reached": "Limite de criação de contas atingido",
+ "action_bar_reservation_delete": "Remover reserva",
+ "action_bar_account": "Conta",
+ "action_bar_change_display_name": "Change display name",
+ "common_copy_to_clipboard": "Copiar para área de transferência",
+ "login_link_signup": "Registrar",
+ "login_title": "Entrar na sua conta ntfy",
+ "login_form_button_submit": "Entrar",
+ "login_disabled": "Login está desabilitado",
+ "action_bar_reservation_limit_reached": "Limite atingido",
+ "action_bar_profile_title": "Perfil",
+ "action_bar_profile_settings": "Configurações",
+ "action_bar_profile_logout": "Sair",
+ "action_bar_sign_in": "Entrar",
+ "action_bar_sign_up": "Registrar",
+ "nav_button_account": "Conta",
+ "signup_title": "Criar uma conta ntfy",
+ "signup_form_username": "Usuário",
+ "signup_form_password": "Senha",
+ "signup_form_confirm_password": "Confirmar senha",
+ "signup_form_button_submit": "Registrar",
+ "account_basics_phone_numbers_title": "Telefones",
+ "signup_form_toggle_password_visibility": "Ativar visibilidade de senha",
+ "signup_already_have_account": "Já possui uma conta? Entrar!",
+ "nav_upgrade_banner_label": "Atualizar para ntfy Pro",
+ "account_basics_phone_numbers_dialog_description": "Para usar o recurso de notificação de chamada, é necessários adicionar e verificar pelo menos um número de telefone. A verificação pode ser feita por SMS ou chamada telefônica.",
+ "account_basics_phone_numbers_description": "Para notificações de chamada telefônica"
}
From 4b0d1e448dbaf45222d63cd2e828f5f2c93c2cea Mon Sep 17 00:00:00 2001
From: Mattia
Date: Fri, 1 Sep 2023 09:37:08 +0000
Subject: [PATCH 042/182] Translated using Weblate (Italian)
Currently translated at 70.6% (270 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/it/
---
web/public/static/langs/it.json | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/it.json b/web/public/static/langs/it.json
index a895e1a6..72cee7d6 100644
--- a/web/public/static/langs/it.json
+++ b/web/public/static/langs/it.json
@@ -267,5 +267,6 @@
"publish_dialog_chip_call_label": "Chiamata telefonica",
"publish_dialog_chip_call_no_verified_numbers_tooltip": "Nessun numero verificato",
"account_basics_phone_numbers_title": "Numeri di telefono",
- "account_basics_phone_numbers_dialog_description": "Per usare la funzionalità di notifica tramite chiamata telefonica, devi aggiungere e verificare almeno un numero di telefono. La verifica può essere fatta tramite SMS o chiamata telefonica."
+ "account_basics_phone_numbers_dialog_description": "Per usare la funzionalità di notifica tramite chiamata telefonica, devi aggiungere e verificare almeno un numero di telefono. La verifica può essere fatta tramite SMS o chiamata telefonica.",
+ "account_upgrade_dialog_tier_features_reservations_one": "{{reservations}} topic riservato"
}
From 8a8023fcf8a0bfd60c0c31bef744140a86142511 Mon Sep 17 00:00:00 2001
From: Ron
Date: Sun, 3 Sep 2023 14:47:34 +0000
Subject: [PATCH 043/182] Translated using Weblate (Chinese (Traditional))
Currently translated at 64.1% (245 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/zh_Hant/
---
web/public/static/langs/zh_Hant.json | 35 ++++++++++++++++++++++++----
1 file changed, 31 insertions(+), 4 deletions(-)
diff --git a/web/public/static/langs/zh_Hant.json b/web/public/static/langs/zh_Hant.json
index b3d506d1..0d7f3f48 100644
--- a/web/public/static/langs/zh_Hant.json
+++ b/web/public/static/langs/zh_Hant.json
@@ -79,7 +79,7 @@
"common_save": "儲存",
"common_cancel": "取消",
"error_boundary_title": "歐買尬,ntfy 壞掉了",
- "notifications_none_for_any_description": "要開始發送通知到一個主題,只需要對主題 URL 發送 HTTP PUT 或者 POST,例如:",
+ "notifications_none_for_any_description": "要開始發送通知到一個主題,只需要對主題 URL 發送 HTTP PUT 或者 POST。例如:",
"notifications_no_subscriptions_description": "點選 「{{linktext}}」 連結以建立或訂閱主題。完成後,你就可以使用 HTTP PUT 或者 POST 發送通知到這裡了!",
"error_boundary_description": "很抱歉 ntfy 發生錯誤了。 如果你有時間,煩請到 Github 回報錯誤,或者到 Discord 或者 Matrix 聊天室 裡面告訴我們。",
"publish_dialog_tags_placeholder": "逗號分隔的標籤,例如 e.g. warning, srv1-backup",
@@ -102,7 +102,7 @@
"login_title": "登入 ntfy 帳戶",
"action_bar_reservation_add": "保留主題",
"action_bar_profile_logout": "登出",
- "alert_not_supported_context_description": "訊息只支援 HTTPS. 這是受 Notifications API 的限制",
+ "alert_not_supported_context_description": "訊息只支援 HTTPS。這是受 Notifications API 的限制。",
"publish_dialog_base_url_placeholder": "服務網址,例如 https://example.com",
"signup_title": "創建 ntfy 賬戶",
"signup_form_username": "用戶名稱",
@@ -212,9 +212,36 @@
"account_basics_tier_interval_yearly": "每年",
"account_usage_emails_title": "已發送電郵",
"account_usage_attachment_storage_description": "每個檔案約 {{filesize}},將於 {{expiry}} 後刪除",
- "publish_dialog_attachment_limits_file_and_quota_reached": "已超過 {{fileSizeLimit}} 檔案上限,尚餘 {{remainingBytes}}",
+ "publish_dialog_attachment_limits_file_and_quota_reached": "已超過 {{fileSizeLimit}} 檔案上限,尚餘 {{remainingBytes}}。",
"account_basics_tier_paid_until": "已付費訂閱至 {{date}} 並自動續期",
"account_basics_tier_payment_overdue": "你的費用已逾期。請更新付款方法,否則你的戶口等級將會下調。",
"publish_dialog_call_item": "致電 {{number}}",
- "account_basics_tier_manage_billing_button": "管理付款方式"
+ "account_basics_tier_manage_billing_button": "管理付款方式",
+ "prefs_notifications_title": "通知",
+ "prefs_notifications_sound_title": "通知提示聲",
+ "prefs_notifications_sound_description_none": "收到通知時不使用任何提示音",
+ "prefs_notifications_sound_description_some": "收到通知時播放 {{sound}}",
+ "prefs_notifications_sound_play": "播放選擇的聲音",
+ "account_basics_phone_numbers_dialog_description": "若要啟用來電通知功能,您需要增加至少一組電話號碼,並透過簡訊或是語音完成驗證。",
+ "account_basics_phone_numbers_description": "來電通知",
+ "account_basics_phone_numbers_dialog_verify_button_call": "播號",
+ "account_basics_phone_numbers_dialog_number_placeholder": "範例:+1222333444",
+ "account_basics_phone_numbers_dialog_verify_button_sms": "傳送簡訊",
+ "account_basics_phone_numbers_dialog_code_label": "驗證碼",
+ "account_basics_phone_numbers_dialog_code_placeholder": "範例:123456",
+ "account_basics_phone_numbers_dialog_check_verification_button": "確認碼",
+ "account_basics_phone_numbers_dialog_channel_sms": "簡訊",
+ "account_usage_calls_none": "您無法使用此帳戶進行通話",
+ "account_usage_reservations_title": "保留的標題",
+ "account_usage_of_limit": "{{limit}} 的",
+ "account_basics_phone_numbers_no_phone_numbers_yet": "尚未擁有任何電話號碼",
+ "account_basics_phone_numbers_dialog_title": "增加電話號碼",
+ "prefs_notifications_sound_no_sound": "靜音",
+ "prefs_notifications_min_priority_title": "最小優先度",
+ "prefs_notifications_min_priority_description_any": "忽略優先度,顯示所有通知",
+ "account_basics_phone_numbers_title": "電話號碼",
+ "account_basics_phone_numbers_copied_to_clipboard": "電話號碼已複製到剪貼簿",
+ "account_basics_phone_numbers_dialog_number_label": "電話號碼",
+ "account_basics_phone_numbers_dialog_channel_call": "通話",
+ "account_usage_calls_title": "已播出電話"
}
From 76146c4e74b2b48c42cd84aa24bc434633ce47c1 Mon Sep 17 00:00:00 2001
From: Mazurky
Date: Thu, 31 Aug 2023 20:15:20 +0000
Subject: [PATCH 044/182] Translated using Weblate (Slovak)
Currently translated at 45.8% (175 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/sk/
---
web/public/static/langs/sk.json | 178 +++++++++++++++++++++++++++++++-
1 file changed, 177 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/sk.json b/web/public/static/langs/sk.json
index 0967ef42..e2a54dba 100644
--- a/web/public/static/langs/sk.json
+++ b/web/public/static/langs/sk.json
@@ -1 +1,177 @@
-{}
+{
+ "common_save": "Uložiť",
+ "common_back": "Späť",
+ "common_copy_to_clipboard": "Kopírovať do schránky",
+ "signup_title": "Vytvoriť ntfy účet",
+ "signup_form_username": "Používateľské meno",
+ "signup_form_confirm_password": "Potvrdenie hesla",
+ "signup_form_button_submit": "Zaregistrovať sa",
+ "signup_form_toggle_password_visibility": "Prepnúť viditeľnosť hesla",
+ "signup_error_username_taken": "Používateľské meno {{username}} je už obsadené",
+ "login_form_button_submit": "Prihlásiť sa",
+ "login_disabled": "Prihlásenie je zakázané",
+ "action_bar_logo_alt": "ntfy logo",
+ "action_bar_settings": "Nastavenia",
+ "action_bar_account": "Účet",
+ "action_bar_sign_in": "Prihlásiť sa",
+ "action_bar_profile_settings": "Nastavenia",
+ "action_bar_reservation_edit": "Zmeniť rezerváciu",
+ "action_bar_unsubscribe": "Odhlásiť odber",
+ "action_bar_toggle_mute": "Stlmiť/zrušiť stlmenie upozornení",
+ "action_bar_toggle_action_menu": "Otvoriť/zavrieť akčné menu",
+ "action_bar_profile_title": "Profil",
+ "nav_button_settings": "Nastavenia",
+ "nav_button_account": "Účet",
+ "message_bar_show_dialog": "Zobraziť okno pre odosielanie oznámení",
+ "message_bar_publish": "Zverejniť správu",
+ "nav_topics_title": "Odoberané témy",
+ "nav_button_all_notifications": "Všetky oznámenia",
+ "alert_grant_description": "Udeliť prehliadaču povolenie na zobrazovanie oznámení na ploche.",
+ "alert_not_supported_context_description": "Oznámenia sú podporované len cez HTTPS. Ide o obmedzenie rozhrania Notifications API .",
+ "notifications_list": "Zoznam oznámení",
+ "notifications_list_item": "Oznámenie",
+ "notifications_mark_read": "Označiť ako prečítané",
+ "notifications_delete": "Zmazať",
+ "notifications_copied_to_clipboard": "Skopírované do schránky",
+ "notifications_tags": "Štítky",
+ "notifications_priority_x": "Priorita {{priority}}",
+ "notifications_new_indicator": "Nové oznámenie",
+ "notifications_attachment_image": "Obrázok prílohy",
+ "notifications_attachment_link_expired": "odkaz na stiahnutie vypršal",
+ "notifications_attachment_file_image": "súbor s obrázkom",
+ "notifications_attachment_file_video": "video súbor",
+ "notifications_attachment_file_audio": "zvukový súbor",
+ "notifications_attachment_file_app": "Súbor aplikácie pre Android",
+ "notifications_attachment_file_document": "iný dokument",
+ "notifications_click_copy_url_title": "Skopírovať URL adresu odkazu do schránky",
+ "notifications_click_copy_url_button": "Kopírovať odkaz",
+ "notifications_click_open_button": "Otvoriť odkaz",
+ "notifications_actions_not_supported": "Akcia nie je podporovaná vo webovej aplikácii",
+ "notifications_none_for_topic_title": "K tejto téme ste zatiaľ nedostali žiadne upozornenia.",
+ "notifications_none_for_any_title": "Nedostali ste žiadne upozornenia.",
+ "notifications_none_for_any_description": "Ak chcete posielať oznámenia do témy, jednoducho zadajte adresu PUT alebo POST na adresu URL témy. Tu je príklad s použitím jednej z vašich tém.",
+ "notifications_no_subscriptions_title": "Zdá sa, že zatiaľ nemáte žiadne prihlásenia na odber.",
+ "display_name_dialog_title": "Zmeniť zobrazovaný názov",
+ "notifications_no_subscriptions_description": "Kliknutím na odkaz \"{{text odkazu}}\" vytvoríte tému alebo sa na ňu prihlásite. Potom môžete posielať správy prostredníctvom PUT alebo POST a budete tu dostávať oznámenia.",
+ "notifications_example": "Príklad",
+ "notifications_more_details": "Ďalšie informácie nájdete na webovej stránke alebo v dokumentácií .",
+ "display_name_dialog_placeholder": "Zobrazený názov",
+ "reserve_dialog_checkbox_label": "Rezervovať tému a nakonfigurovať prístup",
+ "notifications_loading": "Načítavanie oznámení …",
+ "publish_dialog_title_no_topic": "Zverejniť oznámenie",
+ "publish_dialog_title_topic": "Zverejniť v {{topic}}",
+ "publish_dialog_progress_uploading": "Nahrávanie…",
+ "publish_dialog_progress_uploading_detail": "Nahrávanie {{loaded}}/{{total}} ({{percent}}%) …",
+ "publish_dialog_message_published": "Oznámenie zverejnené",
+ "publish_dialog_attachment_limits_file_and_quota_reached": "prekročí {{fileSizeLimit}} limit súboru a kvótu, {{remainingBytes}} zostáva",
+ "publish_dialog_attachment_limits_file_reached": "prekračuje {{fileSizeLimit}} limit súboru",
+ "publish_dialog_attachment_limits_quota_reached": "prekračuje kvótu, {{remainingBytes}} zostáva",
+ "publish_dialog_emoji_picker_show": "Vyberte emoji",
+ "publish_dialog_priority_min": "Min. priorita",
+ "publish_dialog_priority_low": "Nízka priorita",
+ "publish_dialog_priority_default": "Predvolená priorita",
+ "publish_dialog_priority_high": "Vysoká priorita",
+ "publish_dialog_priority_max": "Max. priorita",
+ "publish_dialog_base_url_label": "URL Adresa služby",
+ "publish_dialog_base_url_placeholder": "URL adresa služby, napr. https://example.com",
+ "publish_dialog_topic_label": "Názov témy",
+ "publish_dialog_topic_placeholder": "Názov témy, napr. phil_alerts",
+ "publish_dialog_topic_reset": "Resetovať tému",
+ "publish_dialog_title_label": "Názov",
+ "publish_dialog_title_placeholder": "Názov oznámenia, napr. Upozornenie na miesto na disku",
+ "publish_dialog_tags_label": "Štítky",
+ "publish_dialog_message_label": "Správa",
+ "publish_dialog_priority_label": "Priorita",
+ "publish_dialog_click_label": "Kliknite na URL",
+ "publish_dialog_click_placeholder": "URL adresa sa otvorí po kliknutí na oznámenie",
+ "publish_dialog_email_label": "Email",
+ "publish_dialog_email_placeholder": "Emailová adresa, na ktorú sa má oznámenie zaslať, napr. phil@example.com",
+ "publish_dialog_call_label": "Telefonovať",
+ "publish_dialog_call_item": "Zavolať na telefónne číslo {{number}}",
+ "publish_dialog_call_reset": "Odstrániť telefón",
+ "publish_dialog_attach_label": "URL prílohy",
+ "publish_dialog_attach_reset": "Odstrániť URL prílohy",
+ "publish_dialog_filename_label": "Názov súboru",
+ "publish_dialog_filename_placeholder": "Názov súboru prílohy",
+ "publish_dialog_delay_label": "Oneskorenie",
+ "publish_dialog_delay_placeholder": "Oneskorenie doručenia, napr. {{unixTimestamp}}, {{relativeTime}} alebo \"{{naturalLanguage}}\" (len v angličtine)",
+ "publish_dialog_delay_reset": "Odstrániť oneskorené doručenie",
+ "publish_dialog_chip_call_label": "Telefonovať",
+ "publish_dialog_other_features": "Ďalšie funkcie:",
+ "publish_dialog_chip_call_no_verified_numbers_tooltip": "Žiadne overené telefónne čísla",
+ "publish_dialog_chip_attach_url_label": "Pripojiť súbor pomocou adresy URL",
+ "publish_dialog_chip_delay_label": "Oneskoriť doručenie",
+ "publish_dialog_chip_topic_label": "Zmeniť tému",
+ "publish_dialog_button_cancel_sending": "Zrušiť odosielanie",
+ "publish_dialog_button_send": "Odoslať",
+ "publish_dialog_checkbox_publish_another": "Zverejniť ďalšie",
+ "publish_dialog_attached_file_title": "Priložený súbor:",
+ "subscribe_dialog_subscribe_button_cancel": "Zrušiť",
+ "subscribe_dialog_subscribe_title": "Odoberať tému",
+ "subscribe_dialog_subscribe_base_url_label": "URL Adresa služby",
+ "subscribe_dialog_subscribe_topic_placeholder": "Názov témy, napr. phil_alerts",
+ "publish_dialog_attached_file_filename_placeholder": "Názov súboru prílohy",
+ "publish_dialog_attached_file_remove": "Odstrániť priložený súbor",
+ "publish_dialog_drop_file_here": "Vložiť súbor",
+ "subscribe_dialog_login_password_label": "Heslo",
+ "account_basics_password_dialog_confirm_password_label": "Potvrdenie hesla",
+ "account_basics_title": "Účet",
+ "account_delete_dialog_button_cancel": "Zrušiť",
+ "account_delete_dialog_label": "Heslo",
+ "prefs_reservations_dialog_title_add": "Rezervovať tému",
+ "publish_dialog_button_cancel": "Zrušiť",
+ "account_upgrade_dialog_button_cancel": "Zrušiť",
+ "account_tokens_dialog_button_cancel": "Zrušiť",
+ "common_cancel": "Zrušiť",
+ "common_add": "Pridať",
+ "account_basics_username_title": "Používateľské meno",
+ "signup_form_password": "Heslo",
+ "signup_error_creation_limit_reached": "Dosiahnutý limit na vytvorenie konta",
+ "account_basics_password_title": "Heslo",
+ "action_bar_change_display_name": "Zmeniť zobrazovaný názov",
+ "prefs_users_dialog_password_label": "Heslo",
+ "action_bar_sign_up": "Zaregistrovať sa",
+ "login_link_signup": "Zaregistrovať sa",
+ "signup_already_have_account": "Už máte účet? Prihláste sa!",
+ "signup_disabled": "Registrácia je vypnutá",
+ "login_title": "Prihláste sa do svojho konta ntfy",
+ "action_bar_show_menu": "Zobraziť menu",
+ "action_bar_reservation_add": "Rezervovať tému",
+ "action_bar_reservation_delete": "Odstrániť rezerváciu",
+ "action_bar_reservation_limit_reached": "Dosiahnutý limit",
+ "action_bar_send_test_notification": "Odoslať testovacie oznámenie",
+ "action_bar_clear_notifications": "Vymazať všetky oznámenia",
+ "publish_dialog_message_placeholder": "Sem napíšte správu",
+ "action_bar_profile_logout": "Odhlásiť sa",
+ "message_bar_type_message": "Sem napíšte správu",
+ "message_bar_error_publishing": "Chyba pri zverejňovaní oznámenia",
+ "nav_button_documentation": "Dokumentácia",
+ "nav_button_publish_message": "Zverejniť oznámenie",
+ "nav_button_subscribe": "Odoberať tému",
+ "nav_button_muted": "Oznámenia stlmené",
+ "nav_button_connecting": "pripájanie",
+ "nav_upgrade_banner_description": "Rezervovať témy, viac správ a e-mailov a väčšie prílohy",
+ "nav_upgrade_banner_label": "Vylepšiť na ntfy Pro",
+ "alert_grant_title": "Oznámenia sú vypnuté",
+ "alert_grant_button": "Prideliť teraz",
+ "alert_not_supported_title": "Oznámenia nie sú podporované",
+ "alert_not_supported_description": "Oznámenia nie sú vo vašom prehliadači podporované.",
+ "notifications_attachment_copy_url_title": "Kopírovať URL adresu prílohy do schránky",
+ "notifications_attachment_copy_url_button": "Kopírovať adresu URL",
+ "notifications_attachment_open_title": "Prejsť na {{url}}",
+ "notifications_actions_open_url_title": "Prejsť na {{url}}",
+ "notifications_attachment_open_button": "Otvoriť prílohu",
+ "notifications_attachment_link_expires": "platnosť odkazu vyprší {{date}}",
+ "notifications_none_for_topic_description": "Ak chcete posielať oznámenia do tejto témy, jednoducho zadajte adresu PUT alebo POST na URL adresu témy.",
+ "notifications_actions_http_request_title": "Odoslať HTTP {{method}} na {{url}}",
+ "display_name_dialog_description": "Nastavenie alternatívneho názvu témy, ktorá sa zobrazuje v zozname odberov. Pomáha to ľahšie identifikovať témy so zložitými názvami.",
+ "prefs_users_table_base_url_header": "URL Adresa služby",
+ "publish_dialog_tags_placeholder": "Zoznam štítkov oddelených čiarkou, napr. varovanie, srv1-backup",
+ "publish_dialog_chip_click_label": "Kliknite na URL",
+ "publish_dialog_email_reset": "Odstrániť email na preposielanie",
+ "publish_dialog_click_reset": "Odobrať URL kliknutím",
+ "publish_dialog_attach_placeholder": "Pripojiť súbor pomocou URL adresy, napr. https://f-droid.org/F-Droid.apk",
+ "publish_dialog_chip_email_label": "Preposlanie na email",
+ "publish_dialog_chip_attach_file_label": "Pripojiť miestny súbor",
+ "publish_dialog_details_examples_description": "Príklady a podrobný opis všetkých funkcií odosielania nájdete v dokumentácii ."
+}
From 9959d1aa4375393ee1b72f53836ac9394dcda536 Mon Sep 17 00:00:00 2001
From: jonnysemon
Date: Tue, 5 Sep 2023 17:53:34 +0000
Subject: [PATCH 045/182] Translated using Weblate (Arabic)
Currently translated at 85.6% (327 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/ar/
---
web/public/static/langs/ar.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/public/static/langs/ar.json b/web/public/static/langs/ar.json
index 0c9fcc7d..301ae5eb 100644
--- a/web/public/static/langs/ar.json
+++ b/web/public/static/langs/ar.json
@@ -152,7 +152,7 @@
"publish_dialog_chip_delay_label": "تأخير التسليم",
"subscribe_dialog_login_description": "هذا الموضوع محمي بكلمة مرور. الرجاء إدخال اسم المستخدم وكلمة المرور للاشتراك.",
"subscribe_dialog_subscribe_button_cancel": "إلغاء",
- "common_back": "العودة",
+ "common_back": "الرجوع",
"prefs_notifications_sound_play": "تشغيل الصوت المحدد",
"prefs_notifications_min_priority_title": "أولوية دنيا",
"prefs_notifications_min_priority_max_only": "الأولوية القصوى فقط",
From dee16f543d234fbb7f67991b730e4c766ad5adc6 Mon Sep 17 00:00:00 2001
From: Helly <73737531+InvitedToHell@users.noreply.github.com>
Date: Wed, 6 Sep 2023 00:52:46 +0200
Subject: [PATCH 046/182] Add ios shortcut to the integrations docs
---
docs/integrations.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docs/integrations.md b/docs/integrations.md
index 68bc4c46..e689427e 100644
--- a/docs/integrations.md
+++ b/docs/integrations.md
@@ -129,7 +129,8 @@ I've added a ⭐ to projects or posts that have a significant following, or had
- [vigilant](https://github.com/VerifiedJoseph/vigilant) - Monitor RSS/ATOM and JSON feeds, and send push notifications on new entries (PHP)
- [ansible-role-ntfy-alertmanager](https://github.com/bleetube/ansible-role-ntfy-alertmanager) - Ansible role to install xenrox/ntfy-alertmanager
- [NtfyMe-Blender](https://github.com/NotNanook/NtfyMe-Blender) - Blender addon to send notifications to NtfyMe (Python)
-
+- [ntfy-ios-filesharing](https://www.icloud.com/shortcuts/fe948d151b2e4ae08fb2f9d6b27d680b) - An iOS shortcut that let's you share files from your share feed to a topic of your choice.
+
## Blog + forum posts
- [NetworkChunk - how did I NOT know about this?](https://www.youtube.com/watch?v=poDIT2ruQ9M) ⭐ - youtube.com - 8/2023
From 528a67722b6b27f0772acdabb88da502e9ddfd93 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 10 Sep 2023 11:23:18 -0400
Subject: [PATCH 047/182] Thank you @LuckVintage for your sponsorship
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index a6e0e8da..6379c7d2 100644
--- a/README.md
+++ b/README.md
@@ -148,6 +148,7 @@ account costs. Even small donations are very much appreciated. A big fat **Thank
+
I'd also like to thank JetBrains for their awesome [IntelliJ IDEA](https://www.jetbrains.com/idea/),
and [DigitalOcean](https://m.do.co/c/442b929528db) (*referral link*) for supporting the project:
From 25a60969fb73a7899993c2edea78e02cfa56154e Mon Sep 17 00:00:00 2001
From: Christian Meis
Date: Thu, 7 Sep 2023 12:20:49 +0000
Subject: [PATCH 048/182] Translated using Weblate (German)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/de/
---
web/public/static/langs/de.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/public/static/langs/de.json b/web/public/static/langs/de.json
index d29760f1..4af63501 100644
--- a/web/public/static/langs/de.json
+++ b/web/public/static/langs/de.json
@@ -25,7 +25,7 @@
"notifications_click_copy_url_title": "Link-URL in Zwischenablage kopieren",
"publish_dialog_priority_low": "Niedrige Priorität",
"publish_dialog_message_label": "Nachricht",
- "action_bar_unsubscribe": "Von Thema abmelden",
+ "action_bar_unsubscribe": "Abmelden",
"notifications_copied_to_clipboard": "In Zwischenablage kopiert",
"notifications_loading": "Benachrichtigungen werden geladen …",
"notifications_attachment_open_title": "Gehe zu {{url}}",
@@ -154,7 +154,7 @@
"notifications_actions_not_supported": "Diese Aktion wird in der Web-App nicht unterstützt",
"notifications_actions_http_request_title": "Sende HTTP {{method}} an {{url}}",
"action_bar_show_menu": "Menü anzeigen",
- "action_bar_toggle_mute": "Stummschaltung der Benachrichtigungen an/aus",
+ "action_bar_toggle_mute": "Stummschaltung an/aus",
"message_bar_show_dialog": "Dialog zur Veröffentlichung anzeigen",
"message_bar_publish": "Benachrichtigung veröffentlichen",
"nav_button_connecting": "verbinde",
From bae30d79c9609bc3eace0199b9a8c0a270405f7b Mon Sep 17 00:00:00 2001
From: SinecKers
Date: Wed, 6 Sep 2023 22:00:45 +0000
Subject: [PATCH 049/182] Translated using Weblate (Turkish)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/tr/
---
web/public/static/langs/tr.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/public/static/langs/tr.json b/web/public/static/langs/tr.json
index 07fba528..4e73cfb7 100644
--- a/web/public/static/langs/tr.json
+++ b/web/public/static/langs/tr.json
@@ -77,7 +77,7 @@
"notifications_example": "Örnek",
"notifications_more_details": "Daha fazla bilgi için web sitesine veya belgelendirmeye bakın.",
"publish_dialog_chip_attach_url_label": "URL ile dosya ekle",
- "prefs_notifications_min_priority_default_and_higher": "Öntanımlı öncelik ve üstü",
+ "prefs_notifications_min_priority_default_and_higher": "Varsayılan öncelik ve üstü",
"prefs_notifications_delete_after_three_hours": "Üç saat sonra",
"notifications_none_for_any_description": "Bir konuya bildirim göndermek için konu URL'sine PUT veya POST göndermeniz yeterlidir. İşte konularınızdan birini kullanan bir örnek.",
"notifications_no_subscriptions_title": "Henüz aboneliğiniz yok gibi görünüyor.",
From 044f4182d028f79777762374ccc9bedef45bd913 Mon Sep 17 00:00:00 2001
From: Jag_k
Date: Thu, 7 Sep 2023 00:17:25 +0000
Subject: [PATCH 050/182] Translated using Weblate (Russian)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/ru/
---
web/public/static/langs/ru.json | 21 +++++++++++++++++++--
1 file changed, 19 insertions(+), 2 deletions(-)
diff --git a/web/public/static/langs/ru.json b/web/public/static/langs/ru.json
index d2c8d7fc..16ddfe74 100644
--- a/web/public/static/langs/ru.json
+++ b/web/public/static/langs/ru.json
@@ -354,7 +354,7 @@
"account_upgrade_dialog_billing_contact_email": "По вопросам оплаты, пожалуйста свяжитесь с нами.",
"account_upgrade_dialog_billing_contact_website": "По вопросам оплаты, пожалуйста обратитесь к нашему сайту.",
"publish_dialog_call_reset": "Удалить вызов",
- "account_basics_phone_numbers_dialog_description": "Для использования уведомлений необходимо добавить и подтвердить хотя бы один номер телефона. Проверить можно используя SMS или звонок.",
+ "account_basics_phone_numbers_dialog_description": "Для того что бы использовать возможность уведомлений о вызовах, нужно добавить и проверить хотя бы один номер телефона. Проверить можно используя SMS или звонок.",
"account_basics_phone_numbers_dialog_title": "Добавить номер телефона",
"account_basics_phone_numbers_dialog_number_placeholder": "например +1222333444",
"account_basics_phone_numbers_dialog_code_placeholder": "например 123456",
@@ -363,5 +363,22 @@
"account_usage_calls_none": "Невозможно совершать вызовы с этим аккаунтом",
"publish_dialog_chip_call_no_verified_numbers_tooltip": "Нет проверенных номеров",
"account_basics_phone_numbers_copied_to_clipboard": "Номер телефона скопирован в буфер обмена",
- "account_upgrade_dialog_tier_features_no_calls": "Нет вызовов"
+ "account_upgrade_dialog_tier_features_no_calls": "Нет вызовов",
+ "account_upgrade_dialog_tier_features_calls_one": "{{calls}} ежедневный звонок",
+ "account_basics_phone_numbers_dialog_number_label": "Номер телефона",
+ "account_basics_phone_numbers_dialog_check_verification_button": "Подтвердить код",
+ "account_upgrade_dialog_tier_features_calls_other": "{{calls}} ежедневных звонков",
+ "account_upgrade_dialog_tier_features_reservations_one": "{{reservations}} зарезервированная тема",
+ "account_basics_phone_numbers_no_phone_numbers_yet": "Телефонных номеров пока нет",
+ "publish_dialog_chip_call_label": "Звонок",
+ "account_upgrade_dialog_tier_features_emails_one": "{{emails}} ежедневное письмо",
+ "account_upgrade_dialog_tier_features_messages_one": "{{messages}} ежедневное сообщения",
+ "account_basics_phone_numbers_description": "Для уведомлений о телефонных звонках",
+ "publish_dialog_call_label": "Звонок",
+ "account_basics_phone_numbers_dialog_channel_call": "Позвонить",
+ "account_basics_phone_numbers_title": "Номера телефонов",
+ "account_basics_phone_numbers_dialog_code_label": "Проверочный код",
+ "account_basics_phone_numbers_dialog_verify_button_call": "Позвонить мне",
+ "publish_dialog_call_item": "Вызов телефонного номера {{number}}",
+ "account_basics_phone_numbers_dialog_channel_sms": "SMS"
}
From 6ec1ccf7a3d9052cb3d9e67c1ac86cd7c97149b4 Mon Sep 17 00:00:00 2001
From: jonnysemon
Date: Tue, 5 Sep 2023 18:08:50 +0000
Subject: [PATCH 051/182] Translated using Weblate (Arabic)
Currently translated at 85.8% (328 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/ar/
---
web/public/static/langs/ar.json | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/ar.json b/web/public/static/langs/ar.json
index 301ae5eb..d9d44a98 100644
--- a/web/public/static/langs/ar.json
+++ b/web/public/static/langs/ar.json
@@ -329,5 +329,6 @@
"publish_dialog_attachment_limits_quota_reached": "يتجاوز الحصة، {{remainingBytes}} متبقية",
"account_basics_tier_paid_until": "تم دفع مبلغ الاشتراك إلى غاية {{date}}، وسيتم تجديده تِلْقائيًا",
"account_basics_tier_canceled_subscription": "تم إلغاء اشتراكك وسيتم إعادته إلى مستوى حساب مجاني بداية مِن {{date}}.",
- "account_delete_dialog_billing_warning": "إلغاء حسابك أيضاً يلغي اشتراكك في الفوترة فوراً ولن تتمكن من الوصول إلى لوح الفوترة بعد الآن."
+ "account_delete_dialog_billing_warning": "إلغاء حسابك أيضاً يلغي اشتراكك في الفوترة فوراً ولن تتمكن من الوصول إلى لوح الفوترة بعد الآن.",
+ "nav_upgrade_banner_description": "حجز المواضيع والمزيد من الرسائل ورسائل البريد الإلكتروني والمرفقات الأكبر حجمًا"
}
From a407a2e0f8fc5655a42005f1bf41c0640d69ebd2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?jos=C3=A9=20m?=
Date: Fri, 8 Sep 2023 04:01:07 +0000
Subject: [PATCH 052/182] Translated using Weblate (Galician)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/gl/
---
web/public/static/langs/gl.json | 151 +++++++++++++++++++++++++++++++-
1 file changed, 150 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/gl.json b/web/public/static/langs/gl.json
index efc418ff..1f816cf4 100644
--- a/web/public/static/langs/gl.json
+++ b/web/public/static/langs/gl.json
@@ -160,5 +160,154 @@
"publish_dialog_checkbox_publish_another": "Publicar outra",
"emoji_picker_search_clear": "Limpar busca",
"publish_dialog_chip_call_no_verified_numbers_tooltip": "Números de teléfono non verificados",
- "publish_dialog_attached_file_remove": "Retirar ficheiro anexo"
+ "publish_dialog_attached_file_remove": "Retirar ficheiro anexo",
+ "account_upgrade_dialog_tier_features_no_calls": "Sen chamadas",
+ "account_upgrade_dialog_billing_contact_email": "Para preguntas sobre pagamentos, contacta con nós directamente.",
+ "account_tokens_dialog_title_create": "Crear token de acceso",
+ "prefs_reservations_dialog_title_edit": "Editar tema reservado",
+ "priority_default": "por defecto",
+ "prefs_notifications_min_priority_title": "Prioridade mínima",
+ "account_upgrade_dialog_tier_features_calls_one": "{{calls}} chamadas de teléfono diarias",
+ "account_upgrade_dialog_tier_current_label": "Actual",
+ "account_tokens_table_token_header": "Token",
+ "prefs_notifications_delete_after_never": "Nunca",
+ "prefs_users_description": "Engadir/eliminar usuarias dos temas protexidos. Ten en conta que as credenciais gárdanse na almacenaxe local do navegador.",
+ "subscribe_dialog_subscribe_description": "Os temas poderían non estar proxetidos con contrasinal, así que elixe un nome complicado de adiviñar. Unha vez subscrita, podes PUT/POST notificacións.",
+ "account_upgrade_dialog_interval_yearly_discount_save_up_to": "aforro ata un {{discount}}%",
+ "account_tokens_dialog_label": "Etiqueta, ex. notificación de Radarr",
+ "account_tokens_table_expires_header": "Caducidade",
+ "account_upgrade_dialog_proration_info": "Axuste : ao mellorar a un plan de pagamento superior, a diferencia vaise cobrar inmediatamente . Se degradas a conta a un plan inferior a diferencia usarase para pagar futuros períodos de pagamento.",
+ "prefs_reservations_dialog_access_label": "Acceso",
+ "account_usage_attachment_storage_title": "Almacenaxe dos anexos",
+ "prefs_users_dialog_username_label": "Identificador, ex. xoana",
+ "prefs_reservations_table_not_subscribed": "Non subscrita",
+ "account_upgrade_dialog_tier_features_emails_other": "{{emails}} correos diarios",
+ "prefs_notifications_min_priority_max_only": "Só prioridade máxima",
+ "account_upgrade_dialog_tier_features_calls_other": "{{calls}} chamadas de teléfono diarias",
+ "prefs_notifications_sound_description_some": "As notificacións sonan co ton {{sound}} ao chegar",
+ "prefs_reservations_edit_button": "Editar acceso ao tema",
+ "account_tokens_dialog_expires_never": "O token non caduca",
+ "subscribe_dialog_login_title": "Require inciar sesión",
+ "account_tokens_dialog_expires_x_days": "O token caduca en {{days}} días",
+ "prefs_reservations_table_everyone_read_only": "Podo publicar e subscribirme, calquera pode subscribirse",
+ "prefs_reservations_table_everyone_deny_all": "Só eu podo publicar e subscribirme",
+ "account_upgrade_dialog_tier_features_reservations_one": "{{reservations}} tema reservado",
+ "subscribe_dialog_login_button_login": "Acceder",
+ "account_upgrade_dialog_tier_features_no_reservations": "Sen temas reservados",
+ "prefs_users_table_cannot_delete_or_edit": "Non se pode eliminar ou editar unha usuaria coa sesión iniciada",
+ "prefs_notifications_delete_after_three_hours_description": "As notificacións autoelimínanse após tres horas",
+ "prefs_notifications_delete_after_three_hours": "Após tres horas",
+ "prefs_notifications_min_priority_description_x_or_higher": "Mostrar as notificacións se a prioridade é {{number}} {{name}} ou superior",
+ "reservation_delete_dialog_description": "Ao eliminar a reserva cedes a propiedade do tema, e permites que outras persoas poidan reservalo. Podes manter ou eliminar as mensaxes e anexos existentes.",
+ "prefs_reservations_table_everyone_read_write": "Calquera pode publicar e subscribirse",
+ "prefs_reservations_dialog_title_delete": "Eliminar a reserva do tema",
+ "prefs_users_table": "Táboa de usuarias",
+ "prefs_reservations_table_topic_header": "Tema",
+ "reservation_delete_dialog_submit_button": "Eliminar a reserva",
+ "prefs_reservations_limit_reached": "Acadaches o límite de temas que podes reservar.",
+ "account_upgrade_dialog_interval_monthly": "Mensual",
+ "prefs_users_add_button": "Engadir usuaria",
+ "account_upgrade_dialog_tier_features_messages_other": "{{messages}} mensaxes diarias",
+ "prefs_appearance_language_title": "Idioma",
+ "prefs_notifications_delete_after_one_day_description": "As notificacións autoelimínanse após un día",
+ "account_tokens_table_never_expires": "Non caduca",
+ "account_tokens_delete_dialog_title": "Desbotar token de acceso",
+ "prefs_notifications_delete_after_one_month": "Após un mes",
+ "account_tokens_delete_dialog_description": "Antes de borrar o token de acceso mira que ningunha aplicación ou programa o está usando. Esta acción non pode desfacerse .",
+ "account_upgrade_dialog_button_cancel": "Cancelar",
+ "account_tokens_table_label_header": "Etiqueta",
+ "account_upgrade_dialog_billing_contact_website": "Para preguntas sobre pagamentos, vai ao noso sitiio web.",
+ "prefs_notifications_delete_after_never_description": "As notificacións non se eliminarán nunca automáticamente",
+ "account_upgrade_dialog_tier_features_reservations_other": "{{reservations}} temas reservados",
+ "prefs_notifications_sound_description_none": "As notificacións non reproducen un ton ao chegar",
+ "account_tokens_description": "Usar tokens de acceso ao publicar e subscribirte a través da API de ntfy, así non tes que enviar as credenciais. Le a documentación para saber máis.",
+ "prefs_reservations_table": "Táboa cos temas reservados",
+ "account_upgrade_dialog_button_cancel_subscription": "Cancelar subscrición",
+ "account_upgrade_dialog_tier_features_emails_one": "{{emails}} correo diario",
+ "account_upgrade_dialog_tier_features_attachment_file_size": "{{filesize}} por ficheiro",
+ "prefs_reservations_description": "Podes reservar nomes de temas para uso personal. Ao reservar un tema tes a propiedade sobre del, e permíteche definir os permisos de acceso para outras usuarias sobre o tema.",
+ "prefs_users_description_no_sync": "Usuarias e contrasinais non están sincronizados coa túa conta.",
+ "account_tokens_dialog_title_edit": "Editar token de acceso",
+ "prefs_users_table_base_url_header": "URL do servizo",
+ "account_upgrade_dialog_tier_features_messages_one": "{{mensaxes}} mensaxe diaria",
+ "account_upgrade_dialog_reservations_warning_one": "O nivel seleccionado permite reservar menos temas que o nivel actual. Antes de cambiar de nivel, elimina unha reserva polo menos . Podes eliminar as reservas nos Axustes.",
+ "prefs_users_table_user_header": "Usuaria",
+ "error_boundary_stack_trace": "Trazas do problema",
+ "prefs_users_dialog_password_label": "Contrasinal",
+ "prefs_notifications_delete_after_one_week": "Após unha semana",
+ "prefs_reservations_delete_button": "Restablecer acceso ao tema",
+ "prefs_notifications_delete_after_one_week_description": "As notificacións autoelimínanse após unha semana",
+ "error_boundary_unsupported_indexeddb_description": "A app ntfy web precisa a función IndexedDB, e o teu navegador non ten soporte para IndexedDB no modo privado. Aínda que é unha mágoa, tampouco ten moito senso usar a app ntfy web en modo privado, porque todo se garda na almacenaxe do navegador. Podes aprender máis sobre isto neste tema de GitHub , ou comentarnos o que che parece en Discord ou Matrix .",
+ "subscribe_dialog_subscribe_button_cancel": "Cancelar",
+ "account_basics_tier_description": "O nivel da túa conta",
+ "prefs_reservations_dialog_title_add": "Reservar tema",
+ "account_upgrade_dialog_cancel_warning": "Isto vai cancelar a túa subscrición , e degradar a túa conta o {{date}}. Nesa data, as reservas de temas así como as mensaxes na caché do servidor van ser eliminadas .",
+ "prefs_notifications_sound_title": "Ton da notificación",
+ "prefs_notifications_min_priority_default_and_higher": "Prioridade por defecto e superior",
+ "prefs_reservations_table_access_header": "Acceso",
+ "account_tokens_table_copied_to_clipboard": "Copiouse o token de acceso",
+ "account_tokens_dialog_expires_x_hours": "O token caduca en {{hours}} horas",
+ "prefs_users_edit_button": "Editar usuaria",
+ "account_upgrade_dialog_title": "Cambiar facturación da conta",
+ "priority_low": "baixa",
+ "prefs_reservations_table_click_to_subscribe": "Preme para subscribirte",
+ "error_boundary_description": "Isto non debería pasar. Lamentámolo. Se tes un minuto, informa en GitHub , ou fáinolo saber en Discord ou Matrix .",
+ "priority_min": "min",
+ "prefs_notifications_min_priority_description_any": "Mostrar todas as notificacións, obviando a prioridade",
+ "error_boundary_gathering_info": "Obter máis info…",
+ "error_boundary_unsupported_indexeddb_title": "Non hai soporte para a navegación privada",
+ "prefs_notifications_delete_after_one_day": "Após un día",
+ "error_boundary_title": "vaite!, ntfy fallou",
+ "reservation_delete_dialog_action_keep_description": "As mensaxes e anexos que están no servidor serán visibles públicamente para quen saiba o nome do tema.",
+ "prefs_reservations_add_button": "Engadir tema reservado",
+ "prefs_reservations_title": "Temas reservados",
+ "prefs_reservations_dialog_description": "Ao reservar un tema tes a propiedade sobre el, e permíteche definir os permisos de acceso para outras usuarias.",
+ "account_tokens_delete_dialog_submit_button": "Eliminar definitivamente o token",
+ "prefs_notifications_title": "Notificacións",
+ "account_tokens_title": "Tokens de acceso",
+ "prefs_reservations_dialog_topic_label": "Tema",
+ "prefs_users_title": "Xestionar usuarias",
+ "account_upgrade_dialog_tier_price_billed_monthly": "{{price}} anual. Pagamento mensual.",
+ "account_tokens_dialog_expires_unchanged": "Deixar a data de caducidade sen cambiar",
+ "error_boundary_button_copy_stack_trace": "Copiar trazas do problema",
+ "account_tokens_dialog_title_delete": "Eliminar token de acceso",
+ "reservation_delete_dialog_action_keep_title": "Manter as mensaxes e anexos gardados",
+ "prefs_notifications_sound_no_sound": "Sen ton",
+ "account_upgrade_dialog_interval_yearly": "Anual",
+ "account_upgrade_dialog_button_redirect_signup": "Crea unha conta",
+ "account_tokens_dialog_button_cancel": "Cancelar",
+ "account_upgrade_dialog_tier_price_billed_yearly": "{{price}} cobrado anualmente. Aforro {{save}}.",
+ "prefs_notifications_min_priority_high_and_higher": "Prioridade alta e superior",
+ "priority_max": "máx",
+ "prefs_users_delete_button": "Eliminar usuaria",
+ "prefs_notifications_min_priority_any": "Calquera prioridade",
+ "account_tokens_dialog_expires_label": "O token caduca o",
+ "prefs_notifications_delete_after_title": "Desbotar notificacións",
+ "account_upgrade_dialog_interval_yearly_discount_save": "aforro {{discount}}%",
+ "prefs_users_dialog_title_edit": "Editar usuaria",
+ "prefs_notifications_min_priority_low_and_higher": "Prioridade baixa e superior",
+ "account_tokens_dialog_button_update": "Actualizar token",
+ "account_upgrade_dialog_tier_features_attachment_total_size": "{{totalsize}} almacenaxe total",
+ "prefs_reservations_table_everyone_write_only": "Podo publicar e subscribirme, calquera pode publicar",
+ "prefs_appearance_title": "Aparencia",
+ "account_tokens_table_cannot_delete_or_edit": "Non se pode editar ou desbotar o token da sesión actual",
+ "prefs_notifications_sound_play": "Reproducir ton seleccionado",
+ "account_tokens_table_last_access_header": "Último acceso",
+ "account_tokens_table_last_origin_tooltip": "Desde o enderezo IP {{ip}}, preme para detalles",
+ "account_upgrade_dialog_tier_price_per_month": "mes",
+ "account_tokens_table_current_session": "Sesión do navegador actual",
+ "account_upgrade_dialog_button_pay_now": "Paga e subscríbete",
+ "reservation_delete_dialog_action_delete_title": "Eliminar mensaxes e anexos gardados",
+ "reservation_delete_dialog_action_delete_description": "As mensaxes e anexos vanse borrar definitivamente. Esta acción non ten volta.",
+ "prefs_notifications_delete_after_one_month_description": "As notificacións autoelimínanse após un mes",
+ "prefs_users_dialog_base_url_label": "URL do servizo, ex. https://ntfy.sh",
+ "account_upgrade_dialog_tier_selected_label": "Seleccionado",
+ "account_upgrade_dialog_button_update_subscription": "Actualizar subscrición",
+ "priority_high": "alta",
+ "account_delete_dialog_billing_warning": "Ao eliminar a conta tamén cancelas o pagamento das subscricións. Non poderás volver acceder ao taboleiro de pagamentos.",
+ "prefs_notifications_min_priority_description_max": "Mostrar notificacións se a prioridade é 5 (máx)",
+ "account_upgrade_dialog_reservations_warning_other": "O nivel seleccionado permite reservar menos temas que o nivel actual. Antes de cambiar de nivel, elimina {{count}} reservas polo menos . Podes eliminar as reservas nos Axustes.",
+ "prefs_users_dialog_title_add": "Engadir usuaria",
+ "account_tokens_dialog_button_create": "Crear token",
+ "account_tokens_table_create_token_button": "Crear token de acceso"
}
From 42063cbd5c2f254e28270cfb2a609e092cc1eabd Mon Sep 17 00:00:00 2001
From: Jose Boullosa
Date: Tue, 5 Sep 2023 23:54:30 +0000
Subject: [PATCH 053/182] Translated using Weblate (Galician)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/gl/
---
web/public/static/langs/gl.json | 77 +++++++++++++++++++++++++++++++--
1 file changed, 74 insertions(+), 3 deletions(-)
diff --git a/web/public/static/langs/gl.json b/web/public/static/langs/gl.json
index 1f816cf4..92d35610 100644
--- a/web/public/static/langs/gl.json
+++ b/web/public/static/langs/gl.json
@@ -114,7 +114,7 @@
"publish_dialog_title_topic": "Publicar en {{topic}}",
"publish_dialog_title_no_topic": "Publicar notificación",
"publish_dialog_progress_uploading": "Enviando…",
- "publish_dialog_progress_uploading_detail": "Enviando {{loaded}}/{{total}} ({{percent}}%) …",
+ "publish_dialog_progress_uploading_detail": "Enviando {{loaded}}/{{total}} ({{percent}}%) …",
"publish_dialog_message_published": "Notificación publicada",
"publish_dialog_attachment_limits_file_and_quota_reached": "supera o límite de ficheiros e cota {{fileSizeLimit}}, quedan {{remainingBytes}}",
"publish_dialog_attachment_limits_file_reached": "supera o límite para ficheiros {{fileSizeLimit}}",
@@ -125,7 +125,7 @@
"publish_dialog_priority_default": "Prioridade por defecto",
"publish_dialog_priority_high": "Prioridade alta",
"publish_dialog_priority_max": "Prioridade Máxima",
- "publish_dialog_base_url_label": "URL de servizo",
+ "publish_dialog_base_url_label": "URL do servizo",
"notifications_more_details": "Para máis información, visita o sitio web ou le a documentación .",
"publish_dialog_call_label": "Chamada de teléfono",
"publish_dialog_call_reset": "Retirar chamada de teléfono",
@@ -309,5 +309,76 @@
"account_upgrade_dialog_reservations_warning_other": "O nivel seleccionado permite reservar menos temas que o nivel actual. Antes de cambiar de nivel, elimina {{count}} reservas polo menos . Podes eliminar as reservas nos Axustes.",
"prefs_users_dialog_title_add": "Engadir usuaria",
"account_tokens_dialog_button_create": "Crear token",
- "account_tokens_table_create_token_button": "Crear token de acceso"
+ "account_tokens_table_create_token_button": "Crear token de acceso",
+ "account_basics_tier_interval_monthly": "mensual",
+ "account_basics_tier_canceled_subscription": "A sua suscripción foi cancelada e vostede será degradado a unha conta gratuita o {{date}}.",
+ "account_basics_password_dialog_current_password_incorrect": "Contrasinal incorrecto",
+ "account_basics_phone_numbers_dialog_number_label": "Número de teléfono",
+ "account_basics_password_dialog_button_submit": "Modificar contrasinal",
+ "account_basics_username_title": "Usuario",
+ "account_basics_phone_numbers_dialog_check_verification_button": "Código de confirmación",
+ "account_usage_messages_title": "Mesaxes publicados",
+ "account_basics_phone_numbers_dialog_verify_button_sms": "Enviar SMS",
+ "account_basics_tier_change_button": "Cambiar",
+ "account_basics_phone_numbers_dialog_description": "Para usar a característica de chamadas de teléfono, vostede debe engadir e verificar ao menos un número de teléfono. A verificación pode ser realizada vía SMS ou a través de chamada.",
+ "account_delete_title": "Borrar conta",
+ "account_delete_dialog_label": "Contrasinal",
+ "account_basics_tier_admin_suffix_with_tier": "(con tier {{tier}})",
+ "subscribe_dialog_login_username_label": "Nome de usuario, ex. phil",
+ "subscribe_dialog_error_user_not_authorized": "Usuario {{username}} non autorizado",
+ "account_basics_title": "Conta",
+ "account_basics_phone_numbers_no_phone_numbers_yet": "Aínda non hay números de teléfono",
+ "subscribe_dialog_subscribe_button_generate_topic_name": "Xerar nome",
+ "subscribe_dialog_login_password_label": "Contrasinal",
+ "subscribe_dialog_subscribe_button_subscribe": "Subscribirse",
+ "account_basics_phone_numbers_dialog_title": "Engadir número de teléfono",
+ "account_basics_username_admin_tooltip": "É vostede Admin",
+ "account_delete_dialog_description": "Isto borrará permanentemente a túa conta, incluido todos os datos almacenados no servidor. Despois do borrado, o teu nome de usuario non estará dispoñible durante 7 días. Se realmente queres proceder, por favor confirme co seu contrasinal na caixa inferior.",
+ "account_usage_reservations_none": "Non hai temas reservados para esta conta",
+ "subscribe_dialog_subscribe_topic_placeholder": "Nome do tema, ex. phil_alertas",
+ "account_usage_title": "Uso",
+ "account_basics_tier_upgrade_button": "Mexorar a Pro",
+ "subscribe_dialog_error_topic_already_reserved": "Tema xa reservado",
+ "account_basics_tier_admin_suffix_no_tier": "(sen tier)",
+ "account_basics_tier_payment_overdue": "O pago está retrasado. Por favor, revise o seu método de pago o a súa conta será degradada pronto.",
+ "account_basics_phone_numbers_description": "Para notificacións telefónicas",
+ "account_basics_tier_free": "De balde",
+ "account_basics_tier_admin": "Admin",
+ "account_delete_dialog_button_cancel": "Cancelar",
+ "account_basics_password_description": "Modificar o contrasinal da conta",
+ "account_usage_calls_title": "Chamadas realizadas",
+ "account_basics_tier_basic": "Básico",
+ "account_basics_phone_numbers_copied_to_clipboard": "Número de teléfono copiado no portapapeis",
+ "account_basics_tier_title": "Tipo de conta",
+ "account_usage_cannot_create_portal_session": "Non foi posible abrir o portal de pagos",
+ "account_delete_description": "Borrar permanentemente a túa conta",
+ "account_basics_phone_numbers_dialog_number_placeholder": "ex. +1222333444",
+ "account_basics_phone_numbers_dialog_code_placeholder": "ex. 123456",
+ "account_basics_tier_manage_billing_button": "Xestionar pagos",
+ "account_basics_username_description": "Ei, ese eres ti ❤",
+ "account_basics_password_dialog_confirm_password_label": "Confirmar contrasinal",
+ "account_basics_tier_interval_yearly": "anual",
+ "account_delete_dialog_button_submit": "Borrar permanentemente a conta",
+ "account_basics_phone_numbers_dialog_channel_call": "Chamada",
+ "account_basics_password_title": "Contrasinal",
+ "account_basics_password_dialog_new_password_label": "Novo contrasinal",
+ "account_usage_of_limit": "de {{limit}}",
+ "subscribe_dialog_error_user_anonymous": "anónimo",
+ "account_usage_basis_ip_description": "Estadísticas de uso e límites para esta conta están basados na sua IP, polo que poden estar compartidos con outros usuarios. Os limites mostrados son aproximados, basados nos ratios de limite existentes.",
+ "account_basics_password_dialog_title": "Modificar contrasinal",
+ "account_usage_limits_reset_daily": "Límite de uso é reiniciado diariamente a medianoite (UTC(",
+ "account_usage_unlimited": "Sen límites",
+ "account_basics_phone_numbers_title": "Números de teléfono",
+ "account_basics_password_dialog_current_password_label": "Contrasinal actual",
+ "subscribe_dialog_subscribe_base_url_label": "URL do servizo",
+ "account_usage_reservations_title": "Temas reservados",
+ "account_usage_calls_none": "Non se poden realizar chamadas con esta conta",
+ "subscribe_dialog_subscribe_use_another_label": "Usar outro servidor",
+ "account_basics_phone_numbers_dialog_code_label": "Código de verificación",
+ "account_basics_tier_paid_until": "Suscripción pagada ata {{date}}, e vaise auto-renovar",
+ "account_usage_attachment_storage_description": "{{filesize}} por arquivo, borrado despois de {{expiry}}",
+ "account_basics_phone_numbers_dialog_verify_button_call": "Chámame",
+ "account_usage_emails_title": "Emails enviados",
+ "account_basics_phone_numbers_dialog_channel_sms": "SMS",
+ "subscribe_dialog_login_description": "Este tema está protexido por contrasinal. Por favor, introduza o usuario e contrasinal para subscribirse."
}
From 68a7756621946c366ebfb99c614f7255e0494183 Mon Sep 17 00:00:00 2001
From: Mazurky
Date: Sat, 9 Sep 2023 15:29:57 +0000
Subject: [PATCH 054/182] Translated using Weblate (Slovak)
Currently translated at 100.0% (382 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/sk/
---
web/public/static/langs/sk.json | 209 +++++++++++++++++++++++++++++++-
1 file changed, 208 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/sk.json b/web/public/static/langs/sk.json
index e2a54dba..8ea1b45f 100644
--- a/web/public/static/langs/sk.json
+++ b/web/public/static/langs/sk.json
@@ -173,5 +173,212 @@
"publish_dialog_attach_placeholder": "Pripojiť súbor pomocou URL adresy, napr. https://f-droid.org/F-Droid.apk",
"publish_dialog_chip_email_label": "Preposlanie na email",
"publish_dialog_chip_attach_file_label": "Pripojiť miestny súbor",
- "publish_dialog_details_examples_description": "Príklady a podrobný opis všetkých funkcií odosielania nájdete v dokumentácii ."
+ "publish_dialog_details_examples_description": "Príklady a podrobný opis všetkých funkcií odosielania nájdete v dokumentácii .",
+ "account_upgrade_dialog_tier_features_no_calls": "Žiadne telefonáty",
+ "account_upgrade_dialog_billing_contact_email": "V prípade otázok týkajúcich sa fakturácie nás prosím kontaktujte tu.",
+ "account_tokens_dialog_title_create": "Vytvoriť prístupový token",
+ "prefs_reservations_dialog_title_edit": "Upraviť rezervovanú tému",
+ "account_basics_tier_interval_monthly": "mesačne",
+ "account_basics_tier_canceled_subscription": "Vaše predplatné bolo zrušené a bude preradené na bezplatné konto k dátumu {{date}}.",
+ "priority_default": "predvolená",
+ "prefs_notifications_min_priority_title": "Najnižšia priorita",
+ "account_upgrade_dialog_tier_features_calls_one": "{{calls}} denný telefonát",
+ "account_upgrade_dialog_tier_current_label": "Aktuálne",
+ "account_basics_password_dialog_current_password_incorrect": "Nesprávne heslo",
+ "account_tokens_table_token_header": "Token",
+ "prefs_notifications_delete_after_never": "Nikdy",
+ "prefs_users_description": "Tu môžete pridávať/odstraňovať používateľov pre svoje chránené témy. Upozorňujeme, že používateľské meno a heslo sú uložené v lokálnom úložisku prehliadača.",
+ "account_basics_phone_numbers_dialog_number_label": "Telefónne číslo",
+ "subscribe_dialog_subscribe_description": "Témy nemusia byť chránené heslom, preto vyberte názov, ktorý nie je ľahké uhádnuť. Po prihlásení sa na odber môžete PUT/POST oznámenia.",
+ "account_basics_password_dialog_button_submit": "Zmeniť heslo",
+ "account_basics_phone_numbers_dialog_check_verification_button": "Potvrdiť kód",
+ "account_upgrade_dialog_interval_yearly_discount_save_up_to": "ušetrite až {{discount}}%",
+ "account_tokens_dialog_label": "Označenie, napr. Radarr notifications",
+ "account_tokens_table_expires_header": "Vyprší",
+ "account_upgrade_dialog_proration_info": "Vyhlásenie : Pri prechode medzi platenými plánmi sa rozdiel v cene účtuje okamžite . Pri prechode na nižšiu úroveň sa zostatok použije na platbu za budúce fakturačné obdobia.",
+ "prefs_reservations_dialog_access_label": "Prístup",
+ "account_usage_attachment_storage_title": "Ukladanie príloh",
+ "prefs_users_dialog_username_label": "Používateľské meno, napr. phil",
+ "account_usage_messages_title": "Zverejnené správy",
+ "emoji_picker_search_clear": "Vymazať vyhľadávanie",
+ "prefs_reservations_table_not_subscribed": "Odber nie je prihlásený",
+ "account_upgrade_dialog_tier_features_emails_other": "{{emails}} denné emaily",
+ "prefs_notifications_min_priority_max_only": "Iba najvyššia priorita",
+ "account_upgrade_dialog_tier_features_calls_other": "{{calls}} denné telefonáty",
+ "prefs_notifications_sound_description_some": "Oznámenia pri príchode prehrávajú zvuk {{sound}}",
+ "prefs_reservations_edit_button": "Upraviť prístup k téme",
+ "account_basics_phone_numbers_dialog_verify_button_sms": "Poslať SMS",
+ "account_basics_tier_change_button": "Zmeniť",
+ "account_tokens_dialog_expires_never": "Platnosť tokenu nikdy nevyprší",
+ "subscribe_dialog_login_title": "Vyžaduje sa prihlásenie",
+ "account_tokens_dialog_expires_x_days": "Token vyprší za {{days}} dní",
+ "prefs_reservations_table_everyone_read_only": "Môžem publikovať a odoberať, každý môže odoberať",
+ "prefs_reservations_table_everyone_deny_all": "Iba ja môžem publikovať a odoberať",
+ "account_basics_phone_numbers_dialog_description": "Ak chcete používať funkciu oznamovanie hovorom, musíte pridať a overiť aspoň jedno telefónne číslo. Overenie je možné vykonať prostredníctvom SMS alebo telefonického hovoru.",
+ "account_upgrade_dialog_tier_features_reservations_one": "{{reservations}} rezervovaná téma",
+ "account_delete_title": "Odstrániť účet",
+ "subscribe_dialog_login_button_login": "Prihlásenie",
+ "account_upgrade_dialog_tier_features_no_reservations": "Žiadne rezervované témy",
+ "prefs_users_table_cannot_delete_or_edit": "Nie je možné odstrániť alebo upraviť prihláseného používateľa",
+ "account_basics_tier_admin_suffix_with_tier": "(s úrovňou {{tier}})",
+ "prefs_notifications_delete_after_three_hours_description": "Oznámenia sa automaticky odstránia po troch hodinách",
+ "prefs_notifications_delete_after_three_hours": "Po troch hodinách",
+ "prefs_notifications_min_priority_description_x_or_higher": "Zobraziť oznámenia, ak je priorita {{number}} ({{name}}) alebo vyššia",
+ "reservation_delete_dialog_description": "Odstránením rezervácie sa vzdáte vlastníctva témy a umožníte ostatným, aby si ju rezervovali. Existujúce správy a prílohy si môžete ponechať alebo odstrániť.",
+ "subscribe_dialog_login_username_label": "Používateľské meno, napr. phil",
+ "subscribe_dialog_error_user_not_authorized": "Používateľ {{username}} nie je autorizovaný",
+ "prefs_reservations_table_everyone_read_write": "Každý môže publikovať a odoberať",
+ "prefs_reservations_dialog_title_delete": "Odstrániť rezervovanú tému",
+ "prefs_users_table": "Tabuľka používateľov",
+ "prefs_reservations_table_topic_header": "Téma",
+ "reservation_delete_dialog_submit_button": "Odstrániť rezerváciu",
+ "prefs_reservations_limit_reached": "Dosiahli ste limit rezervovaných tém.",
+ "account_upgrade_dialog_interval_monthly": "Mesačne",
+ "prefs_users_add_button": "Pridať používateľa",
+ "account_upgrade_dialog_tier_features_messages_other": "{{messages}} denné správy",
+ "account_basics_phone_numbers_no_phone_numbers_yet": "Zatiaľ žiadne telefónne čísla",
+ "subscribe_dialog_subscribe_button_generate_topic_name": "Vygenerovať názov",
+ "prefs_appearance_language_title": "Jazyk",
+ "prefs_notifications_delete_after_one_day_description": "Oznámenia sa automaticky odstránia po jednom dni",
+ "subscribe_dialog_subscribe_button_subscribe": "Odoberať",
+ "account_tokens_table_never_expires": "Nikdy nevyprší",
+ "account_tokens_delete_dialog_title": "Odstrániť prístupový token",
+ "prefs_notifications_delete_after_one_month": "Po jednom mesiaci",
+ "account_basics_phone_numbers_dialog_title": "Pridať telefónne číslo",
+ "account_tokens_delete_dialog_description": "Pred odstránením prístupového tokenu sa uistite, že ho aktívne nepoužívajú žiadne aplikácie ani skripty. Túto akciu nie je možné vrátiť späť .",
+ "account_tokens_table_label_header": "Označenie",
+ "account_upgrade_dialog_billing_contact_website": "Otázky týkajúce sa fakturácie nájdete na našej webovej stránke.",
+ "account_basics_username_admin_tooltip": "Ste Admin",
+ "prefs_notifications_delete_after_never_description": "Oznámenia sa nikdy automaticky neodstránia",
+ "account_delete_dialog_description": "Tým sa vaše konto natrvalo odstráni vrátane všetkých údajov uložených na serveri. Po vymazaní bude vaše používateľské meno 7 dní nedostupné. Ak naozaj chcete pokračovať, potvrďte svoje heslo v poli nižšie.",
+ "account_upgrade_dialog_tier_features_reservations_other": "{{reservations}} rezervované témy",
+ "account_usage_reservations_none": "Žiadne rezervované témy pre toto konto",
+ "prefs_notifications_sound_description_none": "Pri príchode oznámení sa neprehráva žiadny zvuk",
+ "account_tokens_description": "Pri publikovaní a prihlasovaní prostredníctvom rozhrania ntfy API používajte prístupové tokeny, aby ste nemuseli posielať prihlasovacie údaje k účtu. Viacej informácií nájdete v dokumentácií.",
+ "prefs_reservations_table": "Tabuľka rezervovaných tém",
+ "emoji_picker_search_placeholder": "Vyhľadať emoji",
+ "account_upgrade_dialog_button_cancel_subscription": "Zrušiť predplatné",
+ "account_upgrade_dialog_tier_features_emails_one": "{{emails}} denný email",
+ "account_upgrade_dialog_tier_features_attachment_file_size": "{{filesize}} na jeden súbor",
+ "prefs_reservations_description": "Tu si môžete rezervovať názvy tém na osobné použitie. Rezervovaním témy získate vlastníctvo nad témou a môžete definovať prístupové práva pre ostatných používateľov k téme.",
+ "account_usage_title": "Používanie",
+ "account_basics_tier_upgrade_button": "Vylepšiť na PRO verziu",
+ "prefs_users_description_no_sync": "Používatelia a heslá nie sú synchronizované s vaším účtom.",
+ "account_tokens_dialog_title_edit": "Upraviť prístupový token",
+ "account_upgrade_dialog_tier_features_messages_one": "{{messages}} denná správa",
+ "account_upgrade_dialog_reservations_warning_one": "Vybraná úroveň umožňuje menej rezervovaných tém ako vaša aktuálna úroveň. Pred zmenou úrovne vymažte aspoň jednu rezerváciu . Rezervácie môžete odstrániť v Nastaveniach.",
+ "subscribe_dialog_error_topic_already_reserved": "Téma je už rezervovaná",
+ "prefs_users_table_user_header": "Používateľ",
+ "error_boundary_stack_trace": "Výpis zásobníka",
+ "prefs_notifications_delete_after_one_week": "Po jednom týždni",
+ "prefs_reservations_delete_button": "Resetovať prístup k téme",
+ "account_basics_tier_admin_suffix_no_tier": "(bez úrovne)",
+ "prefs_notifications_delete_after_one_week_description": "Oznámenia sa automaticky odstránia po jednom týždni",
+ "error_boundary_unsupported_indexeddb_description": "Webová aplikácia ntfy potrebuje na fungovanie IndexedDB a váš prehliadač nepodporuje IndexedDB v režime súkromného prehliadania. Je to síce nešťastné, ale aj tak nemá veľký zmysel používať webovú aplikáciu ntfy v režime súkromného prehliadania, pretože všetko je uložené v úložisku prehliadača. Viac informácií si môžete prečítať v tomto probléme GitHubu alebo sa s nami porozprávať na Discord alebo Matrix .",
+ "account_basics_tier_payment_overdue": "Vaša platba je po termíne splatnosti. Aktualizujte prosím svoj spôsob platby, inak bude váš účet preradený do nižšej kategórie.",
+ "account_basics_tier_description": "Úroveň výkonu vášho účtu",
+ "account_basics_phone_numbers_description": "Pre oznamovanie hovorom",
+ "account_basics_tier_free": "Zadarmo",
+ "account_upgrade_dialog_cancel_warning": "Týmto zrušíte svoje predplatné a {{date}} prejdete na nižšiu úroveň svojho účtu. V tento deň budú odstránené rezervácie tém, ako aj správy uložené vo vyrovnávacej pamäti servera.",
+ "account_basics_tier_admin": "Admin",
+ "prefs_notifications_sound_title": "Zvuk oznámenia",
+ "prefs_notifications_min_priority_default_and_higher": "Predvolená priorita a vyššia",
+ "prefs_reservations_table_access_header": "Prístup",
+ "account_tokens_table_copied_to_clipboard": "Prístupový token skopírovaný",
+ "account_tokens_dialog_expires_x_hours": "Token vyprší za {{hours}} hodín",
+ "prefs_users_edit_button": "Upraviť používateľa",
+ "account_upgrade_dialog_title": "Zmeniť úroveň účtu",
+ "priority_low": "nízka",
+ "prefs_reservations_table_click_to_subscribe": "Kliknutím sa prihlásite na odber",
+ "account_basics_password_description": "Zmeniť heslo účtu",
+ "account_usage_calls_title": "Uskutočnené telefonické hovory",
+ "error_boundary_description": "Toto samozrejme nemalo nastať. Je mi to veľmi ľúto. Ak máte chvíľu, nahláste to na GitHub alebo nám dajte vedieť cez Discord alebo Matrix .",
+ "priority_min": "najnižšia",
+ "account_basics_tier_basic": "Základný",
+ "prefs_notifications_min_priority_description_any": "Zobraziť všetky oznámenia bez ohľadu na prioritu",
+ "error_boundary_gathering_info": "Získajte viac informácií…",
+ "error_boundary_unsupported_indexeddb_title": "Súkromné prehliadanie nie je podporované",
+ "prefs_notifications_delete_after_one_day": "Po jednom dni",
+ "error_boundary_title": "Ale nie, ntfy prestalo fungovať",
+ "reservation_delete_dialog_action_keep_description": "Správy a prílohy, ktoré sú uložené v medzipamäti na serveri, budú verejne viditeľné pre ľudí, ktorí poznajú názov témy.",
+ "prefs_reservations_add_button": "Pridať rezervovanú tému",
+ "prefs_reservations_title": "Rezervované témy",
+ "account_basics_phone_numbers_copied_to_clipboard": "Telefónne číslo skopírované do schránky",
+ "prefs_reservations_dialog_description": "Rezervovaním témy získate vlastníctvo nad témou a môžete definovať prístupové práva pre ostatných používateľov k téme.",
+ "account_basics_tier_title": "Typ účtu",
+ "account_usage_cannot_create_portal_session": "Nemožnosť otvoriť fakturačný portál",
+ "account_tokens_delete_dialog_submit_button": "Trvalo odstrániť token",
+ "account_delete_description": "Natrvalo odstrániť vaše konto",
+ "account_basics_phone_numbers_dialog_number_placeholder": "napr. +1222333444",
+ "account_basics_phone_numbers_dialog_code_placeholder": "napr. 123456",
+ "prefs_notifications_title": "Oznámenia",
+ "account_basics_tier_manage_billing_button": "Spravovať fakturáciu",
+ "account_tokens_title": "Prístupové tokeny",
+ "account_basics_username_description": "Hej, to si ty ❤",
+ "prefs_reservations_dialog_topic_label": "Téma",
+ "prefs_users_title": "Správa používateľov",
+ "account_basics_tier_interval_yearly": "ročne",
+ "account_upgrade_dialog_tier_price_billed_monthly": "{{price}} za rok. Účtuje sa mesačne.",
+ "account_delete_dialog_button_submit": "Natrvalo odstrániť konto",
+ "account_basics_phone_numbers_dialog_channel_call": "Hovor",
+ "account_basics_password_dialog_new_password_label": "Nové heslo",
+ "account_tokens_dialog_expires_unchanged": "Ponechať dátum skončenia platnosti nezmenený",
+ "error_boundary_button_copy_stack_trace": "Kopírovať výpis zásobníka",
+ "account_tokens_dialog_title_delete": "Odstrániť prístupový token",
+ "account_usage_of_limit": "z {{limit}}",
+ "reservation_delete_dialog_action_keep_title": "Ponechať správy a prílohy uložené v medzipamäti",
+ "prefs_notifications_sound_no_sound": "Bez zvuku",
+ "account_upgrade_dialog_interval_yearly": "Ročne",
+ "account_upgrade_dialog_button_redirect_signup": "Zaregistrujte sa teraz",
+ "subscribe_dialog_error_user_anonymous": "anonymný",
+ "account_upgrade_dialog_tier_price_billed_yearly": "{{price}} účtovaná ročne. Uložiť {{save}}.",
+ "prefs_notifications_min_priority_high_and_higher": "Vysoká priorita a vyššia",
+ "account_usage_basis_ip_description": "Štatistiky a limity používania tohto účtu sú založené na vašej IP adrese, takže môžu byť zdieľané s ostatnými používateľmi. Vyššie uvedené limity sú približné hodnoty založené na existujúcich rýchlostných limitoch.",
+ "account_basics_password_dialog_title": "Zmeniť heslo",
+ "priority_max": "najvyššia",
+ "account_usage_limits_reset_daily": "Limity používania sa obnovujú denne o polnoci (UTC)",
+ "account_usage_unlimited": "Nekonečné",
+ "prefs_users_delete_button": "Odstrániť používateľa",
+ "prefs_notifications_min_priority_any": "Akákoľvek priorita",
+ "account_tokens_dialog_expires_label": "Platnosť prístupového tokenu vyprší za",
+ "account_basics_phone_numbers_title": "Telefónne čísla",
+ "prefs_notifications_delete_after_title": "Odstrániť oznámenia",
+ "account_upgrade_dialog_interval_yearly_discount_save": "ušetríte {{discount}}%",
+ "prefs_users_dialog_title_edit": "Upraviť používateľa",
+ "account_basics_password_dialog_current_password_label": "Aktuálne heslo",
+ "prefs_notifications_min_priority_low_and_higher": "Nízka priorita a vyššia",
+ "account_tokens_dialog_button_update": "Aktualizovať token",
+ "account_upgrade_dialog_tier_features_attachment_total_size": "{{totalsize}} celkový úložný priestor",
+ "prefs_reservations_table_everyone_write_only": "Môžem publikovať a odoberať, každý môže publikovať",
+ "prefs_appearance_title": "Vzhlad",
+ "account_tokens_table_cannot_delete_or_edit": "Nie je možné upraviť alebo odstrániť aktuálny token relácie",
+ "prefs_notifications_sound_play": "Prehrať vybraný zvuk",
+ "account_tokens_table_last_access_header": "Posledný prístup",
+ "account_tokens_table_last_origin_tooltip": "Z IP adresy {{ip}}, kliknite na vyhľadávanie",
+ "account_usage_reservations_title": "Rezervované témy",
+ "account_upgrade_dialog_tier_price_per_month": "mesiac",
+ "account_usage_calls_none": "S týmto účtom nie je možné uskutočňovať žiadne telefonické hovory",
+ "account_tokens_table_current_session": "Aktuálna relácia prehliadača",
+ "account_upgrade_dialog_button_pay_now": "Zaplatiť a predplatiť si",
+ "subscribe_dialog_subscribe_use_another_label": "Použiť iný server",
+ "reservation_delete_dialog_action_delete_title": "Odstrániť správy a prílohy uložené v medzipamäti",
+ "account_basics_phone_numbers_dialog_code_label": "Overovací kód",
+ "reservation_delete_dialog_action_delete_description": "Správy a prílohy uložené v medzipamäti sa natrvalo vymažú. Túto akciu nemožno vrátiť späť.",
+ "account_basics_tier_paid_until": "Predplatné zaplatené do {{date}} s automatickou obnovou",
+ "account_usage_attachment_storage_description": "{{filesize}} na súbor, vymazaný po {{expiry}}",
+ "prefs_notifications_delete_after_one_month_description": "Oznámenia sa automaticky odstránia po jednom mesiaci",
+ "account_basics_phone_numbers_dialog_verify_button_call": "Zavolajte mi",
+ "prefs_users_dialog_base_url_label": "URL adresa služby, napr. https://ntfy.sh",
+ "account_usage_emails_title": "Odoslané emaily",
+ "account_basics_phone_numbers_dialog_channel_sms": "SMS",
+ "account_upgrade_dialog_tier_selected_label": "Vybrané",
+ "account_upgrade_dialog_button_update_subscription": "Aktualizovať predplatné",
+ "priority_high": "vysoká",
+ "account_delete_dialog_billing_warning": "Odstránením konta sa okamžite zruší aj vaše fakturačné predplatné. Už nebudete mať prístup k fakturačnému panelu.",
+ "prefs_notifications_min_priority_description_max": "Zobraziť oznámenia, ak je priorita 5 (max)",
+ "subscribe_dialog_login_description": "Táto téma je chránená heslom. Ak sa chcete prihlásiť na odber témy, zadajte používateľské meno a heslo.",
+ "account_upgrade_dialog_reservations_warning_other": "Vybraná úroveň umožňuje menej rezervovaných tém ako vaša aktuálna úroveň. Pred zmenou úrovne vymažte aspoň {{count}} rezervácií . Rezervácie môžete odstrániť v Nastaveniach.",
+ "prefs_users_dialog_title_add": "Pridať používateľa",
+ "account_tokens_dialog_button_create": "Vytvoriť token",
+ "account_tokens_table_create_token_button": "Vytvoriť prístupový token"
}
From d2e2791729bc70062da1b415def907a65a35b9a6 Mon Sep 17 00:00:00 2001
From: wunter8
Date: Sun, 17 Sep 2023 10:39:59 -0600
Subject: [PATCH 055/182] Add instructions for local-only email publishing
---
docs/config.md | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/docs/config.md b/docs/config.md
index bb7f7e1b..03a624e8 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -466,6 +466,31 @@ $ dig A mx1.ntfy.sh +short
3.139.215.220
```
+### Local-only email
+If you want to send emails from an internal service on the same network as your ntfy instance, you do not need to
+worry about DNS records at all. Define a port for the SMTP server and pick an SMTP server domain (can be
+anything).
+
+=== "/etc/ntfy/server.yml"
+ ``` yaml
+ smtp-server-listen: ":25"
+ smtp-server-domain: "example.com"
+ smtp-server-addr-prefix: "ntfy-" # optional
+ ```
+
+Then, in the email settings of your internal service, set the SMTP server address to the IP address of your
+ntfy instance. Set the port to the value you defined in `smtp-server-listen`. Leave any username and password
+fields empty. In the "From" address, pick anything (e.g., "alerts@ntfy.sh"); the value doesn't matter.
+In the "To" address, put in an email address that follows this pattern: `[topic]@[smtp-server-domain]` (or
+`[smtp-server-addr-prefix][topic]@[smtp-server-domain]` if you set `smtp-server-addr-prefix`).
+
+So if you used `example.com` as the SMTP server domain, and you want to send a message to the `email-alerts`
+topic, set the "To" address to `email-alerts@example.com`. If the topic has access restrictions, you will need
+to include an access token in the "To" address, such as `email-alerts+tk_AbC123dEf456@example.com`.
+
+If the internal service lets you use define an email "Subject", it will become the title of the notification.
+The body of the email will become the message of the notification.
+
## Behind a proxy (TLS, etc.)
!!! warning
If you are running ntfy behind a proxy, you must set the `behind-proxy` flag. Otherwise, all visitors are
From b05d27ce459dce8f30b8143187b661fd7dabd2c4 Mon Sep 17 00:00:00 2001
From: 109247019824
Date: Sun, 17 Sep 2023 19:03:10 +0000
Subject: [PATCH 056/182] Translated using Weblate (Bulgarian)
Currently translated at 87.6% (335 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/bg/
---
web/public/static/langs/bg.json | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/bg.json b/web/public/static/langs/bg.json
index 1d1066f6..d3b73449 100644
--- a/web/public/static/langs/bg.json
+++ b/web/public/static/langs/bg.json
@@ -318,5 +318,20 @@
"account_upgrade_dialog_tier_features_emails_one": "{{emails}} ел. писмо на ден",
"account_upgrade_dialog_tier_features_emails_other": "{{emails}} ел. писма на ден",
"account_upgrade_dialog_tier_features_calls_one": "{{calls}} телефонни обаждания на ден",
- "account_usage_attachment_storage_description": "{{filesize}} на файл, изтриване след {{expiry}}"
+ "account_usage_attachment_storage_description": "{{filesize}} на файл, изтриване след {{expiry}}",
+ "account_upgrade_dialog_billing_contact_email": "За въпроси относно плащанията се свържете с нас.",
+ "account_upgrade_dialog_tier_current_label": "Текущо",
+ "account_upgrade_dialog_billing_contact_website": "За въпроси относно плащанията се обърнете към страницата.",
+ "account_upgrade_dialog_button_cancel_subscription": "Прекратяване на абонамент",
+ "account_upgrade_dialog_tier_features_attachment_file_size": "{{filesize}} на файл",
+ "account_upgrade_dialog_reservations_warning_one": "Избраното ниво разрешава по-малко резервирани теми, от колкото текущото. Преди промяна на нивото изтрийте най-малко една резервирана тема . Можете да премахвате теми в Настройки.",
+ "account_tokens_title": "Кодове за достъп",
+ "account_upgrade_dialog_tier_price_billed_monthly": "{{price}} на година. Плаща се всеки месец.",
+ "account_upgrade_dialog_tier_price_billed_yearly": "{{price}} плащане на година. Спестявате {{save}}.",
+ "account_upgrade_dialog_tier_features_attachment_total_size": "{{totalsize}} общ обем",
+ "account_upgrade_dialog_tier_price_per_month": "на месец",
+ "account_upgrade_dialog_button_pay_now": "Плащане и абониране",
+ "account_upgrade_dialog_tier_selected_label": "Избрано",
+ "account_upgrade_dialog_button_update_subscription": "Премяна на абонамент",
+ "account_upgrade_dialog_reservations_warning_other": "Избраното ниво разрешава по-малко резервирани теми, от колкото текущото. Преди промяна на нивото изтрийте най-малко {{count}} резервирани теми . Можете да премахвате теми в Настройки."
}
From d10a5df3dff623661a6f30a326fe42809d69f8d9 Mon Sep 17 00:00:00 2001
From: Federico Nellen
Date: Mon, 18 Sep 2023 13:50:55 +0000
Subject: [PATCH 057/182] Translated using Weblate (Italian)
Currently translated at 77.4% (296 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/it/
---
web/public/static/langs/it.json | 28 +++++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/it.json b/web/public/static/langs/it.json
index 72cee7d6..9d030c14 100644
--- a/web/public/static/langs/it.json
+++ b/web/public/static/langs/it.json
@@ -268,5 +268,31 @@
"publish_dialog_chip_call_no_verified_numbers_tooltip": "Nessun numero verificato",
"account_basics_phone_numbers_title": "Numeri di telefono",
"account_basics_phone_numbers_dialog_description": "Per usare la funzionalità di notifica tramite chiamata telefonica, devi aggiungere e verificare almeno un numero di telefono. La verifica può essere fatta tramite SMS o chiamata telefonica.",
- "account_upgrade_dialog_tier_features_reservations_one": "{{reservations}} topic riservato"
+ "account_upgrade_dialog_tier_features_reservations_one": "{{reservations}} topic riservato",
+ "account_upgrade_dialog_billing_contact_email": "Per domande di fatturazione, contattaci direttamente.",
+ "account_upgrade_dialog_tier_current_label": "Attuale",
+ "account_basics_phone_numbers_dialog_number_label": "Numero di telefono",
+ "account_basics_phone_numbers_dialog_check_verification_button": "Conferma codice",
+ "account_basics_phone_numbers_dialog_verify_button_sms": "Invia SMS",
+ "account_basics_phone_numbers_no_phone_numbers_yet": "Ancora nessun numero di telefono",
+ "account_basics_phone_numbers_dialog_title": "Aggiungi un numero di telefono",
+ "account_upgrade_dialog_button_cancel": "Cancella",
+ "account_upgrade_dialog_billing_contact_website": "Per domande di fatturazione, visita per favore in nostro sito.",
+ "account_upgrade_dialog_button_cancel_subscription": "Cancella iscrizione",
+ "account_basics_phone_numbers_description": "Per notifiche via chiamata",
+ "account_basics_phone_numbers_copied_to_clipboard": "Numero di telefono copiato negli appunti",
+ "account_basics_phone_numbers_dialog_number_placeholder": "p. e. +391234567890",
+ "account_basics_phone_numbers_dialog_code_placeholder": "p. e. 123456",
+ "account_tokens_title": "Token d'accesso",
+ "account_upgrade_dialog_tier_price_billed_monthly": "{{price}} all'anno. Addebitato annualmente.",
+ "account_basics_phone_numbers_dialog_channel_call": "Chiama",
+ "account_upgrade_dialog_button_redirect_signup": "Iscriviti ora",
+ "account_upgrade_dialog_tier_price_billed_yearly": "{{price}} addebitato annualmente. Risparmia {{save}}.",
+ "account_upgrade_dialog_tier_price_per_month": "mese",
+ "account_upgrade_dialog_button_pay_now": "Paga ora e isciviti",
+ "account_basics_phone_numbers_dialog_code_label": "Codice di verifica",
+ "account_basics_phone_numbers_dialog_verify_button_call": "Chiamami",
+ "account_basics_phone_numbers_dialog_channel_sms": "SMS",
+ "account_upgrade_dialog_tier_selected_label": "Selezionato",
+ "account_upgrade_dialog_button_update_subscription": "Aggiorna iscrizione"
}
From bc802bfc77bddd4c13bf3a191c90c2e70ff4f64f Mon Sep 17 00:00:00 2001
From: Andrea Guarnaccia
Date: Wed, 20 Sep 2023 14:37:30 +0000
Subject: [PATCH 058/182] Translated using Weblate (Italian)
Currently translated at 80.1% (306 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/it/
---
web/public/static/langs/it.json | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/it.json b/web/public/static/langs/it.json
index 9d030c14..afca0797 100644
--- a/web/public/static/langs/it.json
+++ b/web/public/static/langs/it.json
@@ -294,5 +294,14 @@
"account_basics_phone_numbers_dialog_verify_button_call": "Chiamami",
"account_basics_phone_numbers_dialog_channel_sms": "SMS",
"account_upgrade_dialog_tier_selected_label": "Selezionato",
- "account_upgrade_dialog_button_update_subscription": "Aggiorna iscrizione"
+ "account_upgrade_dialog_button_update_subscription": "Aggiorna iscrizione",
+ "account_usage_attachment_storage_title": "Archivio allegati",
+ "account_delete_dialog_description": "Il tuo account sarà permanentemente cancellato assieme a tutti i tuoi dati presenti sul server. Dopo la cancellazione, la tua username non sarà disponibile per 7 giorni. Se desideri davvero procedere, inserisci la tua password nella seguente casella.",
+ "account_delete_dialog_button_cancel": "Annulla",
+ "account_usage_calls_title": "Chiamate effettuate",
+ "account_delete_description": "Elimina permanentemente il tuo account",
+ "account_delete_dialog_button_submit": "Elimina il tuo account permanentemente",
+ "account_usage_basis_ip_description": "Le statistiche di utilizzo e i limiti per questo account sono basati sul tuo indirizzo IP, quindi potrebbero essere in condivisione con altri utenti. I limiti mostrati sopra sono approssimazioni basate sui limiti esistenti.",
+ "account_usage_calls_none": "Questo account non può effettuare chiamate",
+ "account_delete_dialog_billing_warning": "Eliminando il tuo account perderai immediatamente il tuo abbonamento. Non potrai più accedere alla dashboard di fatturazione."
}
From ef15b44a1bb66346b8522060e4309a8554a614dc Mon Sep 17 00:00:00 2001
From: Jakob Malchow
Date: Wed, 20 Sep 2023 14:40:13 +0000
Subject: [PATCH 059/182] Translated using Weblate (Italian)
Currently translated at 80.1% (306 of 382 strings)
Translation: ntfy/Web app
Translate-URL: https://hosted.weblate.org/projects/ntfy/web/it/
---
web/public/static/langs/it.json | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web/public/static/langs/it.json b/web/public/static/langs/it.json
index afca0797..99d2cfff 100644
--- a/web/public/static/langs/it.json
+++ b/web/public/static/langs/it.json
@@ -303,5 +303,6 @@
"account_delete_dialog_button_submit": "Elimina il tuo account permanentemente",
"account_usage_basis_ip_description": "Le statistiche di utilizzo e i limiti per questo account sono basati sul tuo indirizzo IP, quindi potrebbero essere in condivisione con altri utenti. I limiti mostrati sopra sono approssimazioni basate sui limiti esistenti.",
"account_usage_calls_none": "Questo account non può effettuare chiamate",
- "account_delete_dialog_billing_warning": "Eliminando il tuo account perderai immediatamente il tuo abbonamento. Non potrai più accedere alla dashboard di fatturazione."
+ "account_delete_dialog_billing_warning": "Eliminando il tuo account perderai immediatamente il tuo abbonamento. Non potrai più accedere alla dashboard di fatturazione.",
+ "account_delete_dialog_label": "Password"
}
From beffe4a1f243dd4bccd442e0012aabd9949a61f0 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 11:02:59 -0400
Subject: [PATCH 060/182] Thank you @spartan for your sponsorship
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 6379c7d2..f94594be 100644
--- a/README.md
+++ b/README.md
@@ -149,6 +149,7 @@ account costs. Even small donations are very much appreciated. A big fat **Thank
+
I'd also like to thank JetBrains for their awesome [IntelliJ IDEA](https://www.jetbrains.com/idea/),
and [DigitalOcean](https://m.do.co/c/442b929528db) (*referral link*) for supporting the project:
From 418fc98d1a2f32aacb4ecf823d8943117b3d4cd4 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 11:05:21 -0400
Subject: [PATCH 061/182] Bump deps
---
go.mod | 36 +-
go.sum | 36 ++
web/package-lock.json | 814 ++++++++++++++++++++++--------------------
3 files changed, 474 insertions(+), 412 deletions(-)
diff --git a/go.mod b/go.mod
index 8e493e3b..05fb154b 100644
--- a/go.mod
+++ b/go.mod
@@ -3,8 +3,8 @@ module heckel.io/ntfy
go 1.18
require (
- cloud.google.com/go/firestore v1.12.0 // indirect
- cloud.google.com/go/storage v1.32.0 // indirect
+ cloud.google.com/go/firestore v1.13.0 // indirect
+ cloud.google.com/go/storage v1.33.0 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/emersion/go-smtp v0.18.0
@@ -14,12 +14,12 @@ require (
github.com/olebedev/when v1.0.0
github.com/stretchr/testify v1.8.1
github.com/urfave/cli/v2 v2.25.7
- golang.org/x/crypto v0.12.0
- golang.org/x/oauth2 v0.11.0 // indirect
+ golang.org/x/crypto v0.13.0
+ golang.org/x/oauth2 v0.12.0 // indirect
golang.org/x/sync v0.3.0
- golang.org/x/term v0.11.0
+ golang.org/x/term v0.12.0
golang.org/x/time v0.3.0
- google.golang.org/api v0.138.0
+ google.golang.org/api v0.142.0
gopkg.in/yaml.v2 v2.4.0
)
@@ -35,7 +35,7 @@ require (
)
require (
- cloud.google.com/go v0.110.7 // indirect
+ cloud.google.com/go v0.110.8 // indirect
cloud.google.com/go/compute v1.23.0 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.2 // indirect
@@ -51,30 +51,30 @@ require (
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
- github.com/google/s2a-go v0.1.5 // indirect
+ github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.3.1 // indirect
- github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
+ github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.44.0 // indirect
- github.com/prometheus/procfs v0.11.1 // indirect
+ github.com/prometheus/procfs v0.12.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.opencensus.io v0.24.0 // indirect
- golang.org/x/net v0.14.0 // indirect
- golang.org/x/sys v0.11.0 // indirect
- golang.org/x/text v0.12.0 // indirect
+ golang.org/x/net v0.15.0 // indirect
+ golang.org/x/sys v0.12.0 // indirect
+ golang.org/x/text v0.13.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
- google.golang.org/appengine v1.6.7 // indirect
+ google.golang.org/appengine v1.6.8 // indirect
google.golang.org/appengine/v2 v2.0.5 // indirect
- google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
- google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
- google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
- google.golang.org/grpc v1.57.0 // indirect
+ google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 // indirect
+ google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13 // indirect
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
+ google.golang.org/grpc v1.58.2 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
diff --git a/go.sum b/go.sum
index 173e8e9c..046695e1 100644
--- a/go.sum
+++ b/go.sum
@@ -2,18 +2,24 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.110.7 h1:rJyC7nWRg2jWGZ4wSJ5nY65GTdYJkg0cd/uXb+ACI6o=
cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI=
+cloud.google.com/go v0.110.8 h1:tyNdfIxjzaWctIiLYOTalaLKZ17SI44SKFW26QbOhME=
+cloud.google.com/go v0.110.8/go.mod h1:Iz8AkXJf1qmxC3Oxoep8R1T36w8B92yU29PcBhHO5fk=
cloud.google.com/go/compute v1.23.0 h1:tP41Zoavr8ptEqaW6j+LQOnyBBhO7OkOMAGrgLopTwY=
cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM=
cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY=
cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA=
cloud.google.com/go/firestore v1.12.0 h1:aeEA/N7DW7+l2u5jtkO8I0qv0D95YwjggD8kUHrTHO4=
cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4=
+cloud.google.com/go/firestore v1.13.0 h1:/3S4RssUV4GO/kvgJZB+tayjhOfyAHs+KcpJgRVu/Qk=
+cloud.google.com/go/firestore v1.13.0/go.mod h1:QojqqOh8IntInDUSTAh0c8ZsPYAr68Ma8c5DWOy8xb8=
cloud.google.com/go/iam v1.1.2 h1:gacbrBdWcoVmGLozRuStX45YKvJtzIjJdAolzUs1sm4=
cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU=
cloud.google.com/go/longrunning v0.5.1 h1:Fr7TXftcqTudoyRJa113hyaqlGdiBQkp0Gq7tErFDWI=
cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc=
cloud.google.com/go/storage v1.32.0 h1:5w6DxEGOnktmJHarxAOUywxVW9lbNWIzlzzUltG/3+o=
cloud.google.com/go/storage v1.32.0/go.mod h1:Hhh/dogNRGca7IWv1RC2YqEn0c0G77ctA/OxflYkiD8=
+cloud.google.com/go/storage v1.33.0 h1:PVrDOkIC8qQVa1P3SXGpQvfuJhN2LHOoyZvWs8D2X5M=
+cloud.google.com/go/storage v1.33.0/go.mod h1:Hhh/dogNRGca7IWv1RC2YqEn0c0G77ctA/OxflYkiD8=
firebase.google.com/go/v4 v4.12.0 h1:I6dCkcWUMFNkFdWgzlf8SLWecQnKdFgJhMv5fT9l1qI=
firebase.google.com/go/v4 v4.12.0/go.mod h1:60c36dWLK4+j05Vw5XMllek3b3PCynU3BfI46OSwsUE=
github.com/AlekSi/pointer v1.2.0 h1:glcy/gc4h8HnG2Z3ZECSzZ1IX1x2JxRVuDzaJwQE0+w=
@@ -97,6 +103,8 @@ github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN
github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw=
github.com/google/s2a-go v0.1.5 h1:8IYp3w9nysqv3JH+NJgXJzGbDHzLOTj43BmSkp+O7qg=
github.com/google/s2a-go v0.1.5/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
+github.com/google/s2a-go v0.1.7 h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o=
+github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
@@ -104,6 +112,8 @@ github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4=
github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/enterprise-certificate-proxy v0.2.5 h1:UR4rDjcgpgEnqpIEvkiqTYKBCKLNmlge2eVjoZfySzM=
github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w=
+github.com/googleapis/enterprise-certificate-proxy v0.3.1 h1:SBWmZhjUDRorQxrN0nwzf+AHBxnbFjViHQS4P0yVpmQ=
+github.com/googleapis/enterprise-certificate-proxy v0.3.1/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0=
github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56etFpas=
github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
@@ -131,6 +141,8 @@ github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdO
github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=
github.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI=
github.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY=
+github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
+github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
@@ -162,6 +174,8 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y
golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk=
golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw=
+golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck=
+golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
@@ -183,10 +197,14 @@ golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qx
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
+golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8=
+golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.11.0 h1:vPL4xzxBM4niKCW6g9whtaWVXTJf1U5e4aZxxFx/gbU=
golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk=
+golang.org/x/oauth2 v0.12.0 h1:smVPGxink+n1ZI5pkQa8y6fZT0RW0MgCO5bFpepy4B4=
+golang.org/x/oauth2 v0.12.0/go.mod h1:A74bZ3aGXgCY0qaIC9Ahg6Lglin4AMAco8cIv9baba4=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -206,10 +224,14 @@ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
+golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0=
golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU=
+golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU=
+golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
@@ -218,6 +240,8 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
+golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=
+golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -234,10 +258,14 @@ golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3j
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
google.golang.org/api v0.138.0 h1:K/tVp05MxNVbHShRw9m7e9VJGdagNeTdMzqPH7AUqr0=
google.golang.org/api v0.138.0/go.mod h1:4xyob8CxC+0GChNBvEUAk8VBKNvYOTWM9T3v3UfRxuY=
+google.golang.org/api v0.142.0 h1:mf+7EJ94fi5ZcnpPy+m0Yv2dkz8bKm+UL0snTCuwXlY=
+google.golang.org/api v0.142.0/go.mod h1:zJAN5o6HRqR7O+9qJUFOWrZkYE66RH+efPBdTLA4xBA=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
+google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM=
+google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds=
google.golang.org/appengine/v2 v2.0.4 h1:aAAPYixP9EfTJjNO6F46afaxp+jfzb0VgwVjMeLBtF4=
google.golang.org/appengine/v2 v2.0.4/go.mod h1:WoEXGoXNfa0mLvaH5sV3ZSGXwVmy8yf7Z1JKf3J3wLI=
google.golang.org/appengine/v2 v2.0.5 h1:4C+F3Cd3L2nWEfSmFEZDPjQvDwL8T0YCeZBysZifP3k=
@@ -250,14 +278,20 @@ google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 h1:Iveh6tGCJkHAjJg
google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d h1:VBu5YqKPv6XiJ199exd8Br+Aetz+o08F+PLMnwJQHAY=
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
+google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 h1:vlzZttNJGVqTsRFU9AmdnrcO1Znh8Ew9kCD//yjigk0=
+google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:CCviP9RmpZ1mxVr8MUjCnSiY09IbAXZxhLE6EhHIdPU=
google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 h1:WGq4lvB/mlicysM/dUT3SBvijH4D3sm/Ny1A4wmt2CI=
google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d h1:DoPTO70H+bcDXcd39vOqb2viZxgqeBeSGtZ55yZU4/Q=
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
+google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13 h1:U7+wNaVuSTaUqNvK2+osJ9ejEZxbjHHk8F2b6Hpx0AE=
+google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:RdyHbowztCGQySiCvQPgWQWgWhGnouTdCflKoDBt32U=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 h1:lv6/DhyiFFGsmzxbsUUTOkN29II+zeWHxvT8Lpdxsv0=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 h1:N3bU/SQDCDyD6R528GJ/PwW9KjYcJA3dgyH+MovAkIM=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:KSqppvjFjtoCI+KGd4PELB0qLNxdJHRGqRI09mB6pQA=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
@@ -268,6 +302,8 @@ google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAG
google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ=
google.golang.org/grpc v1.57.0 h1:kfzNeI/klCGD2YPMUlaGNT3pxvYfga7smW3Vth8Zsiw=
google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo=
+google.golang.org/grpc v1.58.2 h1:SXUpjxeVF3FKrTYQI4f4KvbGD5u2xccdYdurwowix5I=
+google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
diff --git a/web/package-lock.json b/web/package-lock.json
index cb15d61f..d4ba68bf 100644
--- a/web/package-lock.json
+++ b/web/package-lock.json
@@ -80,30 +80,30 @@
}
},
"node_modules/@babel/compat-data": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz",
- "integrity": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz",
+ "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.11.tgz",
- "integrity": "sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.20.tgz",
+ "integrity": "sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.22.10",
- "@babel/generator": "^7.22.10",
- "@babel/helper-compilation-targets": "^7.22.10",
- "@babel/helper-module-transforms": "^7.22.9",
- "@babel/helpers": "^7.22.11",
- "@babel/parser": "^7.22.11",
- "@babel/template": "^7.22.5",
- "@babel/traverse": "^7.22.11",
- "@babel/types": "^7.22.11",
+ "@babel/code-frame": "^7.22.13",
+ "@babel/generator": "^7.22.15",
+ "@babel/helper-compilation-targets": "^7.22.15",
+ "@babel/helper-module-transforms": "^7.22.20",
+ "@babel/helpers": "^7.22.15",
+ "@babel/parser": "^7.22.16",
+ "@babel/template": "^7.22.15",
+ "@babel/traverse": "^7.22.20",
+ "@babel/types": "^7.22.19",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
@@ -119,12 +119,12 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz",
- "integrity": "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz",
+ "integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==",
"dev": true,
"dependencies": {
- "@babel/types": "^7.22.10",
+ "@babel/types": "^7.22.15",
"@jridgewell/gen-mapping": "^0.3.2",
"@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
@@ -146,25 +146,25 @@
}
},
"node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz",
- "integrity": "sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz",
+ "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==",
"dev": true,
"dependencies": {
- "@babel/types": "^7.22.10"
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz",
- "integrity": "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz",
+ "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.22.9",
- "@babel/helper-validator-option": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.15",
"browserslist": "^4.21.9",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
@@ -174,15 +174,15 @@
}
},
"node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.11.tgz",
- "integrity": "sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz",
+ "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.22.5",
"@babel/helper-environment-visitor": "^7.22.5",
"@babel/helper-function-name": "^7.22.5",
- "@babel/helper-member-expression-to-functions": "^7.22.5",
+ "@babel/helper-member-expression-to-functions": "^7.22.15",
"@babel/helper-optimise-call-expression": "^7.22.5",
"@babel/helper-replace-supers": "^7.22.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
@@ -197,9 +197,9 @@
}
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz",
- "integrity": "sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz",
+ "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.22.5",
@@ -230,9 +230,9 @@
}
},
"node_modules/@babel/helper-environment-visitor": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz",
- "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
+ "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
"dev": true,
"engines": {
"node": ">=6.9.0"
@@ -264,39 +264,39 @@
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz",
- "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.15.tgz",
+ "integrity": "sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==",
"dev": true,
"dependencies": {
- "@babel/types": "^7.22.5"
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz",
- "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
+ "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
"dependencies": {
- "@babel/types": "^7.22.5"
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz",
- "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz",
+ "integrity": "sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==",
"dev": true,
"dependencies": {
- "@babel/helper-environment-visitor": "^7.22.5",
- "@babel/helper-module-imports": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-module-imports": "^7.22.15",
"@babel/helper-simple-access": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/helper-validator-identifier": "^7.22.5"
+ "@babel/helper-validator-identifier": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -327,14 +327,14 @@
}
},
"node_modules/@babel/helper-remap-async-to-generator": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz",
- "integrity": "sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz",
+ "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.22.5",
- "@babel/helper-environment-visitor": "^7.22.5",
- "@babel/helper-wrap-function": "^7.22.9"
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-wrap-function": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
@@ -344,13 +344,13 @@
}
},
"node_modules/@babel/helper-replace-supers": {
- "version": "7.22.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz",
- "integrity": "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz",
+ "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==",
"dev": true,
"dependencies": {
- "@babel/helper-environment-visitor": "^7.22.5",
- "@babel/helper-member-expression-to-functions": "^7.22.5",
+ "@babel/helper-environment-visitor": "^7.22.20",
+ "@babel/helper-member-expression-to-functions": "^7.22.15",
"@babel/helper-optimise-call-expression": "^7.22.5"
},
"engines": {
@@ -405,56 +405,56 @@
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz",
- "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
+ "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz",
- "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz",
+ "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-wrap-function": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz",
- "integrity": "sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz",
+ "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==",
"dev": true,
"dependencies": {
"@babel/helper-function-name": "^7.22.5",
- "@babel/template": "^7.22.5",
- "@babel/types": "^7.22.10"
+ "@babel/template": "^7.22.15",
+ "@babel/types": "^7.22.19"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.11.tgz",
- "integrity": "sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.15.tgz",
+ "integrity": "sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==",
"dev": true,
"dependencies": {
- "@babel/template": "^7.22.5",
- "@babel/traverse": "^7.22.11",
- "@babel/types": "^7.22.11"
+ "@babel/template": "^7.22.15",
+ "@babel/traverse": "^7.22.15",
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
- "version": "7.22.13",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz",
- "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz",
+ "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.22.5",
+ "@babel/helper-validator-identifier": "^7.22.20",
"chalk": "^2.4.2",
"js-tokens": "^4.0.0"
},
@@ -463,9 +463,9 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.22.14",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.14.tgz",
- "integrity": "sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==",
+ "version": "7.22.16",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz",
+ "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==",
"dev": true,
"bin": {
"parser": "bin/babel-parser.js"
@@ -475,9 +475,9 @@
}
},
"node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz",
- "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz",
+ "integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -490,14 +490,14 @@
}
},
"node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz",
- "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz",
+ "integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
- "@babel/plugin-transform-optional-chaining": "^7.22.5"
+ "@babel/plugin-transform-optional-chaining": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
@@ -510,7 +510,6 @@
"version": "7.21.0-placeholder-for-preset-env.2",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
"integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
- "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.",
"dev": true,
"engines": {
"node": ">=6.9.0"
@@ -770,9 +769,9 @@
}
},
"node_modules/@babel/plugin-transform-async-generator-functions": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.11.tgz",
- "integrity": "sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz",
+ "integrity": "sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==",
"dev": true,
"dependencies": {
"@babel/helper-environment-visitor": "^7.22.5",
@@ -820,9 +819,9 @@
}
},
"node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz",
- "integrity": "sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.15.tgz",
+ "integrity": "sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -868,18 +867,18 @@
}
},
"node_modules/@babel/plugin-transform-classes": {
- "version": "7.22.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz",
- "integrity": "sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz",
+ "integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.22.5",
- "@babel/helper-compilation-targets": "^7.22.6",
+ "@babel/helper-compilation-targets": "^7.22.15",
"@babel/helper-environment-visitor": "^7.22.5",
"@babel/helper-function-name": "^7.22.5",
"@babel/helper-optimise-call-expression": "^7.22.5",
"@babel/helper-plugin-utils": "^7.22.5",
- "@babel/helper-replace-supers": "^7.22.5",
+ "@babel/helper-replace-supers": "^7.22.9",
"@babel/helper-split-export-declaration": "^7.22.6",
"globals": "^11.1.0"
},
@@ -907,9 +906,9 @@
}
},
"node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.22.10",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz",
- "integrity": "sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.15.tgz",
+ "integrity": "sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -1001,9 +1000,9 @@
}
},
"node_modules/@babel/plugin-transform-for-of": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz",
- "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz",
+ "integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -1111,12 +1110,12 @@
}
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.11.tgz",
- "integrity": "sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.15.tgz",
+ "integrity": "sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==",
"dev": true,
"dependencies": {
- "@babel/helper-module-transforms": "^7.22.9",
+ "@babel/helper-module-transforms": "^7.22.15",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/helper-simple-access": "^7.22.5"
},
@@ -1225,16 +1224,16 @@
}
},
"node_modules/@babel/plugin-transform-object-rest-spread": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.11.tgz",
- "integrity": "sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz",
+ "integrity": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.22.9",
- "@babel/helper-compilation-targets": "^7.22.10",
+ "@babel/helper-compilation-targets": "^7.22.15",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.22.5"
+ "@babel/plugin-transform-parameters": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
@@ -1276,9 +1275,9 @@
}
},
"node_modules/@babel/plugin-transform-optional-chaining": {
- "version": "7.22.12",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.12.tgz",
- "integrity": "sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.15.tgz",
+ "integrity": "sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
@@ -1293,9 +1292,9 @@
}
},
"node_modules/@babel/plugin-transform-parameters": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz",
- "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz",
+ "integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5"
@@ -1557,17 +1556,17 @@
}
},
"node_modules/@babel/preset-env": {
- "version": "7.22.14",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.14.tgz",
- "integrity": "sha512-daodMIoVo+ol/g+//c/AH+szBkFj4STQUikvBijRGL72Ph+w+AMTSh55DUETe8KJlPlDT1k/mp7NBfOuiWmoig==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.20.tgz",
+ "integrity": "sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==",
"dev": true,
"dependencies": {
- "@babel/compat-data": "^7.22.9",
- "@babel/helper-compilation-targets": "^7.22.10",
+ "@babel/compat-data": "^7.22.20",
+ "@babel/helper-compilation-targets": "^7.22.15",
"@babel/helper-plugin-utils": "^7.22.5",
- "@babel/helper-validator-option": "^7.22.5",
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5",
+ "@babel/helper-validator-option": "^7.22.15",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.15",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.15",
"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
@@ -1588,39 +1587,39 @@
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.22.5",
- "@babel/plugin-transform-async-generator-functions": "^7.22.11",
+ "@babel/plugin-transform-async-generator-functions": "^7.22.15",
"@babel/plugin-transform-async-to-generator": "^7.22.5",
"@babel/plugin-transform-block-scoped-functions": "^7.22.5",
- "@babel/plugin-transform-block-scoping": "^7.22.10",
+ "@babel/plugin-transform-block-scoping": "^7.22.15",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-class-static-block": "^7.22.11",
- "@babel/plugin-transform-classes": "^7.22.6",
+ "@babel/plugin-transform-classes": "^7.22.15",
"@babel/plugin-transform-computed-properties": "^7.22.5",
- "@babel/plugin-transform-destructuring": "^7.22.10",
+ "@babel/plugin-transform-destructuring": "^7.22.15",
"@babel/plugin-transform-dotall-regex": "^7.22.5",
"@babel/plugin-transform-duplicate-keys": "^7.22.5",
"@babel/plugin-transform-dynamic-import": "^7.22.11",
"@babel/plugin-transform-exponentiation-operator": "^7.22.5",
"@babel/plugin-transform-export-namespace-from": "^7.22.11",
- "@babel/plugin-transform-for-of": "^7.22.5",
+ "@babel/plugin-transform-for-of": "^7.22.15",
"@babel/plugin-transform-function-name": "^7.22.5",
"@babel/plugin-transform-json-strings": "^7.22.11",
"@babel/plugin-transform-literals": "^7.22.5",
"@babel/plugin-transform-logical-assignment-operators": "^7.22.11",
"@babel/plugin-transform-member-expression-literals": "^7.22.5",
"@babel/plugin-transform-modules-amd": "^7.22.5",
- "@babel/plugin-transform-modules-commonjs": "^7.22.11",
+ "@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@babel/plugin-transform-modules-systemjs": "^7.22.11",
"@babel/plugin-transform-modules-umd": "^7.22.5",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5",
"@babel/plugin-transform-new-target": "^7.22.5",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",
"@babel/plugin-transform-numeric-separator": "^7.22.11",
- "@babel/plugin-transform-object-rest-spread": "^7.22.11",
+ "@babel/plugin-transform-object-rest-spread": "^7.22.15",
"@babel/plugin-transform-object-super": "^7.22.5",
"@babel/plugin-transform-optional-catch-binding": "^7.22.11",
- "@babel/plugin-transform-optional-chaining": "^7.22.12",
- "@babel/plugin-transform-parameters": "^7.22.5",
+ "@babel/plugin-transform-optional-chaining": "^7.22.15",
+ "@babel/plugin-transform-parameters": "^7.22.15",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@babel/plugin-transform-property-literals": "^7.22.5",
@@ -1636,7 +1635,7 @@
"@babel/plugin-transform-unicode-regex": "^7.22.5",
"@babel/plugin-transform-unicode-sets-regex": "^7.22.5",
"@babel/preset-modules": "0.1.6-no-external-plugins",
- "@babel/types": "^7.22.11",
+ "@babel/types": "^7.22.19",
"babel-plugin-polyfill-corejs2": "^0.4.5",
"babel-plugin-polyfill-corejs3": "^0.8.3",
"babel-plugin-polyfill-regenerator": "^0.5.2",
@@ -1671,9 +1670,9 @@
"dev": true
},
"node_modules/@babel/runtime": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.11.tgz",
- "integrity": "sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz",
+ "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
@@ -1682,33 +1681,33 @@
}
},
"node_modules/@babel/template": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz",
- "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==",
+ "version": "7.22.15",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
+ "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
"dev": true,
"dependencies": {
- "@babel/code-frame": "^7.22.5",
- "@babel/parser": "^7.22.5",
- "@babel/types": "^7.22.5"
+ "@babel/code-frame": "^7.22.13",
+ "@babel/parser": "^7.22.15",
+ "@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.11.tgz",
- "integrity": "sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==",
+ "version": "7.22.20",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.20.tgz",
+ "integrity": "sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==",
"dev": true,
"dependencies": {
- "@babel/code-frame": "^7.22.10",
- "@babel/generator": "^7.22.10",
- "@babel/helper-environment-visitor": "^7.22.5",
+ "@babel/code-frame": "^7.22.13",
+ "@babel/generator": "^7.22.15",
+ "@babel/helper-environment-visitor": "^7.22.20",
"@babel/helper-function-name": "^7.22.5",
"@babel/helper-hoist-variables": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.22.11",
- "@babel/types": "^7.22.11",
+ "@babel/parser": "^7.22.16",
+ "@babel/types": "^7.22.19",
"debug": "^4.1.0",
"globals": "^11.1.0"
},
@@ -1717,12 +1716,12 @@
}
},
"node_modules/@babel/types": {
- "version": "7.22.11",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.11.tgz",
- "integrity": "sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==",
+ "version": "7.22.19",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.19.tgz",
+ "integrity": "sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==",
"dependencies": {
"@babel/helper-string-parser": "^7.22.5",
- "@babel/helper-validator-identifier": "^7.22.5",
+ "@babel/helper-validator-identifier": "^7.22.19",
"to-fast-properties": "^2.0.0"
},
"engines": {
@@ -2240,9 +2239,9 @@
}
},
"node_modules/@eslint-community/regexpp": {
- "version": "4.8.0",
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz",
- "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==",
+ "version": "4.8.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz",
+ "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
@@ -2272,9 +2271,9 @@
}
},
"node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "13.21.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz",
- "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==",
+ "version": "13.22.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz",
+ "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==",
"dev": true,
"dependencies": {
"type-fest": "^0.20.2"
@@ -2299,29 +2298,29 @@
}
},
"node_modules/@eslint/js": {
- "version": "8.48.0",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.48.0.tgz",
- "integrity": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==",
+ "version": "8.50.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz",
+ "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@floating-ui/core": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.4.1.tgz",
- "integrity": "sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==",
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.0.tgz",
+ "integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==",
"dependencies": {
- "@floating-ui/utils": "^0.1.1"
+ "@floating-ui/utils": "^0.1.3"
}
},
"node_modules/@floating-ui/dom": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.1.tgz",
- "integrity": "sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==",
+ "version": "1.5.3",
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz",
+ "integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==",
"dependencies": {
- "@floating-ui/core": "^1.4.1",
- "@floating-ui/utils": "^0.1.1"
+ "@floating-ui/core": "^1.4.2",
+ "@floating-ui/utils": "^0.1.3"
}
},
"node_modules/@floating-ui/react-dom": {
@@ -2337,9 +2336,9 @@
}
},
"node_modules/@floating-ui/utils": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.1.tgz",
- "integrity": "sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw=="
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.4.tgz",
+ "integrity": "sha512-qprfWkn82Iw821mcKofJ5Pk9wgioHicxcQMxx+5zt5GSKoqdWvgG5AxVmpmUUjzTLPVSH5auBrhI93Deayn/DA=="
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.11",
@@ -2444,19 +2443,17 @@
}
},
"node_modules/@mui/base": {
- "version": "5.0.0-beta.13",
- "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.13.tgz",
- "integrity": "sha512-uC0l97pBspfDAp+iz2cJq8YZ8Sd9i73V77+WzUiOAckIVEyCm5dyVDZCCO2/phmzckVEeZCGcytybkjMQuhPQw==",
+ "version": "5.0.0-beta.16",
+ "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.16.tgz",
+ "integrity": "sha512-OYxhC81c9bO0wobGcM8rrY5bRwpCXAI21BL0P2wz/2vTv4ek7ALz9+U5M8wgdmtRNUhmCmAB4L2WRwFRf5Cd8Q==",
"dependencies": {
- "@babel/runtime": "^7.22.10",
- "@emotion/is-prop-valid": "^1.2.1",
- "@floating-ui/react-dom": "^2.0.1",
+ "@babel/runtime": "^7.22.15",
+ "@floating-ui/react-dom": "^2.0.2",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.7",
+ "@mui/utils": "^5.14.10",
"@popperjs/core": "^2.11.8",
"clsx": "^2.0.0",
- "prop-types": "^15.8.1",
- "react-is": "^18.2.0"
+ "prop-types": "^15.8.1"
},
"engines": {
"node": ">=12.0.0"
@@ -2477,20 +2474,20 @@
}
},
"node_modules/@mui/core-downloads-tracker": {
- "version": "5.14.7",
- "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.7.tgz",
- "integrity": "sha512-sCWTUNElBPgB30iLvWe3PU7SIlTKZNf6/E/sko85iHVeHCM6WPkDw+y89CrZYjhFNmPqt2fIQM/pZu+rP2lFLA==",
+ "version": "5.14.10",
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.14.10.tgz",
+ "integrity": "sha512-kPHu/NhZq1k+vSZR5wq3AyUfD4bnfWAeuKpps0+8PS7ZHQ2Lyv1cXJh+PlFdCIOa0PK98rk3JPwMzS8BMhdHwQ==",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui"
}
},
"node_modules/@mui/icons-material": {
- "version": "5.14.7",
- "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.14.7.tgz",
- "integrity": "sha512-mWp4DwMa8c1Gx9yOEtPgxM4b+e6hAbtZyzfSubdBwrnEE6G5D2rbAJ5MB+If6kfI48JaYaJ5j8+zAdmZLuZc0A==",
+ "version": "5.14.9",
+ "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.14.9.tgz",
+ "integrity": "sha512-xTRQbDsogsJo7tY5Og8R9zbuG2q+KIPVIM6JQoKxtJlz9DPOw1u0T2fGrvwD+XAOVifQf6epNMcGCDLfJAz4Nw==",
"dependencies": {
- "@babel/runtime": "^7.22.10"
+ "@babel/runtime": "^7.22.15"
},
"engines": {
"node": ">=12.0.0"
@@ -2511,16 +2508,16 @@
}
},
"node_modules/@mui/material": {
- "version": "5.14.7",
- "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.7.tgz",
- "integrity": "sha512-jIZj9F7zMv6IlyaYDVv5M2Kp20jIX8c0kzuwteySHS/A0IvPVyomQEPtWc51MCbpDNCqzwoZUp3rQtA2lI8k7A==",
+ "version": "5.14.10",
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.10.tgz",
+ "integrity": "sha512-ejFMppnO+lzBXpzju+N4SSz0Mhmi5sihXUGcr5FxpgB6bfUP0Lpe32O0Sw/3s8xlmLEvG1fqVT0rRyAVMlCA+A==",
"dependencies": {
- "@babel/runtime": "^7.22.10",
- "@mui/base": "5.0.0-beta.13",
- "@mui/core-downloads-tracker": "^5.14.7",
- "@mui/system": "^5.14.7",
+ "@babel/runtime": "^7.22.15",
+ "@mui/base": "5.0.0-beta.16",
+ "@mui/core-downloads-tracker": "^5.14.10",
+ "@mui/system": "^5.14.10",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.7",
+ "@mui/utils": "^5.14.10",
"@types/react-transition-group": "^4.4.6",
"clsx": "^2.0.0",
"csstype": "^3.1.2",
@@ -2555,12 +2552,12 @@
}
},
"node_modules/@mui/private-theming": {
- "version": "5.14.7",
- "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.14.7.tgz",
- "integrity": "sha512-Y86+hmDnJab2Ka42PgxKpK3oL7EiacbeeX3X/lG9LGO0wSc45wZjHeTfIlVSkkUCkexiMKEJp5NlSjZhr27NRQ==",
+ "version": "5.14.10",
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.14.10.tgz",
+ "integrity": "sha512-f67xOj3H06wWDT9xBg7hVL/HSKNF+HG1Kx0Pm23skkbEqD2Ef2Lif64e5nPdmWVv+7cISCYtSuE2aeuzrZe78w==",
"dependencies": {
- "@babel/runtime": "^7.22.10",
- "@mui/utils": "^5.14.7",
+ "@babel/runtime": "^7.22.15",
+ "@mui/utils": "^5.14.10",
"prop-types": "^15.8.1"
},
"engines": {
@@ -2581,11 +2578,11 @@
}
},
"node_modules/@mui/styled-engine": {
- "version": "5.14.7",
- "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.14.7.tgz",
- "integrity": "sha512-hKBETEDsIAkL8/mBwPiQj/vw28OeIhMXC3Tvj4J2bb9snxAKpiZioR1PwqP+6P41twsC/GKBd0Vr9oaWYaHuMg==",
+ "version": "5.14.10",
+ "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.14.10.tgz",
+ "integrity": "sha512-EJckxmQHrsBvDbFu1trJkvjNw/1R7jfNarnqPSnL+jEQawCkQIqVELWLrlOa611TFtxSJGkdUfCFXeJC203HVg==",
"dependencies": {
- "@babel/runtime": "^7.22.10",
+ "@babel/runtime": "^7.22.15",
"@emotion/cache": "^11.11.0",
"csstype": "^3.1.2",
"prop-types": "^15.8.1"
@@ -2612,15 +2609,15 @@
}
},
"node_modules/@mui/system": {
- "version": "5.14.7",
- "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.14.7.tgz",
- "integrity": "sha512-jeZtHglc+Pi6qjGoopT6O4RqYXVBMqHVOsjMGP0hxGSSPm1T4gsAu7jU8eqGx9YwwjvvJ0eotTjFqw7iJ6qE2Q==",
+ "version": "5.14.10",
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.14.10.tgz",
+ "integrity": "sha512-QQmtTG/R4gjmLiL5ECQ7kRxLKDm8aKKD7seGZfbINtRVJDyFhKChA1a+K2bfqIAaBo1EMDv+6FWNT1Q5cRKjFA==",
"dependencies": {
- "@babel/runtime": "^7.22.10",
- "@mui/private-theming": "^5.14.7",
- "@mui/styled-engine": "^5.14.7",
+ "@babel/runtime": "^7.22.15",
+ "@mui/private-theming": "^5.14.10",
+ "@mui/styled-engine": "^5.14.10",
"@mui/types": "^7.2.4",
- "@mui/utils": "^5.14.7",
+ "@mui/utils": "^5.14.10",
"clsx": "^2.0.0",
"csstype": "^3.1.2",
"prop-types": "^15.8.1"
@@ -2664,13 +2661,12 @@
}
},
"node_modules/@mui/utils": {
- "version": "5.14.7",
- "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.14.7.tgz",
- "integrity": "sha512-RtheP/aBoPogVdi8vj8Vo2IFnRa4mZVmnD0RGlVZ49yF60rZs+xP4/KbpIrTr83xVs34QmHQ2aQ+IX7I0a0dDw==",
+ "version": "5.14.10",
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.14.10.tgz",
+ "integrity": "sha512-Rn+vYQX7FxkcW0riDX/clNUwKuOJFH45HiULxwmpgnzQoQr3A0lb+QYwaZ+FAkZrR7qLoHKmLQlcItu6LT0y/Q==",
"dependencies": {
- "@babel/runtime": "^7.22.10",
+ "@babel/runtime": "^7.22.15",
"@types/prop-types": "^15.7.5",
- "@types/react-is": "^18.2.1",
"prop-types": "^15.8.1",
"react-is": "^18.2.0"
},
@@ -2682,7 +2678,13 @@
"url": "https://opencollective.com/mui"
},
"peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
"node_modules/@nodelib/fs.scandir": {
@@ -2730,9 +2732,9 @@
}
},
"node_modules/@remix-run/router": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.8.0.tgz",
- "integrity": "sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==",
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.9.0.tgz",
+ "integrity": "sha512-bV63itrKBC0zdT27qYm6SDZHlkXwFL1xMBuhkn+X7l0+IIhNaH5wuuvZKp6eKhCD4KFhujhfhCT1YxXW6esUIA==",
"engines": {
"node": ">=14.0.0"
}
@@ -2770,9 +2772,9 @@
}
},
"node_modules/@types/node": {
- "version": "20.5.7",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.7.tgz",
- "integrity": "sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==",
+ "version": "20.6.4",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.4.tgz",
+ "integrity": "sha512-nU6d9MPY0NBUMiE/nXd2IIoC4OLvsLpwAjheoAeuzgvDZA1Cb10QYg+91AF6zQiKWRN5i1m07x6sMe0niBznoQ==",
"dev": true
},
"node_modules/@types/parse-json": {
@@ -2781,28 +2783,20 @@
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
},
"node_modules/@types/prop-types": {
- "version": "15.7.5",
- "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
- "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
+ "version": "15.7.7",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.7.tgz",
+ "integrity": "sha512-FbtmBWCcSa2J4zL781Zf1p5YUBXQomPEcep9QZCfRfQgTxz3pJWiDFLebohZ9fFntX5ibzOkSsrJ0TEew8cAog=="
},
"node_modules/@types/react": {
- "version": "18.2.21",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz",
- "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==",
+ "version": "18.2.22",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.22.tgz",
+ "integrity": "sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
- "node_modules/@types/react-is": {
- "version": "18.2.1",
- "resolved": "https://registry.npmjs.org/@types/react-is/-/react-is-18.2.1.tgz",
- "integrity": "sha512-wyUkmaaSZEzFZivD8F2ftSyAfk6L+DfFliVj/mYdOXbVjRcS87fQJLTnhk6dRZPuJjI+9g6RZJO4PNCngUrmyw==",
- "dependencies": {
- "@types/react": "*"
- }
- },
"node_modules/@types/react-transition-group": {
"version": "4.4.6",
"resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz",
@@ -2826,9 +2820,9 @@
"integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ=="
},
"node_modules/@types/trusted-types": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz",
- "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.4.tgz",
+ "integrity": "sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ==",
"dev": true
},
"node_modules/@types/unist": {
@@ -2940,15 +2934,15 @@
}
},
"node_modules/array-includes": {
- "version": "3.1.6",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
- "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz",
+ "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
- "get-intrinsic": "^1.1.3",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
+ "get-intrinsic": "^1.2.1",
"is-string": "^1.0.7"
},
"engines": {
@@ -2978,14 +2972,14 @@
}
},
"node_modules/array.prototype.flat": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
- "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz",
+ "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0"
},
"engines": {
@@ -2996,14 +2990,14 @@
}
},
"node_modules/array.prototype.flatmap": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
- "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz",
+ "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0"
},
"engines": {
@@ -3014,27 +3008,28 @@
}
},
"node_modules/array.prototype.tosorted": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
- "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz",
+ "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4",
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"es-shim-unscopables": "^1.0.0",
- "get-intrinsic": "^1.1.3"
+ "get-intrinsic": "^1.2.1"
}
},
"node_modules/arraybuffer.prototype.slice": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz",
- "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz",
+ "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==",
"dev": true,
"dependencies": {
"array-buffer-byte-length": "^1.0.0",
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1",
"get-intrinsic": "^1.2.1",
"is-array-buffer": "^3.0.2",
"is-shared-array-buffer": "^1.0.2"
@@ -3089,9 +3084,9 @@
}
},
"node_modules/axe-core": {
- "version": "4.7.2",
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz",
- "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==",
+ "version": "4.8.2",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.2.tgz",
+ "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==",
"dev": true,
"engines": {
"node": ">=4"
@@ -3135,13 +3130,13 @@
}
},
"node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.8.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz",
- "integrity": "sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==",
+ "version": "0.8.4",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.4.tgz",
+ "integrity": "sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==",
"dev": true,
"dependencies": {
"@babel/helper-define-polyfill-provider": "^0.4.2",
- "core-js-compat": "^3.31.0"
+ "core-js-compat": "^3.32.2"
},
"peerDependencies": {
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
@@ -3197,9 +3192,9 @@
}
},
"node_modules/browserslist": {
- "version": "4.21.10",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz",
- "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==",
+ "version": "4.21.11",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.11.tgz",
+ "integrity": "sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==",
"dev": true,
"funding": [
{
@@ -3216,10 +3211,10 @@
}
],
"dependencies": {
- "caniuse-lite": "^1.0.30001517",
- "electron-to-chromium": "^1.4.477",
+ "caniuse-lite": "^1.0.30001538",
+ "electron-to-chromium": "^1.4.526",
"node-releases": "^2.0.13",
- "update-browserslist-db": "^1.0.11"
+ "update-browserslist-db": "^1.0.13"
},
"bin": {
"browserslist": "cli.js"
@@ -3268,9 +3263,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001525",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001525.tgz",
- "integrity": "sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==",
+ "version": "1.0.30001538",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz",
+ "integrity": "sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==",
"dev": true,
"funding": [
{
@@ -3398,9 +3393,9 @@
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"node_modules/core-js-compat": {
- "version": "3.32.1",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.1.tgz",
- "integrity": "sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==",
+ "version": "3.32.2",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.32.2.tgz",
+ "integrity": "sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==",
"dev": true,
"dependencies": {
"browserslist": "^4.21.10"
@@ -3506,12 +3501,27 @@
"node": ">=0.10.0"
}
},
- "node_modules/define-properties": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
- "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
+ "node_modules/define-data-property": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz",
+ "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==",
"dev": true,
"dependencies": {
+ "get-intrinsic": "^1.2.1",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.0.1",
"has-property-descriptors": "^1.0.0",
"object-keys": "^1.1.1"
},
@@ -3586,9 +3596,9 @@
}
},
"node_modules/electron-to-chromium": {
- "version": "1.4.508",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.508.tgz",
- "integrity": "sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==",
+ "version": "1.4.528",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.528.tgz",
+ "integrity": "sha512-UdREXMXzLkREF4jA8t89FQjA8WHI6ssP38PMY4/4KhXFQbtImnghh4GkCgrtiZwLKUKVD2iTVXvDVQjfomEQuA==",
"dev": true
},
"node_modules/emoji-regex": {
@@ -3614,18 +3624,18 @@
}
},
"node_modules/es-abstract": {
- "version": "1.22.1",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz",
- "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==",
+ "version": "1.22.2",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz",
+ "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==",
"dev": true,
"dependencies": {
"array-buffer-byte-length": "^1.0.0",
- "arraybuffer.prototype.slice": "^1.0.1",
+ "arraybuffer.prototype.slice": "^1.0.2",
"available-typed-arrays": "^1.0.5",
"call-bind": "^1.0.2",
"es-set-tostringtag": "^2.0.1",
"es-to-primitive": "^1.2.1",
- "function.prototype.name": "^1.1.5",
+ "function.prototype.name": "^1.1.6",
"get-intrinsic": "^1.2.1",
"get-symbol-description": "^1.0.0",
"globalthis": "^1.0.3",
@@ -3641,23 +3651,23 @@
"is-regex": "^1.1.4",
"is-shared-array-buffer": "^1.0.2",
"is-string": "^1.0.7",
- "is-typed-array": "^1.1.10",
+ "is-typed-array": "^1.1.12",
"is-weakref": "^1.0.2",
"object-inspect": "^1.12.3",
"object-keys": "^1.1.1",
"object.assign": "^4.1.4",
- "regexp.prototype.flags": "^1.5.0",
- "safe-array-concat": "^1.0.0",
+ "regexp.prototype.flags": "^1.5.1",
+ "safe-array-concat": "^1.0.1",
"safe-regex-test": "^1.0.0",
- "string.prototype.trim": "^1.2.7",
- "string.prototype.trimend": "^1.0.6",
- "string.prototype.trimstart": "^1.0.6",
+ "string.prototype.trim": "^1.2.8",
+ "string.prototype.trimend": "^1.0.7",
+ "string.prototype.trimstart": "^1.0.7",
"typed-array-buffer": "^1.0.0",
"typed-array-byte-length": "^1.0.0",
"typed-array-byte-offset": "^1.0.0",
"typed-array-length": "^1.0.4",
"unbox-primitive": "^1.0.2",
- "which-typed-array": "^1.1.10"
+ "which-typed-array": "^1.1.11"
},
"engines": {
"node": ">= 0.4"
@@ -3667,14 +3677,14 @@
}
},
"node_modules/es-iterator-helpers": {
- "version": "1.0.14",
- "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.14.tgz",
- "integrity": "sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==",
+ "version": "1.0.15",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz",
+ "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==",
"dev": true,
"dependencies": {
"asynciterator.prototype": "^1.0.0",
"call-bind": "^1.0.2",
- "define-properties": "^1.2.0",
+ "define-properties": "^1.2.1",
"es-abstract": "^1.22.1",
"es-set-tostringtag": "^2.0.1",
"function-bind": "^1.1.1",
@@ -3684,8 +3694,8 @@
"has-proto": "^1.0.1",
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.5",
- "iterator.prototype": "^1.1.0",
- "safe-array-concat": "^1.0.0"
+ "iterator.prototype": "^1.1.2",
+ "safe-array-concat": "^1.0.1"
}
},
"node_modules/es-set-tostringtag": {
@@ -3786,16 +3796,16 @@
}
},
"node_modules/eslint": {
- "version": "8.48.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz",
- "integrity": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==",
+ "version": "8.50.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.50.0.tgz",
+ "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==",
"dev": true,
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.6.1",
"@eslint/eslintrc": "^2.1.2",
- "@eslint/js": "8.48.0",
- "@humanwhocodes/config-array": "^0.11.10",
+ "@eslint/js": "8.50.0",
+ "@humanwhocodes/config-array": "^0.11.11",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
"ajv": "^6.12.4",
@@ -4168,9 +4178,9 @@
"dev": true
},
"node_modules/eslint/node_modules/globals": {
- "version": "13.21.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz",
- "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==",
+ "version": "13.22.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz",
+ "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==",
"dev": true,
"dependencies": {
"type-fest": "^0.20.2"
@@ -4430,9 +4440,9 @@
}
},
"node_modules/flatted": {
- "version": "3.2.7",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
- "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
+ "version": "3.2.9",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz",
+ "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==",
"dev": true
},
"node_modules/for-each": {
@@ -4756,9 +4766,9 @@
}
},
"node_modules/humanize-duration": {
- "version": "3.29.0",
- "resolved": "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.29.0.tgz",
- "integrity": "sha512-G5wZGwYTLaQAmYqhfK91aw3xt6wNbJW1RnWDh4qP1PvF4T/jnkjx2RVhG5kzB2PGsYGTn+oSDBQp+dMdILLxcg=="
+ "version": "3.30.0",
+ "resolved": "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.30.0.tgz",
+ "integrity": "sha512-NxpT0fhQTFuMTLnuu1Xp+ozNpYirQnbV3NlOjEKBYlE3uvMRu3LDuq8EPc3gVXxVYnchQfqVM4/+T9iwHPLLeA=="
},
"node_modules/i18next": {
"version": "21.10.0",
@@ -5309,15 +5319,16 @@
"dev": true
},
"node_modules/iterator.prototype": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.1.tgz",
- "integrity": "sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz",
+ "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==",
"dev": true,
"dependencies": {
- "define-properties": "^1.2.0",
+ "define-properties": "^1.2.1",
"get-intrinsic": "^1.2.1",
"has-symbols": "^1.0.3",
- "reflect.getprototypeof": "^1.0.3"
+ "reflect.getprototypeof": "^1.0.4",
+ "set-function-name": "^2.0.1"
}
},
"node_modules/jake": {
@@ -6187,9 +6198,9 @@
}
},
"node_modules/postcss": {
- "version": "8.4.29",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz",
- "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",
+ "version": "8.4.30",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz",
+ "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==",
"dev": true,
"funding": [
{
@@ -6406,11 +6417,11 @@
}
},
"node_modules/react-router": {
- "version": "6.15.0",
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.15.0.tgz",
- "integrity": "sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==",
+ "version": "6.16.0",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.16.0.tgz",
+ "integrity": "sha512-VT4Mmc4jj5YyjpOi5jOf0I+TYzGpvzERy4ckNSvSh2RArv8LLoCxlsZ2D+tc7zgjxcY34oTz2hZaeX5RVprKqA==",
"dependencies": {
- "@remix-run/router": "1.8.0"
+ "@remix-run/router": "1.9.0"
},
"engines": {
"node": ">=14.0.0"
@@ -6420,12 +6431,12 @@
}
},
"node_modules/react-router-dom": {
- "version": "6.15.0",
- "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.15.0.tgz",
- "integrity": "sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==",
+ "version": "6.16.0",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.16.0.tgz",
+ "integrity": "sha512-aTfBLv3mk/gaKLxgRDUPbPw+s4Y/O+ma3rEN1u8EgEpLpPe6gNjIsWt9rxushMHHMb7mSwxRGdGlGdvmFsyPIg==",
"dependencies": {
- "@remix-run/router": "1.8.0",
- "react-router": "6.15.0"
+ "@remix-run/router": "1.9.0",
+ "react-router": "6.16.0"
},
"engines": {
"node": ">=14.0.0"
@@ -6477,9 +6488,9 @@
"dev": true
},
"node_modules/regenerate-unicode-properties": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz",
- "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==",
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz",
+ "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==",
"dev": true,
"dependencies": {
"regenerate": "^1.4.2"
@@ -6503,14 +6514,14 @@
}
},
"node_modules/regexp.prototype.flags": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
- "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz",
+ "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.2.0",
- "functions-have-names": "^1.2.3"
+ "set-function-name": "^2.0.0"
},
"engines": {
"node": ">= 0.4"
@@ -6604,9 +6615,9 @@
}
},
"node_modules/resolve": {
- "version": "1.22.4",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz",
- "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==",
+ "version": "1.22.6",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz",
+ "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==",
"dependencies": {
"is-core-module": "^2.13.0",
"path-parse": "^1.0.7",
@@ -6653,9 +6664,9 @@
}
},
"node_modules/rollup": {
- "version": "3.28.1",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.1.tgz",
- "integrity": "sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==",
+ "version": "3.29.3",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.3.tgz",
+ "integrity": "sha512-T7du6Hum8jOkSWetjRgbwpM6Sy0nECYrYRSmZjayFcOddtKJWU4d17AC3HNUk7HRuqy4p+G7aEZclSHytqUmEg==",
"dev": true,
"bin": {
"rollup": "dist/bin/rollup"
@@ -6692,13 +6703,13 @@
}
},
"node_modules/safe-array-concat": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz",
- "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz",
+ "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "get-intrinsic": "^1.2.0",
+ "get-intrinsic": "^1.2.1",
"has-symbols": "^1.0.3",
"isarray": "^2.0.5"
},
@@ -6769,6 +6780,20 @@
"randombytes": "^2.1.0"
}
},
+ "node_modules/set-function-name": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz",
+ "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/shebang-command": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
@@ -6897,9 +6922,9 @@
}
},
"node_modules/string.prototype.matchall": {
- "version": "4.0.9",
- "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.9.tgz",
- "integrity": "sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==",
+ "version": "4.0.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz",
+ "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
@@ -6909,6 +6934,7 @@
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.5",
"regexp.prototype.flags": "^1.5.0",
+ "set-function-name": "^2.0.0",
"side-channel": "^1.0.4"
},
"funding": {
@@ -6916,14 +6942,14 @@
}
},
"node_modules/string.prototype.trim": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz",
- "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==",
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz",
+ "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"engines": {
"node": ">= 0.4"
@@ -6933,28 +6959,28 @@
}
},
"node_modules/string.prototype.trimend": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
- "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz",
+ "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/string.prototype.trimstart": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
- "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz",
+ "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==",
"dev": true,
"dependencies": {
"call-bind": "^1.0.2",
- "define-properties": "^1.1.4",
- "es-abstract": "^1.20.4"
+ "define-properties": "^1.2.0",
+ "es-abstract": "^1.22.1"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -7090,9 +7116,9 @@
}
},
"node_modules/terser": {
- "version": "5.19.3",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.19.3.tgz",
- "integrity": "sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==",
+ "version": "5.20.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.20.0.tgz",
+ "integrity": "sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==",
"dev": true,
"dependencies": {
"@jridgewell/source-map": "^0.3.3",
@@ -7441,9 +7467,9 @@
}
},
"node_modules/update-browserslist-db": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
- "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
+ "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
"dev": true,
"funding": [
{
From 8adb9ee633c5cca607892b9ab42b2685fa7fec73 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 11:45:35 -0400
Subject: [PATCH 062/182] Re-add tzdata to amd64
---
.goreleaser.yml | 6 ++--
Dockerfile | 1 +
Dockerfile-arm | 18 +++++++++++
go.sum | 79 -------------------------------------------------
4 files changed, 22 insertions(+), 82 deletions(-)
create mode 100644 Dockerfile-arm
diff --git a/.goreleaser.yml b/.goreleaser.yml
index d3e71df2..062cce1f 100644
--- a/.goreleaser.yml
+++ b/.goreleaser.yml
@@ -164,14 +164,14 @@ dockers:
- image_templates:
- &arm64v8_image "binwiederhier/ntfy:{{ .Tag }}-arm64v8"
use: buildx
- dockerfile: Dockerfile
+ dockerfile: Dockerfile-arm
goarch: arm64
build_flag_templates:
- "--platform=linux/arm64/v8"
- image_templates:
- &armv7_image "binwiederhier/ntfy:{{ .Tag }}-armv7"
use: buildx
- dockerfile: Dockerfile
+ dockerfile: Dockerfile-arm
goarch: arm
goarm: 7
build_flag_templates:
@@ -179,7 +179,7 @@ dockers:
- image_templates:
- &armv6_image "binwiederhier/ntfy:{{ .Tag }}-armv6"
use: buildx
- dockerfile: Dockerfile
+ dockerfile: Dockerfile-arm
goarch: arm
goarm: 6
build_flag_templates:
diff --git a/Dockerfile b/Dockerfile
index 7c2052ef..45dad05d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,6 +9,7 @@ LABEL org.opencontainers.image.licenses="Apache-2.0, GPL-2.0"
LABEL org.opencontainers.image.title="ntfy"
LABEL org.opencontainers.image.description="Send push notifications to your phone or desktop using PUT/POST"
+RUN apk add --no-cache tzdata
COPY ntfy /usr/bin
EXPOSE 80/tcp
diff --git a/Dockerfile-arm b/Dockerfile-arm
new file mode 100644
index 00000000..755092fd
--- /dev/null
+++ b/Dockerfile-arm
@@ -0,0 +1,18 @@
+FROM alpine
+
+LABEL org.opencontainers.image.authors="philipp.heckel@gmail.com"
+LABEL org.opencontainers.image.url="https://ntfy.sh/"
+LABEL org.opencontainers.image.documentation="https://docs.ntfy.sh/"
+LABEL org.opencontainers.image.source="https://github.com/binwiederhier/ntfy"
+LABEL org.opencontainers.image.vendor="Philipp C. Heckel"
+LABEL org.opencontainers.image.licenses="Apache-2.0, GPL-2.0"
+LABEL org.opencontainers.image.title="ntfy"
+LABEL org.opencontainers.image.description="Send push notifications to your phone or desktop using PUT/POST"
+
+# Alpine does not support adding "tzdata" on ARM anymore, see
+# https://github.com/binwiederhier/ntfy/issues/894
+
+COPY ntfy /usr/bin
+
+EXPOSE 80/tcp
+ENTRYPOINT ["ntfy"]
diff --git a/go.sum b/go.sum
index 046695e1..97512a78 100644
--- a/go.sum
+++ b/go.sum
@@ -1,23 +1,16 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.110.7 h1:rJyC7nWRg2jWGZ4wSJ5nY65GTdYJkg0cd/uXb+ACI6o=
-cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI=
cloud.google.com/go v0.110.8 h1:tyNdfIxjzaWctIiLYOTalaLKZ17SI44SKFW26QbOhME=
cloud.google.com/go v0.110.8/go.mod h1:Iz8AkXJf1qmxC3Oxoep8R1T36w8B92yU29PcBhHO5fk=
cloud.google.com/go/compute v1.23.0 h1:tP41Zoavr8ptEqaW6j+LQOnyBBhO7OkOMAGrgLopTwY=
cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM=
cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY=
cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA=
-cloud.google.com/go/firestore v1.12.0 h1:aeEA/N7DW7+l2u5jtkO8I0qv0D95YwjggD8kUHrTHO4=
-cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4=
cloud.google.com/go/firestore v1.13.0 h1:/3S4RssUV4GO/kvgJZB+tayjhOfyAHs+KcpJgRVu/Qk=
cloud.google.com/go/firestore v1.13.0/go.mod h1:QojqqOh8IntInDUSTAh0c8ZsPYAr68Ma8c5DWOy8xb8=
cloud.google.com/go/iam v1.1.2 h1:gacbrBdWcoVmGLozRuStX45YKvJtzIjJdAolzUs1sm4=
cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU=
cloud.google.com/go/longrunning v0.5.1 h1:Fr7TXftcqTudoyRJa113hyaqlGdiBQkp0Gq7tErFDWI=
cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc=
-cloud.google.com/go/storage v1.32.0 h1:5w6DxEGOnktmJHarxAOUywxVW9lbNWIzlzzUltG/3+o=
-cloud.google.com/go/storage v1.32.0/go.mod h1:Hhh/dogNRGca7IWv1RC2YqEn0c0G77ctA/OxflYkiD8=
cloud.google.com/go/storage v1.33.0 h1:PVrDOkIC8qQVa1P3SXGpQvfuJhN2LHOoyZvWs8D2X5M=
cloud.google.com/go/storage v1.33.0/go.mod h1:Hhh/dogNRGca7IWv1RC2YqEn0c0G77ctA/OxflYkiD8=
firebase.google.com/go/v4 v4.12.0 h1:I6dCkcWUMFNkFdWgzlf8SLWecQnKdFgJhMv5fT9l1qI=
@@ -31,20 +24,13 @@ github.com/MicahParks/keyfunc v1.9.0 h1:lhKd5xrFHLNOWrDc4Tyb/Q1AJ4LCzQ48GVJyVIID
github.com/MicahParks/keyfunc v1.9.0/go.mod h1:IdnCilugA0O/99dW+/MkvlyrsX8+L8+x95xuVNtM5jw=
github.com/SherClockHolmes/webpush-go v1.2.0 h1:sGv0/ZWCvb1HUH+izLqrb2i68HuqD/0Y+AmGQfyqKJA=
github.com/SherClockHolmes/webpush-go v1.2.0/go.mod h1:w6X47YApe/B9wUz2Wh8xukxlyupaxSSEbu6yKJcHN2w=
-github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
-github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
-github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
-github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI=
-github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
-github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
-github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
github.com/cpuguy83/go-md2man/v2 v2.0.2 h1:p1EgwI/C7NhT0JmVkwCD2ZBK8j4aeHQX2pMHHBfMQ6w=
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
@@ -59,12 +45,9 @@ github.com/emersion/go-smtp v0.17.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVR
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
-github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
-github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0=
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU=
github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA=
-github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
github.com/golang-jwt/jwt/v4 v4.4.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0=
@@ -76,16 +59,13 @@ github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
-github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
-github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
@@ -101,24 +81,17 @@ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw=
-github.com/google/s2a-go v0.1.5 h1:8IYp3w9nysqv3JH+NJgXJzGbDHzLOTj43BmSkp+O7qg=
-github.com/google/s2a-go v0.1.5/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
github.com/google/s2a-go v0.1.7 h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o=
github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
-github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
-github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4=
github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
-github.com/googleapis/enterprise-certificate-proxy v0.2.5 h1:UR4rDjcgpgEnqpIEvkiqTYKBCKLNmlge2eVjoZfySzM=
-github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w=
github.com/googleapis/enterprise-certificate-proxy v0.3.1 h1:SBWmZhjUDRorQxrN0nwzf+AHBxnbFjViHQS4P0yVpmQ=
github.com/googleapis/enterprise-certificate-proxy v0.3.1/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0=
github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56etFpas=
github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
-github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
@@ -139,11 +112,8 @@ github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUo
github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU=
github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY=
github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=
-github.com/prometheus/procfs v0.11.1 h1:xRC8Iq1yyca5ypa9n1EZnWZkt7dwcoRPQwX/5gwaUuI=
-github.com/prometheus/procfs v0.11.1/go.mod h1:eesXgaPo1q7lBpVMoMy0ZOFTth9hBn4W/y0/p/ScXhY=
github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
-github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
@@ -151,7 +121,6 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
-github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
@@ -166,14 +135,10 @@ github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsr
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=
go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo=
-go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI=
golang.org/x/crypto v0.0.0-20190131182504-b8fe1690c613/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
-golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
-golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk=
-golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw=
golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck=
golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
@@ -183,26 +148,17 @@ golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHl
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
-golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
-golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
-golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8=
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
-golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
-golang.org/x/oauth2 v0.11.0 h1:vPL4xzxBM4niKCW6g9whtaWVXTJf1U5e4aZxxFx/gbU=
-golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk=
golang.org/x/oauth2 v0.12.0 h1:smVPGxink+n1ZI5pkQa8y6fZT0RW0MgCO5bFpepy4B4=
golang.org/x/oauth2 v0.12.0/go.mod h1:A74bZ3aGXgCY0qaIC9Ahg6Lglin4AMAco8cIv9baba4=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -215,31 +171,23 @@ golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
-golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
-golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0=
-golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU=
golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU=
golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
-golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ=
-golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc=
-golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=
golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=
@@ -253,55 +201,30 @@ golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtn
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
-google.golang.org/api v0.138.0 h1:K/tVp05MxNVbHShRw9m7e9VJGdagNeTdMzqPH7AUqr0=
-google.golang.org/api v0.138.0/go.mod h1:4xyob8CxC+0GChNBvEUAk8VBKNvYOTWM9T3v3UfRxuY=
google.golang.org/api v0.142.0 h1:mf+7EJ94fi5ZcnpPy+m0Yv2dkz8bKm+UL0snTCuwXlY=
google.golang.org/api v0.142.0/go.mod h1:zJAN5o6HRqR7O+9qJUFOWrZkYE66RH+efPBdTLA4xBA=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
-google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
-google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM=
google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds=
-google.golang.org/appengine/v2 v2.0.4 h1:aAAPYixP9EfTJjNO6F46afaxp+jfzb0VgwVjMeLBtF4=
-google.golang.org/appengine/v2 v2.0.4/go.mod h1:WoEXGoXNfa0mLvaH5sV3ZSGXwVmy8yf7Z1JKf3J3wLI=
google.golang.org/appengine/v2 v2.0.5 h1:4C+F3Cd3L2nWEfSmFEZDPjQvDwL8T0YCeZBysZifP3k=
google.golang.org/appengine/v2 v2.0.5/go.mod h1:WoEXGoXNfa0mLvaH5sV3ZSGXwVmy8yf7Z1JKf3J3wLI=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
-google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
-google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878 h1:Iveh6tGCJkHAjJgEqUQYGDGgbwmhjoAOz8kO/ajxefY=
-google.golang.org/genproto v0.0.0-20230815205213-6bfd019c3878/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
-google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d h1:VBu5YqKPv6XiJ199exd8Br+Aetz+o08F+PLMnwJQHAY=
-google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4=
google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13 h1:vlzZttNJGVqTsRFU9AmdnrcO1Znh8Ew9kCD//yjigk0=
google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:CCviP9RmpZ1mxVr8MUjCnSiY09IbAXZxhLE6EhHIdPU=
-google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878 h1:WGq4lvB/mlicysM/dUT3SBvijH4D3sm/Ny1A4wmt2CI=
-google.golang.org/genproto/googleapis/api v0.0.0-20230815205213-6bfd019c3878/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
-google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d h1:DoPTO70H+bcDXcd39vOqb2viZxgqeBeSGtZ55yZU4/Q=
-google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk=
google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13 h1:U7+wNaVuSTaUqNvK2+osJ9ejEZxbjHHk8F2b6Hpx0AE=
google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:RdyHbowztCGQySiCvQPgWQWgWhGnouTdCflKoDBt32U=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 h1:lv6/DhyiFFGsmzxbsUUTOkN29II+zeWHxvT8Lpdxsv0=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 h1:N3bU/SQDCDyD6R528GJ/PwW9KjYcJA3dgyH+MovAkIM=
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:KSqppvjFjtoCI+KGd4PELB0qLNxdJHRGqRI09mB6pQA=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
-google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0=
google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
-google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
-google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ=
-google.golang.org/grpc v1.57.0 h1:kfzNeI/klCGD2YPMUlaGNT3pxvYfga7smW3Vth8Zsiw=
-google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo=
google.golang.org/grpc v1.58.2 h1:SXUpjxeVF3FKrTYQI4f4KvbGD5u2xccdYdurwowix5I=
google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
@@ -320,8 +243,6 @@ google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
-gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
From addb5efebb15d7f66c551a43a5b5c35d9600d9d0 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 11:48:26 -0400
Subject: [PATCH 063/182] Release notes
---
docs/releases.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/releases.md b/docs/releases.md
index 1e518c76..222433c3 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -1288,6 +1288,7 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
**Bug fixes + maintenance:**
* Fix ACL issue with topic patterns containing underscores ([#840](https://github.com/binwiederhier/ntfy/issues/840), thanks to [@Joe-0237](https://github.com/Joe-0237) for reporting)
+* Re-add `tzdata` to Docker images for amd64 image ([#894](https://github.com/binwiederhier/ntfy/issues/894), [#307](https://github.com/binwiederhier/ntfy/pull/307))
### ntfy Android app v1.16.1 (UNRELEASED)
From d9387dac994e9c68867337154f96e8c16d692022 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 17:59:23 -0400
Subject: [PATCH 064/182] Refine logic
---
server/server_test.go | 21 ++++++++++++++++++++
server/util.go | 45 +++++++++++++++++++++----------------------
server/util_test.go | 15 ++++++++++++++-
util/util_test.go | 9 ---------
4 files changed, 57 insertions(+), 33 deletions(-)
diff --git a/server/server_test.go b/server/server_test.go
index 647268fb..d78533e9 100644
--- a/server/server_test.go
+++ b/server/server_test.go
@@ -329,6 +329,27 @@ func TestServer_PublishPriority(t *testing.T) {
require.Equal(t, 40007, toHTTPError(t, response.Body.String()).Code)
}
+func TestServer_PublishPriority_SpecialHTTPHeader(t *testing.T) {
+ s := newTestServer(t, newTestConfig(t))
+
+ response := request(t, s, "POST", "/mytopic", "test", map[string]string{
+ "Priority": "u=4",
+ "X-Priority": "5",
+ })
+ require.Equal(t, 5, toMessage(t, response.Body.String()).Priority)
+
+ response = request(t, s, "POST", "/mytopic?priority=4", "test", map[string]string{
+ "Priority": "u=9",
+ })
+ require.Equal(t, 4, toMessage(t, response.Body.String()).Priority)
+
+ response = request(t, s, "POST", "/mytopic", "test", map[string]string{
+ "p": "2",
+ "priority": "u=9, i",
+ })
+ require.Equal(t, 2, toMessage(t, response.Body.String()).Priority)
+}
+
func TestServer_PublishGETOnlyOneTopic(t *testing.T) {
// This tests a bug that allowed publishing topics with a comma in the name (no ticket)
diff --git a/server/util.go b/server/util.go
index 9cbae2e4..09536765 100644
--- a/server/util.go
+++ b/server/util.go
@@ -8,11 +8,14 @@ import (
"mime"
"net/http"
"net/netip"
- "strings"
"regexp"
+ "strings"
)
-var mimeDecoder mime.WordDecoder
+var (
+ mimeDecoder mime.WordDecoder
+ priorityHeaderIgnoreRegex = regexp.MustCompile(`^u=\d,\s*(i|\d)$|^u=\d$`)
+)
func readBoolParam(r *http.Request, defaultValue bool, names ...string) bool {
value := strings.ToLower(readParam(r, names...))
@@ -51,9 +54,9 @@ func readParam(r *http.Request, names ...string) string {
func readHeaderParam(r *http.Request, names ...string) string {
for _, name := range names {
- value := maybeDecodeHeader(r.Header.Get(name), name)
+ value := strings.TrimSpace(maybeDecodeHeader(name, r.Header.Get(name)))
if value != "" {
- return strings.TrimSpace(value)
+ return value
}
}
return ""
@@ -127,29 +130,25 @@ func fromContext[T any](r *http.Request, key contextKey) (T, error) {
return t, nil
}
-func maybeDecodeHeader(header string, name string) string {
- decoded, err := mimeDecoder.DecodeHeader(header)
+// maybeDecodeHeader decodes the given header value if it is MIME encoded, e.g. "=?utf-8?q?Hello_World?=",
+// or returns the original header value if it is not MIME encoded. It also calls maybeIgnoreSpecialHeader
+// to ignore new HTTP "Priority" header.
+func maybeDecodeHeader(name, value string) string {
+ decoded, err := mimeDecoder.DecodeHeader(value)
if err != nil {
- if name == "priority"{
- return cloudflarePriorityIgnore(header)
- }
- return header
+ return maybeIgnoreSpecialHeader(name, value)
}
-
- if name == "priority"{
- return cloudflarePriorityIgnore(decoded)
- }
- return decoded
+ return maybeIgnoreSpecialHeader(name, decoded)
}
-// Ignore new HTTP Priority header (see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-priority)
-// Cloudflare adds this to requests when forwarding to the backend (ntfy), so we just ignore it.
-// If the Priority header is set to "u=*, i" or "u=*" (by cloudflare), the header will be ignored.
-// And continue searching for another header (x-priority, prio, p) or in the Query parameters.
-func cloudflarePriorityIgnore(value string) string {
- pattern := `^u=\d,\s(i|\d)$|^u=\d$`
- regex := regexp.MustCompile(pattern)
- if regex.MatchString(value) {
+// maybeIgnoreSpecialHeader ignores new HTTP "Priority" header (see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-priority)
+//
+// Cloudflare (and potentially other providers) add this to requests when forwarding to the backend (ntfy),
+// so we just ignore it. If the "Priority" header is set to "u=*, i" or "u=*" (by Cloudflare), the header will be ignored.
+// Returning an empty string will allow the rest of the logic to continue searching for another header (x-priority, prio, p),
+// or in the Query parameters.
+func maybeIgnoreSpecialHeader(name, value string) string {
+ if strings.ToLower(name) == "priority" && priorityHeaderIgnoreRegex.MatchString(strings.TrimSpace(value)) {
return ""
}
return value
diff --git a/server/util_test.go b/server/util_test.go
index 3d062b4d..6555a81b 100644
--- a/server/util_test.go
+++ b/server/util_test.go
@@ -2,9 +2,9 @@ package server
import (
"bytes"
+ "crypto/rand"
"fmt"
"github.com/stretchr/testify/require"
- "math/rand"
"net/http"
"strings"
"testing"
@@ -75,3 +75,16 @@ Accept: */*
(peeked bytes not UTF-8, peek limit of 4096 bytes reached, hex: ` + fmt.Sprintf("%x", body[:4096]) + ` ...)`
require.Equal(t, expected, renderHTTPRequest(r))
}
+
+func TestMaybeIgnoreSpecialHeader(t *testing.T) {
+ require.Empty(t, maybeIgnoreSpecialHeader("priority", "u=1"))
+ require.Empty(t, maybeIgnoreSpecialHeader("Priority", "u=1"))
+ require.Empty(t, maybeIgnoreSpecialHeader("Priority", "u=1, i"))
+}
+
+func TestMaybeDecodeHeaders(t *testing.T) {
+ r, _ := http.NewRequest("GET", "http://ntfy.sh/mytopic/json?since=all", nil)
+ r.Header.Set("Priority", "u=1") // Cloudflare priority header
+ r.Header.Set("X-Priority", "5") // ntfy priority header
+ require.Equal(t, "5", readHeaderParam(r, "x-priority", "priority", "p"))
+}
diff --git a/util/util_test.go b/util/util_test.go
index 49a24126..f0f45c28 100644
--- a/util/util_test.go
+++ b/util/util_test.go
@@ -87,15 +87,6 @@ func TestParsePriority_Invalid(t *testing.T) {
}
}
-func TestParsePriority_HTTPSpecPriority(t *testing.T) {
- priorities := []string{"u=1", "u=3", "u=7, i"} // see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-priority
- for _, priority := range priorities {
- actual, err := ParsePriority(priority)
- require.Nil(t, err)
- require.Equal(t, 3, actual) // Always expect 3!
- }
-}
-
func TestPriorityString(t *testing.T) {
priorities := []int{0, 1, 2, 3, 4, 5}
expected := []string{"default", "min", "low", "default", "high", "max"}
From bfc1fa51811812f627805552c50b5f29ce60559d Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 18:03:09 -0400
Subject: [PATCH 065/182] Changelog
---
docs/releases.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/releases.md b/docs/releases.md
index 222433c3..bc7ed406 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -1289,6 +1289,7 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
* Fix ACL issue with topic patterns containing underscores ([#840](https://github.com/binwiederhier/ntfy/issues/840), thanks to [@Joe-0237](https://github.com/Joe-0237) for reporting)
* Re-add `tzdata` to Docker images for amd64 image ([#894](https://github.com/binwiederhier/ntfy/issues/894), [#307](https://github.com/binwiederhier/ntfy/pull/307))
+* Add special logic to ignore `Priority` header if it resembled a RFC 9218 value ([#851](https://github.com/binwiederhier/ntfy/pull/851), thanks to [@gusdleon](https://github.com/gusdleon), see also [#351](https://github.com/binwiederhier/ntfy/issues/351), [#353](https://github.com/binwiederhier/ntfy/issues/353), [#461](https://github.com/binwiederhier/ntfy/issues/461))
### ntfy Android app v1.16.1 (UNRELEASED)
From d556a675e9df3478de81c7195c7b19eec5e3f569 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 18:04:13 -0400
Subject: [PATCH 066/182] Changelog
---
docs/releases.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/releases.md b/docs/releases.md
index bc7ed406..4d125a97 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -1289,7 +1289,7 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
* Fix ACL issue with topic patterns containing underscores ([#840](https://github.com/binwiederhier/ntfy/issues/840), thanks to [@Joe-0237](https://github.com/Joe-0237) for reporting)
* Re-add `tzdata` to Docker images for amd64 image ([#894](https://github.com/binwiederhier/ntfy/issues/894), [#307](https://github.com/binwiederhier/ntfy/pull/307))
-* Add special logic to ignore `Priority` header if it resembled a RFC 9218 value ([#851](https://github.com/binwiederhier/ntfy/pull/851), thanks to [@gusdleon](https://github.com/gusdleon), see also [#351](https://github.com/binwiederhier/ntfy/issues/351), [#353](https://github.com/binwiederhier/ntfy/issues/353), [#461](https://github.com/binwiederhier/ntfy/issues/461))
+* Add special logic to ignore `Priority` header if it resembled a RFC 9218 value ([#851](https://github.com/binwiederhier/ntfy/pull/851)/[#895](https://github.com/binwiederhier/ntfy/pull/895), thanks to [@gusdleon](https://github.com/gusdleon), see also [#351](https://github.com/binwiederhier/ntfy/issues/351), [#353](https://github.com/binwiederhier/ntfy/issues/353), [#461](https://github.com/binwiederhier/ntfy/issues/461))
### ntfy Android app v1.16.1 (UNRELEASED)
From b5851dd6d44806690cb03a264fc7da1f15fd50a9 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 18:32:03 -0400
Subject: [PATCH 067/182] Links and blog posts
---
docs/integrations.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/docs/integrations.md b/docs/integrations.md
index e689427e..cf3d7880 100644
--- a/docs/integrations.md
+++ b/docs/integrations.md
@@ -133,6 +133,12 @@ I've added a ⭐ to projects or posts that have a significant following, or had
## Blog + forum posts
+- [Why NTFY is the Ultimate Push Notification Tool for Your Needs](https://osintph.medium.com/why-ntfy-is-the-ultimate-push-notification-tool-for-your-needs-e767421c84c5) - osintph.medium.com - 9/2023
+- [Supercharge Your Alerts: Ntfy — The Ultimate Push Notification Solution](https://medium.com/spring-boot/supercharge-your-alerts-ntfy-the-ultimate-push-notification-solution-a3dda79651fe) - spring-boot.medium.com - 9/2023
+- [Deploy Ntfy using Docker](https://www.linkedin.com/pulse/deploy-ntfy-mohamed-sharfy/) - linkedin.com - 9/2023
+- [Send Notifications With Ntfy for New WordPress Posts](https://www.activepieces.com/blog/ntfy-notifications-for-wordpress-new-posts) - activepieces.com - 9/2023
+- [Get Ntfy Notifications About New Zendesk Ticket](https://www.activepieces.com/blog/ntfy-notifications-about-new-zendesk-tickets) - activepieces.com - 9/2023
+- [Podman Update Notifications via Ntfy](https://rair.dev/podman-upadte-notifications-ntfy/) - rair.dev - 9/2023
- [NetworkChunk - how did I NOT know about this?](https://www.youtube.com/watch?v=poDIT2ruQ9M) ⭐ - youtube.com - 8/2023
- [Open Source Push Notifications! Get notified of any event you can imagine. Triggers abound!](https://www.youtube.com/watch?v=WJgwWXt79pE) ⭐ - youtube.com - 8/2023
- [How to install and self host an Ntfy server on Linux](https://linuxconfig.org/how-to-install-and-self-host-an-ntfy-server-on-linux) - linuxconfig.org - 7/2023
From 50bed826d0e6cc4c3e1fec641f1f2303cf430547 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 20:36:34 -0400
Subject: [PATCH 068/182] Links links links
---
README.md | 5 ++++-
docs/integrations.md | 12 ++++++++++--
2 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index f94594be..670ffd7c 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,10 @@ as well as an [open source iOS app](https://github.com/binwiederhier/ntfy-ios) a
## [ntfy Pro](https://ntfy.sh/app) 💸 🎉
-I now offer paid plans for [ntfy.sh](https://ntfy.sh/) if you don't want to self-host, or you want to support the development of ntfy (→ [Purchase via web app](https://ntfy.sh/app)). You can **buy a plan for as low as $3.33/month** (if you use promo code `MYTOPIC`, limited time only). You can also donate via [GitHub Sponsors](https://github.com/sponsors/binwiederhier), and [Liberapay](https://liberapay.com/ntfy). I would be very humbled by your sponsorship. ❤️
+I now offer paid plans for [ntfy.sh](https://ntfy.sh/) if you don't want to self-host, or you want to support the development of
+ntfy (→ [Purchase via web app](https://ntfy.sh/app)). You can **buy a plan for as low as $5/month**.
+You can also donate via [GitHub Sponsors](https://github.com/sponsors/binwiederhier), and [Liberapay](https://liberapay.com/ntfy).
+I would be very humbled by your sponsorship. ❤️
## **[Documentation](https://ntfy.sh/docs/)**
diff --git a/docs/integrations.md b/docs/integrations.md
index cf3d7880..6da0f63f 100644
--- a/docs/integrations.md
+++ b/docs/integrations.md
@@ -129,17 +129,25 @@ I've added a ⭐ to projects or posts that have a significant following, or had
- [vigilant](https://github.com/VerifiedJoseph/vigilant) - Monitor RSS/ATOM and JSON feeds, and send push notifications on new entries (PHP)
- [ansible-role-ntfy-alertmanager](https://github.com/bleetube/ansible-role-ntfy-alertmanager) - Ansible role to install xenrox/ntfy-alertmanager
- [NtfyMe-Blender](https://github.com/NotNanook/NtfyMe-Blender) - Blender addon to send notifications to NtfyMe (Python)
-- [ntfy-ios-filesharing](https://www.icloud.com/shortcuts/fe948d151b2e4ae08fb2f9d6b27d680b) - An iOS shortcut that let's you share files from your share feed to a topic of your choice.
-
+- [ntfy-ios-filesharing](https://www.icloud.com/shortcuts/fe948d151b2e4ae08fb2f9d6b27d680b) - An iOS shortcut that lets you share files from your share feed to a topic of your choice.
+- [systemd-ntfy](https://hackage.haskell.org/package/systemd-ntfy) - monitor a set of systemd services an send a notification to ntfy.sh whenever their status changes
+
## Blog + forum posts
+- [Installing Self Host NTFY On Linux Using Docker Container](https://www.pinoylinux.org/topicsplus/containers/installing-self-host-ntfy-on-linux-using-docker-container/) - pinoylinux.org - 9/2023
+- [Homelab Notifications with ntfy](https://blog.alexsguardian.net/posts/2023/09/12/selfhosting-ntfy/) ⭐ - alexsguardian.net - 9/2023
- [Why NTFY is the Ultimate Push Notification Tool for Your Needs](https://osintph.medium.com/why-ntfy-is-the-ultimate-push-notification-tool-for-your-needs-e767421c84c5) - osintph.medium.com - 9/2023
- [Supercharge Your Alerts: Ntfy — The Ultimate Push Notification Solution](https://medium.com/spring-boot/supercharge-your-alerts-ntfy-the-ultimate-push-notification-solution-a3dda79651fe) - spring-boot.medium.com - 9/2023
- [Deploy Ntfy using Docker](https://www.linkedin.com/pulse/deploy-ntfy-mohamed-sharfy/) - linkedin.com - 9/2023
- [Send Notifications With Ntfy for New WordPress Posts](https://www.activepieces.com/blog/ntfy-notifications-for-wordpress-new-posts) - activepieces.com - 9/2023
- [Get Ntfy Notifications About New Zendesk Ticket](https://www.activepieces.com/blog/ntfy-notifications-about-new-zendesk-tickets) - activepieces.com - 9/2023
+- [Set reminder for recurring events using ntfy & Cron](https://www.youtube.com/watch?v=J3O4aQ-EcYk) - youtube.com - 9/2023
+- [ntfy - Installation and full configuration setup](https://www.youtube.com/watch?v=QMy14rGmpFI) - youtube.com - 9/2023
+- [How to install Ntfy.sh on Portainer / Docker Compose](https://www.youtube.com/watch?v=utD9GNbAwyg) - youtube.com - 9/2023
+- [ntfy - Push-Benachrichtigungen // Push Notifications](https://www.youtube.com/watch?v=LE3vRPPqZOU) - youtube.com - 9/2023
- [Podman Update Notifications via Ntfy](https://rair.dev/podman-upadte-notifications-ntfy/) - rair.dev - 9/2023
- [NetworkChunk - how did I NOT know about this?](https://www.youtube.com/watch?v=poDIT2ruQ9M) ⭐ - youtube.com - 8/2023
+- [NTFY - Command-Line Notifications](https://academy.networkchuck.com/blog/ntfy/) - academy.networkchuck.com - 8/2023
- [Open Source Push Notifications! Get notified of any event you can imagine. Triggers abound!](https://www.youtube.com/watch?v=WJgwWXt79pE) ⭐ - youtube.com - 8/2023
- [How to install and self host an Ntfy server on Linux](https://linuxconfig.org/how-to-install-and-self-host-an-ntfy-server-on-linux) - linuxconfig.org - 7/2023
- [Basic website monitoring using cronjobs and ntfy.sh](https://burkhardt.dev/2023/website-monitoring-cron-ntfy/) - burkhardt.dev - 6/2023
From 19c30fc41157b6793e1199b5c97ff32962825f27 Mon Sep 17 00:00:00 2001
From: binwiederhier
Date: Sun, 24 Sep 2023 20:44:57 -0400
Subject: [PATCH 069/182] Add Alex's post in the install guide
---
docs/install.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/docs/install.md b/docs/install.md
index bc5b7a0d..ed101554 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -20,8 +20,9 @@ To run the ntfy server, then just run `ntfy serve` (or `systemctl start ntfy` wh
To send messages, use `ntfy publish`. To subscribe to topics, use `ntfy subscribe` (see [subscribing via CLI](subscribe/cli.md)
for details).
-If you like video tutorials, check out :simple-youtube: [Kris Occhipinti's ntfy install guide](https://www.youtube.com/watch?v=bZzqrX05mNU).
-It's short and to the point. _I am not affiliated with Kris, I just liked the video._
+If you like tutorials, check out :simple-youtube: [Kris Occhipinti's ntfy install guide](https://www.youtube.com/watch?v=bZzqrX05mNU) on YouTube, or
+[Alex's Docker-based setup guide](https://blog.alexsguardian.net/posts/2023/09/12/selfhosting-ntfy/). Both are great
+resources to get started. _I am not affiliated with Kris or Alex, I just liked their video/post._
## Linux binaries
Please check out the [releases page](https://github.com/binwiederhier/ntfy/releases) for binaries and
From 66ef28c2e299b8736e2a749c512abdd2f9001be8 Mon Sep 17 00:00:00 2001
From: Nihal Gonsalves
Date: Wed, 27 Sep 2023 23:16:05 +0200
Subject: [PATCH 070/182] fix(pwa): hide install prompt on macos 14 safari
---
.../pwa-install-macos-safari-add-to-dock.png | Bin 0 -> 166445 bytes
docs/subscribe/pwa.md | 7 +++++++
web/src/app/Notifier.js | 12 ++++++++++--
3 files changed, 17 insertions(+), 2 deletions(-)
create mode 100644 docs/static/img/pwa-install-macos-safari-add-to-dock.png
diff --git a/docs/static/img/pwa-install-macos-safari-add-to-dock.png b/docs/static/img/pwa-install-macos-safari-add-to-dock.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a780605f1db305cd95418bf502a82aeb7f10def
GIT binary patch
literal 166445
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