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

chore(deps): update dependency rules_foreign_cc to v0.14.0 #24

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 5, 2024

This PR contains the following updates:

Package Type Update Change
rules_foreign_cc http_archive minor 0.10.1 -> 0.14.0

Release Notes

bazelbuild/rules_foreign_cc (rules_foreign_cc)

v0.14.0

Compare Source

Using Bzlmod

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_foreign_cc", version = "0.14.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_foreign_cc",
    sha256 = "e0f0ebb1a2223c99a904a565e62aa285bf1d1a8aeda22d10ea2127591624866c",
    strip_prefix = "rules_foreign_cc-0.14.0",
    url = "https://github.com/bazel-contrib/rules_foreign_cc/releases/download/0.14.0/rules_foreign_cc-0.14.0.tar.gz",
)

load("@​rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")

### This sets up some common toolchains for building targets. For more details, please see
### https://bazel-contrib.github.io/rules_foreign_cc/0.14.0/flatten.html#rules_foreign_cc_dependencies
rules_foreign_cc_dependencies()

### If you're not already using bazel_skylib, bazel_features or rules_python,
### you'll need to add these calls as well.

load("@​bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")

bazel_skylib_workspace()

load("@​bazel_features//:deps.bzl", "bazel_features_deps")

bazel_features_deps()

load("@​rules_python//python:repositories.bzl", "py_repositories")

py_repositories()

What's Changed

Full Changelog: bazel-contrib/rules_foreign_cc@0.13.0...0.14.0

v0.13.0

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_foreign_cc", version = "0.13.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_foreign_cc",
    sha256 = "8e5605dc2d16a4229cb8fbe398514b10528553ed4f5f7737b663fdd92f48e1c2",
    strip_prefix = "rules_foreign_cc-0.13.0",
    url = "https://github.com/bazel-contrib/rules_foreign_cc/releases/download/0.13.0/rules_foreign_cc-0.13.0.tar.gz",
)

load("@​rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")

### This sets up some common toolchains for building targets. For more details, please see
### https://bazelbuild.github.io/rules_foreign_cc/0.13.0/flatten.html#rules_foreign_cc_dependencies
rules_foreign_cc_dependencies()

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_foreign_cc@0.12.0...0.13.0

v0.12.0

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_foreign_cc", version = "0.12.0")

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_foreign_cc",
    sha256 = "a2e6fb56e649c1ee79703e99aa0c9d13c6cc53c8d7a0cbb8797ab2888bbc99a3",
    strip_prefix = "rules_foreign_cc-0.12.0",
    url = "https://github.com/bazelbuild/rules_foreign_cc/releases/download/0.12.0/rules_foreign_cc-0.12.0.tar.gz",
)

load("@​rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")

### This sets up some common toolchains for building targets. For more details, please see
### https://bazelbuild.github.io/rules_foreign_cc/0.12.0/flatten.html#rules_foreign_cc_dependencies
rules_foreign_cc_dependencies()

load("@​bazel_features//:deps.bzl", "bazel_features_deps")

bazel_features_deps()

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_foreign_cc@0.11.1...0.12.0

v0.11.1

Compare Source

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_foreign_cc", version = "0.11.1")

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_foreign_cc",
    sha256 = "4b33d62cf109bcccf286b30ed7121129cc34cf4f4ed9d8a11f38d9108f40ba74",
    strip_prefix = "rules_foreign_cc-0.11.1",
    url = "https://github.com/bazelbuild/rules_foreign_cc/releases/download/0.11.1/rules_foreign_cc-0.11.1.tar.gz",
)

load("@​rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")

### This sets up some common toolchains for building targets. For more details, please see
### https://bazelbuild.github.io/rules_foreign_cc/0.11.1/flatten.html#rules_foreign_cc_dependencies
rules_foreign_cc_dependencies()

Full Changelog: bazel-contrib/rules_foreign_cc@0.10.1...0.11.1

What's Changed

New Contributors

Full Changelog: bazel-contrib/rules_foreign_cc@0.10.1...0.11.1


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 was generated by Mend Renovate. View the repository job log.

@MShekow MShekow force-pushed the main branch 5 times, most recently from ab15846 to d99a976 Compare July 12, 2024 03:29
@MShekow MShekow force-pushed the main branch 5 times, most recently from 83ef0d1 to 22836ce Compare July 20, 2024 03:29
@MShekow MShekow force-pushed the main branch 5 times, most recently from 2c20471 to e678cda Compare July 31, 2024 03:27
@renovate renovate bot changed the title Update dependency rules_foreign_cc to v0.11.1 chore(deps): update dependency rules_foreign_cc to v0.11.1 Jul 31, 2024
@renovate renovate bot changed the title chore(deps): update dependency rules_foreign_cc to v0.11.1 Update dependency rules_foreign_cc to v0.11.1 Aug 1, 2024
@renovate renovate bot changed the title Update dependency rules_foreign_cc to v0.11.1 chore(deps): update dependency rules_foreign_cc to v0.11.1 Aug 2, 2024
@MShekow MShekow force-pushed the main branch 5 times, most recently from 6c29ccd to 11a0a84 Compare August 9, 2024 03:29
@MShekow MShekow force-pushed the main branch 3 times, most recently from 7c7a0da to b23cbf7 Compare August 17, 2024 03:28
@MShekow MShekow force-pushed the main branch 2 times, most recently from 4cde7bb to 9e8d9c0 Compare January 17, 2025 03:31
@renovate renovate bot changed the title Update dependency rules_foreign_cc to v0.13.0 chore(deps): update dependency rules_foreign_cc to v0.13.0 Jan 17, 2025
@MShekow MShekow force-pushed the main branch 4 times, most recently from bac6879 to 3c19b0e Compare January 24, 2025 03:31
@MShekow MShekow force-pushed the main branch 3 times, most recently from 872c6a2 to f06b694 Compare February 1, 2025 03:32
@renovate renovate bot changed the title chore(deps): update dependency rules_foreign_cc to v0.13.0 Update dependency rules_foreign_cc to v0.13.0 Feb 1, 2025
@renovate renovate bot changed the title Update dependency rules_foreign_cc to v0.13.0 chore(deps): update dependency rules_foreign_cc to v0.13.0 Feb 4, 2025
@renovate renovate bot changed the title chore(deps): update dependency rules_foreign_cc to v0.13.0 Update dependency rules_foreign_cc to v0.13.0 Feb 5, 2025
@MShekow MShekow force-pushed the main branch 3 times, most recently from e8a414c to 87123fe Compare February 12, 2025 03:32
@renovate renovate bot force-pushed the renovate/rules_foreign_cc-0.x branch from 25c78de to f84e10c Compare February 14, 2025 03:38
@renovate renovate bot changed the title Update dependency rules_foreign_cc to v0.13.0 Update dependency rules_foreign_cc to v0.14.0 Feb 14, 2025
@renovate renovate bot changed the title Update dependency rules_foreign_cc to v0.14.0 chore(deps): update dependency rules_foreign_cc to v0.14.0 Feb 18, 2025
@MShekow MShekow force-pushed the main branch 4 times, most recently from 5e5e26d to fa876e1 Compare March 1, 2025 03:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants