Skip to content

Commit

Permalink
Merge pull request #119 from qianbin/deps
Browse files Browse the repository at this point in the history
deps: update goleveldb to fix 1T panic; add github.com/gorilla/websocket
  • Loading branch information
libotony committed Aug 24, 2018
2 parents c6c3563 + 84e52ec commit 953d4ae
Show file tree
Hide file tree
Showing 4 changed files with 137 additions and 11 deletions.
1 change: 0 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[submodule "vendor"]
path = vendor
url = https://github.com/vechain/thor-go-vendor
branch = 180613
141 changes: 132 additions & 9 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,7 @@ ignored = []
[[constraint]]
name = "github.com/beevik/ntp"
version = "0.2.0"

[[constraint]]
name = "github.com/gorilla/websocket"
version = "1.3.0"
2 changes: 1 addition & 1 deletion vendor
Submodule vendor updated 65 files
+25 −0 github.com/gorilla/websocket/.gitignore
+21 −0 github.com/gorilla/websocket/.travis.yml
+9 −0 github.com/gorilla/websocket/AUTHORS
+22 −0 github.com/gorilla/websocket/LICENSE
+64 −0 github.com/gorilla/websocket/README.md
+330 −0 github.com/gorilla/websocket/client.go
+16 −0 github.com/gorilla/websocket/client_clone.go
+38 −0 github.com/gorilla/websocket/client_clone_legacy.go
+661 −0 github.com/gorilla/websocket/client_server_test.go
+32 −0 github.com/gorilla/websocket/client_test.go
+148 −0 github.com/gorilla/websocket/compression.go
+80 −0 github.com/gorilla/websocket/compression_test.go
+1,157 −0 github.com/gorilla/websocket/conn.go
+134 −0 github.com/gorilla/websocket/conn_broadcast_test.go
+18 −0 github.com/gorilla/websocket/conn_read.go
+21 −0 github.com/gorilla/websocket/conn_read_legacy.go
+496 −0 github.com/gorilla/websocket/conn_test.go
+15 −0 github.com/gorilla/websocket/conn_write.go
+18 −0 github.com/gorilla/websocket/conn_write_legacy.go
+180 −0 github.com/gorilla/websocket/doc.go
+46 −0 github.com/gorilla/websocket/example_test.go
+13 −0 github.com/gorilla/websocket/examples/autobahn/README.md
+15 −0 github.com/gorilla/websocket/examples/autobahn/fuzzingclient.json
+265 −0 github.com/gorilla/websocket/examples/autobahn/server.go
+102 −0 github.com/gorilla/websocket/examples/chat/README.md
+137 −0 github.com/gorilla/websocket/examples/chat/client.go
+98 −0 github.com/gorilla/websocket/examples/chat/home.html
+53 −0 github.com/gorilla/websocket/examples/chat/hub.go
+40 −0 github.com/gorilla/websocket/examples/chat/main.go
+19 −0 github.com/gorilla/websocket/examples/command/README.md
+102 −0 github.com/gorilla/websocket/examples/command/home.html
+193 −0 github.com/gorilla/websocket/examples/command/main.go
+17 −0 github.com/gorilla/websocket/examples/echo/README.md
+82 −0 github.com/gorilla/websocket/examples/echo/client.go
+133 −0 github.com/gorilla/websocket/examples/echo/server.go
+9 −0 github.com/gorilla/websocket/examples/filewatch/README.md
+193 −0 github.com/gorilla/websocket/examples/filewatch/main.go
+60 −0 github.com/gorilla/websocket/json.go
+119 −0 github.com/gorilla/websocket/json_test.go
+54 −0 github.com/gorilla/websocket/mask.go
+15 −0 github.com/gorilla/websocket/mask_safe.go
+73 −0 github.com/gorilla/websocket/mask_test.go
+103 −0 github.com/gorilla/websocket/prepared.go
+74 −0 github.com/gorilla/websocket/prepared_test.go
+77 −0 github.com/gorilla/websocket/proxy.go
+300 −0 github.com/gorilla/websocket/server.go
+69 −0 github.com/gorilla/websocket/server_test.go
+237 −0 github.com/gorilla/websocket/util.go
+95 −0 github.com/gorilla/websocket/util_test.go
+473 −0 github.com/gorilla/websocket/x_net_proxy.go
+87 −3 github.com/syndtr/goleveldb/leveldb/db.go
+37 −3 github.com/syndtr/goleveldb/leveldb/db_compaction.go
+13 −1 github.com/syndtr/goleveldb/leveldb/db_write.go
+2 −2 github.com/syndtr/goleveldb/leveldb/session.go
+63 −0 github.com/syndtr/goleveldb/leveldb/storage.go
+186 −114 github.com/syndtr/goleveldb/leveldb/storage/file_storage.go
+1 −3 github.com/syndtr/goleveldb/leveldb/storage/file_storage_plan9.go
+242 −18 github.com/syndtr/goleveldb/leveldb/storage/file_storage_test.go
+12 −0 github.com/syndtr/goleveldb/leveldb/storage/file_storage_unix.go
+6 −2 github.com/syndtr/goleveldb/leveldb/storage/mem_storage.go
+52 −0 github.com/syndtr/goleveldb/leveldb/storage/mem_storage_test.go
+8 −0 github.com/syndtr/goleveldb/leveldb/storage/storage.go
+1 −1 github.com/syndtr/goleveldb/leveldb/table.go
+1 −1 github.com/syndtr/goleveldb/leveldb/util.go
+4 −3 github.com/syndtr/goleveldb/manualtest/dbstress/main.go

0 comments on commit 953d4ae

Please sign in to comment.