Skip to content

Commit eb4988f

Browse files
paulyukyaron2
andauthored
Official Release 3.4.0 (#620) --> Main (#623)
* Official Release 3.4.0 (#620) * Updating package json with final release version 3.4.0 Signed-off-by: Paul Yuknewicz <[email protected]> * Regenerated protos by updating and running ./scripts/fetch-proto.sh Signed-off-by: Paul Yuknewicz <[email protected]> * Updating test workflow with correct Dapr Runtime and CLI versions Signed-off-by: Paul Yuknewicz <[email protected]> * Bumping version to 3.4.0-rc.2 Signed-off-by: Paul Yuknewicz <[email protected]> * did npm install to refresh package-lock.json Signed-off-by: Paul Yuknewicz <[email protected]> * Final release version 3.4.0 Signed-off-by: Paul Yuknewicz <[email protected]> --------- Signed-off-by: Paul Yuknewicz <[email protected]> * Update test-e2e.yml Signed-off-by: Yaron Schneider <[email protected]> --------- Signed-off-by: Paul Yuknewicz <[email protected]> Signed-off-by: Yaron Schneider <[email protected]> Co-authored-by: Yaron Schneider <[email protected]>
1 parent 18162df commit eb4988f

File tree

16 files changed

+2615
-7
lines changed

16 files changed

+2615
-7
lines changed

.github/workflows/test-e2e.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
runs-on: ubuntu-latest
3636
env:
3737
GOVER: 1.22
38-
DAPR_CLI_VER: 1.14.0-rc.8
39-
DAPR_RUNTIME_VER: 1.14.0-rc.7
38+
DAPR_CLI_VER: 1.14.0
39+
DAPR_RUNTIME_VER: 1.14.1
4040
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
4141
DAPR_CLI_REF: ""
4242
DAPR_REF: ""

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dapr/dapr",
3-
"version": "3.4.0-rc.1",
3+
"version": "3.4.0",
44
"description": "The official Dapr (https://dapr.io) SDK for Node.js",
55
"types": "./build/index.d.ts",
66
"scripts": {
@@ -48,13 +48,13 @@
4848
"dependencies": {
4949
"@grpc/grpc-js": "^1.9.3",
5050
"@js-temporal/polyfill": "^0.3.0",
51+
"@microsoft/durabletask-js": "^0.1.0-alpha.1",
5152
"@types/google-protobuf": "^3.15.5",
5253
"@types/node-fetch": "^2.6.2",
5354
"body-parser": "^1.19.0",
5455
"express": "^4.18.2",
5556
"google-protobuf": "^3.18.0",
5657
"http-terminator": "^3.2.0",
57-
"@microsoft/durabletask-js": "^0.1.0-alpha.1",
5858
"node-fetch": "^2.6.7"
5959
},
6060
"devDependencies": {

scripts/fetch-proto.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ OS=$(echo `uname`|tr '[:upper:]' '[:lower:]')
33
ARCH=$(uname -m)
44
ORG_NAME="dapr"
55
REPO_NAME="dapr"
6-
BRANCH_NAME="v1.14.0-rc.7"
6+
BRANCH_NAME="v1.14.0"
77

88
# Path to store output
99
PATH_ROOT=$(pwd)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
/*
2+
Copyright 2021 The Dapr Authors
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0
7+
Unless required by applicable law or agreed to in writing, software
8+
distributed under the License is distributed on an "AS IS" BASIS,
9+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
See the License for the specific language governing permissions and
11+
limitations under the License.
12+
*/
13+
14+
syntax = "proto3";
15+
16+
package dapr.proto.common.v1;
17+
18+
import "google/protobuf/any.proto";
19+
20+
option csharp_namespace = "Dapr.Client.Autogen.Grpc.v1";
21+
option java_outer_classname = "CommonProtos";
22+
option java_package = "io.dapr.v1";
23+
option go_package = "github.com/dapr/dapr/pkg/proto/common/v1;common";
24+
25+
// HTTPExtension includes HTTP verb and querystring
26+
// when Dapr runtime delivers HTTP content.
27+
//
28+
// For example, when callers calls http invoke api
29+
// POST http://localhost:3500/v1.0/invoke/<app_id>/method/<method>?query1=value1&query2=value2
30+
//
31+
// Dapr runtime will parse POST as a verb and extract querystring to quersytring map.
32+
message HTTPExtension {
33+
// Type of HTTP 1.1 Methods
34+
// RFC 7231: https://tools.ietf.org/html/rfc7231#page-24
35+
// RFC 5789: https://datatracker.ietf.org/doc/html/rfc5789
36+
enum Verb {
37+
NONE = 0;
38+
GET = 1;
39+
HEAD = 2;
40+
POST = 3;
41+
PUT = 4;
42+
DELETE = 5;
43+
CONNECT = 6;
44+
OPTIONS = 7;
45+
TRACE = 8;
46+
PATCH = 9;
47+
}
48+
49+
// Required. HTTP verb.
50+
Verb verb = 1;
51+
52+
// Optional. querystring represents an encoded HTTP url query string in the following format: name=value&name2=value2
53+
string querystring = 2;
54+
}
55+
56+
// InvokeRequest is the message to invoke a method with the data.
57+
// This message is used in InvokeService of Dapr gRPC Service and OnInvoke
58+
// of AppCallback gRPC service.
59+
message InvokeRequest {
60+
// Required. method is a method name which will be invoked by caller.
61+
string method = 1;
62+
63+
// Required in unary RPCs. Bytes value or Protobuf message which caller sent.
64+
// Dapr treats Any.value as bytes type if Any.type_url is unset.
65+
google.protobuf.Any data = 2;
66+
67+
// The type of data content.
68+
//
69+
// This field is required if data delivers http request body
70+
// Otherwise, this is optional.
71+
string content_type = 3;
72+
73+
// HTTP specific fields if request conveys http-compatible request.
74+
//
75+
// This field is required for http-compatible request. Otherwise,
76+
// this field is optional.
77+
HTTPExtension http_extension = 4;
78+
}
79+
80+
// InvokeResponse is the response message including data and its content type
81+
// from app callback.
82+
// This message is used in InvokeService of Dapr gRPC Service and OnInvoke
83+
// of AppCallback gRPC service.
84+
message InvokeResponse {
85+
// Required in unary RPCs. The content body of InvokeService response.
86+
google.protobuf.Any data = 1;
87+
88+
// Required. The type of data content.
89+
string content_type = 2;
90+
}
91+
92+
// Chunk of data sent in a streaming request or response.
93+
// This is used in requests including InternalInvokeRequestStream.
94+
message StreamPayload {
95+
// Data sent in the chunk.
96+
// The amount of data included in each chunk is up to the discretion of the sender, and can be empty.
97+
// Additionally, the amount of data doesn't need to be fixed and subsequent messages can send more, or less, data.
98+
// Receivers must not make assumptions about the number of bytes they'll receive in each chunk.
99+
bytes data = 1;
100+
101+
// Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent.
102+
uint64 seq = 2;
103+
}
104+
105+
// StateItem represents state key, value, and additional options to save state.
106+
message StateItem {
107+
// Required. The state key
108+
string key = 1;
109+
110+
// Required. The state data for key
111+
bytes value = 2;
112+
113+
// The entity tag which represents the specific version of data.
114+
// The exact ETag format is defined by the corresponding data store.
115+
Etag etag = 3;
116+
117+
// The metadata which will be passed to state store component.
118+
map<string,string> metadata = 4;
119+
120+
// Options for concurrency and consistency to save the state.
121+
StateOptions options = 5;
122+
}
123+
124+
// Etag represents a state item version
125+
message Etag {
126+
// value sets the etag value
127+
string value = 1;
128+
}
129+
130+
// StateOptions configures concurrency and consistency for state operations
131+
message StateOptions {
132+
// Enum describing the supported concurrency for state.
133+
enum StateConcurrency {
134+
CONCURRENCY_UNSPECIFIED = 0;
135+
CONCURRENCY_FIRST_WRITE = 1;
136+
CONCURRENCY_LAST_WRITE = 2;
137+
}
138+
139+
// Enum describing the supported consistency for state.
140+
enum StateConsistency {
141+
CONSISTENCY_UNSPECIFIED = 0;
142+
CONSISTENCY_EVENTUAL = 1;
143+
CONSISTENCY_STRONG = 2;
144+
}
145+
146+
StateConcurrency concurrency = 1;
147+
StateConsistency consistency = 2;
148+
}
149+
150+
// ConfigurationItem represents all the configuration with its name(key).
151+
message ConfigurationItem {
152+
// Required. The value of configuration item.
153+
string value = 1;
154+
155+
// Version is response only and cannot be fetched. Store is not expected to keep all versions available
156+
string version = 2;
157+
158+
// the metadata which will be passed to/from configuration store component.
159+
map<string,string> metadata = 3;
160+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
Copyright 2021 The Dapr Authors
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0
7+
Unless required by applicable law or agreed to in writing, software
8+
distributed under the License is distributed on an "AS IS" BASIS,
9+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
See the License for the specific language governing permissions and
11+
limitations under the License.
12+
*/
13+
14+
syntax = "proto3";
15+
16+
package dapr.proto.internals.v1;
17+
18+
option go_package = "github.com/dapr/dapr/pkg/proto/internals/v1;internals";
19+
20+
// APIVersion represents the version of Dapr Runtime API.
21+
enum APIVersion {
22+
// unspecified apiversion
23+
APIVERSION_UNSPECIFIED = 0;
24+
25+
// Dapr API v1
26+
V1 = 1;
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
/*
2+
Copyright 2021 The Dapr Authors
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
http://www.apache.org/licenses/LICENSE-2.0
7+
Unless required by applicable law or agreed to in writing, software
8+
distributed under the License is distributed on an "AS IS" BASIS,
9+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
See the License for the specific language governing permissions and
11+
limitations under the License.
12+
*/
13+
14+
syntax = "proto3";
15+
16+
package dapr.proto.internals.v1;
17+
18+
import "dapr/proto/common/v1/common.proto";
19+
import "dapr/proto/internals/v1/reminders.proto";
20+
import "dapr/proto/internals/v1/apiversion.proto";
21+
import "dapr/proto/internals/v1/status.proto";
22+
import "google/protobuf/empty.proto";
23+
24+
option go_package = "github.com/dapr/dapr/pkg/proto/internals/v1;internals";
25+
26+
// ServiceInvocation service is used to exchange the data between
27+
// caller dapr runtime and callee dapr runtime.
28+
//
29+
// The request message includes caller's HTTP/gRPC request
30+
// and deliver callee's response including status code.
31+
// The response status of rpc methods represents of internal gRPC
32+
// connection status, not callee's response status.
33+
//
34+
// Thus, ServiceInvocation gRPC response returns OK in most cases
35+
// regardless of callee's response.
36+
service ServiceInvocation {
37+
// Invokes a method of the specific actor.
38+
rpc CallActor (InternalInvokeRequest) returns (InternalInvokeResponse) {}
39+
40+
// Invokes a method of the specific service.
41+
rpc CallLocal (InternalInvokeRequest) returns (InternalInvokeResponse) {}
42+
43+
// Invoke a remote internal actor reminder
44+
rpc CallActorReminder(Reminder) returns (google.protobuf.Empty) {}
45+
46+
// Invokes a method of the specific service using a stream of data.
47+
// Although this uses a bi-directional stream, it behaves as a "simple RPC" in which the caller sends the full request (chunked in multiple messages in the stream), then reads the full response (chunked in the stream).
48+
// Each message in the stream contains a `InternalInvokeRequestStream` (for caller) or `InternalInvokeResponseStream` (for callee):
49+
// - The first message in the stream MUST contain a `request` (caller) or `response` (callee) message with all required properties present.
50+
// - The first message in the stream MAY contain a `payload`, which is not required and may be empty.
51+
// - Subsequent messages (any message except the first one in the stream) MUST contain a `payload` and MUST NOT contain any other property (like `request` or `response`).
52+
// - Each message with a `payload` MUST contain a sequence number in `seq`, which is a counter that starts from 0 and MUST be incremented by 1 in each chunk. The `seq` counter MUST NOT be included if the message does not have a `payload`.
53+
// - When the sender has completed sending the data, it MUST call `CloseSend` on the stream.
54+
// The caller and callee must send at least one message in the stream. If only 1 message is sent in each direction, that message must contain both a `request`/`response` (the `payload` may be empty).
55+
rpc CallLocalStream (stream InternalInvokeRequestStream) returns (stream InternalInvokeResponseStream) {}
56+
}
57+
58+
// Actor represents actor using actor_type and actor_id
59+
message Actor {
60+
// Required. The type of actor.
61+
string actor_type = 1;
62+
63+
// Required. The ID of actor type (actor_type)
64+
string actor_id = 2;
65+
}
66+
67+
// InternalInvokeRequest is the message to transfer caller's data to callee
68+
// for service invocation. This includes callee's app id and caller's request data.
69+
message InternalInvokeRequest {
70+
// Required. The version of Dapr runtime API.
71+
APIVersion ver = 1;
72+
73+
// Required. metadata holds caller's HTTP headers or gRPC metadata.
74+
map<string, ListStringValue> metadata = 2;
75+
76+
// Required. message including caller's invocation request.
77+
common.v1.InvokeRequest message = 3;
78+
79+
// Actor type and id. This field is used only for
80+
// actor service invocation.
81+
Actor actor = 4;
82+
}
83+
84+
// InternalInvokeResponse is the message to transfer callee's response to caller
85+
// for service invocation.
86+
message InternalInvokeResponse {
87+
// Required. HTTP/gRPC status.
88+
Status status = 1;
89+
90+
// Required. The app callback response headers.
91+
map<string, ListStringValue> headers = 2;
92+
93+
// App callback response trailers.
94+
// This will be used only for gRPC app callback
95+
map<string, ListStringValue> trailers = 3;
96+
97+
// Callee's invocation response message.
98+
common.v1.InvokeResponse message = 4;
99+
}
100+
101+
// InternalInvokeRequestStream is a variant of InternalInvokeRequest used in streaming RPCs.
102+
message InternalInvokeRequestStream {
103+
// Request details.
104+
// This does not contain any data in message.data.
105+
InternalInvokeRequest request = 1;
106+
107+
// Chunk of data.
108+
common.v1.StreamPayload payload = 2;
109+
}
110+
111+
// InternalInvokeResponseStream is a variant of InternalInvokeResponse used in streaming RPCs.
112+
message InternalInvokeResponseStream {
113+
// Response details.
114+
// This does not contain any data in message.data.
115+
InternalInvokeResponse response = 1;
116+
117+
// Chunk of data.
118+
common.v1.StreamPayload payload = 2;
119+
}
120+
121+
// ListStringValue represents string value array
122+
message ListStringValue {
123+
// The array of string.
124+
repeated string values = 1;
125+
}

0 commit comments

Comments
 (0)