mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-02 05:37:51 +00:00
* Update method/function signatures use the manifest list name and
images associated with the operation explicitly, in general
func f(ctx context.Context, manifestListName string,
ImageNames []string, options *fOptions)
* Leverage gorilla/mux Subrouters to support API v3.x and v4.x for
manifests
* Make manifest API endpoints more RESTful
* Add PUT /manifest/{id} to update existing manifests
* Add manifests.Annotate to go bindings, uncommented unit test
* Add DELETE /manifest/{Id} to remove existing manifest list, use
PUT /manifest/{id} to remove images from a list
* Deprecated POST /manifest/{id}/add and /manifest/{id}/remove, use
PUT /manifest/{id} instead
* Corrected swagger godoc and updated to cover API changes
* Update podman manifest commands to use registry.Context()
* Expose utils.GetVar() to obtain query parameters by name
* Unexpose server.registerSwaggerHandlers, not sure why this was ever
exposed.
* Refactored code to use http.Header instead of map[string]string when
operating on HTTP headers.
* Add API-Version header support in bindings to allow calling explicate
versions of the API. Header is _NOT_ forwarded to the API service.
Signed-off-by: Jhon Honce <jhonce@redhat.com>
|
||
|---|---|---|
| .. | ||
| archive.go | ||
| attach.go | ||
| checkpoint.go | ||
| commit.go | ||
| containers.go | ||
| create.go | ||
| diff.go | ||
| exec.go | ||
| healthcheck.go | ||
| logs.go | ||
| mount.go | ||
| rename.go | ||
| types.go | ||
| types_attach_options.go | ||
| types_checkpoint_options.go | ||
| types_commit_options.go | ||
| types_copy_options.go | ||
| types_create_options.go | ||
| types_diff_options.go | ||
| types_execinspect_options.go | ||
| types_execstart_options.go | ||
| types_execstartandattach_options.go | ||
| types_exists_options.go | ||
| types_export_options.go | ||
| types_healthcheck_options.go | ||
| types_init_options.go | ||
| types_inspect_options.go | ||
| types_kill_options.go | ||
| types_list_options.go | ||
| types_log_options.go | ||
| types_mount_options.go | ||
| types_mountedcontainerpaths_options.go | ||
| types_pause_options.go | ||
| types_prune_options.go | ||
| types_remove_options.go | ||
| types_rename_options.go | ||
| types_resizeexectty_options.go | ||
| types_resizetty_options.go | ||
| types_restart_options.go | ||
| types_restore_options.go | ||
| types_shouldrestart_options.go | ||
| types_start_options.go | ||
| types_stats_options.go | ||
| types_stop_options.go | ||
| types_top_options.go | ||
| types_unmount_options.go | ||
| types_unpause_options.go | ||
| types_wait_options.go | ||