This commit is contained in:
Eileen Uchitelle 2018-05-11 15:27:34 -04:00
Родитель 81d4ef3cc4
Коммит c458f67c85
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,11 @@
# Changelog
## 0.2.9
Fixes
* Passing duplicate values to columns in a SQL statement (ex `SELECT id, NULL, NULL, name from repositories`) used to return an array of results with de-duplicated values. (ex `[[1, nil, "github"]]` instead of `[[1, nil, nil, "github"]]`. This had some unfortunate side-effects when parsing results so we changed the code to behave closer to `ActiveRecord::Result` objects. Now if you pass duplicated columns the `results` array will return all the values. The hash will only return unique columns because hashes cannot contain duplicate keys.
## 0.2.8
Fixes

Просмотреть файл

@ -1,5 +1,5 @@
module GitHub
module DS
VERSION = "0.2.8"
VERSION = "0.2.9"
end
end