js-sdk icon indicating copy to clipboard operation
js-sdk copied to clipboard

Dapr SDK for Javascript

Results 154 js-sdk issues
Sort by recently updated
recently updated
newest added

Signed-off-by: Deepanshu Agarwal # Description This intends to fix n/ack of http response status correctly during subscription, as per https://docs.dapr.io/reference/api/pubsub_api/#expected-http-response ## Issue reference We strive to have all PR being...

## Describe the proposal When an app subscribes to messages/events, it needs to send back status as per https://docs.dapr.io/reference/api/pubsub_api/. Whether a message needs to be retried or dropped, should ideally...

enhancement
triaged/resolved
breaking-change

Signed-off-by: Shubham Sharma # Description Adds metadata to publish method in the client. This is implemented for both HTTP and gRPC but gRPC is currently unsupported from Dapr. See https://github.com/dapr/dapr/issues/2860...

## Describe the proposal The Dapr Runtime added support for per actor type configurations in 1.7. This support needs to be added to the SDKs. The new configuration looks like:...

enhancement
enhancement-runtime-dependency
pinned

## Expected Behavior to be able to invoke/pub with req size > 4mb fixed...for both http and grpc clients ## Actual Behavior grpc client: error "code": 8, "details": "Received message...

bug

## Describe the proposal Support DeadLetter Topic in pub/sub. Issue: https://github.com/dapr/dapr/issues/2217 The problem is how to use the attribute to express deadletter topic for V2 routing. ```json [ { "topic":"TestTEvent",...

enhancement

Today Actors are not configurable by users. We have [ActorRuntimeConfig](https://github.com/dapr/js-sdk/blob/master/src/actors/runtime/ActorRuntimeConfig.ts) which is instantiated with default values in ActorRuntime directly. https://github.com/dapr/js-sdk/blob/5780786e89dfa168a0a5cbdea84ab7edd0fc8097/src/actors/runtime/ActorRuntime.ts#L30 There should be a way for consumers to alter this...

enhancement

the ActorRuntime is calling DaprClient.create which is a static method and will return a created DaprClient object. However, when using `http` we need to re-use the connection each time rather...

bug

## Expected Behavior When I create e.g. 100.000 actors and every actor persists some state to Redis, all requests should be successful. ## Actual Behavior After persisting the state for...

bug

## Describe the proposal Change the configuration API response to handle dictionary. Main issue in dapr/dapr in pasted here. https://github.com/dapr/dapr/issues/4556

enhancement
enhancement-runtime-dependency