Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(client): Reduce SQL boilerplate code #1758

Merged
merged 21 commits into from
Mar 14, 2020
Prev Previous commit
Next Next commit
u
  • Loading branch information
aeneasr committed Mar 14, 2020
commit ad27eba66a136448c9b7fb20d8abd2966849c2c1
5 changes: 1 addition & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/ory/hydra

go 1.14

replace github.com/ory/x => ../x

require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fsnotify/fsnotify v1.4.9 // indirect
Expand Down Expand Up @@ -36,7 +34,7 @@ require (
github.com/ory/herodot v0.6.2
github.com/ory/sdk/swagutil v0.0.0-20200219090358-f796db673877
github.com/ory/viper v1.5.6
github.com/ory/x v0.0.101
github.com/ory/x v0.0.102
github.com/pborman/uuid v1.2.0
github.com/phayes/freeport v0.0.0-20171002181615-b8543db493a5
github.com/pkg/errors v0.9.1
Expand All @@ -61,7 +59,6 @@ require (
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect
golang.org/x/tools v0.0.0-20200313205530-4303120df7d8
gopkg.in/gorp.v1 v1.7.2 // indirect
gopkg.in/ini.v1 v1.54.0 // indirect
gopkg.in/square/go-jose.v2 v2.4.1
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -753,8 +753,8 @@ github.com/ory/viper v1.5.6/go.mod h1:TYmpFpKLxjQwvT4f0QPpkOn4sDXU1kDgAwJpgLYiQ2
github.com/ory/x v0.0.85/go.mod h1:s44V8t3xyjWZREcU+mWlp4h302rTuM4aLXcW+y5FbQ8=
github.com/ory/x v0.0.88/go.mod h1:wrnJRjIfYXFY/AUiuUlcIUpLBDxFtWc+8x6toAeLZXU=
github.com/ory/x v0.0.93/go.mod h1:lfcTaGXpTZs7IEQAW00r9EtTCOxD//SiP5uWtNiz31g=
github.com/ory/x v0.0.101 h1:ZPV81GnPjbOJ3V2CzOYAfXnKrtp5rOEwKna+EiHPSCA=
github.com/ory/x v0.0.101/go.mod h1:oX5ECLqIjdRl9AeSnUnYv2WdLSBDCxCpAyFogR6OE5g=
github.com/ory/x v0.0.102 h1:mcQYAfOZVuJF3e3H/L6QbzPxgcvLAmfbklK4FWtoLYA=
github.com/ory/x v0.0.102/go.mod h1:oX5ECLqIjdRl9AeSnUnYv2WdLSBDCxCpAyFogR6OE5g=
github.com/parnurzeal/gorequest v0.2.15/go.mod h1:3Kh2QUMJoqw3icWAecsyzkpY7UzRfDhbRdTjtNwNiUE=
github.com/pborman/uuid v1.2.0 h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=
github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k=
Expand Down