Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: go-gremlin/gremlin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: instoll/gremlin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on May 19, 2018

  1. Copy the full SHA
    7be31cf View commit details
Showing with 61 additions and 2 deletions.
  1. +21 −0 Gopkg.lock
  2. +38 −0 Gopkg.toml
  3. +1 −1 glide.yaml
  4. +1 −1 request.go
21 changes: 21 additions & 0 deletions Gopkg.lock

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

38 changes: 38 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
name = "github.com/gorilla/websocket"
version = "1.1.0"

[[constraint]]
name = "github.com/satori/go.uuid"
version = "1.2.0"

[prune]
go-tests = true
unused-packages = true
2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -3,4 +3,4 @@ import:
- package: github.com/gorilla/websocket
version: ^1.1.0
- package: github.com/satori/go.uuid
version: ^1.1.0
version: ^1.2.0
2 changes: 1 addition & 1 deletion request.go
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ func Query(query string) *Request {
Gremlin: query,
Language: "gremlin-groovy",
}
u, _ := uuid.NewV4()
u := uuid.NewV4()
uuidString := u.String()
req := &Request{
RequestId: uuidString,