Skip to content

Commit c5e39e6

Browse files
authored
Merge branch 'master' into no-cdeps
2 parents 6ba9943 + 169c4e7 commit c5e39e6

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

.travis.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
language: go
22

33
go_import_path: github.com/src-d/gitbase
4+
go: 1.12.x
45

56
env:
6-
- GO111MODULE=on
7+
- GO111MODULE=on GOPROXY=https://proxy.golang.org
78

89
matrix:
910
fast_finish: true
@@ -18,8 +19,7 @@ script:
1819

1920
jobs:
2021
include:
21-
- go: 1.11.x
22-
os: linux
22+
- os: linux
2323
sudo: required
2424
dist: trusty
2525
services: [docker]
@@ -37,8 +37,7 @@ jobs:
3737
on:
3838
tags: true
3939

40-
- go: 1.11.x
41-
os: osx
40+
- os: osx
4241
osx_image: xcode9.3
4342

4443
before_install:

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.24.0-beta2] - 2019-07-31
10+
911
### Changed
1012

1113
- When it's added the `-v` verbose flag, gitbase will use `debug` as logging level, ignoring any other passed ([#935](https://github.com/src-d/gitbase/pull/935))
1214

1315
### Fixed
1416

1517
- If using docker image, and `info` logging level, it will be now used instead of `debug` ([#935](https://github.com/src-d/gitbase/pull/935))
16-
18+
- sql/analyzer: fix order by resolution for all nodes ([#793](https://github.com/src-d/gitbase/pull/793))
19+
- sql: fix SQL method for arrays of JSON ([#790](https://github.com/src-d/gitbase/pull/790))
1720

1821
## [0.24.0-beta1] - 2019-07-08
1922

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ WORKDIR $GITBASE_PATH
1414
ENV GO_BUILD_ARGS="-o /bin/gitbase"
1515
ENV GO_BUILD_PATH="./cmd/gitbase"
1616
ENV GO111MODULE=on
17+
ENV GOPROXY=https://proxy.golang.org
1718

1819
RUN make static-build
1920

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/src-d/go-borges v0.0.0-20190628121335-da12a84d60fd
2020
github.com/src-d/go-git v4.7.0+incompatible
2121
github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible
22-
github.com/src-d/go-mysql-server v0.4.1-0.20190708083625-b61703ad45cc
22+
github.com/src-d/go-mysql-server v0.4.1-0.20190730105128-550cc54baee2
2323
github.com/stretchr/testify v1.3.0
2424
github.com/uber-go/atomic v1.4.0 // indirect
2525
github.com/uber/jaeger-client-go v2.16.0+incompatible

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@ github.com/src-d/go-git v4.7.0+incompatible h1:IYSSnbAHeKmsfbQFi9ozbid+KNh0bKjlo
238238
github.com/src-d/go-git v4.7.0+incompatible/go.mod h1:1bQciz+hn0jzPQNsYj0hDFZHLJBdV7gXE2mWhC7EkFk=
239239
github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible h1:A5bKevhs9C//Nh8QV0J+1KphEaIa25cDe1DTs/yPxDI=
240240
github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible/go.mod h1:XcIQp7L+k0pgfTqfbaTKj3kxlBv8kYOKZ/tKNXbZFLg=
241-
github.com/src-d/go-mysql-server v0.4.1-0.20190708083625-b61703ad45cc h1:Rgz2etoEnslCgMKCfwpKd0hBFrZVxpV33QAXjadVi0o=
242-
github.com/src-d/go-mysql-server v0.4.1-0.20190708083625-b61703ad45cc/go.mod h1:GO8SmBnN9LcKSXy6DYuBbqKtJvrRnHsBrlXvlVOX+NM=
241+
github.com/src-d/go-mysql-server v0.4.1-0.20190730105128-550cc54baee2 h1:Z9Z1FKGzlV+DEdgEwPU0Lqjj8Rj2NaQ6HJbkJ+eOz6U=
242+
github.com/src-d/go-mysql-server v0.4.1-0.20190730105128-550cc54baee2/go.mod h1:GO8SmBnN9LcKSXy6DYuBbqKtJvrRnHsBrlXvlVOX+NM=
243243
github.com/src-d/go-oniguruma v1.0.0/go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM=
244244
github.com/src-d/go-oniguruma v1.1.0 h1:EG+Nm5n2JqWUaCjtM0NtutPxU7ZN5Tp50GWrrV8bTww=
245245
github.com/src-d/go-oniguruma v1.1.0/go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM=

integration_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ func TestIntegration(t *testing.T) {
475475
) q
476476
) q2`,
477477
[]sql.Row{
478-
{float64(1), float64(0), time.Date(2015, time.March, 31, 12, 00, 8, 0, time.UTC), "e8d3ffab552895c19b9fcf7aa264d277cde33881", "worktree", "Changed"},
478+
{float64(1), float64(0), time.Date(2015, time.March, 31, 12, 00, 8, 0, time.UTC), "e8d3ffab552895c19b9fcf7aa264d277cde33881", "worktree", "Added"},
479479
{float64(0), float64(0), time.Date(2015, time.April, 5, 21, 30, 47, 0, time.UTC), "6ecf0ef2c2dffb796033e5a02219af86ec6584e5", "worktree", "Changed"},
480480
{float64(0), float64(0), time.Date(2015, time.April, 5, 21, 30, 47, 0, time.UTC), "6ecf0ef2c2dffb796033e5a02219af86ec6584e5", "worktree", "Changed"},
481481
{float64(0), float64(0), time.Date(2015, time.April, 5, 21, 30, 47, 0, time.UTC), "6ecf0ef2c2dffb796033e5a02219af86ec6584e5", "worktree", "Changed"},

0 commit comments

Comments
 (0)