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

middleware: changes wasm basic to use waPC #1833

Merged
merged 8 commits into from
Sep 14, 2022

Conversation

codefromthecrypt
Copy link
Contributor

@codefromthecrypt codefromthecrypt commented Jun 30, 2022

Description

Updates wasm basic middleware and simplifies some code inside of it,
notably by using waPC.

This changes the entrypoint function to be named "rewrite" and
uses a pool because known memory allocators are not goroutine
safe.

FYI wazero's first beta tag will be in two weeks
tetratelabs/wazero#506 (comment)

Issue reference

N/A

Checklist

Please make sure you've completed the relevant tasks for this PR, out of the following list:

  • Code compiles correctly
  • Created/updated tests
  • [n/a] Extended the documentation / Created issue in the https://github.com/dapr/docs/ repo: dapr/docs#[issue number]

@berndverst
Copy link
Member

@daixiang0 can you review this since you know more about WASM and the Wazero library?

Also we want more information on the structure of the WASM that can be loaded. A compiled WASM sample is obviously not good enough :)

@daixiang0
Copy link
Member

@codefromthecrypt thanks for your contribution! Since wazero is not stable now, it will continue to iterate.

Maybe we can get UUID from context. For the logging, I would like to make it detailed to help debug.

Adding more support is my plan, such as support handling HEADER/response changes, while not having much time to do it now.

@codefromthecrypt
Copy link
Contributor Author

@daixiang0 cool I can do a UUID like https://github.com/wapc/wapc-go/blob/master/engines/wazero/wazero.go#L303

Should we start by assuming the wasm binary changes per request? or should we assume it doesn't?

@daixiang0
Copy link
Member

That is an interesting question, load once would get better performance. If wazero supports it, we can use it, and compare SHA256 of the wasm binary, if changes, we reload it.

@codefromthecrypt
Copy link
Contributor Author

OK I've refactored now, though feels there are some API glitches. Have a look at the impl and if there's any more stuff here I can do that before backfilling tests.

  • GetHandler isn't context aware, which can make things like tracing or profiling difficult (initialization logic)
  • GetHandler is a func, not an interface, which means what's returned can't be closed. This means some leaks
    • One way is to make Middleware closeable and then move the runtime to a field in that.

@codefromthecrypt
Copy link
Contributor Author

codefromthecrypt commented Jul 2, 2022

At least a README should be made in how to generate the wasm

one other thing I think would be helpful is that the "run" function isn't documented or linked in a README or something (at least not that I can find). I think the source that "hello.wasm" was compiled from should be checked in, with instructions on how it was compiled. (ex. tinygo build -o hello.wasm -scheduler=none --no-debug -target=wasi hello.go.

Alternative ABI

Right now, "run" is allocating memory for the URI using tinygo specific allocation. So, ex this won't work with other language compilers. Another way is to not do allocation externally.

WASI-only

Instead of passing memory in and out, you might consider using WASI instead. Doing so would be more portable as you can use other languages.

For example, you can set moduleConfig.args = "rewrite_request_uri", uri and moduleConfig.stdout = buf

then just instantiate the module and see if the stdout is empty or not, and if not assign it to SetRequestURIBytes

WASI+callback

reading stdout is easy, but could result in larger code depending on how people write to it. Another way is to have them call a custom host function if they need to change the URI. So, in this case a host module is instantiated per request which dispatches "set_request_uri(offset, len)" to req.SetRequestURIBytes. The wasm people generate import this function and use that instead of stdout.

Callback only

instead of having the wasm parse os.Args (ex that "rewrite_request_uri" == arg0), the entrypoint function could be like you have now.. "run" aka "rewrite_request_uri". It wouldn't accept any args, as it is hard to know which memory offsets are unused by the compiler. Instead, there's a host function to get the current uri (ex "get_request_uri"). So on each request "rewrite_request_uri" is invoked which might call "get_request_uri" if it was enabled, and then might call "set_request_uri" if it decided to rewrite it.

Your choice here

There's no perfect way, and also there are other tools that have callback flows like wapc. This is mainly to get the thinking down. Even the current approach is fine, if documented. Just it needs tinygo only for wasm generation. That may be fine!

@daixiang0
Copy link
Member

Very cool! The basic WASM support is the first step, actually, I am thinking about Envoy WASM ABI implementation, that will create a bridge between service mesh and application runtime. For basic design, I think it is simple enough to start with.

Could you add an example in dapr/examples for this and update related documents?

@codefromthecrypt
Copy link
Contributor Author

cool. I'll polish this up where basic means URI rewrite. I'll go ahead and update the exported function name to "rewrite_request_uri", also, unless you've strong feelings towards "run"

@daixiang0
Copy link
Member

daixiang0 commented Jul 5, 2022

That is good, go ahead!

@codefromthecrypt
Copy link
Contributor Author

note I hit an unrelated code land mine but back together and will pick this up tomorrow.

@codefromthecrypt
Copy link
Contributor Author

@daixiang0 I've updated the code here.

Could you add an example in dapr/examples for this and update related documents?

sorry if I'm a bit daft, but can you be precise where you want to update including both the repo and the directory names?

return nil
}

func (rh *wazeroRequestHandler) requestHandler(h fasthttp.RequestHandler) fasthttp.RequestHandler {
Copy link
Contributor Author

@codefromthecrypt codefromthecrypt Jul 7, 2022

Choose a reason for hiding this comment

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

trivia

one thing interesting for future work is basically I know of no allocator in wasm that's thread/goroutine safe as they don't use atomics to update the heap. This means that serious performance would rely on a ready pool who have to do one request and either reset or be thrown away. instantiation cost as it is now is ok as the wasm is simple, but even then you should be careful about the memory settings as certain toolchains/compilers reserve a lot of memory by default.

return nil, errors.Wrapf(err, "error compiling wasm at %s", path)
}

// Create a new namespace which isolates WASI and module instantiation.
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@Taction so this is how I am deferring wasi to middleware instantiation, but still keeping a central runtime. wazero has a "namespace" concept which can allow you to re-instantiate the same module multiple times with the same name (as is the case when we move WASI later in the lifecycle).

@daixiang0
Copy link
Member

sorry if I'm a bit daft, but can you be precise where you want to update including both the repo and the directory names?

I mean https://github.com/dapr/samples, you can add a WASM sample.

@codefromthecrypt
Copy link
Contributor Author

@daixiang0 cool for the sample. is there any thing else to do in this repo? I would like to have this land before updating https://github.com/dapr/samples so that the instructions can say the right function name.

@codefromthecrypt
Copy link
Contributor Author

ok ready on my side, when this is merged I'll follow up on the sample no prob!

Copy link
Member

@daixiang0 daixiang0 left a comment

Choose a reason for hiding this comment

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

@codefromthecrypt codes look good overall, just some nits then we can make it land.

@codefromthecrypt
Copy link
Contributor Author

@daixiang0 feedback sounds good. I generally make a sub-module readme instead of making a large one for the whole directory. I'll give it a go and if we need another revision no problem.

@daixiang0
Copy link
Member

Also please fix CI.

@codefromthecrypt
Copy link
Contributor Author

I'm unsubscribing as it is just merge bot stuff and fuzz from other broke things. If someone needs my help, please mention me!

@berndverst
Copy link
Member

@codefromthecrypt I will merge this now. Can you please make any documentation updates and create the sample you were discussing previously in this issue.

@berndverst berndverst added automerge and removed autoupdate automatically keeps PR up to date against master labels Sep 13, 2022
@berndverst berndverst added this to the v1.9 milestone Sep 13, 2022
@berndverst berndverst added the documentation required This issue needs documentation label Sep 13, 2022
@codefromthecrypt
Copy link
Contributor Author

@berndverst thanks for owning getting this in, and of course thanks to @daixiang0 @Taction @ItalyPaleAle for review help also.

Good news is we already completed the docs based on this PR before and nothing drifted since then. https://docs.dapr.io/reference/components-reference/supported-middleware/middleware-wasm/

I'll follow-up with the sample once things merge, no prob!

@berndverst berndverst marked this pull request as draft September 13, 2022 23:35
@berndverst berndverst marked this pull request as ready for review September 13, 2022 23:35
@artursouza artursouza merged commit b379f80 into dapr:master Sep 14, 2022
@codefromthecrypt codefromthecrypt deleted the wazero-update branch September 14, 2022 00:49
codefromthecrypt pushed a commit to codefromthecrypt/dapr that referenced this pull request Sep 14, 2022
This supports the renovated wasm middleware, making it easier to build a
sample for it.

See dapr/components-contrib#1833

Signed-off-by: Adrian Cole <adrian@tetrate.io>
@codefromthecrypt
Copy link
Contributor Author

thanks for merging @artursouza! I opened this to bump deps and once in I'll do the sample mentioned in the desc dapr/dapr#5169

msfussell added a commit to dapr/docs that referenced this pull request Sep 15, 2022
* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Updates wasm middleware documentation with compilation instructions

These changes are coupled with dapr/components-contrib#1833

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* Update daprdocs/content/en/reference/components-reference/supported-middleware/middleware-wasm.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>

* feedback

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* permute

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* add note to aws sns/sqs component doc; quick edit

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* change data to value

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Patch 3 (#2691)

* Update release version from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update shortcode from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* fix: typo

Signed-off-by: 1046102779 <seachen@tencent.com>

* feature: add a private helm repo for dapr

Signed-off-by: 1046102779 <seachen@tencent.com>

* Update install-dapr-cli.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Update daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md

Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>

* Fix pubsub quickstart component name to match QS source code

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* add output of success

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove word

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add sentence

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* redis 6 update (#2718)

Signed-off-by: yaron2 <schneider.yaron@live.com>

Signed-off-by: yaron2 <schneider.yaron@live.com>

* Update Dapr version to 1.8.4 (#2714)

* Update Dapr version to 1.8.4

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Update CLI version to 1.8.1

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>

* Fixed an issue with code highlighting

Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>

* Fix links to broken middleware components

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* RethinkDB has no transactions, etags

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* fix a typo (#2748)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix typo (#2751)

Signed-off-by: RcXu <honeyxhl@163.com>

Signed-off-by: RcXu <honeyxhl@163.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Update component status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Mark components as stable in v1.8

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Correct state azure stablestorage status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Update setup-sqlserver.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* fix some typos (#2765)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* Typo fix installtion > installation (#2726)

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Add a new version of the Dapr Diagrams deck (#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Fix typos in MongoDB state configuration file example (#2775)

Closes #2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: 1046102779 <seachen@tencent.com>
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: yaron2 <schneider.yaron@live.com>
Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Signed-off-by: Loong <loong.dai@intel.com>
Signed-off-by: RcXu <honeyxhl@163.com>
Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: 1046102779 <seachen@tencent.com>
Co-authored-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
Co-authored-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Loong Dai <loong.dai@intel.com>
Co-authored-by: Mr.Black <honeyxhl@163.com>
Co-authored-by: Greg. A <gautric@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
shubham1172 pushed a commit to shubham1172/components-contrib that referenced this pull request Sep 20, 2022
Updates wasm basic middleware and simplifies some code inside of it,
notably by using [waPC](https://github.com/wapc/wapc-go).

This changes the entrypoint function to be named "rewrite" and
uses a pool because known memory allocators are not goroutine
safe.

Signed-off-by: Adrian Cole <adrian@tetrate.io>

Signed-off-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>
Co-authored-by: Artur Souza <artursouza.ms@outlook.com>
msfussell added a commit to dapr/docs that referenced this pull request Sep 23, 2022
* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Updates wasm middleware documentation with compilation instructions

These changes are coupled with dapr/components-contrib#1833

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* Update daprdocs/content/en/reference/components-reference/supported-middleware/middleware-wasm.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>

* feedback

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* permute

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* add note to aws sns/sqs component doc; quick edit

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* change data to value

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Patch 3 (#2691)

* Update release version from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update shortcode from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* fix: typo

Signed-off-by: 1046102779 <seachen@tencent.com>

* feature: add a private helm repo for dapr

Signed-off-by: 1046102779 <seachen@tencent.com>

* Update install-dapr-cli.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Update daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md

Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>

* Fix pubsub quickstart component name to match QS source code

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* add output of success

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove word

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add sentence

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* redis 6 update (#2718)

Signed-off-by: yaron2 <schneider.yaron@live.com>

Signed-off-by: yaron2 <schneider.yaron@live.com>

* Update Dapr version to 1.8.4 (#2714)

* Update Dapr version to 1.8.4

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Update CLI version to 1.8.1

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>

* Fixed an issue with code highlighting

Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>

* Fix links to broken middleware components

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* RethinkDB has no transactions, etags

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* fix a typo (#2748)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix typo (#2751)

Signed-off-by: RcXu <honeyxhl@163.com>

Signed-off-by: RcXu <honeyxhl@163.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Update component status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Mark components as stable in v1.8

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Correct state azure stablestorage status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Update setup-sqlserver.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* fix some typos (#2765)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* Typo fix installtion > installation (#2726)

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Add a new version of the Dapr Diagrams deck (#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Fix typos in MongoDB state configuration file example (#2775)

Closes #2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* java submodule

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix two typo's (#2812)

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

Signed-off-by: 1046102779 <seachen@tencent.com>
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: yaron2 <schneider.yaron@live.com>
Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Signed-off-by: Loong <loong.dai@intel.com>
Signed-off-by: RcXu <honeyxhl@163.com>
Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Co-authored-by: 1046102779 <seachen@tencent.com>
Co-authored-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
Co-authored-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Loong Dai <loong.dai@intel.com>
Co-authored-by: Mr.Black <honeyxhl@163.com>
Co-authored-by: Greg. A <gautric@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Maarten Mulders <mthmulders@users.noreply.github.com>
msfussell added a commit to dapr/docs that referenced this pull request Sep 28, 2022
* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Updates wasm middleware documentation with compilation instructions

These changes are coupled with dapr/components-contrib#1833

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* Update daprdocs/content/en/reference/components-reference/supported-middleware/middleware-wasm.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>

* feedback

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* permute

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* add note to aws sns/sqs component doc; quick edit

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* change data to value

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Patch 3 (#2691)

* Update release version from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update shortcode from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* fix: typo

Signed-off-by: 1046102779 <seachen@tencent.com>

* feature: add a private helm repo for dapr

Signed-off-by: 1046102779 <seachen@tencent.com>

* Update install-dapr-cli.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Update daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md

Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>

* Fix pubsub quickstart component name to match QS source code

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* add output of success

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove word

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add sentence

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* redis 6 update (#2718)

Signed-off-by: yaron2 <schneider.yaron@live.com>

Signed-off-by: yaron2 <schneider.yaron@live.com>

* Update Dapr version to 1.8.4 (#2714)

* Update Dapr version to 1.8.4

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Update CLI version to 1.8.1

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>

* Fixed an issue with code highlighting

Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>

* Fix links to broken middleware components

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* RethinkDB has no transactions, etags

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* fix a typo (#2748)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix typo (#2751)

Signed-off-by: RcXu <honeyxhl@163.com>

Signed-off-by: RcXu <honeyxhl@163.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Update component status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Mark components as stable in v1.8

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Correct state azure stablestorage status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Update setup-sqlserver.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* fix some typos (#2765)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* Typo fix installtion > installation (#2726)

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Add a new version of the Dapr Diagrams deck (#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Fix typos in MongoDB state configuration file example (#2775)

Closes #2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* java submodule

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix two typo's (#2812)

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

* Updates/fixes to mySQL binding doc (#2819)

* update link (#2823)

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix the example code (#2811)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix incorrect reference (#2802)

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Fix Configuration API unsubscribe endpoint  (#2797)

* fix unsubscribe path

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* maintain punctuation uniformity

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* maintain punctuation uniformity

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* Update configuration_api.md

Making examples consistent

Signed-off-by: Mark Fussell <markfussell@gmail.com>

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Signed-off-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* fix link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Update go commands to match quickstarts (#2725)

* update go commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Add note for sidecar readiness (#2817)

* Revert "java submodule"

This reverts commit b438550.

* revert submodule changes

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove note

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Docs contributing guide updates (#2768)

* initial edits

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add templates

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove path

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add docs

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove from .github doc

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix validate links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates per mark

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add submodule section

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove link and reword

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix link?

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* apparently case matters for links now

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update per mark review

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Changed the broken middleware links. (#2781)

* Add a new version of the Dapr Diagrams deck (#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix typos in MongoDB state configuration file example (#2775)

Closes #2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Changed the broken middleware links.

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Made the required changes for Rego/OPA

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fixed Rego/OPA broken link

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* fix links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: 1046102779 <seachen@tencent.com>
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: yaron2 <schneider.yaron@live.com>
Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Signed-off-by: Loong <loong.dai@intel.com>
Signed-off-by: RcXu <honeyxhl@163.com>
Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Signed-off-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>
Co-authored-by: 1046102779 <seachen@tencent.com>
Co-authored-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
Co-authored-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Loong Dai <loong.dai@intel.com>
Co-authored-by: Mr.Black <honeyxhl@163.com>
Co-authored-by: Greg. A <gautric@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Co-authored-by: Boris Lublinsky <blublinsky@hotmail.com>
Co-authored-by: Sarthak Sharma <sartsharma@microsoft.com>
Co-authored-by: shivanisinghnitp <58537821+shivanisinghnitp@users.noreply.github.com>
msfussell added a commit to dapr/docs that referenced this pull request Oct 7, 2022
* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Updates wasm middleware documentation with compilation instructions

These changes are coupled with dapr/components-contrib#1833

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* Update daprdocs/content/en/reference/components-reference/supported-middleware/middleware-wasm.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>

* feedback

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* permute

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* add note to aws sns/sqs component doc; quick edit

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* change data to value

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Patch 3 (#2691)

* Update release version from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update shortcode from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* fix: typo

Signed-off-by: 1046102779 <seachen@tencent.com>

* feature: add a private helm repo for dapr

Signed-off-by: 1046102779 <seachen@tencent.com>

* Update install-dapr-cli.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Update daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md

Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>

* Fix pubsub quickstart component name to match QS source code

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* add output of success

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove word

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add sentence

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* redis 6 update (#2718)

Signed-off-by: yaron2 <schneider.yaron@live.com>

Signed-off-by: yaron2 <schneider.yaron@live.com>

* Update Dapr version to 1.8.4 (#2714)

* Update Dapr version to 1.8.4

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Update CLI version to 1.8.1

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>

* Fixed an issue with code highlighting

Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>

* Fix links to broken middleware components

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* RethinkDB has no transactions, etags

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* fix a typo (#2748)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix typo (#2751)

Signed-off-by: RcXu <honeyxhl@163.com>

Signed-off-by: RcXu <honeyxhl@163.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Update component status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Mark components as stable in v1.8

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Correct state azure stablestorage status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Update setup-sqlserver.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* fix some typos (#2765)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* Typo fix installtion > installation (#2726)

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Add a new version of the Dapr Diagrams deck (#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Fix typos in MongoDB state configuration file example (#2775)

Closes #2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* java submodule

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix two typo's (#2812)

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

* Updates/fixes to mySQL binding doc (#2819)

* update link (#2823)

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix the example code (#2811)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix incorrect reference (#2802)

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Fix Configuration API unsubscribe endpoint  (#2797)

* fix unsubscribe path

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* maintain punctuation uniformity

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* maintain punctuation uniformity

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* Update configuration_api.md

Making examples consistent

Signed-off-by: Mark Fussell <markfussell@gmail.com>

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Signed-off-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* fix link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Update go commands to match quickstarts (#2725)

* update go commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Add note for sidecar readiness (#2817)

* Revert "java submodule"

This reverts commit b438550.

* revert submodule changes

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove note

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Docs contributing guide updates (#2768)

* initial edits

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add templates

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove path

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add docs

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove from .github doc

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix validate links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates per mark

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add submodule section

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove link and reword

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix link?

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* apparently case matters for links now

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update per mark review

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Changed the broken middleware links. (#2781)

* Add a new version of the Dapr Diagrams deck (#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix typos in MongoDB state configuration file example (#2775)

Closes #2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Changed the broken middleware links.

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Made the required changes for Rego/OPA

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fixed Rego/OPA broken link

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* readme and pull request template linkes (#2841)

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* [Secrets Mgmt] overview & how-to refresh (#2678)

* secrets refresh, initial

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates per Mark

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* edits from mark and diagrams

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* diagrams

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* align yaml w quickstart

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* update port number for dotnet (#2843)

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* indentation fix (#2844)

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* docs: fix branch version error (#2849)

Signed-off-by: rogerogers <rogers@rogerogers.com>

Signed-off-by: rogerogers <rogers@rogerogers.com>

Signed-off-by: 1046102779 <seachen@tencent.com>
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: yaron2 <schneider.yaron@live.com>
Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Signed-off-by: Loong <loong.dai@intel.com>
Signed-off-by: RcXu <honeyxhl@163.com>
Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Signed-off-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>
Signed-off-by: rogerogers <rogers@rogerogers.com>
Co-authored-by: 1046102779 <seachen@tencent.com>
Co-authored-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
Co-authored-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Loong Dai <loong.dai@intel.com>
Co-authored-by: Mr.Black <honeyxhl@163.com>
Co-authored-by: Greg. A <gautric@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Co-authored-by: Boris Lublinsky <blublinsky@hotmail.com>
Co-authored-by: Sarthak Sharma <sartsharma@microsoft.com>
Co-authored-by: shivanisinghnitp <58537821+shivanisinghnitp@users.noreply.github.com>
Co-authored-by: copy rogers <40619032+rogerogers@users.noreply.github.com>
mcandeia pushed a commit to mcandeia/dapr-docs that referenced this pull request Oct 7, 2022
* Upmerge - 9/21 (dapr#2818)

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Updates wasm middleware documentation with compilation instructions

These changes are coupled with dapr/components-contrib#1833

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* Update daprdocs/content/en/reference/components-reference/supported-middleware/middleware-wasm.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>

* feedback

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* permute

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* add note to aws sns/sqs component doc; quick edit

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* change data to value

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Patch 3 (dapr#2691)

* Update release version from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update shortcode from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* fix: typo

Signed-off-by: 1046102779 <seachen@tencent.com>

* feature: add a private helm repo for dapr

Signed-off-by: 1046102779 <seachen@tencent.com>

* Update install-dapr-cli.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Update daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md

Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>

* Fix pubsub quickstart component name to match QS source code

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* add output of success

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove word

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add sentence

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* redis 6 update (dapr#2718)

Signed-off-by: yaron2 <schneider.yaron@live.com>

Signed-off-by: yaron2 <schneider.yaron@live.com>

* Update Dapr version to 1.8.4 (dapr#2714)

* Update Dapr version to 1.8.4

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Update CLI version to 1.8.1

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>

* Fixed an issue with code highlighting

Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>

* Fix links to broken middleware components

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* RethinkDB has no transactions, etags

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* fix a typo (dapr#2748)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix typo (dapr#2751)

Signed-off-by: RcXu <honeyxhl@163.com>

Signed-off-by: RcXu <honeyxhl@163.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Update component status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Mark components as stable in v1.8

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Correct state azure stablestorage status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Update setup-sqlserver.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* fix some typos (dapr#2765)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* Typo fix installtion > installation (dapr#2726)

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Add a new version of the Dapr Diagrams deck (dapr#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Fix typos in MongoDB state configuration file example (dapr#2775)

Closes dapr#2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* java submodule

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix two typo's (dapr#2812)

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

Signed-off-by: 1046102779 <seachen@tencent.com>
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: yaron2 <schneider.yaron@live.com>
Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Signed-off-by: Loong <loong.dai@intel.com>
Signed-off-by: RcXu <honeyxhl@163.com>
Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Co-authored-by: 1046102779 <seachen@tencent.com>
Co-authored-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
Co-authored-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Loong Dai <loong.dai@intel.com>
Co-authored-by: Mr.Black <honeyxhl@163.com>
Co-authored-by: Greg. A <gautric@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Maarten Mulders <mthmulders@users.noreply.github.com>

* cassanda state store cert (dapr#2801)

Signed-off-by: Addison Juarez <adjuarez@microsoft.com>

Signed-off-by: Addison Juarez <adjuarez@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Add pluggable components to the concepts

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update concepts page

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* create extending dapr directory

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Delete daprdocs/content/en/operations/Extending Dapr directory

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* create extending dapr directory

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* add pluggable component diagram

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Delete daprdocs/content/en/operations/extending dapr directory

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Create blank

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Create _index.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Delete blank

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Delete pluggable component process.png

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Add files via upload

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Create overview.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Create developing-pluggable-components.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update developing-pluggable-components.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update developing-pluggable-components.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Delete _index.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Create _index.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Delete developing-pluggable-components.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Create developing-pluggable-components.md

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Edited for grammar

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* updated pluggable components section title

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Adding a programming language agnostic file about writting pluggable components

Signed-off-by: Tiago Alves Macambira <tmacam@burocrata.org>

* last changed at Oct 7, 2022 8:38 AM, pushed by Tiago Alves Macambira

Push to GH

* last changed at Oct 6, 2022 1:18 PM, pushed by Tiago Alves Macambira

Push to GH

* last changed at Oct 7, 2022 12:21 PM, pushed by Tiago Alves Macambira

Push to GH

* last changed at Oct 7, 2022 9:14 AM, pushed by Tiago Alves Macambira

Push gp GH

Signed-off-by: 1046102779 <seachen@tencent.com>
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: yaron2 <schneider.yaron@live.com>
Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Signed-off-by: Loong <loong.dai@intel.com>
Signed-off-by: RcXu <honeyxhl@163.com>
Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Signed-off-by: Addison Juarez <adjuarez@microsoft.com>
Signed-off-by: Tiago Alves Macambira <tmacam@burocrata.org>
Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com>
Co-authored-by: 1046102779 <seachen@tencent.com>
Co-authored-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
Co-authored-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Loong Dai <loong.dai@intel.com>
Co-authored-by: Mr.Black <honeyxhl@163.com>
Co-authored-by: Greg. A <gautric@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Co-authored-by: addjuarez <addiajuarez@gmail.com>
Co-authored-by: HackMD <37423+hackmd-hub[bot]@users.noreply.github.com>
mcandeia pushed a commit to mcandeia/dapr-docs that referenced this pull request Oct 7, 2022
* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Updates wasm middleware documentation with compilation instructions

These changes are coupled with dapr/components-contrib#1833

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* Update daprdocs/content/en/reference/components-reference/supported-middleware/middleware-wasm.md

Co-authored-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>

* feedback

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* permute

Signed-off-by: Adrian Cole <adrian@tetrate.io>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* add note to aws sns/sqs component doc; quick edit

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* change data to value

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* feature/helmchart: supported private helm chart repo to install dapr cluster

Signed-off-by: 1046102779 <seachen@tencent.com>

* Patch 3 (dapr#2691)

* Update release version from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* Update shortcode from 1.8.2 to 1.8.3

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>

* fix: typo

Signed-off-by: 1046102779 <seachen@tencent.com>

* feature: add a private helm repo for dapr

Signed-off-by: 1046102779 <seachen@tencent.com>

* Update install-dapr-cli.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Update daprdocs/content/en/operations/hosting/kubernetes/kubernetes-deploy.md

Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>

* Fix pubsub quickstart component name to match QS source code

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* add output of success

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove word

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add sentence

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* redis 6 update (dapr#2718)

Signed-off-by: yaron2 <schneider.yaron@live.com>

Signed-off-by: yaron2 <schneider.yaron@live.com>

* Update Dapr version to 1.8.4 (dapr#2714)

* Update Dapr version to 1.8.4

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Update CLI version to 1.8.1

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>

* Fixed an issue with code highlighting

Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>

* Fix links to broken middleware components

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* RethinkDB has no transactions, etags

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* fix a typo (dapr#2748)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix typo (dapr#2751)

Signed-off-by: RcXu <honeyxhl@163.com>

Signed-off-by: RcXu <honeyxhl@163.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Update component status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Mark components as stable in v1.8

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Correct state azure stablestorage status in v1.7

Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>

* Update setup-sqlserver.md

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* fix some typos (dapr#2765)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* Typo fix installtion > installation (dapr#2726)

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>

Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Add a new version of the Dapr Diagrams deck (dapr#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

* Fix typos in MongoDB state configuration file example (dapr#2775)

Closes dapr#2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* java submodule

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Fix two typo's (dapr#2812)

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>

* Updates/fixes to mySQL binding doc (dapr#2819)

* update link (dapr#2823)

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix the example code (dapr#2811)

Signed-off-by: Loong <loong.dai@intel.com>

Signed-off-by: Loong <loong.dai@intel.com>

* fix incorrect reference (dapr#2802)

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Fix Configuration API unsubscribe endpoint  (dapr#2797)

* fix unsubscribe path

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* maintain punctuation uniformity

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* maintain punctuation uniformity

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>

* Update configuration_api.md

Making examples consistent

Signed-off-by: Mark Fussell <markfussell@gmail.com>

Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Signed-off-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* fix link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* Update go commands to match quickstarts (dapr#2725)

* update go commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>

* Add note for sidecar readiness (dapr#2817)

* Revert "java submodule"

This reverts commit b438550.

* revert submodule changes

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove note

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Docs contributing guide updates (dapr#2768)

* initial edits

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add templates

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove path

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add docs

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove from .github doc

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix validate links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates per mark

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* add submodule section

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* remove link and reword

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* fix link?

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* apparently case matters for links now

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update per mark review

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* update link

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* Changed the broken middleware links. (dapr#2781)

* Add a new version of the Dapr Diagrams deck (dapr#2773)

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix typos in MongoDB state configuration file example (dapr#2775)

Closes dapr#2774

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>

Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Changed the broken middleware links.

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Made the required changes for Rego/OPA

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* update az cli commands

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* remove unnecessary flags

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* remove ignore links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fix broken link

Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* update service invo row item

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

* Fixed Rego/OPA broken link

Signed-off-by: Shivani Singh <shivasingh@microsoft.com>

Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Hannah Hunter <hannahhunter@microsoft.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>

* fix links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Signed-off-by: 1046102779 <seachen@tencent.com>
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Signed-off-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Signed-off-by: yellow chicks <seachen@tencent.com>
Signed-off-by: Nick Greenfield <nigreenf@microsoft.com>
Signed-off-by: yaron2 <schneider.yaron@live.com>
Signed-off-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Signed-off-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Signed-off-by: Loong <loong.dai@intel.com>
Signed-off-by: RcXu <honeyxhl@163.com>
Signed-off-by: Greg. A. <gautric@users.noreply.github.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Signed-off-by: Sarthak Sharma <sartsharma@microsoft.com>
Signed-off-by: Mark Fussell <markfussell@gmail.com>
Signed-off-by: Shivani Singh <shivasingh@microsoft.com>
Co-authored-by: 1046102779 <seachen@tencent.com>
Co-authored-by: Adrian Cole <adrian@tetrate.io>
Co-authored-by: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com>
Co-authored-by: Mark Fussell <markfussell@gmail.com>
Co-authored-by: greenie-msft <56556602+greenie-msft@users.noreply.github.com>
Co-authored-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
Co-authored-by: Nick Greenfield <nigreenf@microsoft.com>
Co-authored-by: Lorenzo Montanari <l0ll098@users.noreply.github.com>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Loong Dai <loong.dai@intel.com>
Co-authored-by: Mr.Black <honeyxhl@163.com>
Co-authored-by: Greg. A <gautric@users.noreply.github.com>
Co-authored-by: Yash Nisar <yashnisar@microsoft.com>
Co-authored-by: Maarten Mulders <mthmulders@users.noreply.github.com>
Co-authored-by: Boris Lublinsky <blublinsky@hotmail.com>
Co-authored-by: Sarthak Sharma <sartsharma@microsoft.com>
Co-authored-by: shivanisinghnitp <58537821+shivanisinghnitp@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge documentation required This issue needs documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants