Skip to content

Commit 86543ce

Browse files
authored
Update proto to V1.0 (#39)
* Update proto to V1.0 * Format newlines * Also bump package version to prepare for release
1 parent d613232 commit 86543ce

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dapr"
3-
version = "0.3.0-alpha.0"
3+
version = "0.4.0-alpha.0"
44
authors = ["dapr.io"]
55
edition = "2018"
66
license-file = "LICENSE"

dapr/proto/common/v1/common.proto

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ------------------------------------------------------------
2-
// Copyright (c) Microsoft Corporation.
2+
// Copyright (c) Microsoft Corporation and Dapr Contributors.
33
// Licensed under the MIT License.
44
// ------------------------------------------------------------
55

@@ -39,8 +39,8 @@ message HTTPExtension {
3939
// Required. HTTP verb.
4040
Verb verb = 1;
4141

42-
// querystring includes HTTP querystring.
43-
map<string, string> querystring = 2;
42+
// Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
43+
string querystring = 2;
4444
}
4545

4646
// InvokeRequest is the message to invoke a method with the data.

dapr/proto/runtime/v1/appcallback.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ------------------------------------------------------------
2-
// Copyright (c) Microsoft Corporation.
2+
// Copyright (c) Microsoft Corporation and Dapr Contributors.
33
// Licensed under the MIT License.
44
// ------------------------------------------------------------
55

dapr/proto/runtime/v1/dapr.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ------------------------------------------------------------
2-
// Copyright (c) Microsoft Corporation.
2+
// Copyright (c) Microsoft Corporation and Dapr Contributors.
33
// Licensed under the MIT License.
44
// ------------------------------------------------------------
55

0 commit comments

Comments
 (0)