Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency io_bazel_rules_docker to v0.25.0 #3

Merged
merged 1 commit into from
Nov 8, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 8, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
io_bazel_rules_docker http_archive minor v0.6.0 -> v0.25.0

Release Notes

bazelbuild/rules_docker

v0.25.0

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.25.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "b1e80761a8a8243d03ebca8845e9cc1ba6c82ce7c5179ce2b295cd36f7e394bf",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.25.0/rules_docker-v0.25.0.tar.gz"],
)

What's Changed

New Contributors

Full Changelog: bazelbuild/rules_docker@v0.24.0...v0.25.0

v0.24.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.24.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "27d53c1d646fc9537a70427ad7b034734d08a9c38924cc6357cc973fed300820",
    strip_prefix = "rules_docker-0.24.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.24.0/rules_docker-v0.24.0.tar.gz"],
)

Breaking Changes:

Because of #​2042, toolchain_configure's client_config becomes a Bazel label instead of an absolute path. Existing applications have to put their config.json in a Bazel repository, add Bazel rule to export it, and refer it as a label in toolchain_configure.

What's Changed:

  1. remove dependency on external python for sha256 (#​1993)
  2. Update rules kotlin (#​2030)
  3. Specifying client config.json with Bazel label (#​2032)
  4. perf: remove no-remote-cache execution requirements (#​2043)
  5. stop printing output on successful operations (#​2047)
  6. Stamp e2e tests (#​2000)
  7. Fix flaky tests. Use jq to sort JSON arrays before comparing them. (#​2007)
  8. Replace python with python3 in incremental_load.sh.tpl (#​2051)
  9. Changing docker client config attributes to Bazel labels (#​2042)
  10. Clean unused package oci/ (#​2061)
  11. Run script allows empty docker_args (#​2053)
  12. Support credential helpers in container_pull (#​2034)

v0.23.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.23.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "85ffff62a4c22a74dbd98d05da6cf40f497344b3dbf1e1ab0a37ab2a1a6ca014",
    strip_prefix = "rules_docker-0.23.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.23.0/rules_docker-v0.23.0.tar.gz"],
)

Breaking Changes

Thanks to @​uhthomas we now use Bazel Transitions to request dependencies for the docker target platform. See notes in https://github.com/bazelbuild/rules_docker/pull/1963#issuecomment-997122828 about changes that might be required.

What's Changed

New Contributors

Full Changelog: bazelbuild/rules_docker@v0.22.0...v0.23.0

v0.22.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.22.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "59536e6ae64359b716ba9c46c39183403b01eabfbd57578e84398b4829ca499a",
    strip_prefix = "rules_docker-0.22.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.22.0/rules_docker-v0.22.0.tar.gz"],
)

BREAKING CHANGES

Previous releases of rules_docker determined when to make non-deterministic, VCS-stamped outputs based on whether a { character appeared in certain attributes. Some rules had a (deprecated) stamp boolean attribute which affected this behavior all builds of that target. This makes it easy to accidentally bust the Bazel cache, for example a test that depends on a container_image might re-run every time because the image's tag changed with each git SHA.

As of this release, you should run bazel build --stamp enable stamped outputs.

To override this on a single target, the stamp attribute on these three rules is now a trinary, just like in other rulesets like rules_python

  • in place of stamp = False you should use stamp = "@​io_bazel_rules_docker//stamp:never"
  • in place of stamp = True you should use stamp = "@​io_bazel_rules_docker//stamp:always"
  • if no value for stamp attribute is given, the default is based on the --[no]stamp configuration of the build.

For more ideas on using this, see the blog post by the author of the stamping PR: https://blog.aspect.dev/stamping-bazel-builds-with-selective-delivery

What's Changed

New Contributors

Full Changelog: bazelbuild/rules_docker@v0.21.0...v0.22.0

v0.21.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.21.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "4349f2b0b45c860dd2ffe18802e9f79183806af93ce5921fb12cbd6c07ab69a8",
    strip_prefix = "rules_docker-0.21.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.21.0/rules_docker-v0.21.0.tar.gz"],
)

Changes:

  1. Do not use constraints from bazel_tools (#​1956)
  2. Update to a more recent rules rust and update to use defs.bzl (#​1955)
  3. Upgrade rules scala (#​1954)
  4. Temporarily Disable some //test/container tests in Mac (#​1952)

v0.20.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.20.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "92779d3445e7bdc79b961030b996cb0c91820ade7ffa7edca69273f404b085d5",
    strip_prefix = "rules_docker-0.20.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.20.0/rules_docker-v0.20.0.tar.gz"],
)

Changes:

  1. Enable experimental_tarball_format for container_bundle. (#​1938)
  2. Cache loaded images for performance improvements. (#​1934)
  3. Update run.bzl (#​1933)
  4. Update Distroless Base Images (#​1931)
  5. Update convert bytes to string for py3 (#​1922)
  6. Setting visibility of image_bzl to public so that it can be used when… (#​1917)
  7. Revert "Pin bazelversion to what's tested on CI (#​1873)" (#​1886)
  8. feat(toolchain): add xz_target for remote execution (#​1881)

v0.19.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.19.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "1f4e59843b61981a96835dc4ac377ad4da9f8c334ebe5e0bb3f58f80c09735f4",
    strip_prefix = "rules_docker-0.19.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.19.0/rules_docker-v0.19.0.tar.gz"],
)

v0.18.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.18.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "5d31ad261b9582515ff52126bf53b954526547a3e26f6c25a9d64c48a31e45ac",
    strip_prefix = "rules_docker-0.18.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.18.0/rules_docker-v0.18.0.tar.gz"],
)

Changes:

  1. Revert "Bump pyyaml from 5.1 to 5.4 in /repositories" (#​1908)
  2. Removed python test dependencies from public API (#​1905)
  3. Silence go module warnings in go_repository (#​1897)
  4. Fix path handling in archive.py to always be posix and not native paths (#​1892)
  5. Docgen: use stardoc to generate all container rules docs (#​1890)
  6. Revert "Pin bazelversion to what's tested on CI (#​1873)" (#​1886)
  7. Ignore .ijwb folder from git (#​1864)
  8. Only display status for builds on master (#​1863)
  9. [ci] enable macos on buildkite (#​1862)
  10. Fix URL used to download pip in examples/tests. (#​1861)
  11. [ci] Remove travis badge (#​1860)
  12. Migrate CI targets to buildkite (#​1859)
  13. Don't upload large files to remote-cache (#​1856)
  14. Allow launcher in nodejs (#​1854)
  15. Correct container_py_toolchain target (#​1852)
  16. Update debian9 commit hash to 01267e6 (#​1837)
  17. Propagate tags to app-layers in docker images for all langs (#​1836)
  18. WIP: more containers stardoc stuff (#​1835)
  19. fix tab characters in docstrings (#​1834)
  20. Create docs/ folder (#​1832)
  21. Add stardoc API doc generation (#​1830)

v0.17.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.17.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "59d5b42ac315e7eadffa944e86e90c2990110a1c8075f1cd145f487e999d22b3",
    strip_prefix = "rules_docker-0.17.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.17.0/rules_docker-v0.17.0.tar.gz"],
)

Changes:

  1. Update go-containerregsitry dependency to 0.4.1 (#​1829)

  2. Fixed some missing digests and addressed other warnings (#​1819)

  3. Fixed broken //tests/docker/util:all tests (#​1817)

  4. Update SHA for go-containerregistry (#​1815)

  5. Removed bazel_latest from default dependencies (#​1813)

  6. Use actual sha for static:debug image (and update static:latest) (#​1804)

  7. make downloading and installing quieter (#​1798)

  8. fix the build (#​1797)

  9. Revert "Setup assign-size-label action" (#​1786)

  10. Introduce github action to mark stale issues/PRs (#​1757)

  11. Remove warning about go_image on Mac (#​1755)

  12. Add issue and PR templates (#​1754)

  13. Revert "Invite maintainers from community (#​1750)" (#​1753)

  14. Invite maintainers from community (#​1750)

  15. Add Domino Data Lab to list of adopters (#​1739)

v0.16.0: 0.16.0

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.16.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "95d39fd84ff4474babaf190450ee034d958202043e366b9fc38f438c9e6c3334",
    strip_prefix = "rules_docker-0.16.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.16.0/rules_docker-v0.16.0.tar.gz"],
)

Changes:

  1. Setup assign-size-label action (#​1762)
  2. Introduce github action to mark stale issues/PRs (#​1757)
  3. Remove warning about go_image on Mac (#​1755)
  4. Add issue and PR templates (#​1754)
  5. Revert "Invite maintainers from community (#​1750)" (#​1753)
  6. Invite maintainers from community (#​1750)
  7. Add experimental_tarball_format to container_image (#​1696)
  8. Update io_bazel_rules_groovy commit hash to 03c36ef (#​1691)
  9. Introduce output_group for pusher executable (#​1685)
  10. Relax error string matching (#​1677)
  11. Add s390x support to load puller and loader binary (#​1661)
  12. Use bash from the environment instead of absolute path (#​1660)
  13. Add option to push images sequentially in push-all (#​1658)
  14. Update python rules to remove deprecation messages (#​1657)
  15. Update for compatibility with rules_python 0.1 (#​1650)
  16. Update owners (#​1646)
  17. Add s390x support for puller and loader binaries (#​1645)
  18. Support airgapped environment (#​1619)
  19. Add repository_file attribute to the container_pull rule (#​1618)
  20. For gzip operations, use a new Go helper by default instead of which(gzip) (#​1613)
  21. Add Linux ARM64 go pusher and loader binaries to cloudbuild (#​1610)
  22. Fix the root directory when building for Linux on Windows. (#​1609)
  23. Update puller and loader locations and sequencing in cloudbuild (#​1608)
  24. Fix the typos in root README (#​1589)
  25. Add container_run_and_commit_layer rule (#​1586)
  26. Replace dependency on gflags with argparse (#​1582)
  27. Make toolchain_type public (#​1580)
  28. Sync with internal change (#​1578)
  29. Renamed pip_deps to container_pip_deps (#​1576)
  30. Change image rule to copy config instead of symlink (#​1571)

v0.15.0: Various updates & fixes

Compare Source

Copy the following into your WORKSPACE file to use rules_docker at release v0.15.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "1698624e878b0607052ae6131aa216d45ebb63871ec497f26c67455b34119c80",
    strip_prefix = "rules_docker-0.15.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.15.0/rules_docker-v0.15.0.tar.gz"],
)

Changes:

  1. Use bash from the environment instead of absolute path (#​1660)
  2. Remove Travis integration (#​1656)
  3. Update distroless dependencies (#​1655)
  4. Update for compatibility with rules_python 0.1 (#​1650)
  5. Add rubensf@ to OWNERS (#​1647)
  6. Update owners (#​1646)
  7. Add s390x support for puller and loader binaries (#​1645)
  8. Reduce build verbosity of container_run_and_commit (#​1640)
  9. Plumb constraints thru container_test (#​1639)
  10. Support container_push on Windows. (#​1637)
  11. For gzip operations, use a new Go helper by default instead of which(gzip) (#​1612)
  12. Add Linux ARM64 go pusher and loader binaries to cloudbuild (#​1610)
  13. Fix the root directory when building for Linux on Windows. (#​1609)
  14. Update puller and loader locations and sequencing in cloudbuild (#​1608)
  15. Update dependency bazel_gazelle to v0.22.2- autoclosed (#​1606)
  16. Revert "Add Linux ARM64 go pusher and loader binaries to cloudbuild (… (#​1605)
  17. Revert "Update shas and force tarball format (#​1596)" (#​1604)
  18. Simplify reading the digest file obtained when pulling a Docker image (#​1600)
  19. Add Linux ARM64 go pusher and loader binaries to cloudbuild (#​1598)
  20. [WIP] test (#​1597)
  21. Renamed pip_deps to container_pip_deps (#​1576)
  22. Change image rule to copy config instead of symlink (#​1571)
  23. [Update] go-containerregistry to fix container_bundle rule (#​1569)
  24. Update dependency build_bazel_rules_nodejs to v2 - autoclosed (#​1568)
  25. Update dependency @​bazel/typescript to v2 - autoclosed (#​1566)
  26. Update dependency io_bazel_rules_go to v0.24.2 (#​1564)
  27. feat(toolchain): add xz_target for remote execution (#​1558)
  28. Add archive manipulation logic from rules_pkg (#​1556)
  29. Update pip setup in README (#​1552)
  30. Update README for release v0.14.4 (#​1549)

v0.14.4: Numerous additions & fixes

Compare Source

  • Dont write incremental tarball to disk (#​1537)
  • Remove unused dep (#​1536)
  • Revert to using gflags but use it from a pips package instead of Bazel Tools (#​1535)
  • Migrate to use absl from gflags (#​1534)
  • Update dependency com_github_google_go_containerregistry to v0.1.1 (#​1532)
  • Update node version (#​1531)
  • Update dependency io_bazel_rules_go to v0.23.3 (#​1530)
  • Update dependency com_github_google_go_containerregistry to v0.1.0 (#​1529)
  • Update go dependency & Bazel test image (#​1528)
  • Update debs attr doc & other minor fixes (#​1527)
  • Populate list of instrumented files for coverage in container_image_ (#​1526)
  • Update README for v0.14.3 release (#​1525)

v0.14.3: Numerous additions & fixes

Compare Source

Fixes

  • update puller and loader binaries to pich up #​1509 (#​1517)
  • Switch arbitrary run instruction to python3 (#​1522)
  • Update README for 0.14.2. Fixes #​1515 (#​1516)
  • Exposing external base image properties (as provider fields) (#​1507)
  • Updated go-containerregistry version (#​1509)

v0.14.2: Numerous additions & fixes

Compare Source

Fixes

  • Fix sha256 for bazel-release.pub.gpg (#​1513)
  • Convert a few targets/tests to python 3 (#​1505)
  • Update dependency typescript to v3.9.2 (#​1502)
  • Update dependency bazel_gazelle to v0.21.0 (#​1500)
  • Fix bug in image puller execution timeout (#​1495)
  • Correctly read users' enable_mtime_preservation config (#​1491)
  • Update node pins (#​1490)
  • Allow users to opt into mtime preservation (#​1489)
  • Revert "Enable mtime preservation in tar file building process (#​1485)" (#​1488)
  • Enable mtime preservation in tar file building process (#​1485)
  • Update one remaining reference to deprecated rules pkg (#​1484)
  • Use rules_pkg repository instead of deprecated pkg files (#​1483)
  • Sync with internal change (#​1481)
  • java_files() already returns a depset, don't wrap the return value in (#​1480)
  • Inject docker headers for container pushes (#​1477)
  • Update dependency jsesc to v3 (#​1475)
  • Update dependency bazel_toolchains to v3 (#​1474)
  • Update dependency io_bazel_rules_go to v0.22.4 (#​1473)
  • Update dependency @​types/node to v12.12.35 (#​1469)
  • Fix puller timeout argument (#​1467)
  • Update dependency @​types/node to v12.12.30 (#​1463)
  • Sync with internal change (#​1462)
  • Sync with internal change (#​1461)
  • chore(deps): update dependency in_gopkg_yaml_v2 to v2 (#​1459)
  • chore(deps): update dependency build_bazel_rules_nodejs to v1.4.1 (#​1456)
  • fix(deps): update dependency @​bazel/typescript to v1.4.1 (#​1455)
  • docs(container image): add info for cmd and entrypoint regarding "" & [] (#​1453)
  • Fix CI failures due to Clang 10 -> 11 upgrade (#​1450)
  • Fixed passing data to app_layer in nodejs_image (#​1449)
  • Update dependency typescript to v3.8.3 (#​1446)
  • Update dependency io_bazel_rules_go to v0.22.2 (#​1445)
  • Update dependency bazel_toolchains to v2.2.0 (#​1444)
  • Update dependency @​types/node to v12.12.29 (#​1443)
  • pass tag/visiblity to nodejs_image dep layers (#​1437)
  • Update dependency typescript to v3.8.2 (#​1434)
  • Update rules_python commit hash to dd7f9c5 (#​1433)
  • Update io_bazel_rules_rust commit hash to 6e87304 (#​1432)
  • Update io_bazel_rules_d commit hash to 7e3bab5 (#​1431)
  • Plumb os.version through container image config files. (#​1430)
  • Allow setting compression method and options. (#​1428)
  • Expose architecture in container_image (#​1427)
  • Update io_bazel_rules_groovy commit hash to 70f85ea (#​1426)
  • Update dependency io_bazel_rules_go to v0.21.3 (#​1424)
  • Update dependency @​types/node to v12.12.28 (#​1423)
  • Update io_bazel_rules_scala commit hash to 0366fb2 (#​1422)
  • Update dependency bazel_toolchains to v2.1.0 (#​1418)
  • Update dependency build_bazel_rules_nodejs to v1.3.0 (#​1417)
  • Update dependency bazel_toolchains to v2.0.5 (#​1416)
  • Update dependency bazel_gazelle to v0.20.0 (#​1415)
  • Update rules_scala (#​1412)
  • Update dependency io_bazel_rules_go to v0.21.2 (#​1411)
  • Update dependency build_bazel_rules_nodejs to v1.2.4 (#​1410)
  • Update dependency bazel_toolchains to v2.0.4 (#​1409)
  • Update dependency @​types/node to v12.12.26 (#​1408)
  • Update io_bazel_rules_rust commit hash to e0dcca4 (#​1407)
  • Update io_bazel_rules_d commit hash to c442972 (#​1406)
  • Update io_bazel_rules_scala commit hash to 0cb1d71 (#​1402)
  • Update io_bazel_rules_scala commit hash to a7a20a0 (#​1401)
  • Update dependency build_bazel_rules_nodejs to v1.2.0 (#​1400)
  • Update dependency bazel_toolchains to v2.0.3 (#​1399)
  • Update dependency @​bazel/typescript to v1.3.0 (#​1398)
  • Update io_bazel_rules_scala commit hash to 4fefaaa (#​1397)
  • Create kotlin_jvm_image rule (#​1396)
  • update alpine sha (#​1394)
  • Declare PATH environment variable as a dependency. (#​1391)
  • Update dependency @​types/node to v12.12.25 (#​1390)
  • Update dependency typescript to v3.7.5 (#​1388)
  • Update dependency @​bazel/typescript to v1.1.0 (#​1387)
  • Pin dependencies (#​1386)
  • Update dependency com_github_pkg_errors to v0.9.1 (#​1383)
  • Update dependency bazel_gazelle to v0.19.1 (#​1382)
  • Update io_bazel_rules_scala commit hash to 5a55e51 (#​1381)
  • Update README.md for v0.14.1 (#​1380)

v0.14.1: Fix repro tests

Compare Source

Fixes

Fix repro tests (https://github.com/bazelbuild/rules_docker/pull/1379)

v0.14.0: Numerous additions & fixes

Compare Source

Fixes

update rules scala to pick up maven to https change (#​1375)
Remote docker host (#​1228)
remove par file that was checked in by mistake (#​1372)
Get build args from eviron in dockerfile build (#​1369)
Path join issues in contrib/dockerfile_build.bzl (#​1367)
Update io_bazel_rules_groovy commit hash to 06ce250 (#​1368)
update rules_groovy call to repositories.bzl (#​1366)
Update dependency build_bazel_rules_nodejs to v1.1.0 (#​1362)
update puller and loader binaries to pich up #​1359 (#​1365)
Add http(s)_proxy env var support to puller (#​1359)
Use 'portable' mtime as default for tars, like rules_pkg does (#​1302)
Update dependency com_github_pkg_errors to v0.9.0 (#​1363)
Update dependency io_bazel_rules_go to v0.21.0 (#​1364)
Update dependency bazel_toolchains to v2.0.2 (#​1361)
Revert "Change to using python 3 in host configuration (#​1318)" (#​1360)
Change to using python 3 in host configuration (#​1318)
Add Canva to adopters list (#​1358)
update_deps in Go (#​1357)
Update dependency build_bazel_rules_nodejs to v1.0.1 (#​1351)
Revert "Add robot_email attr to container push bzl rules (#​1353)" (#​1355)
Add robot_email attr to container push bzl rules (#​1353)
Sync with internal change (#​1352)
Update io_bazel_rules_scala commit hash to bd0c388 (#​1348)
Update dependency build_bazel_rules_nodejs to v1 (#​1340)
Update dependency bazel_toolchains to v2 (#​1339)
Update io_bazel_rules_scala commit hash to cfff088 (#​1338)
Update README for release v0.13.0 (#​1326)
Update dependency bazel_toolchains to v1.2.4 (#​1320)
Update io_bazel_rules_rust commit hash to 959ba56 (#​1321)

v0.13.0: Numerous additions & fixes

Compare Source

Fixes

  • Update rules_nodejs to 0.42.3 (#​1324)
  • Update io_bazel_rules_rust commit hash to 959ba56 (#​1321)
  • Update dependency bazel_toolchains to v1.2.4 (#​1320)
  • Add digest field back to to PushInfo (#​1315)
  • Update dependency io_bazel_rules_go to v0.20.3 (#​1313)
  • Update dependency bazel_toolchains to v1.2.2 (#​1312)
  • Update rules_python commit hash to 38f86fb (#​1311)
  • Add note about go_image on Mac (#​1309)
  • Sync with internal change (#​1308)
  • Update rules_groovy to prepare for Bazel 2.0 (#​1307)
  • Update io_bazel_rules_scala commit hash to 886bc9c (#​1306)
  • Update dependency bazel_toolchains to v1.2.1 (#​1304)
  • Update io_bazel_rules_scala commit hash to e568402 (#​1303)
  • Sync with internal change (#​1301)
  • move python modules out of bzl file (#​1299)
  • Sync with internal change (#​1298)
  • Update dependen

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@jotadrilo jotadrilo merged commit 8928a22 into main Nov 8, 2022
@jotadrilo jotadrilo deleted the renovate/io_bazel_rules_docker-0.x branch November 8, 2022 22:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant