8000 Tags · seba-ban/go-containerregistry · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: seba-ban/go-containerregistry

Tags

v0.5.1

Toggle v0.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Retry more errors in remote.Write (google#1019)

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Propagate remote options through schema 1 copies (google#1007)

The schema 1 copying code was very hacked together, but remote.Put
simplifies things a bit. This extends some of the crane/gcrane options
down through to legacy.CopySchema1.

v0.4.1

Toggle v0.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
cache: lazily pull contents to populate cache (google#951)

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Always include tag in tarball refs (google#893)

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Start to flesh out crane optimize. (google#879)

* Start to flesh out crane optimize.

This is a hidden command, which roundtrips a remote image to a target image through `tarball.LayerFromOpener(layer.Uncompressed)`.

Right now this does nothing to force estargz (still need `GGCR_EXPERIMENT_ESTARGZ=1`) or prioritize files (need `estargz.WithPrioritizedFiles(foo)`), but want to start the convo.

Fixes: google#878

* Add --prioritize flag to prioritize files

* Fix headers, drop history

* Drop unused variable

* Add explicit option for estargz

* Add a warning comment to crane.Optimize

v0.2.1

Toggle v0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Set Version via ldflags for releases (google#855)

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Implement better user agent support (google#837)

* Expose transport.NewUserAgent

This allows you to supply a customer user agent string that will be
prepended before the go-containerregistry portion.

This uses go module build info to determine the version of
go-containerregistry that you have pulled in, which will be included in
the user agent as "go-containerregistry/${VERSION}". If we cannot get
the version, this is just "go-containerregistry".

* Expose remote.WithUserAgent

* Expose crane.WithUserAgent

* Supply useragent from crane CLI

v0.1.4

Toggle v0.1.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Return basic auth from google.Keychain (google#791)

Before, we were taking advantage of the fact that GCR will allow you to
just send an access token as bearer auth, but apparently this breaks
`gcrane cp` if it's your first push to a registry, so this change
returns basic auth to force us to always do a token exchange.

v0.1.3

Toggle v0.1.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
add remote.Head (google#770)

* add remote.Head

this is useful for fetching a reference's digest/size/type via a HEAD
request, which does not count towards Docker Hub image pull rate limits

Signed-off-by: Alex Suraci <suraci.alex@gmail.com>

* fix up modules

Signed-off-by: Alex Suraci <suraci.alex@gmail.com>

v0.1.2

Toggle v0.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Split tarball progress test from write_test.go (google#756)

This example test reaches out to the internet, which isn't ideal.

For now, I'm just going to split it off into a separate file so it's
easier to exclude.

Also, fix some whitespace nits.
0