docs
docs copied to clipboard
Need to update Quickstarts to match 1.8 SDKs
Describe the issue The quickstarts have fallen behind several versions in SDKs. This is being fixed in the following PR: https://github.com/dapr/quickstarts/pull/705
This issue tracks the corresponding doc updates for quickstarts.
The most important changes for docs are:
- respond to the breaking changes in Go SDK, by passing in one more
nil
parameter in State Management quickstarts (x 3 spots it occurs): https://github.com/dapr/docs/blob/v1.8/daprdocs/content/en/getting-started/quickstarts/statemanagement-quickstart.md?plain=1#L550 https://github.com/dapr/docs/blob/v1.8/daprdocs/content/en/getting-started/quickstarts/statemanagement-quickstart.md?plain=1#L554 https://github.com/dapr/docs/blob/v1.8/daprdocs/content/en/getting-started/quickstarts/statemanagement-quickstart.md?plain=1#L558 - for Golang hygiene, change all instances of
go build app.go
togo build
, and also fromdapr run .. go run app.go
todapr run .. go run
. Here is one example, but there are many: https://github.com/dapr/docs/blob/v1.8/daprdocs/content/en/getting-started/quickstarts/bindings-quickstart.md?plain=1#L902
I believe the rest of the updates just happen in package code files like .csproj, pom.xml, package.json, and go.mod, but please double check PR.