Skip to content

Commit

Permalink
[chore] Bump to 3.4.0-rc.1 - use dapr 1.14.0-rc.x (#611)
Browse files Browse the repository at this point in the history
* use dapr 1.14.0-rc.6

Signed-off-by: Deepanshu Agarwal <[email protected]>

* Version correction

Signed-off-by: Deepanshu Agarwal <[email protected]>

* Update .github/workflows/test-e2e.yml

Co-authored-by: Mike Nguyen <[email protected]>
Signed-off-by: Paul Yuknewicz <[email protected]>

* update

Signed-off-by: Deepanshu Agarwal <[email protected]>

* update

Signed-off-by: Deepanshu Agarwal <[email protected]>

---------

Signed-off-by: Deepanshu Agarwal <[email protected]>
Signed-off-by: Paul Yuknewicz <[email protected]>
Co-authored-by: Paul Yuknewicz <[email protected]>
Co-authored-by: Mike Nguyen <[email protected]>
  • Loading branch information
3 people authored Aug 1, 2024
1 parent 5b25666 commit d7547ce
Show file tree
Hide file tree
Showing 36 changed files with 10,167 additions and 7,607 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
test-e2e:
runs-on: ubuntu-latest
env:
GOVER: 1.21
DAPR_CLI_VER: 1.13.0
DAPR_RUNTIME_VER: 1.13.0
GOVER: 1.22
DAPR_CLI_VER: 1.14.0-rc.8
DAPR_RUNTIME_VER: 1.14.0-rc.7
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
DAPR_CLI_REF: ""
DAPR_REF: ""
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dapr/dapr",
"version": "3.3.1",
"version": "3.4.0-rc.1",
"description": "The official Dapr (https://dapr.io) SDK for Node.js",
"types": "./build/index.d.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/fetch-proto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ OS=$(echo `uname`|tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
ORG_NAME="dapr"
REPO_NAME="dapr"
BRANCH_NAME="v1.13.0"
BRANCH_NAME="v1.14.0-rc.7"

# Path to store output
PATH_ROOT=$(pwd)
Expand Down
14 changes: 11 additions & 3 deletions src/proto/dapr/proto/common/v1/common_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = (function() { return this || window || global || self || Function('return this')(); }).call(null);
var global =
(typeof globalThis !== 'undefined' && globalThis) ||
(typeof window !== 'undefined' && window) ||
(typeof global !== 'undefined' && global) ||
(typeof self !== 'undefined' && self) ||
(function () { return this; }).call(null) ||
Function('return this')();

var google_protobuf_any_pb = require('google-protobuf/google/protobuf/any_pb.js');
goog.object.extend(proto, google_protobuf_any_pb);
Expand Down Expand Up @@ -1278,7 +1284,8 @@ proto.dapr.proto.common.v1.StateItem.prototype.getMetadataMap = function(opt_noL
*/
proto.dapr.proto.common.v1.StateItem.prototype.clearMetadataMap = function() {
this.getMetadataMap().clear();
return this;};
return this;
};


/**
Expand Down Expand Up @@ -1816,7 +1823,8 @@ proto.dapr.proto.common.v1.ConfigurationItem.prototype.getMetadataMap = function
*/
proto.dapr.proto.common.v1.ConfigurationItem.prototype.clearMetadataMap = function() {
this.getMetadataMap().clear();
return this;};
return this;
};


goog.object.extend(exports, proto.dapr.proto.common.v1);
8 changes: 7 additions & 1 deletion src/proto/dapr/proto/internals/v1/apiversion_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = (function() { return this || window || global || self || Function('return this')(); }).call(null);
var global =
(typeof globalThis !== 'undefined' && globalThis) ||
(typeof window !== 'undefined' && window) ||
(typeof global !== 'undefined' && global) ||
(typeof self !== 'undefined' && self) ||
(function () { return this; }).call(null) ||
Function('return this')();

goog.exportSymbol('proto.dapr.proto.internals.v1.APIVersion', null, global);
/**
Expand Down
5 changes: 5 additions & 0 deletions src/proto/dapr/proto/internals/v1/service_invocation.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ syntax = "proto3";
package dapr.proto.internals.v1;

import "dapr/proto/common/v1/common.proto";
import "dapr/proto/internals/v1/reminders.proto";
import "dapr/proto/internals/v1/apiversion.proto";
import "dapr/proto/internals/v1/status.proto";
import "google/protobuf/empty.proto";

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

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

// Invoke a remote internal actor reminder
rpc CallActorReminder(Reminder) returns (google.protobuf.Empty) {}

// Invokes a method of the specific service using a stream of data.
// 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).
// Each message in the stream contains a `InternalInvokeRequestStream` (for caller) or `InternalInvokeResponseStream` (for callee):
Expand Down
77 changes: 0 additions & 77 deletions src/proto/dapr/proto/internals/v1/service_invocation_grpc_pb.d.ts

This file was deleted.

125 changes: 0 additions & 125 deletions src/proto/dapr/proto/internals/v1/service_invocation_grpc_pb.js

This file was deleted.

Loading

0 comments on commit d7547ce

Please sign in to comment.