File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.24.0-rc2] - 2019-10-02
10+
11+ ## Fixed
12+
13+ - plan: return types in lowercase in SHOW CREATE TABLE ([ #827 ] ( https://github.com/src-d/go-mysql-server/pull/827 ) )
14+ - analyzer: do not erase sort node when pushing it down ([ #818 ] ( https://github.com/src-d/go-mysql-server/pull/818 ) )
15+ - Fixed null errors during value comparisons ([ #831 ] ( https://github.com/src-d/go-mysql-server/pull/831 ) )
16+ - plan: fix race conditions in Exchange node
17+ - Add CHAR and DATETIME types support ([ #823 ] ( https://github.com/src-d/go-mysql-server/pull/823 ) )
18+ - Also check sockets bind to tcp6 and fail on all closed sockets ([ #824 ] ( https://github.com/src-d/go-mysql-server/pull/824 ) )
19+
20+ ## Changed
21+
22+ - Added LIKE test with newlines ([ #820 ] ( https://github.com/src-d/go-mysql-server/pull/820 ) )
23+ - Convert LIKE patterns to specific Go regexes ([ #817 ] ( https://github.com/src-d/go-mysql-server/pull/817 ) )
24+
925## [ 0.24.0-rc1] - 2019-09-19
1026
1127### Added
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ require (
1919 github.com/src-d/go-borges v0.1.3
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.20190821121850-0e0249cf7bc0
22+ github.com/src-d/go-mysql-server v0.4.1-0.20191001122120-b09e8c1c8ab9
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
Original file line number Diff line number Diff line change @@ -250,8 +250,8 @@ github.com/src-d/go-git v4.7.0+incompatible h1:IYSSnbAHeKmsfbQFi9ozbid+KNh0bKjlo
250250github.com/src-d/go-git v4.7.0+incompatible /go.mod h1:1bQciz+hn0jzPQNsYj0hDFZHLJBdV7gXE2mWhC7EkFk =
251251github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible h1:A5bKevhs9C//Nh8QV0J+1KphEaIa25cDe1DTs/yPxDI =
252252github.com/src-d/go-git-fixtures v3.5.1-0.20190605154830-57f3972b0248+incompatible /go.mod h1:XcIQp7L+k0pgfTqfbaTKj3kxlBv8kYOKZ/tKNXbZFLg =
253- github.com/src-d/go-mysql-server v0.4.1-0.20190821121850-0e0249cf7bc0 h1:FaAetYRjr0fV+I44rqjgAoM6FZK2S1GmWuphk0CIpDU =
254- github.com/src-d/go-mysql-server v0.4.1-0.20190821121850-0e0249cf7bc0 /go.mod h1:DdWE0ku/mNfuLsRJIrHeHpDtB7am+6oopxEsQKmVkx8 =
253+ github.com/src-d/go-mysql-server v0.4.1-0.20191001122120-b09e8c1c8ab9 h1:q/CX2DbMybt2m9OlJFrzOtTVe8visM/q752UnA0mVPo =
254+ github.com/src-d/go-mysql-server v0.4.1-0.20191001122120-b09e8c1c8ab9 /go.mod h1:DdWE0ku/mNfuLsRJIrHeHpDtB7am+6oopxEsQKmVkx8 =
255255github.com/src-d/go-oniguruma v1.0.0 /go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM =
256256github.com/src-d/go-oniguruma v1.1.0 h1:EG+Nm5n2JqWUaCjtM0NtutPxU7ZN5Tp50GWrrV8bTww =
257257github.com/src-d/go-oniguruma v1.1.0 /go.mod h1:chVbff8kcVtmrhxtZ3yBVLLquXbzCS6DrxQaAK/CeqM =
You can’t perform that action at this time.
0 commit comments