Merge pull request #2550 from dmcgowan/release-1.2.0-beta.0
Add first v1.2.0 beta release notes
This commit is contained in:
		
							
								
								
									
										43
									
								
								releases/v1.2.0-beta.0.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								releases/v1.2.0-beta.0.toml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | |||||||
|  | # commit to be tagged for new release | ||||||
|  | commit = "HEAD" | ||||||
|  |  | ||||||
|  | project_name = "containerd" | ||||||
|  | github_repo = "containerd/containerd" | ||||||
|  | match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$" | ||||||
|  |  | ||||||
|  | # previous release | ||||||
|  | previous = "v1.1.0" | ||||||
|  |  | ||||||
|  | pre_release = true | ||||||
|  |  | ||||||
|  | preface = """\ | ||||||
|  | After two major releases of containerd, we have brought back the beta releases to | ||||||
|  | introduce a new runtime interface and new APIs. The 1.2 release will be fully | ||||||
|  | backwards compatibility and have no API breakage. The API additions included in | ||||||
|  | this release is focused on making containerd more extensible and cover more user | ||||||
|  | cases. | ||||||
|  |  | ||||||
|  | ### New V2 Runtime | ||||||
|  |  | ||||||
|  | A new v2 runtime has been added with a stable gRPC interface for managing | ||||||
|  | containers through external plugins. | ||||||
|  |  | ||||||
|  | ### New Proxy Plugins | ||||||
|  |  | ||||||
|  | A new proxy plugin configuration has been added to allow external snapshotters | ||||||
|  | be connected to containerd using gRPC. | ||||||
|  |  | ||||||
|  | ### API Changes | ||||||
|  |  | ||||||
|  | Minor API additions | ||||||
|  | """ | ||||||
|  |  | ||||||
|  | # notable prs to include in the release notes, 1234 is the pr number | ||||||
|  | [notes] | ||||||
|  |  | ||||||
|  | [breaking] | ||||||
|  |  | ||||||
|  | [rename_deps] | ||||||
|  | 	[rename_deps.ttrpc] | ||||||
|  | 	old = "github.com/stevvooe/ttrpc" | ||||||
|  | 	new = "github.com/containerd/ttrpc" | ||||||
| @@ -21,7 +21,7 @@ var ( | |||||||
| 	Package = "github.com/containerd/containerd" | 	Package = "github.com/containerd/containerd" | ||||||
|  |  | ||||||
| 	// Version holds the complete version number. Filled in at linking time. | 	// Version holds the complete version number. Filled in at linking time. | ||||||
| 	Version = "1.1.0+unknown" | 	Version = "1.2.0-beta.0+unknown" | ||||||
|  |  | ||||||
| 	// Revision is filled with the VCS (e.g. git) revision being used to build | 	// Revision is filled with the VCS (e.g. git) revision being used to build | ||||||
| 	// the program at linking time. | 	// the program at linking time. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Derek McGowan
					Derek McGowan