mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 08:25:40 +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>
|
||
|---|---|---|
| .. | ||
| idle | ||
| docs.go | ||
| handler_api.go | ||
| handler_logging.go | ||
| handler_panic.go | ||
| handler_rid.go | ||
| listener_api.go | ||
| register_archive.go | ||
| register_auth.go | ||
| register_containers.go | ||
| register_distribution.go | ||
| register_events.go | ||
| register_exec.go | ||
| register_generate.go | ||
| register_healthcheck.go | ||
| register_images.go | ||
| register_info.go | ||
| register_manifest.go | ||
| register_monitor.go | ||
| register_networks.go | ||
| register_ping.go | ||
| register_play.go | ||
| register_plugins.go | ||
| register_pods.go | ||
| register_secrets.go | ||
| register_swagger.go | ||
| register_swarm.go | ||
| register_system.go | ||
| register_version.go | ||
| register_volumes.go | ||
| server.go | ||
| swagger.go | ||