Skip to content

Commit fb5c1d6

Browse files
authored
Merge pull request #101 from aserto-dev/v0.33.10
update v3 schema * remove GetObject pagination (never implemented) * remove schema/v3 types (not used by topaz) * remove v3 assertion service (not used by topaz) add v4 schema * NOTE: The v4 schema remains subject to changes until we switch to the v34 version where v3 will be removed
2 parents a280c6a + 1fdae20 commit fb5c1d6

File tree

28 files changed

+10848
-5383
lines changed

28 files changed

+10848
-5383
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919
pull-requests: write
2020

2121
env:
22-
BUF_VERSION: "1.62.1"
22+
BUF_VERSION: "1.64.0"
2323

2424
jobs:
2525
build:
@@ -51,7 +51,6 @@ jobs:
5151
- { project: dotnet-directory }
5252
- { project: ruby-directory }
5353
- { project: python-directory }
54-
- { project: openapi-directory }
5554
- { project: java-directory }
5655

5756
name: Generate on ${{ matrix.cfg.project }}

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ Directory Service protobuf & gRPC definitions
66

77
* [Type Constraints](./docs/constraints.md)
88

9-
* [Directory v3 API](./md/v3/api.md)
10-
11-
* [Directory v4 API](./md/v4/api.md)
9+
* [Directory API](./docs/api.md)
1210

1311
* [API Change List v3 <=> v4](./docs/changelist.md)
1412

@@ -27,5 +25,3 @@ Buf image is published to [https://buf.build/aserto-dev/directory](https://buf.b
2725
|Ruby | X | - |[https://github.com/aserto-dev/ruby-directory](https://github.com/aserto-dev/ruby-directory)|
2826
|NodeJS | X | - |[https://github.com/aserto-dev/node-directory](https://github.com/aserto-dev/node-directory)|
2927
|TypeScript| X | - |[https://github.com/aserto-dev/ts-directory](https://github.com/aserto-dev/ts-directory)|
30-
|Rust | X | - |[https://github.com/aserto-dev/rs-directory](https://github.com/aserto-dev/rs-directory)|
31-

buf.gen-html.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

buf.gen-md.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

buf.gen.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
version: v2
3+
4+
clean: false
5+
6+
plugins:
7+
- remote: buf.build/community/pseudomuto-doc:v1.5.1
8+
out: ./docs
9+
opt:
10+
- markdown,api.md
11+
12+
- remote: buf.build/community/pseudomuto-doc:v1.5.1
13+
out: ./html
14+
opt:
15+
- html,index.html
16+
17+
# use v2.27.4 to avoid breaking error incl v2.27.5 <-> v2.27.7, resulting in:
18+
# Error converting document: Error converting Swagger to 3.0 failed to resolve "readerV4CheckRequest"
19+
# in fragment in URI: "#/components/schemas/readerV4CheckRequest": map key "readerV4CheckRequest" not found
20+
- remote: buf.build/grpc-ecosystem/openapiv2:v2.27.4
21+
out: ./tmp
22+
opt:
23+
- json_names_for_fields=false # use proto names.
24+
- allow_delete_body=true # DELETE requests may have a body.
25+
- simple_operation_ids=true # Remove service prefix from operation IDs.
26+
- enable_rpc_deprecation=true # process grpc method's deprecated options.

0 commit comments

Comments
 (0)