netlify / git-gateway

A Gateway to Git APIs
MIT License
400 stars 89 forks source link

Upgrade sqlite for macos compat #46

Closed mraerino closed 4 years ago

mraerino commented 4 years ago

- Summary

On macOS the older sqlite lib uses some deprecated libc features. Upgrade to get rid of them in tests.

- Test plan

- Description for the changelog

Upgrade Sqlite adapter

- A picture of a cute animal (not mandatory but encouraged)

mraerino commented 4 years ago

The Go versioning scheme expects you to create a sub-package like v2 once your major version is above 1 (their idea of "no breaking changes"). Therefore, a dependency which goes above 1.x but is not using that subpackage is considered "incompatible". See https://blog.golang.org/v2-go-modules

mheffner commented 4 years ago

TIL, thanks!