Skip to content

v1.14.0

Compare
Choose a tag to compare
@lalten lalten released this 13 Sep 10:16
· 20 commits to main since this release
64982e0

What's Changed

  • Correct copy_file_or_dir behavior for dangling symlinks by @lalten in #207
  • populate_appdir and make_appdir_tar unit tests by @lalten in #208
  • Reduce default resource_set by @lalten in #211
  • Convert ManifestData to NamedTuple by @lalten in #215
  • Extract _prevent_duplicate_dsts_with_diverging_srcs by @lalten in #216
  • Fix passing -processors and -mem to mksquashfs by @lalten in #221
  • Prevent bazel from uploading massive .tar/.sqfs files to the remote cache by @lalten in #220
  • Copy files in threadpool by @lalten in #217

Renovate

  • Update pre-commit hook pre-commit/mirrors-mypy to v1.11.2 by @renovate in #210
  • Update pre-commit hook astral-sh/ruff-pre-commit to v0.6.2 by @renovate in #209
  • Update pre-commit hook renovatebot/pre-commit-hooks to v38.59.2 by @renovate in #214
  • Update dependency with_cfg.bzl to v0.5.0 by @renovate in #213
  • Update pre-commit hook astral-sh/ruff-pre-commit to v0.6.3 by @renovate in #212
  • Update pre-commit hook renovatebot/pre-commit-hooks to v38.72.1 by @renovate in #219
  • Update pre-commit hook astral-sh/ruff-pre-commit to v0.6.4 by @renovate in #218

Full Changelog: v1.13.0...v1.14.0

MODULE.bazel setup

bazel_dep(name = "rules_appimage", version = "1.14.0")

WORKSPACE setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_appimage",
    sha256 = "52658dc8695748a20d91f5ec46a827d663671f1a52c3fa595de8edc119fb8d3b",
    strip_prefix = "rules_appimage-1.14.0",
    url = "https://github.com/lalten/rules_appimage/releases/download/v1.14.0/rules_appimage-1.14.0.tar.gz",
    patch_cmds = ["rm -r tests"],
)

load("@rules_appimage//:deps.bzl", "rules_appimage_deps")

rules_appimage_deps()

register_toolchains("@rules_appimage//appimage:all")