6e2dd4fa68 
								
							
								 
							
						 
						
							
							
								
								Prepare for the release.  
							
							... 
							
							
							
							Update .mailmap, AUTHORS and MAINTAINERS files.
Signed-off-by: Richard Scothern <richard.scothern@docker.com> 
							
						 
						
							2016-06-13 16:03:16 -07:00  
				
					
						
							
							
								 
						
							
							
								fb106e167a 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1465  from dmcgowan/token-server-oauth  
							
							... 
							
							
							
							Integration token server supporting oauth 
							
						 
						
							2016-06-13 15:01:06 -07:00  
				
					
						
							
							
								 
						
							
							
								4e08e7d1d6 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1775  from dmcgowan/get-content-digest  
							
							... 
							
							
							
							Add option to get content digest from manifest get 
							
						 
						
							2016-06-13 14:59:05 -07:00  
				
					
						
							
							
								 
						
							
							
								805b94eb2b 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1770  from Windfarer/fix-link-patch  
							
							... 
							
							
							
							Fixing link patch 
							
						 
						
							2016-06-13 14:34:42 -07:00  
				
					
						
							
							
								 
						
							
							
								1bf52359f1 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1782  from tianon/accept-lists  
							
							... 
							
							
							
							Update "Accept" header parsing for list values 
							
						 
						
							2016-06-13 14:33:46 -07:00  
				
					
						
							
							
								 
						
							
							
								9198d642ba 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1779  from dmcgowan/letsencrypt-support  
							
							... 
							
							
							
							Let's Encrypt support 
							
						 
						
							2016-06-13 10:48:55 -10:00  
				
					
						
							
							
								 
						
							
							
								015df6cdea 
								
							
								 
							
						 
						
							
							
								
								Add documentation for let's encrypt  
							
							... 
							
							
							
							Signed-off-by: Richard Scothern <richard.scothern@docker.com> 
							
						 
						
							2016-06-13 11:45:18 -07:00  
				
					
						
							
							
								 
						
							
							
								be2ed961aa 
								
							
								 
							
						 
						
							
							
								
								Add support for Let's Encrypt  
							
							... 
							
							
							
							Add configuration and certificate manager to use letsencrypt
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan) 
							
						 
						
							2016-06-13 11:30:42 -07:00  
				
					
						
							
							
								 
						
							
							
								8907f7d189 
								
							
								 
							
						 
						
							
							
								
								Update "Accept" header parsing for list values  
							
							... 
							
							
							
							In Go's header parsing, the same header multiple times results in multiple entries in the `r.Header[...]` slice, but Go does no further parsing beyond that (and in https://golang.org/cl/4528086  it was determined that until/unless the stdlib itself needs it, Go will not do so).
The consequence here for parsing of `Accept:` headers is that we support the way Go outputs headers, but not all language HTTP libraries have a facility to output multiple headers instead of a single list header.
This change ensures that the following (valid) header blocks all parse to the same result for the purposes of what is being tested here:
```
Accept: a/b
Accept: b/c
Accept: d/e
```
```
Accept: a/b; q=0.5, b/c
Accept: d/e
```
```
Accept: a/b; q=0.1, b/c; q=0.2, d/e; q=0.8
```
Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com> 
							
						 
						
							2016-06-10 16:52:27 -07:00  
				
					
						
							
							
								 
						
							
							
								1c99939221 
								
							
								 
							
						 
						
							
							
								
								Vendor letsencrypt packages  
							
							... 
							
							
							
							Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan) 
							
						 
						
							2016-06-09 17:56:43 -07:00  
				
					
						
							
							
								 
						
							
							
								125f4ff7d7 
								
							
								 
							
						 
						
							
							
								
								Add option to get content digest from manifest get  
							
							... 
							
							
							
							The client may need the content digest to delete a manifest using the digest used by the registry.
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan) 
							
						 
						
							2016-06-08 17:02:29 -07:00  
				
					
						
							
							
								 
						
							
							
								75882f079c 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1774  from RichardScothern/catalog-clarifcation  
							
							... 
							
							
							
							Clarify API documentation around catalog fetch behavior 
							
						 
						
							2016-06-08 12:59:09 -07:00  
				
					
						
							
							
								 
						
							
							
								352924cd85 
								
							
								 
							
						 
						
							
							
								
								Clarify API documentation around catalog fetch behavior  
							
							... 
							
							
							
							Signed-off-by: Richard Scothern <richard.scothern@docker.com> 
							
						 
						
							2016-06-08 10:39:17 -07:00  
				
					
						
							
							
								 
						
							
							
								2cbf54df6c 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1773  from zhouhaibing089/comment-fix  
							
							... 
							
							
							
							Fix incorrect comment about auth type 
							
						 
						
							2016-06-08 10:31:49 -07:00  
				
					
						
							
							
								 
						
							
							
								79102ecf85 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1772  from runcom/go1.6const  
							
							... 
							
							
							
							registry: use const for status code 429 
							
						 
						
							2016-06-08 10:22:57 -07:00  
				
					
						
							
							
								 
						
							
							
								fc9aa2f351 
								
							
								 
							
						 
						
							
							
								
								incorrect comment about auth type  
							
							... 
							
							
							
							Signed-off-by: haibzhou <haibzhou@ebay.com> 
							
						 
						
							2016-06-08 22:47:45 +08:00  
				
					
						
							
							
								 
						
							
							
								4901f1b278 
								
							
								 
							
						 
						
							
							
								
								registry: use const for status code 429  
							
							... 
							
							
							
							Signed-off-by: Antonio Murdaca <runcom@redhat.com> 
							
						 
						
							2016-06-08 10:19:15 +02:00  
				
					
						
							
							
								 
						
							
							
								a3965b93bc 
								
							
								 
							
						 
						
							
							
								
								Fixing link in readme  
							
							... 
							
							
							
							Fixing link in readme
Signed-off-by: Qizhao Yang <windfarer@gmail.com> 
							
						 
						
							2016-06-07 11:06:36 +08:00  
				
					
						
							
							
								 
						
							
							
								a31474626b 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1  from docker/master  
							
							... 
							
							
							
							update 
							
						 
						
							2016-06-07 10:58:38 +08:00  
				
					
						
							
							
								 
						
							
							
								feddf6cd4e 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1767  from SvenDowideit/appease-the-oss-validator  
							
							... 
							
							
							
							Revert to using the full URL, as the OSS checker doesn't have access … 
							
						 
						
							2016-06-02 11:22:55 -07:00  
				
					
						
							
							
								 
						
							
							
								b448455011 
								
							
								 
							
						 
						
							
							
								
								Revert to using the full URL, as the OSS checker doesn't have access to the non-OSS docs  
							
							... 
							
							
							
							Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> 
							
						 
						
							2016-06-02 18:22:02 +00:00  
				
					
						
							
							
								 
						
							
							
								3828ecc654 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1765  from allencloud/fix-typos  
							
							... 
							
							
							
							fix typos 
							
						 
						
							2016-06-02 10:36:17 -07:00  
				
					
						
							
							
								 
						
							
							
								db90724ab0 
								
							
								 
							
						 
						
							
							
								
								fix typos  
							
							... 
							
							
							
							Signed-off-by: allencloud <allen.sun@daocloud.io> 
							
						 
						
							2016-06-02 23:03:27 +08:00  
				
					
						
							
							
								 
						
							
							
								bb330cd684 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1762  from SvenDowideit/more-docs-validation-cleanups  
							
							... 
							
							
							
							Next load of docs validation fixes 
							
						 
						
							2016-06-01 11:25:54 -07:00  
				
					
						
							
							
								 
						
							
							
								df2184c810 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1627  from luckyraul/swift_auth_url  
							
							... 
							
							
							
							Swift auth version param 
							
						 
						
							2016-06-01 11:23:23 -07:00  
				
					
						
							
							
								 
						
							
							
								e4acec1806 
								
							
								 
							
						 
						
							
							
								
								Next load of docs validation fixes  
							
							... 
							
							
							
							Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> 
							
						 
						
							2016-06-01 18:18:17 +00:00  
				
					
						
							
							
								 
						
							
							
								e66f9c1440 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1759  from SvenDowideit/fix-new-doc-metadata  
							
							... 
							
							
							
							Add topics to the menu 
							
						 
						
							2016-06-01 10:35:14 -07:00  
				
					
						
							
							
								 
						
							
							
								bf4eb92f56 
								
							
								 
							
						 
						
							
							
								
								Add topics to the menu  
							
							... 
							
							
							
							Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> 
							
						 
						
							2016-05-31 21:31:25 +00:00  
				
					
						
							
							
								 
						
							
							
								d9c4f03bcc 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1760  from RichardScothern/revert-config  
							
							... 
							
							
							
							Revert inadvertant filepath change 
							
						 
						
							2016-05-31 11:16:19 -07:00  
				
					
						
							
							
								 
						
							
							
								d153bfffbd 
								
							
								 
							
						 
						
							
							
								
								Revert inadvertant filepath change  
							
							... 
							
							
							
							Signed-off-by: Richard Scothern <richard.scothern@docker.com> 
							
						 
						
							2016-05-31 11:14:25 -07:00  
				
					
						
							
							
								 
						
							
							
								1b9ab303a4 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1735  from SvenDowideit/move-menu-page  
							
							... 
							
							
							
							Make the index.html files the visible overview menu entry 
							
						 
						
							2016-05-31 09:32:53 -07:00  
				
					
						
							
							
								 
						
							
							
								641f102967 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1687  from RichardScothern/signature-store  
							
							... 
							
							
							
							Remove signature store from registry. 
							
						 
						
							2016-05-31 09:09:39 -07:00  
				
					
						
							
							
								 
						
							
							
								3069a04b8c 
								
							
								 
							
						 
						
							
							
								
								Make the index.html files the visible overview menu entry  
							
							... 
							
							
							
							And move menu entry definition into a page that the user has no reason to navigate to
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> 
							
						 
						
							2016-05-28 01:02:40 +00:00  
				
					
						
							
							
								 
						
							
							
								febcee6564 
								
							
								 
							
						 
						
							
							
								
								Add a deprecation document detailing signature store removal  
							
							... 
							
							
							
							Signed-off-by: Richard Scothern <richard.scothern@docker.com> 
							
						 
						
							2016-05-27 14:51:59 -07:00  
				
					
						
							
							
								 
						
							
							
								0c15ab6952 
								
							
								 
							
						 
						
							
							
								
								Remove signature store from registry.  Return a generated signature for manifest  
							
							... 
							
							
							
							pull.
Signed-off-by: Richard Scothern <richard.scothern@docker.com> 
							
						 
						
							2016-05-27 13:19:26 -07:00  
				
					
						
							
							
								 
						
							
							
								a5f72a6032 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1688  from tt/pass-through-known-errors  
							
							... 
							
							
							
							Pass through known errors 
							
						 
						
							2016-05-27 11:35:34 -07:00  
				
					
						
							
							
								 
						
							
							
								6a40198283 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1719  from gschukin/fix_ceph_last_modifed  
							
							... 
							
							
							
							Handle responce from ceph correctly if no Last-Modifed header specified 
							
						 
						
							2016-05-27 11:34:39 -07:00  
				
					
						
							
							
								 
						
							
							
								596ca8b86a 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1744  from tonyhb/add-config-to-middleware  
							
							... 
							
							
							
							Pass in `app` as context to apply{N}Middleware 
							
						 
						
							2016-05-25 14:08:09 -07:00  
				
					
						
							
							
								 
						
							
							
								7f5c6dd882 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1748  from dmcgowan/fix-expires-in-documentation  
							
							... 
							
							
							
							Update auth documentation examples to show "expires in" as int 
							
						 
						
							2016-05-25 12:48:01 -07:00  
				
					
						
							
							
								 
						
							
							
								3207e0c112 
								
							
								 
							
						 
						
							
							
								
								Update auth documentation examples to show "expires in" as int  
							
							... 
							
							
							
							Go will fail to parse the examples since an int is expected rather than a string for the "expires in" value
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan) 
							
						 
						
							2016-05-25 11:43:36 -07:00  
				
					
						
							
							
								 
						
							
							
								0bd7e971b0 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1743  from RichardScothern/tcp-bug  
							
							... 
							
							
							
							Correct yaml key names in configuration 
							
						 
						
							2016-05-24 11:09:10 -07:00  
				
					
						
							
							
								 
						
							
							
								166c4a957f 
								
							
								 
							
						 
						
							
							
								
								Pass in `app` as context to apply{N}Middleware  
							
							... 
							
							
							
							This lets us access registry config within middleware for additional
configuration of whatever it is that you're overriding.
Signed-off-by: Tony Holdstock-Brown <tony@docker.com> 
							
						 
						
							2016-05-24 11:08:57 -07:00  
				
					
						
							
							
								 
						
							
							
								b9d6c7c9fb 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1741  from leonhartX/master  
							
							... 
							
							
							
							fix broken markdown 
							
						 
						
							2016-05-24 11:04:31 -07:00  
				
					
						
							
							
								 
						
							
							
								588692f6c4 
								
							
								 
							
						 
						
							
							
								
								Correct yaml key names in configuration  
							
							... 
							
							
							
							Signed-off-by: Richard Scothern <richard.scothern@docker.com> 
							
						 
						
							2016-05-24 10:42:29 -07:00  
				
					
						
							
							
								 
						
							
							
								32e9779faf 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1734  from legionus/blob-access-controller  
							
							... 
							
							
							
							Add support for  blobAccessController middleware 
							
						 
						
							2016-05-24 10:34:36 -07:00  
				
					
						
							
							
								 
						
							
							
								79d6008a54 
								
							
								 
							
						 
						
							
							
								
								fix broken markdown  
							
							... 
							
							
							
							Signed-off-by: Ke Xu <leonhartx.k@gmail.com> 
							
						 
						
							2016-05-24 16:33:30 +09:00  
				
					
						
							
							
								 
						
							
							
								5bbf654999 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #1725  from jstarks/foreign_layer  
							
							... 
							
							
							
							Add support for layers from foreign sources 
							
						 
						
							2016-05-20 12:55:55 -07:00  
				
					
						
							
							
								 
						
							
							
								f0052b8434 
								
							
								 
							
						 
						
							
							
								
								Add support for layers from foreign sources  
							
							... 
							
							
							
							This will be used to support downloading Windows base layers from
Microsoft URLs.
Signed-off-by: John Starks <jostarks@microsoft.com> 
							
						 
						
							2016-05-20 12:31:10 -07:00  
				
					
						
							
							
								 
						
							
							
								f97eca5ad6 
								
							
								 
							
						 
						
							
							
								
								Add support for  blobAccessController middleware  
							
							... 
							
							
							
							Signed-off-by: Michal Minar <miminar@redhat.com>
Signed-off-by: Alexey Gladkov <gladkov.alexey@gmail.com> 
							
						 
						
							2016-05-19 14:02:15 +02:00  
				
					
						
							
							
								 
						
							
							
								f18da7d3a3 
								
							
								 
							
						 
						
							
							
								
								update docs  
							
							... 
							
							
							
							Signed-off-by: Nikita Tarasov <nikita@mygento.ru> 
							
						 
						
							2016-05-16 16:09:26 +03:00