Browse Source

upgrade ircmsg again

tags/v2.5.0-rc1
Shivaram Lingamneni 3 years ago
parent
commit
3f20676f46
4 changed files with 5 additions and 4 deletions
  1. 1
    1
      go.mod
  2. 2
    0
      go.sum
  3. 1
    2
      vendor/github.com/goshuirc/irc-go/ircmsg/tags.go
  4. 1
    1
      vendor/modules.txt

+ 1
- 1
go.mod View File

@@ -10,7 +10,7 @@ require (
10 10
 	github.com/go-sql-driver/mysql v1.5.0
11 11
 	github.com/go-test/deep v1.0.6 // indirect
12 12
 	github.com/gorilla/websocket v1.4.2
13
-	github.com/goshuirc/irc-go v0.0.0-20201116034710-7e7b0985c4b5
13
+	github.com/goshuirc/irc-go v0.0.0-20201118022549-7209d10d54a8
14 14
 	github.com/onsi/ginkgo v1.12.0 // indirect
15 15
 	github.com/onsi/gomega v1.9.0 // indirect
16 16
 	github.com/oragono/confusables v0.0.0-20201108231250-4ab98ab61fb1

+ 2
- 0
go.sum View File

@@ -22,6 +22,8 @@ github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/ad
22 22
 github.com/goshuirc/eventmgr v0.0.0-20170615162049-060479027c93/go.mod h1:bjJFM4iZJWTf9Rka9sNuI3GxszJqFeu5r1r15ZVtemo=
23 23
 github.com/goshuirc/irc-go v0.0.0-20201116034710-7e7b0985c4b5 h1:oqOT5hi8MRDGvfu4h7rlsrtper7I/0A41K0GppmBb5w=
24 24
 github.com/goshuirc/irc-go v0.0.0-20201116034710-7e7b0985c4b5/go.mod h1:q/JhvvKLmif3y9q8MDQM+gRCnjEKnu5ClF298TTXJug=
25
+github.com/goshuirc/irc-go v0.0.0-20201118022549-7209d10d54a8 h1:7vZqkY9bwimFNuLhWAzdxM9IM7ym853YLNhWsKAnsrQ=
26
+github.com/goshuirc/irc-go v0.0.0-20201118022549-7209d10d54a8/go.mod h1:q/JhvvKLmif3y9q8MDQM+gRCnjEKnu5ClF298TTXJug=
25 27
 github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
26 28
 github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
27 29
 github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=

+ 1
- 2
vendor/github.com/goshuirc/irc-go/ircmsg/tags.go View File

@@ -3,7 +3,6 @@
3 3
 
4 4
 package ircmsg
5 5
 
6
-import "bytes"
7 6
 import "strings"
8 7
 
9 8
 var (
@@ -39,7 +38,7 @@ func EscapeTagValue(inString string) string {
39 38
 // so you don't need to call it yourself after parsing a line.
40 39
 func UnescapeTagValue(inString string) string {
41 40
 	// buf.Len() == 0 is the fastpath where we have not needed to unescape any chars
42
-	var buf bytes.Buffer
41
+	var buf strings.Builder
43 42
 	remainder := inString
44 43
 	for {
45 44
 		backslashPos := strings.IndexByte(remainder, '\\')

+ 1
- 1
vendor/modules.txt View File

@@ -21,7 +21,7 @@ github.com/go-sql-driver/mysql
21 21
 # github.com/gorilla/websocket v1.4.2
22 22
 ## explicit
23 23
 github.com/gorilla/websocket
24
-# github.com/goshuirc/irc-go v0.0.0-20201116034710-7e7b0985c4b5
24
+# github.com/goshuirc/irc-go v0.0.0-20201118022549-7209d10d54a8
25 25
 ## explicit
26 26
 github.com/goshuirc/irc-go/ircfmt
27 27
 github.com/goshuirc/irc-go/ircmsg

Loading…
Cancel
Save