Merge pull request #18546 from containers/dependabot/go_modules/github.com/docker/distribution-2.8.2incompatible
build(deps): bump github.com/docker/distribution from 2.8.1+incompatible to 2.8.2+incompatible
This commit is contained in:
		
						commit
						376a7f34ba
					
				
							
								
								
									
										2
									
								
								go.mod
								
								
								
								
							
							
						
						
									
										2
									
								
								go.mod
								
								
								
								
							|  | @ -90,7 +90,7 @@ require ( | |||
| 	github.com/davecgh/go-spew v1.1.1 // indirect | ||||
| 	github.com/digitalocean/go-libvirt v0.0.0-20220804181439-8648fbde413e // indirect | ||||
| 	github.com/disiqueira/gotree/v3 v3.0.2 // indirect | ||||
| 	github.com/docker/distribution v2.8.1+incompatible // indirect | ||||
| 	github.com/docker/distribution v2.8.2+incompatible // indirect | ||||
| 	github.com/docker/docker-credential-helpers v0.7.0 // indirect | ||||
| 	github.com/felixge/httpsnoop v1.0.3 // indirect | ||||
| 	github.com/fsouza/go-dockerclient v1.9.7 // indirect | ||||
|  |  | |||
							
								
								
									
										4
									
								
								go.sum
								
								
								
								
							
							
						
						
									
										4
									
								
								go.sum
								
								
								
								
							|  | @ -316,8 +316,8 @@ github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017/go.mod h1:JLrzqnKDaYBop | |||
| github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY= | ||||
| github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= | ||||
| github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= | ||||
| github.com/docker/distribution v2.8.1+incompatible h1:Q50tZOPR6T/hjNsyc9g8/syEs6bk8XXApsHjKukMl68= | ||||
| github.com/docker/distribution v2.8.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= | ||||
| github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8= | ||||
| github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= | ||||
| github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= | ||||
| github.com/docker/docker v23.0.6+incompatible h1:aBD4np894vatVX99UTx/GyOUOK4uEcROwA3+bQhEcoU= | ||||
| github.com/docker/docker v23.0.6+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= | ||||
|  |  | |||
|  | @ -3,13 +3,13 @@ | |||
| //
 | ||||
| // Grammar
 | ||||
| //
 | ||||
| // 	reference                       := name [ ":" tag ] [ "@" digest ]
 | ||||
| //	reference                       := name [ ":" tag ] [ "@" digest ]
 | ||||
| //	name                            := [domain '/'] path-component ['/' path-component]*
 | ||||
| //	domain                          := domain-component ['.' domain-component]* [':' port-number]
 | ||||
| //	domain-component                := /([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])/
 | ||||
| //	port-number                     := /[0-9]+/
 | ||||
| //	path-component                  := alpha-numeric [separator alpha-numeric]*
 | ||||
| // 	alpha-numeric                   := /[a-z0-9]+/
 | ||||
| //	alpha-numeric                   := /[a-z0-9]+/
 | ||||
| //	separator                       := /[_.]|__|[-]*/
 | ||||
| //
 | ||||
| //	tag                             := /[\w][\w.-]{0,127}/
 | ||||
|  |  | |||
|  | @ -134,6 +134,19 @@ var ( | |||
| 		}, | ||||
| 	} | ||||
| 
 | ||||
| 	invalidPaginationResponseDescriptor = ResponseDescriptor{ | ||||
| 		Name:        "Invalid pagination number", | ||||
| 		Description: "The received parameter n was invalid in some way, as described by the error code. The client should resolve the issue and retry the request.", | ||||
| 		StatusCode:  http.StatusBadRequest, | ||||
| 		Body: BodyDescriptor{ | ||||
| 			ContentType: "application/json", | ||||
| 			Format:      errorsBody, | ||||
| 		}, | ||||
| 		ErrorCodes: []errcode.ErrorCode{ | ||||
| 			ErrorCodePaginationNumberInvalid, | ||||
| 		}, | ||||
| 	} | ||||
| 
 | ||||
| 	repositoryNotFoundResponseDescriptor = ResponseDescriptor{ | ||||
| 		Name:        "No Such Repository Error", | ||||
| 		StatusCode:  http.StatusNotFound, | ||||
|  | @ -490,6 +503,7 @@ var routeDescriptors = []RouteDescriptor{ | |||
| 							}, | ||||
| 						}, | ||||
| 						Failures: []ResponseDescriptor{ | ||||
| 							invalidPaginationResponseDescriptor, | ||||
| 							unauthorizedResponseDescriptor, | ||||
| 							repositoryNotFoundResponseDescriptor, | ||||
| 							deniedResponseDescriptor, | ||||
|  | @ -1578,6 +1592,9 @@ var routeDescriptors = []RouteDescriptor{ | |||
| 								}, | ||||
| 							}, | ||||
| 						}, | ||||
| 						Failures: []ResponseDescriptor{ | ||||
| 							invalidPaginationResponseDescriptor, | ||||
| 						}, | ||||
| 					}, | ||||
| 				}, | ||||
| 			}, | ||||
|  |  | |||
|  | @ -133,4 +133,13 @@ var ( | |||
| 		longer proceed.`, | ||||
| 		HTTPStatusCode: http.StatusNotFound, | ||||
| 	}) | ||||
| 
 | ||||
| 	ErrorCodePaginationNumberInvalid = errcode.Register(errGroup, errcode.ErrorDescriptor{ | ||||
| 		Value:   "PAGINATION_NUMBER_INVALID", | ||||
| 		Message: "invalid number of results requested", | ||||
| 		Description: `Returned when the "n" parameter (number of results | ||||
| 		to return) is not an integer, "n" is negative or "n" is bigger than | ||||
| 		the maximum allowed.`, | ||||
| 		HTTPStatusCode: http.StatusBadRequest, | ||||
| 	}) | ||||
| ) | ||||
|  |  | |||
|  | @ -382,7 +382,7 @@ github.com/digitalocean/go-qemu/qmp | |||
| # github.com/disiqueira/gotree/v3 v3.0.2 | ||||
| ## explicit; go 1.13 | ||||
| github.com/disiqueira/gotree/v3 | ||||
| # github.com/docker/distribution v2.8.1+incompatible | ||||
| # github.com/docker/distribution v2.8.2+incompatible | ||||
| ## explicit | ||||
| github.com/docker/distribution/digestset | ||||
| github.com/docker/distribution/reference | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue