Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.7-dev' into 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo Technology Build Agent committed Jan 29, 2019
2 parents 67746e1 + 72f1ee3 commit c0db4cd
Show file tree
Hide file tree
Showing 96 changed files with 1,654 additions and 282 deletions.
31 changes: 28 additions & 3 deletions neo4j/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 neo4j/Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@
[prune]
go-tests = true
unused-packages = true

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.2"
2 changes: 1 addition & 1 deletion neo4j/auth_tokens.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/auth_tokens_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/config.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/config_resolver.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/config_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/config_trust.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/driver.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/driver_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
3 changes: 2 additions & 1 deletion neo4j/error.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand All @@ -22,6 +22,7 @@ package neo4j
import "C"
import (
"fmt"

"github.com/neo4j-drivers/gobolt"
)

Expand Down
2 changes: 1 addition & 1 deletion neo4j/error_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/ginkgo_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/gobolt_driver.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
7 changes: 4 additions & 3 deletions neo4j/gobolt_driver_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand All @@ -20,11 +20,12 @@
package neo4j

import (
"net/url"

. "github.com/neo4j/neo4j-go-driver/neo4j/utils/test"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
"net/url"

"github.com/neo4j-drivers/gobolt"
)
Expand All @@ -45,7 +46,7 @@ var _ = Describe("Driver", func() {
}

driver, err := newGoboltDriver(driverUrl, token, nil)
Expect(err).To(BeGenericError(ContainSubstring("unable to convert authentication token to connector value")))
Expect(err).To(BeGenericError(ContainSubstring("unable to convert authentication token:")))
Expect(driver).To(BeNil())
})
})
Expand Down
2 changes: 1 addition & 1 deletion neo4j/logging.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/logging_impl.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/logging_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
22 changes: 13 additions & 9 deletions neo4j/mock_connection_test.go

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

2 changes: 1 addition & 1 deletion neo4j/mock_connector_test.go

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

2 changes: 1 addition & 1 deletion neo4j/mock_factory_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/mock_logging_test.go

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

2 changes: 1 addition & 1 deletion neo4j/mock_pool_test.go

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

5 changes: 3 additions & 2 deletions neo4j/mock_record_test.go

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

5 changes: 3 additions & 2 deletions neo4j/mock_result_test.go

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

5 changes: 3 additions & 2 deletions neo4j/mock_resultsummary_test.go

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

2 changes: 1 addition & 1 deletion neo4j/record.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/record_impl.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/result.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/result_helpers.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
2 changes: 1 addition & 1 deletion neo4j/result_helpers_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2002-2018 "Neo4j,"
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
Expand Down
Loading

0 comments on commit c0db4cd

Please sign in to comment.