vendor: update all dependencies

* Update all dependencies
  * Remove all `[[constraint]]` from Gopkg.toml
  * Add in the minimum number of `[[override]]` to build
  * Remove go get of github.com/inconshreveable/mousetrap as it is vendored
  * Update docs with new policy on constraints
This commit is contained in:
Nick Craig-Wood 2018-05-02 17:09:45 +01:00
parent 21383877df
commit 6427029c4e
4902 changed files with 1443417 additions and 227283 deletions

View file

@ -42,6 +42,12 @@
},
"Timestamp": {
"shape": "TimestampType"
},
"Blobs": {
"shape": "Blobs"
},
"Timestamps": {
"shape": "Timestamps"
}
}
},
@ -76,6 +82,17 @@
},
"TimestampType": {
"type": "timestamp"
},
"BlobType": {
"type": "blob"
},
"Blobs": {
"type":"list",
"member":{"shape":"BlobType"}
},
"Timestamps":{
"type":"list",
"member":{"shape":"TimestampType"}
}
},
"cases": [
@ -136,6 +153,23 @@
},
"body": "<OperationNameResponse><Str></Str><FooNum>123</FooNum><FalseBool>false</FalseBool><TrueBool>true</TrueBool><Float>1.2</Float><Double>1.3</Double><Long>200</Long><Char>a</Char><Timestamp>2015-01-25T08:00:00Z</Timestamp></OperationNameResponse>"
}
},
{
"given": {
"output": {
"shape": "OutputShape"
},
"name": "OperationName"
},
"result": {
"Blobs": ["value", "value2"],
"Timestamps": [1422172800, 1422172801]
},
"response": {
"status_code": 200,
"headers": {},
"body": "<OperationNameResponse><Blobs><member>dmFsdWU=</member><member>dmFsdWUy</member></Blobs><Timestamps><member>2015-01-25T08:00:00Z</member><member>2015-01-25T08:00:01Z</member></Timestamps></OperationNameResponse>"
}
}
]
},