From 003454ffd917964cdc7808d6dfa3d9e9fe5027ea Mon Sep 17 00:00:00 2001 From: keertk Date: Wed, 9 Oct 2024 14:36:07 -0700 Subject: [PATCH] Add 2 missing sections to Q3 update (#357) * Add 2 subsections * Minor fixes --- _posts/2024-10-09-bazel-q3-2024-community-update.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/_posts/2024-10-09-bazel-q3-2024-community-update.md b/_posts/2024-10-09-bazel-q3-2024-community-update.md index d68c0de..16c565c 100644 --- a/_posts/2024-10-09-bazel-q3-2024-community-update.md +++ b/_posts/2024-10-09-bazel-q3-2024-community-update.md @@ -44,6 +44,16 @@ Bazel 8.0 is coming soon! The [first release candidate](https://github.com/bazel We're thrilled to announce a major milestone for the IntelliJ Bazel plugin: **1 million downloads**! 🎉 This achievement is a testament to the hard work, dedication, and incredible support from our community. Thank you to all of our users for your continued trust and support. Your feedback and contributions have been invaluable in shaping the plugin into what it is today. +### Introducing Bazel 7.2’s output service protocol + +One of the exciting new features in Bazel 7.2 is support for the Bazel Output Service which allows Bazel to lazily materialize outputs when you access them with normal filesystem operations. This allows you to maintain visibility to the entire output tree while still saving network bandwidth. + +It can be enabled by providing command line flags `--experimental_remote_output_service` and `--experimental_remote_output_service_output_path_prefix`. In [this blog post](https://blog.bazel.build/2024/07/23/remote-output-service.html), we describe what the Bazel Output Service is, and why you’d want to use it. + +### Bazel for embedded: Pigweed SDK launches with native Bazel support + +The Pigweed team is excited to announce the launch of the Pigweed SDK (preview) with native Bazel support. Take a look at [this blog post](https://blog.bazel.build/2024/08/08/bazel-for-embedded.html) for all the details! + ## Community corner - [Bazel Overlay Pattern](https://fzakaria.com/2024/08/29/bazel-overlay-pattern.html) _by Farid Zakaria_