Releases: containerbuildsystem/cachi2
Releases · containerbuildsystem/cachi2
0.13.0
Improvements
- Official backend support for Bundler (Ruby ecosystem)
- Show help when no CLI arguments were given
- Contributing: increase the release cadence to weekly
Experimental features
- [yarn v1] add workspace handler
- [generic artifact fetcher] introduce fetching files & SBOM reporting
0.12.0
Improvements
- adopt contributor's guidelines [CONTRIBUTING.md] (non-functional change)
Experimental features
- [bundler] generate SBOM components
- [yarn v1] CLI experimental enablement
- [yarn v1] prefetching from offline mirrors
- [rpm] enable TLS client authentication to RPM authenticated repositories with certificates passed via input JSON extra options
- [generic artifact fetcher] CLI experimental enablement
- [generic artifact fetcher] generic YAML lockfile representation
0.11.0
Improvements
- Switch the container base image to UBI-9 (https://catalog.redhat.com/software/base-images)
- Introduce a new
merge-sboms
CLI command- this allows merging multiple SBOMs which we generated ourselves
- Remove the
utils/merge_syft_sbom.py
script- the utility script was moved to a different project where it makes sense to host it
- konflux-ci/build-tasks-dockerfiles#154
- Replace the
pyreflink
dependency with a vendored implementation of fast in-kernel copying- taken from the official stdlib proposal: https://github.com/python/cpython/pull/93152/files
- Bump the max Go supported version 1.22 -> 1.23
- note we're still lacking support for vendored workspaces (introduced in Go 1.22)
- Deprecate global
--gomod-vendor
and--gomod-vendor-check
CLI flags- users no longer need to explicitly instruct cachi2 to consider the vendoring use case with regards to dependency fetching
- note that if a repository has vendored content cachi2 will check its integrity, but will no longer perform the vendoring as part of the dependency prefetch as was the case with the
--gomod-vendor-check
flag - note the flags will be dropped in a future release
0.10.0
Improvements
- Adds preliminary support for Go 1.22
- Cachi2 is now able to prefetch dependencies for Go 1.22.x based projects
- Workspace vendoring is still not supported
Bug fixes
- Fixes error in identifying Go workspaces when the
GOWORK
environment variable was set tooff
0.9.1
0.9.0
Improvements
- Converting the Containerfile/Dockerfile to a multi-stage build in order to easily pull in and vet latest releases of Go, NodeJS, etc.
Bug fixes
- Fix the regex used when parsing
go.mod
files to figure out the desired Go version to include pre-releases and allow commentaries on the same line as thego
line (e6a8010) - Fix
aiohttp
timing out on large downloads and slower connections by actually respecting the config option for async downloads (34b72cc)
Other
- Added Python 3.12 as the officially supported platform by the project
0.8.0
Improvements
- Support Go workspaces (for Go <= 1.21)
- Support
--index-url
in requirements.txt files - Support
~/.netrc
authentication for aiohttp requests (as used by the pip and npm code)
Bug fixes
- Don't expose credentials in SBOM if git origin url includes credentials
- Report missing checksums for RPMs properly: report the lockfile path, not the RPM filename
0.7.0
Improvements:
- Add full support for Go Toolchains
- Cachi2 will use
GOTOOLCHAIN=auto
during the prefetch and any downloaded toolchains will be supplied in the output module cache - Cachi2 will no longer override
GOTOOLCHAIN=local
in the user build environment
- Cachi2 will use
- pip: report components with downloaded wheels in the SBOM
- pip: allow yanked sdists to be downloaded
Bug fixes:
N/A
0.6.0
Improvements:
- The merge_syft_sbom.py script packaged in the Cachi2 container supports the v1.5 style of metadata.tools
- At least for the Syft SBOM. It still assumes that the Cachi2-generated SBOM is v1.4
Bug fixes:
n/a
0.5.0
Improvements:
- Add preliminary support for Go 1.21
- preliminary support in this case means that cachi2 explicitly always sets
GOTOOLCHAIN=local
to force Go always use the bundled toolchain that came with the SDK - for projects building with Go < 1.21 a 1.20 toolchain will be downloaded to avoid the new 1.21 behaviour of bumping older go.mod files and thus tainting the input repository
- preliminary support in this case means that cachi2 explicitly always sets
Bug fixes:
n/a