v0.7.0-alpha3
Pre-release
Pre-release
·
102 commits
to main
since this release
1433
2410
Using Bzlmod with Bazel 6:
Add to your MODULE.bazel file:
bazel_dep(name = "bazeldnf", version = "0.7.0-alpha3")This will register a prebuilt bazeldnf
Using WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazeldnf",
sha256 = "4c79df93508c99974d9ac7c5c74b5a48d2b4f30983c245fd7adbef367cdfd319",
strip_prefix = "bazeldnf-v0.7.0-alpha3",
url = "https://github.com/rmohr/bazeldnf/releases/download/v0.7.0-alpha3/bazeldnf-v0.7.0-alpha3.tar.gz",
)
load(
"@bazeldnf//bazeldnf:repositories.bzl",
"bazeldnf_dependencies",
)
bazeldnf_dependencies()What's Changed
- Enable bazel 8 support by @kellyma2 in #99
- Steps needed to release to BCR by @manuelnaranjo in #103
- Remove unused build_deps.bzl by @kellyma2 in #104
- bzlmod: make sure to chroot under bazel run by @manuelnaranjo in #106
- wrapper: make the wrapper a bit more portable by @kellyma2 in #108
- Add .netrc support by @mkosiba in #82
- Small tweaks to
bazeldnf resolvecommand by @kellyma2 in #107 - Don't ignore repo if arch is empty by @kellyma2 in #110
- Provide tooling for updating lockfiles by @kellyma2 in #109
- ci: adding job for issue with fedora 41 repos by @manuelnaranjo in #105
- Lock file bzlmod extension by @kellyma2 in #111
- Handle failure modes by @manuelnaranjo in #113
- several small fixes by @manuelnaranjo in #115
- Use integrity instead of sha256 for RPMs by @kellyma2 in #117
- Calculate path to repofile correctly by @kellyma2 in #118
- Add null repository rule for missing RPMs by @kellyma2 in #119
- Watch the lock file by @kellyma2 in #120
- Enable use of architecture for config extension by @kellyma2 in #121
- Improvements for cli by @manuelnaranjo in #122
- Several small non related fixes by @manuelnaranjo in #127
- rpm: stop calling things downloaded by @manuelnaranjo in #126
- chore: bump dependencies by @manuelnaranjo in #125
- Fix paths to repo.yaml and lockfile by @kellyma2 in #129
- Make fetch-repo and update-lock-file publically visible by @kellyma2 in #132
- Xz format by @kellyma2 in #133
- Fix issues on bazeldnf and xattr rule invocations by @rmohr in #135
- Add auth_patterns support to RPM rule by @rmohr in #128
- Make xattr more flexible on different tar formats by @rmohr in #137
New Contributors
Full Changelog: v0.7.0-alpha1...v0.7.0-alpha3