-
Notifications
You must be signed in to change notification settings - Fork 494
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
Conversation
@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 :) |
@codefromthecrypt thanks for your contribution! Since 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. |
@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? |
That is an interesting question, load once would get better performance. If |
78548fe
to
a3acc82
Compare
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.
|
At least a README should be made in how to generate the wasmone 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. Alternative ABIRight 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-onlyInstead 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+callbackreading 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 onlyinstead 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 hereThere'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! |
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 Could you add an example in dapr/examples for this and update related documents? |
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" |
That is good, go ahead! |
note I hit an unrelated code land mine but back together and will pick this up tomorrow. |
bec239b
to
709a008
Compare
@daixiang0 I've updated the code here.
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? |
middleware/http/wasm/basic/basic.go
Outdated
return nil | ||
} | ||
|
||
func (rh *wazeroRequestHandler) requestHandler(h fasthttp.RequestHandler) fasthttp.RequestHandler { |
There was a problem hiding this comment.
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.
middleware/http/wasm/basic/basic.go
Outdated
return nil, errors.Wrapf(err, "error compiling wasm at %s", path) | ||
} | ||
|
||
// Create a new namespace which isolates WASI and module instantiation. |
There was a problem hiding this comment.
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).
I mean https://github.com/dapr/samples, you can add a WASM sample. |
@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. |
34b3382
to
03d2661
Compare
ok ready on my side, when this is merged I'll follow up on the sample no prob! |
There was a problem hiding this 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.
@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. |
Also please fix CI. |
I'm unsubscribing as it is just merge bot stuff and fuzz from other broke things. If someone needs my help, please mention me! |
@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 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! |
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>
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 |
* 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>
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>
* 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>
* 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>
* 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>
* 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>
* 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>
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: