Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] Bump to 3.4.0-rc.1 - use dapr 1.14.0-rc.x #611

Merged
merged 5 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DeepanshuA are we sticking with 3.3.1 to go with Dapr 1.14.0, or bumping to 3.4? I see that the key bug fix you made for health probe went into 3.3.1.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

js-sdk ver 3.3.1 was released already. We would release 3.4.0 now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Once dapr 1.14 is released finally, will do so. As of now, dapr 1.14 rc versions are out, so creating js-sdk versions in sync with that.

"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

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
Loading