Skip to content

Releases: oras-project/oras

v1.0.0-rc.2

06 Mar 11:16
3c5e899
Compare
Choose a tag to compare
v1.0.0-rc.2 Pre-release
Pre-release

New Features

  • BREAKING CHANGE: The default value of --image-spec is set to v1.1-image for oras push and oras attach
    • Auto manifest type selection is disabled (#782)
  • BREAKING CHANGE: oras cp --recursive is re-designed to copy artifacts with attached artifacts (#826, #827)
  • oras repo ls supports listing repositories under a certain namespace
  • oras repo tags supports showing tags associated with a particular tag or digest
  • Support HTTP client retry on read operations for registry targets
  • Improve registry developer experience
    • Support specifying port in custom DNS flag --resolve
      • Example: debug and test local registry instances: oras push --resolve prod.registry.io:443:127.0.0.1:5000 prod.registry.io/hello:v1 hi.txt
    • Support custom HTTP header via flag -H, --header
      • Example: correlate operations for specific registry providers: oras repo ls -H X-Correlation-Id=$CORRELATION_ID prod.registry.io

Bug Fixes

  • Fix #782: root node's registry and repository are not shown in the tree view output of oras discover
  • Fix #812: oras cp copies extra index and referrer nodes even when a platform flag is specified
  • Fix #815: temp files remain after oras pull
  • Fix #842: custom DNS rules not working for destination registry in oras cp
  • Fix #846: credential config file is not working for destination registry in oras cp
  • Fix #849: multi tagging fails when extra tags are provided in oras push
  • Minor fixes

Other Changes

  • Improve UX
    • oras discover prints subject digest for root node in tree-view output
    • oras tag prints digest for oras tag command
  • Update to golang 1.20.1
  • Update dependencies to the latest versions
  • Add end-to-end test specs covering all registry-related cases

Detailed Commits

  • bump: bump to golang 1.20 by @wangxiaoxuan273 in #784
  • feat: suppport repo ls sub-namespace by @wangxiaoxuan273 in #768
  • build(deps): bump github.com/docker/cli from 20.10.23+incompatible to 23.0.0+incompatible by @dependabot in #783
  • chore: add vi and mac things to gitignore by @TerryHowe in #777
  • fix: Have make file fail with wrong go version by @TerryHowe in #785
  • feat!: show subject digest in oras discover by @qweeah in #798
  • build(deps): bump github.com/docker/cli from 23.0.0+incompatible to 23.0.1+incompatible by @dependabot in #795
  • feat: enable --header flag to specify headers with requests by @wangxiaoxuan273 in #794
  • test(e2e): add e2e specs for oras cp by @qweeah in #749
  • chore: add CODEOWNERS based on OWNERS.md by @shizhMSFT in #811
  • fix: fix CODEOWNERS by @shizhMSFT in #819
  • chore: move ParseRepoPath to internal package by @qweeah in #817
  • test(e2e): add e2e specs for oras attach by @qweeah in #805
  • chore: add Billy Zha as a maintainer by @shizhMSFT in #820
  • chore: add Terry Howe as a maintainer by @shizhMSFT in #821
  • fix: lazy close file store by @chi-qin in #831
  • test(e2e): take registry logs when e2e fails by @qweeah in #830
  • chore: Add basic PR template by @TerryHowe in #778
  • feat: allow user to specify destination port via resolve flag by @qweeah in #801
  • feat: Add ability query tags for oras repo tags command by @TerryHowe in #800
  • test(e2e): specs for filtered tag listing by @qweeah in #832
  • fix: fix bug when copying recursively with certain platforms by @qweeah in #818
  • build(deps): bump golang.org/x/net from 0.5.0 to 0.7.0 in /test/e2e by @dependabot in #833
  • fix: flaky test on multi referrers by @qweeah in #835
  • test(e2e): add specs for oras discover by @qweeah in #828
  • docs: Add CONTRIBUTING.md file by @TerryHowe in #781
  • feat: add retry support to the auth client by @souleb in #838
  • fix: support binary target in oras cp by @qweeah in #843
  • fix!: support multiple config files in oras cp by @qweeah in #847
  • feat: support --header for oras cp by @wangxiaoxuan273 in #848
  • feat: return error when header flags used on oci layout by @qweeah in #841
  • fix: push bug when multi tagging by @qweeah in #850
  • refactor: clone default http transport for registry client by @qweeah in #840
  • fix: Improve error message on oras copy.go with non-existent tags by @khanjasir90 in #852
  • chore: add Billy Zha's GPG key by @qweeah in #844
  • feat!: disable auto type conversion for manifests by @qweeah in #797
  • feat: add digest hint in oras tag logs by @qweeah in #853
  • bump: update oras-go by @qweeah in #856
  • bump: update go to 1.20.1 by @qweeah in #857
  • test(e2e): add e2e specs for custom DNS rules by @qweeah in #855
  • bump: update version to rc.2 by @qweeah in #858

New Contributors

Full Changelog: v1.0.0-rc.1...v1.0.0-rc.2

Notes

This release was signed with BE6F A8DD A48D 4C23 0091 A0A9 276D 8A72 4CE1 C704 (@qweeah's GPG key) which can be found here.

v1.0.0-rc.1

31 Jan 09:47
a98931b
Compare
Choose a tag to compare
v1.0.0-rc.1 Pre-release
Pre-release

New Features

  • Introduce OCI image layout support for ORAS with the flag --oci-layout
    • oras CLI is able to push / pull / copy artifacts from / to the local file system in OCI image layout
    • Folders and tar archives are supported on read
    • Folders are supported on write
    • Examples
      • Download an artifact into an OCI layout folder: oras cp localhost:5000/net-monitor:v1 --to-oci-layout download_folder:v1
      • Show tags in tar archives built by docker buildx build -o dest=out.tar,type=oci: oras repo tags --oci-layout out.tar
    • More examples can be found in the help pages of applicable commands
  • Introduce compatibility mode for ORAS
    • oras push and oras attach allow building artifact using a specific manifest type via the flag --image-spec
    • oras push, oras attach, oras copy, oras discover, oras manifest push, and oras manifest delete allow opting for specific referrers implementation for listing referrers via the flag --distribution-spec
  • BREAKING CHANGE: oras pull will only pull direct artifacts. Use flag --include-subject to pull all artifacts recursively.
  • oras discover supports showing annotations of the discovered artifacts via the flag -v
  • Support temporary DNS resolving for remote server access via the flag --resolve host:port:address for applicable commands
  • Support s390x architecture for releasing oras

Bug Fixes

  • Fix #697: consistent file reference parsing on Windows and other platforms
  • Fix #740: fail to extract symbols links when oras pull to an absolute path
  • Minor fixes

Other Changes

  • BREAKING CHANGE: oras blob delete and oras manifest delete return success on non-existent content when the flag --force is specified
  • Update dependencies to the latest versions
  • Improve documentation
  • Assure quality by end-to-end tests

Detailed Commits

  • test(e2e): add E2E testing utilities and sample specs by @qweeah in #639
  • bump: update oras-go version by @qweeah in #683
  • fix: only pull configuration in root by @qweeah in #684
  • test: add test for oras push by @qweeah in #691
  • bump: change oras-go version to rc6 and change concurrency type by @wangxiaoxuan273 in #715
  • test: add utility for file matching by @qweeah in #701
  • feat!: support configurable subject pulling by @qweeah in #689
  • fix: add log when failed to scan confirmation by @qweeah in #705
  • feat: add directional hints for debug logs by @qweeah in #713
  • test: add e2e specs for oras pull by @qweeah in #693
  • test: add e2e specs for oras blob fetch by @qweeah in #699
  • test: add E2E specs for manifest fetch-config by @qweeah in #711
  • test: add E2E specs covering repo subcommand by @qweeah in #716
  • test: add e2e specs covering oras tag by @qweeah in #718
  • test: add E2E specs for oras blob push by @qweeah in #706
  • test: add E2E specs for manifest push by @qweeah in #702
  • test: add E2E specs for oras manifest delete by @qweeah in #703
  • test: add E2E specs covering blob delete by @qweeah in #708
  • fix: add stdin password for discover, repo ls and repo tags by @qweeah in #725
  • build(deps): bump github.com/docker/cli from 20.10.21+incompatible to 20.10.22+incompatible by @dependabot in #726
  • fix: mandates empty referrer to empty array by @qweeah in #729
  • feat: support customized DNS resolving for remote registry by @qweeah in #696
  • fix!: fix colon in media type for windows by @qweeah in #698
  • feat: add s390x release and image to support s390x architecture by @dmittelstaedt in #732
  • feat: show annotations in oras discover tree format output by @qweeah in #735
  • refactor(oci-layout): use Parser to process option input by @qweeah in #736
  • feat!: force deleting a non-existent blob/manifest by @qweeah in #745
  • feat: add compatibility mode for push and attach cmd by @qweeah in #741
  • test(e2e): add oci artifact spec for common registry users by @qweeah in #746
  • feat(oci-layout): support in oras cp by @qweeah in #748
  • feat(oci-layout): support oras tag,oras repo tags and oras pull by @qweeah in #753
  • feat(oci-layout): support in fetch and push for manifest and blob commands by @qweeah in #752
  • feat(oci-layout): support in oras push and oras attach by @qweeah in #750
  • build(deps): bump github.com/docker/cli from 20.10.22+incompatible to 20.10.23+incompatible by @dependabot in #758
  • feat: support specifying distribution spec in discover, cp and manifest push commands by @qweeah in #757
  • build(deps): bump oras-go to v2.0 by @qweeah in #759
  • fix: support fetching manifest in oci image layout by @qweeah in #766
  • feat: add distribution flag to manifest delete by @qweeah in #763
  • feat: support artifact discovering in OCI image layout by @qweeah in #765
  • doc: add ORAS CLI proposal doc for compatibility mode by @FeynmanZhou in #739
  • fix: fix bugs related to the spec --distribution-spec by @Wwwsylvia in #772
  • bump: upgrade golang and alpine versions by @Wwwsylvia in #773
  • bump: release v1.0.0-rc.1 by @Wwwsylvia in #775

New Contributors

Full Changelog: v0.16.0...v1.0.0-rc.1

Notes

This release was signed with 95BB 6CD4 6CA3 0D2B 9CAE E56C 9F2C D437 A97D CB8F (@shizhMSFT's GPG key) which can be found here.

v0.16.0

07 Nov 14:27
d606fed
Compare
Choose a tag to compare

🚀 ORAS CLI v0.16.0 is available! You can install it by following this guide.

New Features

Bug Fixes

Other Changes

  • Update dependencies to latest versions
  • Improve UX
    • Shorten command names (#667)
      • oras repository --> oras repo. oras repository is demoted to an alias
      • oras repo list --> oras repo ls. oras repo list is demoted to an alias
      • oras repo show-tags --> oras repo tags. oras repo show-tags is demoted to an alias
      • oras copy --> oras cp. oras copy is demoted to an alias
    • Add aliases to existing commands
      • oras manifest get-config is an alias of oras manifest fetch-config
      • oras manifest rm is an alias of oras manifest delete
      • oras blob rm is an alias of oras blob delete
    • BREAKING CHANGE: Update the flag name -y, --yes to -f, --force for oras manifest delete and oras blob delete
    • oras attach prints digest of the subject instead of the input reference

Detailed Commits

  • fix: logout specified credential config file if provided by @qweeah in #626
  • fix: fix the error handling in manifest push by @yuehaoliang-microsoft in #629
  • fix: annotates manifest for attach command by @qweeah in #632
  • test(e2e): add E2E test infra by @qweeah in #561
  • docs: add issue templates by @FeynmanZhou in #633
  • fix: change to use repo instead of repo.manifest because it needs to fetch a blob by @yuehaoliang-microsoft in #637
  • build(deps): bump github.com/spf13/cobra from 1.5.0 to 1.6.0 by @dependabot in #642
  • ci: run all check CIs against patch PR by @qweeah in #641
  • build(deps): bump github.com/docker/cli from 20.10.18+incompatible to 20.10.19+incompatible by @dependabot in #644
  • feat!: support oci artifacts by @qweeah in #653
  • bump: upgrade golang to 1.19.2 by @qweeah in #657
  • build(deps): bump github.com/docker/cli from 20.10.19+incompatible to 20.10.20+incompatible by @dependabot in #648
  • fix: use optional plural form by @qweeah in #659
  • build(deps): bump github.com/docker/cli from 20.10.20+incompatible to 20.10.21+incompatible by @dependabot in #663
  • build(deps): bump github.com/spf13/cobra from 1.6.0 to 1.6.1 by @dependabot in #661
  • feat: support discovering with platform selection by @qweeah in #669
  • feat!: support OCI image fallback for oras push and oras attach by @qweeah in #665
  • feat: support excluding digest tags by @qweeah in #668
  • chore: use short names for repository commands by @qweeah in #670
  • fix: only fallback to OCI image when current media type is OCI artifact by @qweeah in #673
  • chore: add subject reference into attach output by @qweeah in #671
  • feat: add alias for fetch-config by @qweeah in #676
  • feat!: alias remove to delete and rename confirmation flag to force by @qweeah in #677
  • bump: release 0.16 by @qweeah in #678

Full Changelog: v0.15.0...v0.16.0

Notes

This release was signed with 95BB 6CD4 6CA3 0D2B 9CAE E56C 9F2C D437 A97D CB8F (@shizhMSFT's GPG key) which can be found here.

v0.15.1

17 Oct 06:54
36dc01d
Compare
Choose a tag to compare

Bug Fixes

  • fix: oras logout not working for non-default auth config #625
  • fix: error is not well handled in oras manifest push #627
  • fix: manifest level annotations not being pushed when there is no blob in attach command #630
  • fix: manifest fetch fails when confirming the platform of a manifest #636

Detailed Commits

  • fix: patch bug fixes to release-0.15 by @qweeah in #643
    • fix: logout specified credential config file if provided by @qweeah in #626
    • fix: fix the error handling in manifest push by @yuehaoliang-microsoft in #629
    • fix: annotates manifest for attach command by @qweeah in #632
    • fix: change to use repo instead of repo.manifest because it needs to fetch a blob by @yuehaoliang-microsoft in #637
    • ci: run all check CIs against patch PR by @qweeah in #641
  • bump: update version for 0.15 release by @qweeah in #645

Full Changelog: v0.15.0...v0.15.1

Notes

This release was signed with 95BB 6CD4 6CA3 0D2B 9CAE E56C 9F2C D437 A97D CB8F (@shizhMSFT's GPG key) which can be found here.

v0.15.0

27 Sep 06:30
94abaec
Compare
Choose a tag to compare

🚀 ORAS CLI v0.15.0 is available! You can install it by following this guide.

New Features

oras has evolved into a fully functional registry client.

  • New command sets in preview
    • oras blob: Blob operations
      • oras blob fetch: Fetch a blob from a remote registry
      • oras blob push: Push a blob to a remote registry
      • oras blob delete: Delete a blob from a remote registry
    • oras manifest: Manifest operations
      • oras manifest fetch-config: Fetch the config of a manifest from a remote registry
      • oras manifest push: Push a manifest to remote registry
      • oras manifest delete: Delete a manifest from remote registry
    • oras tag: Tag a manifest in the remote registry
    • oras repository: Repository operations
      • oras repository list: List the repositories under the registry
      • oras repository show-tags: Show tags of the target repository
  • New options for existing commands
    • Added --output to oras manifest fetch for writing the fetched manifest to specified file path. - for printing out stdout
    • Support pulling / copying artifact of specified platform in oras pull and oras copy by the option --platform
    • Support tuning concurrency level for oras pull, oras push, oras attach, and oras copy by the option --concurrency
  • Support multi-tagging for oras push and oras copy as requested by #355

Bug Fixes

  • fix: incorrect credential access for docker.io #542

Other Changes

  • Improved documentation
  • Improved UX
  • Updated oras-go to the commit 3f9653f based on v2.0.0-rc.3

Detailed Commits

  • feat: command to show tags in a repository by @junczhu in #526
  • feat: enable tagging manifests by @wju-MSFT in #519
  • feat: command to list repositories in a remote registry by @junczhu in #525
  • chore: upgrade oras-go by @lizMSFT in #537
  • feat: add Descriptor and Pretty options for ORAS command by @lizMSFT in #536
  • refactor: use read only target to replace oras.Target for the target storage with caching by @lizMSFT in #538
  • fix: handle push error for internal cache by @qweeah in #544
  • fix: add missing license headers by @jasminetMSFT in #545
  • chore: upgrade oras-go to v2.0.0-rc.3 by @lizMSFT in #546
  • build: license header check in workflows by @jasminetMSFT in #534
  • feat: support fetch a blob from a remote registry by @lizMSFT in #520
  • feat: support push a blob to a remote registry by @lizMSFT in #489
  • fix: add get alias for oras blob fetch command by @lizMSFT in #558
  • fix: provide function to support hostname mapping by @junczhu in #549
  • build(deps): bump github.com/docker/cli from 20.10.17+incompatible to 20.10.18+incompatible by @dependabot in #551
  • feat: support deleting a manifest from a remote registry by @yuehaoliang-microsoft in #506
  • feat: support delete a blob from a remote registry by @lizMSFT in #493
  • feat: support pushing a manifest to a remote registry by @yuehaoliang-microsoft in #494
  • fix: correct help doc description for attach by @qweeah in #572
  • fix: missing status for pull by @wangxiaoxuan273 in #539
  • feat: enhance manifest fetch by @yuehaoliang-microsoft in #541
  • feat: Make repo alias to repository by @junczhu in #579
  • feat: add manifest fetch-config by @yuehaoliang-microsoft in #540
  • feat: platform support for oras pull and oras copy by @jasminetMSFT in #569
  • chore: improve text prompt for deletion by @qweeah in #583
  • doc: make flags before arguments in examples by @junczhu in #580
  • feat: support tagging multiple tags at once to a remote registry by @wju-MSFT in #574
  • fix: use VerifyReader to verify read content after oras.Fetch by @wangxiaoxuan273 in #589
  • doc: fix description typos by @junczhu in #591
  • feat: alias show-tags=tags for oras repository by @junczhu in #595
  • fix: update help doc for blob fetch command by @qweeah in #605
  • fix: improve the behavior of user confirmation by @yuehaoliang-microsoft in #607
  • fix: update usage doc for all oras commands by @qweeah in #596
  • fix: make attach required via cobra by @qweeah in #612
  • fix: fix flag name parsing error for oras blob push by @lizMSFT in #614
  • feat: support tagging multiple tags at once for oras manifest push by @wju-MSFT in #604
  • fix: update argument description for platform by @qweeah in #606
  • build: bump oras-go version by @qweeah in #615
  • feat: support tagging multiple tags at once for oras push by @wju-MSFT in #616
  • fix: reorder status logs for oras pull by @qweeah in #610
  • feat: add concurrency flag for oras pull by @wju-MSFT in #621
  • feat: support tagging multiple tags at once for oras copy by @wju-MSFT in #617
  • doc: refine CLI help doc by @FeynmanZhou in #619
  • bump: update version to 0.15.0 by @qweeah in #622
  • fix: capitalize the short and log doc for tag command by @qweeah in #623
  • feat: support concurrency tuning for oras attach by @qweeah in #624

New Contributors

Full Changelog: v0.14.0...v0.15.0

Notes

This release was signed with 95BB 6CD4 6CA3 0D2B 9CAE E56C 9F2C D437 A97D CB8F (@shizhMSFT's GPG key) which can be found here.

v0.14.1

05 Sep 09:21
a27b2d2
Compare
Choose a tag to compare

Bug Fixes

  • fix: fail to oras pull from Aazon ECR: empty response Docker-Content-Digest oras-project/oras-go#225
  • fix: fail to oras push to Google GAR: unexpected status code 400: Bad Request #532

Full Changelog: v0.14.0...v0.14.1

Notes

This release was signed with 95BB 6CD4 6CA3 0D2B 9CAE E56C 9F2C D437 A97D CB8F (@shizhMSFT's GPG key) which can be found here.

v0.14.0

22 Aug 09:06
fcdc769
Compare
Choose a tag to compare

🚀 ORAS CLI v0.14.0 is available! You can install it by following this guide.

New Features

  • New command sets
    • oras attach: [Preview] Attach files to an existing artifact
    • oras discover: [Preview] Discover referrers of a manifest in the remote registry
    • oras copy: [Preview] Copy artifacts from one target to another
    • oras manifest fetch: [Preview] Fetch manifest of the target artifact
  • New options for oras push
    • Add ability to export manifest after pushing artifacts by --export-manifest <path>
    • Add --artifact-type to set the media type of the manifest config for OCI manifests
    • Add --annotation <key>=<value> option for easier specifying manifest annotations
  • New options for oras pull
    • Support pulling arbitrary manifest config

Bug Fixes

  • fix: oras doesn't push a file with 2 tags #447
  • fix: push error for ECR: PUT request body is not rewindable #456
  • fix: can't pull behind proxy on version 0.13.0 #513

Breaking Changes

  • Renamed option --manifest-annotations to --annotation-file for all applicable commands
  • Renamed option --manifest-config to --config while --config is renamed to --registry-config for all commands

Other Changes

  • Improved documentation
  • Updated oras-go to v2.0.0-rc.2
    • oras push uploads empty config blob of size 0 bytes instead of {} (empty JSON object of size 2 bytes)
  • Migrated to codecov.io for code coverage reports
  • Improved performance for oras pull when ORAS_CACHE is set
  • Bumped golang version to 1.19
  • Improved UX output

Detailed Commits

  • Merging artifacts Branch: Add exporting manifest option for push by @qweeah in #425
  • Update ghcr package action yaml by @qweeah in #422
  • Merging artifacts Branch: Add discover comand by @qweeah in #419
  • fix: update help msg description about pullCmd() by @junczhuMSFT in #438
  • If no tag or digest specified when pulling, return error by @qweeah in #440
  • feat: add copyCmd() by @junczhuMSFT in #432
  • Add empty reference checking for discover cmd by @qweeah in #442
  • Add attach command by @qweeah in #433
  • Fix retagging failure with updated oras-go by @qweeah in #452
  • Bump github.com/sirupsen/logrus from 1.8.1 to 1.9.0 by @dependabot in #451
  • Migrate to codecov.io by @junczhuMSFT in #450
  • Fix push error for ECR by @qweeah in #462
  • feat: use --artifact-type to change the media type of the config blob by @yuehaoliang-microsoft in #482
  • Adding support for windows-arm64 by @koushdey in #457
  • perf: add FetchReference support in the caching proxy by @qweeah in #464
  • fix(lang): update misspelling in copy.go by @junczhuMSFT in #487
  • Bump to golang 1.19 by @sajayantony in #488
  • fix: refill missing status for push copy and attach by @qweeah in #481
  • feat!: pass annotations as a string by @junczhuMSFT in #468
  • feat: Support pulling arbitrary manifest config by @lizMSFT in #480
  • refactor: move error to cmd internal packages by @qweeah in #496
  • feat: add fetch command to get manifest of an artifact by @qweeah in #449
  • fix: add new line to prettify manifest fetch result by @qweeah in #499
  • refactor: improve error message on platform mismatch by @lizMSFT in #500
  • fix: add empty check on blobs and manifest annotation by @jasminetMSFT in #490
  • refactor!: rename the --manifest-config to --config by @lizMSFT in #504
  • fix: fix the lookup check for registry-config option by @lizMSFT in #505
  • refactor: add pre-defined annotation keys into option.Packer by @junczhuMSFT in #502
  • refactor: reuse print status func by @qweeah in #507
  • docs: add doc comments for the loop of successors by @wangxiaoxuan273 in #508
  • fix: check if configPath is empty before writing to Annotations by @wangxiaoxuan273 in #509
  • feat: print digest and media type when content is skipped using sync.Map by @wangxiaoxuan273 in #510
  • fix: print post-copy logs for unnamed content in verbose mode by @wangxiaoxuan273 in #511
  • fix: enable proxy in auth by @qweeah in #514
  • doc: fix typo in long description by @qweeah in #516
  • bump: update version to release 0.14.0 by @qweeah in #515
  • fix!: rename the --manifest-config to --config for push command by @lizMSFT in #517
  • doc: update example doc by @qweeah in #518

New Contributors

Full Changelog: v0.13.0...v0.14.0

Notes

This release was signed with 95BB 6CD4 6CA3 0D2B 9CAE E56C 9F2C D437 A97D CB8F (@shizhMSFT's GPG key) which can be found here.

v0.13.0

28 Jun 11:12
bb75f50
Compare
Choose a tag to compare

Major Changes

  • Upgrades oras-go from v0.1.0 to v2.0.0-alpha
  • Supports docker and oras manifest
  • Releases multi-arch package, including Linux armv7
  • Has less dependencies and smaller binary size
  • Supports custom root CA certs for remote servers per operation

What's Changed

New Contributors

Full Changelog: v0.12.0...v0.13.0

Notes

This release was signed with 95BB 6CD4 6CA3 0D2B 9CAE E56C 9F2C D437 A97D CB8F (@shizhMSFT's GPG key) which can be found here.

v0.2.1-alpha.1

11 Nov 05:26
58fa344
Compare
Choose a tag to compare
v0.2.1-alpha.1 Pre-release
Pre-release

Instructions for downloading builds for linux/amd64

curl -LO https://github.com/oras-project/oras/releases/download/v0.2.1-alpha.1/oras_0.2.1-alpha.1_linux_amd64.tar.gz
mkdir oras
tar -xvf ./oras_0.2.1-alpha.1_linux_amd64.tar.gz -C ./oras/
cp ./oras/oras ~/bin/oras

Documentation 📘

  • Quick Start for usage scenarios of the oras artifacts specification

Changelog

v0.2.0-alpha.1

15 Sep 16:37
v0.2.0-alpha.1
f01d975
Compare
Choose a tag to compare
v0.2.0-alpha.1 Pre-release
Pre-release

Instructions for downloading builds for linux/amd64

 curl -LO https://github.com/oras-project/oras/releases/download/v0.2.0-alpha.1/oras_0.2.0-alpha.1_linux_amd64.tar.gz
 mkdir oras
 tar -xvf ./oras_0.2.0-alpha.1_linux_amd64.tar.gz -C ./oras/
 cp ./oras/oras ~/bin/oras

Documentation 📘

  • Quick Start for usage scenarios of the oras artifacts specification

Changelog

  • Updated oras-project/containerd with artifact filtering (#313) f01d975 (Sajay Antony)
  • Add support for pre-release e427ad8 (Sajay Antony)
  • Remove mediatype from artifact manifest abd6366 (Sajay Antony)
  • Set containerd/api path explicitely to avoid inconsistent replace d3246ca (Esteban Rey)
  • pretty print tree (#306) 246bc2e (Shiwei Zhang)
  • go mod clean up a50a6d7 (Shiwei Zhang)
  • Updated oras to use updated containerd with artifacts-spec v1 (#305) 888591e (Sajay Antony)
  • Oras discover with output tree format (#297) 01bc2b4 (mnltejaswini)
  • update dependency 8627d45 (Shiwei Zhang)
  • print in table (#258) e522a27 (Shiwei Zhang)
  • update containerd references 8690807 (Shiwei Zhang)
  • update references fd3aaf3 (Shiwei Zhang)
  • Fix copy/paste error for SBoM/Signature and SBoM explination c1133fe (Steve Lasker)
  • Fix doc reference for experimental branch 804f046 (Steve Lasker)
  • Fix doc reference for experimental branch 1cc4b24 (Steve Lasker)
  • Add building of the experimental branch 61426db (Steve Lasker)
  • Update OCI Artifact Manifest doc support 6977a42 (Steve Lasker)
  • removes check on the artifact type filter 60b9dab (Shiwei Zhang)
  • reflect json output of oras discover db537ea (Shiwei Zhang)
  • allow pulling with empty name f0920ba (Shiwei Zhang)
  • no dummy resolver applied to reference resolver 0e3fc18 (Shiwei Zhang)
  • enhanced output of discover 321d79c (Shiwei Zhang)
  • update to the latest spec 1d4a86e (Shiwei Zhang)
  • update doc for pushing and artifacts 76586ec (Shiwei Zhang)
  • update containerd dependency 7aeec78 (Shiwei Zhang)
  • support dry run bfde944 (Shiwei Zhang)
  • export manifest on push 0e3c1f4 (Shiwei Zhang)
  • support artifact discovery for oras cli 8d49927 (Shiwei Zhang)
  • support artifact discovery for oras lib 55d1abe (Shiwei Zhang)
  • update to latest artifact spec 350dae6 (Shiwei Zhang)
  • new artifact spec support f56d806 (Shiwei Zhang)