Even though the project does use godep, I think it would be good if building and testing with the latest dependencies would work.
The failing dependency is currently gorm. Vertigo's post.Update is currently unable to commit the changes to at least SQLite.
The package was returning near "LIMIT": syntax error for query db.Where(&Post{Slug: post.Slug}).First(&post).Updates(entry). It seems like the it is unable to retrieve any records, which is kind of odd. At a fast glance I was unable to find any changes which would have caused this change.
Even though the project does use
godep
, I think it would be good if building and testing with the latest dependencies would work.The failing dependency is currently
gorm
. Vertigo'spost.Update
is currently unable to commit the changes to at least SQLite.The package was returning
near "LIMIT": syntax error
for querydb.Where(&Post{Slug: post.Slug}).First(&post).Updates(entry)
. It seems like the it is unable to retrieve any records, which is kind of odd. At a fast glance I was unable to find any changes which would have caused this change.