惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
News | PayPal Newsroom
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
H
Hacker News: Front Page
Apple Machine Learning Research
Apple Machine Learning Research
TaoSecurity Blog
TaoSecurity Blog
Help Net Security
Help Net Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
人人都是产品经理
人人都是产品经理
博客园 - 三生石上(FineUI控件)
Security Latest
Security Latest
Cloudbric
Cloudbric
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Know Your Adversary
Know Your Adversary
A
Arctic Wolf
L
LangChain Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
W
WeLiveSecurity
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
小众软件
小众软件
NISL@THU
NISL@THU
云风的 BLOG
云风的 BLOG
P
Privacy & Cybersecurity Law Blog
S
Security @ Cisco Blogs
博客园 - 【当耐特】
I
InfoQ
Vercel News
Vercel News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
P
Proofpoint News Feed
O
OpenAI News
Google DeepMind News
Google DeepMind News
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
K
Kaspersky official blog
T
Threat Research - Cisco Blogs
量子位
宝玉的分享
宝玉的分享

OCI Registry As Storage Blog

🚀 Announcing ORAS v1.3.0-beta.3 - Enrich formatted output of oras discover Announcing ORAS v1.2.0 - OCI Spec v1.1.0 support, formatted output, and more! Lightweight Registry with Oras OCI-Layouts and Object Storage in The Cloud ORAS Welcomes New Owners, Maintainers, and Thanks Emeritus Owners ORAS 0.15 - A Fully Functional OCI Registry Client Bundle, test and deploy Gatekeeper policies as OCI image ORAS - Looking back on 2022 and forward to 2023 ORAS 0.14 and Future - Empower Container Secure Supply Chain ORAS Artifacts Draft Specification Release – Adding Secure Supply Chain Artifacts References
🚀 Announcing ORAS v1.3.0 - Elevate your artifact and registry management workflows
ORAS Community · 2025-09-09 · via OCI Registry As Storage Blog

The ORAS community is thrilled to announce the ORAS CLI v1.3.0, a release packed with stability upgrades and pioneering capabilities. Beyond strengthening existing core functionality, this version introduces three major new features designed to elevate your artifact and registry management workflows:

  1. Portable backup & restore of repositories and artifacts
  2. Multi-platform image and artifact management
  3. Rich formatted output for scripting and pipelines

Moreover, ORAS is now fully compliant with OCI distribution-spec v1.1.1.

Your Registry’s Safety Net: Portable Backup & Restore

With oras backup and oras restore, ORAS now lets you save your registry content into local directories or tarballs (OCI image layout format) as a snapshot and restore to any registry. All manifests and optionally any tags, referrers will be included within the backup.

Use cases include:

  • Air-Gapped Environments: Organizations operating in isolated or high-security environments can use oras backup to export artifacts from a registry to local filesystem, and use oras restore to import them into an internal registry with restricted access.
  • Disaster Recovery and Audit Archival: Take periodic snapshots of repositories and store them off-site. In case of accidental deletions, outages, and long-term storage to support regulatory audits, oras restore can be used to quickly recover full registry content.
  • Registry Migration: When moving from one container registry provider to another, the pair of commands enables a full repository export, preserving tags, manifests, layers, and referrers.
  • Compliance and supply chain security guarantee: Backup and restore the images along with their supply chain artifacts, such as SBOMs, signatures, vulnerability scanning reports.
  • Repository Duplication or Promotion: Move artifacts from dev to staging to prod registries reliably using an intermediate backup file.

Check out the user guide Backup and Restore of OCI Artifacts, Images, and Repositories for details.

Portable Backup & Restore

Multi-platform Image and Artifact Management

Multi-platform images are commonly used in IoT and Edge computing, particularly heterogeneous deployments. In addition, OpenTofu or Terraform modules are packed as platform-specific artifacts and stored as multi-platform artifact in OCI registries. Thanks to our community partner OpenTofu, now multi-platform artifact management is introduced in v1.3.0.

With oras manifest index create and oras manifest index update, you can easily assemble, update, distribute, and annotate multi-architecture images and artifacts across local environments and registries. Check out the user guide Create and Manage Multi-architecture Artifacts for details.

Multi-platform Image and Artifact Management

Enable Scripting and Automation: Formatted Output

In automation pipelines, the difference between human-readable and machine-usable output can be the difference between clarity and chaos.

With this release, ORAS enables users to use the --format flag to format metadata output into structured data (e.g. JSON) and optionally use the --template flag with the Go template language. This has been enabled for commands like pull, push, attach, discover, and manifest fetch with support for output formats including JSON, Go templates, trees, and tables. You can even run computations with Sprig template functions as well.

  • Use --format <DATA_FORMAT> to transform the output of ORAS commands into different formats including prettified JSON, tree, table view, and Go template, i.e. --format json|tree|table|go-template=GO_TEMPLATE.
  • Use --template GO_TEMPLATE to compute and manipulate the output using Go templates based on the chosen data format.

Formatted output transforms ORAS from a simple terminal user tool to a DevOps-friendly, integrable developer tool. Check out the user guide Formatted output for details.

Stability & User Experience Polish

This release also includes a number of enhancements that provides a better overall user experience and stability.

  • Feature Stability Promotions: oras attach, oras pull --include-subject, and more are now Stable. oras resolve from Experimental to Preview.
  • Discover UX: oras discover now displays referrers recursively by default; The maximum recursion depth can be controlled via the --depth flag
  • Loong64 support: More platform options including loong64 open for users.
  • Developer experience: Enhanced clarity within error messages, debugging logs, and a number of documentation updates.

Why This Release Matters

Whether you're looking to backup and restore entire registries, publish multi-architecture bundles, or integrate ORAS into CI/CD pipelines, v1.3.0 brings the tools and the end-to-end artifact management solutions you need.

  • Platform teams gain robust disaster recovery and migration tooling.
  • DevOps engineers get the multi-arch flexibility needed for heterogeneous infrastructure.
  • CI/CD and platform builders enjoy structured data outputs for reliable, scriptable workflows.
  • Maintainers ship safer, cleaner, and more future-proof artifact workflows.

There are a few bug fixes and a deprecated feature in this release. For a concrete changelog, please see the ORAS v1.3.0 Release Notes.

Thanks to All Contributors

Thanks to our existing maintainers @Wwwsylvia, @TerryHowe, @FeynmanZhou, @shizhMSFT, @sabre1041, @sajayantony, @qweeah who contributed to ORAS v1.3.0 and new contributors 🎉 @bcho, @njucjc, @nmiyake, @mauriciovasquezbernal, @Horiodino, @chrisguitarguy, @kysucix, @RohanMishra315, @apparentlymart, @tanyabhatnagar, @amazingfate 🚀.

You can follow the installation guidance to install ORAS v1.3.0 and try it out for yourself. End user feedback is essential in any open source project. If you run into issues or have any suggestions, please open an issue. To engage with the community, feel free to join the Slack channel in CNCF and find us in the oras channel.