Releases: bazel-contrib/rules-template
Releases · bazel-contrib/rules-template
v0.1.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_myorg_rules_mylang",
sha256 = "3d7f0da88f005bd892dacfd68816fd08c6b7b943582daaa012e177a0777e22bf",
strip_prefix = "rules_mylang-0.1.0",
url = "https://github.com/myorg/rules_mylang/releases/download/v0.1.0/rules_mylang-v0.1.0.tar.gz",
)
######################
# rules_mylang setup #
######################
# Fetches the rules_mylang dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@com_myorg_rules_mylang//mylang:repositories.bzl", "rules_mylang_dependencies")
rules_mylang_dependencies()
What's Changed
- Initial contribution of code from aspect-build/bazel_rules_template by @alexeagle in #1
- Upgrade Bazel to 4.2.2 by @Yannic in #2
- build: fix ci cacheing to use recently built caches by @kormide in #4
- build: move ci cache flags to bazelrc by @kormide in #6
- bump to bazel 5 by @alexeagle in #5
- Fix workspace snippet by @caseyduquettesc in #7
- chore: Update github archive URLs to have stable SHAs by @alexeagle in #8
- Declare toolchain only constrained by the exec platform by @alexeagle in #9
- Add simple e2e assertion that the rules snippet works for users by @alexeagle in #11
- feat: add IntelliJ IDE folders to .gitignore by @mattem in #12
- chore(deps): update actions/checkout action to v3 by @alexeagle in #13
- Upgrade Bazel to 5.2.0 by @Yannic in #14
- update aspect_bazel_lib internal dep to v1.8.1 by @gregmagolan in #15
- Configure Renovate by @renovate in #17
- refactor: pull maybe() into a helper by @alexeagle in #19
- chore(deps): update dependency io_bazel_stardoc to v0.5.2 by @renovate in #21
- chore(deps): update dependency bazel_skylib to v1.2.1 by @renovate in #22
- chore(deps): update dependency bazel to v5.3.0 by @renovate in #25
- chore(deps): remove bazel-integration-testing by @jbedard in #27
- Update testing page URL by @bivens-dev in #32
- Pin version of node to one supported on ubuntu 18.04. by @jsharpe in #34
- Update internal_deps to latest and test with Bazel 6.0.0rc4 as well as Bazel 5.3.2 by @gregmagolan in #36
- Fix usage of GitHub actions cache by @pziggo in #35
- chore(deps): update dependency aspect_bazel_lib to v1.19.0 by @renovate in #39
- chore(deps): update dependency bazel_skylib to v1.3.0 by @renovate in #31
- chore(deps): update dependency io_bazel_rules_go to v0.37.0 by @renovate in #24
- chore: publish release artifact by @alexeagle in #44
New Contributors
- @alexeagle made their first contribution in #1
- @Yannic made their first contribution in #2
- @kormide made their first contribution in #4
- @caseyduquettesc made their first contribution in #7
- @mattem made their first contribution in #12
- @gregmagolan made their first contribution in #15
- @renovate made their first contribution in #17
- @jbedard made their first contribution in #27
- @bivens-dev made their first contribution in #32
- @jsharpe made their first contribution in #34
- @pziggo made their first contribution in #35
Full Changelog: https://github.com/bazel-contrib/rules-template/commits/v0.1.0