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(master): release 0.11.0 #381

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

github-actions[bot]
Copy link

@github-actions github-actions bot commented Apr 16, 2024

🤖 I have created a release beep boop

0.11.0 (2024-10-24)

Features

  • Cmd-click to jump to a source file from a build rule (#380) (fa38d08)
  • codelens: Add a copy target command (da62c67)
  • codelens: Don't add target names for one line targets (#407) (4f02dc5)
  • codelens: Extend CodeLens to build and run more targets (00d9971)
  • coverage: Basic test coverage support (#366) (0d293b8)
  • coverage: Demangling C++ & Rust function names in coverage results (#398) (d28c294)
  • coverage: Demangling of Java function names in coverage results (#388) (7084368)
  • coverage: Load branch coverage from coverage files #389 (e5c95e4)
  • syntax highlighting for .bazelrc (#379) (2aea27e), closes #259

Bug Fixes

  • buildifier: Handle relative buildifier path without warning #387 (60051c5)
  • Change explorer UI label to "Bazel Targets" (#409) (dba3102)
  • codelens: Apply commandArgs to run targets (#408) (9c77c18)
  • coverage: Do not emit error on BRDA:0 entries (#417) (7f62f0e)
  • coverage: Expand external local repo in coverage report (#418) (c115a86)
  • Default to Python syntax highlighting theme (#397) (2614f19)
  • Link the full label / file name instead of individual components (#382) (2e207c9)

This PR was generated with Release Please. See documentation.

Copy link

google-cla bot commented Apr 16, 2024

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch 4 times, most recently from f180217 to 0b6aaac Compare April 19, 2024 22:19
@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch 2 times, most recently from f8a97bb to 8512be7 Compare May 5, 2024 20:02
@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch 2 times, most recently from 7e214ce to bc153ca Compare May 27, 2024 16:41
@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch 2 times, most recently from cb51b93 to f1c5242 Compare June 11, 2024 18:45
@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch from f1c5242 to 01acab7 Compare June 12, 2024 19:54
@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch 3 times, most recently from d72949c to 392591f Compare July 4, 2024 21:35
@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch from 392591f to 7e0b13d Compare July 23, 2024 00:08
@hofbi
Copy link

hofbi commented Aug 9, 2024

@vogelsgesang Is there any plan for when the next release will be made?

@vogelsgesang
Copy link
Collaborator

vogelsgesang commented Aug 9, 2024

no, we don't have a specific plan, yet.

We are still in an in-between state of transferring ownership of this project from Google to the open-source community. We rely on people from Google to publish the extension to the Marketplace, and this process is a bit cumbersome. And I was hoping that we could first finish the transfer of ownership to the open-source community before cutting the next release.

Do you need an updated release for some reason? In case you only need a version for your own, local usage: Our Github actions actually include .vsix packages (see, e.g., here) which you can install in VS Code

@hofbi
Copy link

hofbi commented Aug 9, 2024

No urgent need for a new release, just wanted to check in

@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch 2 times, most recently from d4444d2 to 8545c99 Compare August 13, 2024 21:21
@rma-stripe
Copy link

We've received a few user complaints about the (small) bug that #387 addresses. Similar to hofbi, we are also not urgently in need of release, but an eventual release would be appreciated.

@adam-azarchs
Copy link
Contributor

I think there's basically two problems here:

  1. github actions hasn't signed the CAL, which is making that check fail. I don't know but maybe that check can be removed after this moves to contrib.
  2. Even if this release were to be tagged, someone still needs to publish it to the marketplace. I'm not sure who that would be; IIRC there's basically one googler with the rights for that and I'm not sure they're still actively engaged with this project. I think changing that is also gated on moving this to contrib. Ideally we'd have a GitHub action that would, when a release is tagged, build the new .vsix, attest its provenance, and publish it to the marketplace. That would require it having credentials to do that1, which in turn probably requires that it be published to an ADO org that isn't formally affiliated with Google.

Footnotes

  1. Ideally it would get those via OIDC (e.g. azure/login) rather than using a token stored in github secrets, because a token stored in github secrets requires someone with the rights to generate a token remember to do that periodically. OIDC, by contrast, is essentially saying "this specific workflow from this specific repository is allowed to have permissions to do this thing", and Azure DevOps is trusting GitHub to honestly report which workflow is requesting a token. Then it's up to GitHub to keep their SSL cert valid, which I think we can rely on them doing. However, while Azure obviously supports OIDC login from GitHub, I'm not sure whether Azure DevOps in particular (which is what is needed for publishing a vscode extension) is covered by that.

@cameron-martin
Copy link
Collaborator

Regarding your first point, it's possible it has already been removed but just requires pushing a commit to this branch after it was moved. I was told the CLA would no longer be necessary after the move.

@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch from 8545c99 to 3a676c9 Compare October 17, 2024 15:13
@cameron-martin
Copy link
Collaborator

It appears the build job on CI isn't getting triggered now. Unsure if it's a flake or something else.

@adam-azarchs
Copy link
Contributor

adam-azarchs commented Oct 18, 2024

Actions aren't triggered by pushes made with GITHUB_TOKEN. There are three ways around that:

  1. Use a token other than GITHUB_TOKEN. Generally undesirable because it requires managing a secret, with a token that has write access to the repo, so you really need to rotate it frequently.
  2. Use a github app to provide the token. I think that's what was happening when it was part of the bazelbuild org, but it's hard for a non-admin to see if that's the case.
  3. Enable workflow_dispatch for the required CI action and explicitly triggering it from the action which pushes the branch.

@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch 2 times, most recently from 4247096 to 5024ed1 Compare October 23, 2024 19:51
@github-actions github-actions bot force-pushed the release-please--branches--master--components--vscode-bazel branch from 5024ed1 to 9dff883 Compare October 24, 2024 21:08
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.

Feature request: syntax support for bazelrc files
5 participants