From d4c2be646f2edae91945a480391f3249694f6d99 Mon Sep 17 00:00:00 2001 From: Rodrigo Broggi Date: Sat, 20 Feb 2021 18:55:10 +0100 Subject: [PATCH 1/3] update the list of supported SKDs (#1244) --- daprdocs/content/en/concepts/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/concepts/overview.md b/daprdocs/content/en/concepts/overview.md index 0b43986b9..216a5661e 100644 --- a/daprdocs/content/en/concepts/overview.md +++ b/daprdocs/content/en/concepts/overview.md @@ -62,7 +62,7 @@ In container hosting environments such as Kubernetes, Dapr runs as a side-car co ## Developer language SDKs and frameworks -To make using Dapr more natural for different languages, it also includes [language specific SDKs]({{}}) for Go, Java, JavaScript, .NET, PHP and Python. These SDKs expose the functionality in the Dapr building blocks, such as saving state, publishing an event or creating an actor, through a typed, language API rather than calling the http/gRPC API. This enables you to write a combination of stateless and stateful functions and actors all in the language of their choice. And because these SDKs share the Dapr runtime, you get cross-language actor and functions support. +To make using Dapr more natural for different languages, it also includes [language specific SDKs]({{}}) for C++, Go, Java, JavaScript, Python, Rust .NET and PHP. These SDKs expose the functionality in the Dapr building blocks, such as saving state, publishing an event or creating an actor, through a typed, language API rather than calling the http/gRPC API. This enables you to write a combination of stateless and stateful functions and actors all in the language of their choice. And because these SDKs share the Dapr runtime, you get cross-language actor and functions support. ### SDKs From 0a52281be8de2cb910eeffec20fa72aa4a7b225a Mon Sep 17 00:00:00 2001 From: Yaron Schneider Date: Mon, 22 Feb 2021 13:44:59 -0800 Subject: [PATCH 2/3] fix save state example (#1250) --- .../building-blocks/state-management/howto-get-save-state.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/state-management/howto-get-save-state.md b/daprdocs/content/en/developing-applications/building-blocks/state-management/howto-get-save-state.md index fcb3bef14..65b752054 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/state-management/howto-get-save-state.md +++ b/daprdocs/content/en/developing-applications/building-blocks/state-management/howto-get-save-state.md @@ -77,7 +77,7 @@ dapr run --app-id myapp --dapr-http-port 3500 Then in a separate terminal save a key/value pair into your statestore: ```bash -curl -X POST -H "Content-Type: application/json" -d '{ "key": "key1", "value": "value1"}' http://localhost:3500/v1.0/state/statestore +curl -X POST -H "Content-Type: application/json" -d '[{ "key": "key1", "value": "value1"}]' http://localhost:3500/v1.0/state/statestore ``` Now get the state you just saved: @@ -98,7 +98,7 @@ dapr --app-id myapp --port 3500 run Then in a separate terminal save a key/value pair into your statestore: ```powershell -Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '{"key": "key1", "value": "value1"}' -Uri 'http://localhost:3500/v1.0/state/statestore' +Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '[{"key": "key1", "value": "value1"}]' -Uri 'http://localhost:3500/v1.0/state/statestore' ``` Now get the state you just saved: From e6dbfd8aeb15774e8d798cb28a0c21c06fad3a83 Mon Sep 17 00:00:00 2001 From: AbserAri <32089134+abserari@users.noreply.github.com> Date: Tue, 23 Feb 2021 06:07:37 +0800 Subject: [PATCH 3/3] typo: HMTL -> HTML (#1246) Co-authored-by: Mark Fussell --- daprdocs/content/en/contributing/contributing-docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/contributing/contributing-docs.md b/daprdocs/content/en/contributing/contributing-docs.md index 9fd6b65ac..fd671fd02 100644 --- a/daprdocs/content/en/contributing/contributing-docs.md +++ b/daprdocs/content/en/contributing/contributing-docs.md @@ -128,7 +128,7 @@ As an example, for this specific section the complete reference to the page and ``` ### Images -The markdown spec used by Docsy and Hugo does not give an option to resize images using markdown notation. Instead, raw HMTL is used. +The markdown spec used by Docsy and Hugo does not give an option to resize images using markdown notation. Instead, raw HTML is used. Begin by placing images under `/daprdocs/static/images` with the naming convention of `[page-name]-[image-name].[png|jpg|svg]`.