Skip to content

Commit d7547ce

Browse files
DeepanshuApaulyukmikeee
authored
[chore] Bump to 3.4.0-rc.1 - use dapr 1.14.0-rc.x (#611)
* use dapr 1.14.0-rc.6 Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com> * Version correction Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com> * Update .github/workflows/test-e2e.yml Co-authored-by: Mike Nguyen <hey@mike.ee> Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> * update Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com> * update Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com> --------- Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com> Signed-off-by: Paul Yuknewicz <paulyuk@microsoft.com> Co-authored-by: Paul Yuknewicz <paulyuk@microsoft.com> Co-authored-by: Mike Nguyen <hey@mike.ee>
1 parent 5b25666 commit d7547ce

36 files changed

+10167
-7607
lines changed

.github/workflows/test-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
test-e2e:
3535
runs-on: ubuntu-latest
3636
env:
37-
GOVER: 1.21
38-
DAPR_CLI_VER: 1.13.0
39-
DAPR_RUNTIME_VER: 1.13.0
37+
GOVER: 1.22
38+
DAPR_CLI_VER: 1.14.0-rc.8
39+
DAPR_RUNTIME_VER: 1.14.0-rc.7
4040
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
4141
DAPR_CLI_REF: ""
4242
DAPR_REF: ""

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dapr/dapr",
3-
"version": "3.3.1",
3+
"version": "3.4.0-rc.1",
44
"description": "The official Dapr (https://dapr.io) SDK for Node.js",
55
"types": "./build/index.d.ts",
66
"scripts": {

scripts/fetch-proto.sh

Lines changed: 1 addition & 1 deletion
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.13.0"
6+
BRANCH_NAME="v1.14.0-rc.7"
77

88
# Path to store output
99
PATH_ROOT=$(pwd)

src/proto/dapr/proto/common/v1/common_pb.js

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@
1313

1414
var jspb = require('google-protobuf');
1515
var goog = jspb;
16-
var global = (function() { return this || window || global || self || Function('return this')(); }).call(null);
16+
var global =
17+
(typeof globalThis !== 'undefined' && globalThis) ||
18+
(typeof window !== 'undefined' && window) ||
19+
(typeof global !== 'undefined' && global) ||
20+
(typeof self !== 'undefined' && self) ||
21+
(function () { return this; }).call(null) ||
22+
Function('return this')();
1723

1824
var google_protobuf_any_pb = require('google-protobuf/google/protobuf/any_pb.js');
1925
goog.object.extend(proto, google_protobuf_any_pb);
@@ -1278,7 +1284,8 @@ proto.dapr.proto.common.v1.StateItem.prototype.getMetadataMap = function(opt_noL
12781284
*/
12791285
proto.dapr.proto.common.v1.StateItem.prototype.clearMetadataMap = function() {
12801286
this.getMetadataMap().clear();
1281-
return this;};
1287+
return this;
1288+
};
12821289

12831290

12841291
/**
@@ -1816,7 +1823,8 @@ proto.dapr.proto.common.v1.ConfigurationItem.prototype.getMetadataMap = function
18161823
*/
18171824
proto.dapr.proto.common.v1.ConfigurationItem.prototype.clearMetadataMap = function() {
18181825
this.getMetadataMap().clear();
1819-
return this;};
1826+
return this;
1827+
};
18201828

18211829

18221830
goog.object.extend(exports, proto.dapr.proto.common.v1);

src/proto/dapr/proto/internals/v1/apiversion_pb.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@
1313

1414
var jspb = require('google-protobuf');
1515
var goog = jspb;
16-
var global = (function() { return this || window || global || self || Function('return this')(); }).call(null);
16+
var global =
17+
(typeof globalThis !== 'undefined' && globalThis) ||
18+
(typeof window !== 'undefined' && window) ||
19+
(typeof global !== 'undefined' && global) ||
20+
(typeof self !== 'undefined' && self) ||
21+
(function () { return this; }).call(null) ||
22+
Function('return this')();
1723

1824
goog.exportSymbol('proto.dapr.proto.internals.v1.APIVersion', null, global);
1925
/**

src/proto/dapr/proto/internals/v1/service_invocation.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ syntax = "proto3";
1616
package dapr.proto.internals.v1;
1717

1818
import "dapr/proto/common/v1/common.proto";
19+
import "dapr/proto/internals/v1/reminders.proto";
1920
import "dapr/proto/internals/v1/apiversion.proto";
2021
import "dapr/proto/internals/v1/status.proto";
22+
import "google/protobuf/empty.proto";
2123

2224
option go_package = "github.com/dapr/dapr/pkg/proto/internals/v1;internals";
2325

@@ -38,6 +40,9 @@ service ServiceInvocation {
3840
// Invokes a method of the specific service.
3941
rpc CallLocal (InternalInvokeRequest) returns (InternalInvokeResponse) {}
4042

43+
// Invoke a remote internal actor reminder
44+
rpc CallActorReminder(Reminder) returns (google.protobuf.Empty) {}
45+
4146
// Invokes a method of the specific service using a stream of data.
4247
// 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).
4348
// Each message in the stream contains a `InternalInvokeRequestStream` (for caller) or `InternalInvokeResponseStream` (for callee):

src/proto/dapr/proto/internals/v1/service_invocation_grpc_pb.d.ts

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

src/proto/dapr/proto/internals/v1/service_invocation_grpc_pb.js

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

0 commit comments

Comments
 (0)