Skip to content

Commit 70ce5c6

Browse files
Fix required permissions list for hybrid cloud bootstrap command generation api (#214)
* Fix required permissions list for hybrid cloud bootstrap command generation API * Allow breaking changes during code generation in workflow * Address code review feedback. * Return accidentally removed lint command
1 parent dcdd076 commit 70ce5c6

12 files changed

Lines changed: 26 additions & 17 deletions

File tree

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ bootstrap: bootstrap/uv ## Install the required dependencies to use this project
2020
.PHONY: lint
2121
lint: buf/deps ## Check protobuf files for linting errors.
2222
buf lint
23-
buf breaking --against https://github.com/qdrant/qdrant-cloud-public-api.git
23+
@buf breaking --against https://github.com/qdrant/qdrant-cloud-public-api.git || \
24+
echo "⚠️ Warning: Breaking changes detected! These should generally be avoided. Continuing with code generation..."
2425

2526
.PHONY: format
2627
format: buf/deps ## Format protobuf files (in-place) using `buf format`.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ After changing a `.proto` file, you should regenerate the different language bin
245245
``` sh
246246
make generate
247247
```
248-
249248
## Using generated code
250249

251250
### Go projects

gen/go/qdrant/cloud/hybrid/v1/hybrid_cloud.pb.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/go/qdrant/cloud/hybrid/v1/hybrid_cloud_grpc.pb.go

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/openapiv2/qdrant/cloud/hybrid/v1/hybrid_cloud.swagger.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/python/qdrant/cloud/hybrid/v1/hybrid_cloud_pb2.py

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/python/qdrant/cloud/hybrid/v1/hybrid_cloud_pb2_grpc.py

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/typescript/qdrant/cloud/hybrid/v1/hybrid_cloud-HybridCloudService_connectquery.d.ts

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/typescript/qdrant/cloud/hybrid/v1/hybrid_cloud-HybridCloudService_connectquery.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gen/typescript/qdrant/cloud/hybrid/v1/hybrid_cloud_pb.d.ts

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)