Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am suprised this works, but if the tests are passing, that's awesome :D

Copy link
Contributor Author

@Ekrekr Ekrekr Jan 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it breaks at 6.0.0 because docker rules can't support that, but 5.4.0 seems fine locally!

Cloud build tests time out on the PR, but it looks like it's just because postgres flaked - will retry.

5.4.0
2 changes: 1 addition & 1 deletion tools/gcloud/repository_rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ def _gcloud_sdk_impl(ctx):
gcloud_sdk = repository_rule(
implementation = _gcloud_sdk_impl,
attrs = {
"version": attr.string(default = "318.0.0"),
"version": attr.string(default = "412.0.0"),
},
)
2 changes: 1 addition & 1 deletion vscode/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function gatherAllActions(

function retrieveLinkedFileName(ref: string) {
const allActions = gatherAllActions();
const foundCompileAction = allActions.find(action => action.name.split(".").slice(-1)[0] === ref);
const foundCompileAction = allActions.find(action => action.target.name === ref);
return foundCompileAction.fileName;
}

Expand Down