chore(deps): upgrade skylib to remove warnings#1005
Merged
cgrindel merged 1 commit intobazelbuild:mainfrom Jan 24, 2026
Merged
Conversation
This upgrade of `bazel_skylib` from version 1.7.1 to 1.9.0 eliminates a few deprecation warnings when executing Bazel commands: > WARNING: [...]: target '[...]' depends on deprecated target > '@@bazel_tools//src/conditions:host_windows_x64_constraint': No longer > used by Bazel and will be removed in the future. Migrate to toolchains > or define your own version of this setting. These warnings originated from `bazel_skylib` 1.7.1's use of the deprecated `@bazel_tools//src/conditions:host_windows` constraint in `copy_file` and `diff_test rules`. Since version 1.8.0, `bazel_skylib` migrated away from this deprecated constraint (see bazelbuild/bazel-skylib#574).
7caaf5e to
efa9e39
Compare
cgrindel
approved these changes
Jan 24, 2026
Collaborator
|
Thank you! |
rdesgroppes
added a commit
to DataDog/datadog-agent
that referenced
this pull request
Feb 6, 2026
### What does this PR do? Bump `rules_pkg` from archived release 1.2.0 to current `main` branch to benefit from recent bugfixes. ### Motivation The `main` branch includes unreleased fixes: - Bazel 9 compatibility - when we feel ready to switch to it, - enhanced RPM support so that it's now possible to build RPMs from within Ubuntu CI containers, also with debuginfo: bazelbuild/rules_pkg#1006 - dependency on a deprecated target: bazelbuild/rules_pkg#1005 ### Additional Notes To remove a warning (rightfully treated as error) implied by the latter, this implies to also bump `bazel_skylib`: > For repository 'bazel_skylib', the root module requires module version > [email protected], but got [email protected] in the resolved > dependency graph.
gh-worker-dd-mergequeue-cf854d bot
pushed a commit
to DataDog/datadog-agent
that referenced
this pull request
Feb 6, 2026
### What does this PR do? Bump `rules_pkg` from archived release 1.2.0 to current `main` branch to benefit from recent bugfixes. ### Motivation The `main` branch includes unreleased fixes: - Bazel 9 compatibility, for when we feel ready to switch to it, - enhanced RPM support so that it's now possible to build RPMs from within Ubuntu CI containers, also with debuginfo: bazelbuild/rules_pkg#1006 - dependency on a deprecated target: bazelbuild/rules_pkg#1005 ### Additional Notes To remove a warning (rightfully treated as error) implied by the latter, this implies to also bump `bazel_skylib`: > For repository 'bazel_skylib', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Co-authored-by: regis.desgroppes <[email protected]>
alopezz
pushed a commit
to DataDog/datadog-agent
that referenced
this pull request
Feb 6, 2026
### What does this PR do? Bump `rules_pkg` from archived release 1.2.0 to current `main` branch to benefit from recent bugfixes. ### Motivation The `main` branch includes unreleased fixes: - Bazel 9 compatibility, for when we feel ready to switch to it, - enhanced RPM support so that it's now possible to build RPMs from within Ubuntu CI containers, also with debuginfo: bazelbuild/rules_pkg#1006 - dependency on a deprecated target: bazelbuild/rules_pkg#1005 ### Additional Notes To remove a warning (rightfully treated as error) implied by the latter, this implies to also bump `bazel_skylib`: > For repository 'bazel_skylib', the root module requires module version [email protected], but got [email protected] in the resolved dependency graph. Co-authored-by: regis.desgroppes <[email protected]>
aiuto
pushed a commit
to aiuto/rules_pkg
that referenced
this pull request
Feb 22, 2026
This upgrade of `bazel_skylib` from version 1.7.1 to 1.9.0 eliminates a few deprecation warnings when executing Bazel commands: > WARNING: [...]: target '[...]' depends on deprecated target > '@@bazel_tools//src/conditions:host_windows_x64_constraint': No longer > used by Bazel and will be removed in the future. Migrate to toolchains > or define your own version of this setting. These warnings originated from `bazel_skylib` 1.7.1's use of the deprecated `@bazel_tools//src/conditions:host_windows` constraint in `copy_file` and `diff_test rules`. Since version 1.8.0, `bazel_skylib` migrated away from this deprecated constraint (see bazelbuild/bazel-skylib#574).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This upgrade of
bazel_skylibfrom version 1.7.1 to 1.9.0 eliminates a few deprecation warnings when executing Bazel commands:These warnings originated from
bazel_skylib1.7.1's use of the deprecated@bazel_tools//src/conditions:host_windowsconstraint incopy_fileanddiff_testrules.Since version 1.8.0,
bazel_skylibmigrated away from this deprecated constraint (see bazelbuild/bazel-skylib#574).