Skip to content

Commit 4e85298

Browse files
committed
fix conflicts
Signed-off-by: Hannah Hunter <[email protected]>
2 parents 1632f50 + 602af42 commit 4e85298

37 files changed

+217
-42
lines changed

.github/workflows/website-root.yml

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
name: Azure Static Web App Root
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- v1.14
8+
pull_request:
9+
types: [opened, synchronize, reopened, closed]
10+
branches:
11+
- v1.14
12+
13+
concurrency:
14+
# Cancel the previously triggered build for only PR build.
15+
group: website-${{ github.event.pull_request.number || github.sha }}
16+
cancel-in-progress: true
17+
18+
jobs:
19+
build_and_deploy_job:
20+
name: Build Hugo Website
21+
if: github.event.action != 'closed'
22+
runs-on: ubuntu-latest
23+
env:
24+
SWA_BASE: 'proud-bay-0e9e0e81e'
25+
HUGO_ENV: production
26+
steps:
27+
- name: Checkout docs repo
28+
uses: actions/checkout@v3
29+
with:
30+
submodules: true
31+
- name: Setup Node
32+
uses: actions/setup-node@v2
33+
with:
34+
node-version: '14'
35+
- name: Setup Hugo
36+
uses: peaceiris/[email protected]
37+
with:
38+
hugo-version: 0.102.3
39+
extended: true
40+
- name: Setup Docsy
41+
run: |
42+
cd daprdocs
43+
git submodule update --init --recursive
44+
sudo npm install -D --save autoprefixer
45+
sudo npm install -D --save postcss-cli
46+
- name: Build Hugo Website
47+
run: |
48+
cd daprdocs
49+
git config --global --add safe.directory /github/workspace
50+
if [ $GITHUB_EVENT_NAME == 'pull_request' ]; then
51+
STAGING_URL="https://${SWA_BASE}-${{github.event.number}}.westus2.azurestaticapps.net/"
52+
fi
53+
hugo ${STAGING_URL+-b "$STAGING_URL"}
54+
- name: Deploy docs site
55+
uses: Azure/static-web-apps-deploy@v1
56+
with:
57+
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_PROUD_BAY_0E9E0E81E }}
58+
repo_token: ${{ secrets.GITHUB_TOKEN }}
59+
action: "upload"
60+
app_location: "daprdocs/public/"
61+
api_location: "daprdocs/public/"
62+
output_location: ""
63+
skip_app_build: true
64+
skip_deploy_on_missing_secrets: true
65+
- name: Upload Hugo artifacts
66+
uses: actions/upload-artifact@v3
67+
with:
68+
name: hugo_build
69+
path: ./daprdocs/public/
70+
if-no-files-found: error
71+
72+
close_staging_site:
73+
if: github.event_name == 'pull_request' && github.event.action == 'closed'
74+
runs-on: ubuntu-latest
75+
name: Close Pull Request Job
76+
steps:
77+
- name: Close Pull Request
78+
id: closepullrequest
79+
uses: Azure/static-web-apps-deploy@v1
80+
with:
81+
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_PROUD_BAY_0E9E0E81E }}
82+
action: "close"
83+
skip_deploy_on_missing_secrets: true
84+
85+
algolia_index:
86+
name: Index site for Algolia
87+
if: github.event_name == 'push'
88+
needs: ['build_and_deploy_job']
89+
runs-on: ubuntu-latest
90+
env:
91+
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }}
92+
ALGOLIA_API_WRITE_KEY: ${{ secrets.ALGOLIA_API_WRITE_KEY }}
93+
ALGOLIA_INDEX_NAME: daprdocs
94+
steps:
95+
- name: Checkout docs repo
96+
uses: actions/checkout@v2
97+
with:
98+
submodules: false
99+
- name: Download Hugo artifacts
100+
uses: actions/download-artifact@v3
101+
with:
102+
name: hugo_build
103+
path: site/
104+
- name: Install Python packages
105+
run: |
106+
pip install --upgrade bs4
107+
pip install --upgrade 'algoliasearch>=2.0,<3.0'
108+
- name: Index site
109+
run: python ./.github/scripts/algolia.py ./site

daprdocs/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ url_latest_version = "https://docs.dapr.io"
206206

207207
[[params.versions]]
208208
version = "v1.15 (preview)"
209-
url = "#"
209+
url = "https://v1-15.docs.dapr.io"
210210
[[params.versions]]
211211
version = "v1.14 (latest)"
212212
url = "https://docs.dapr.io"

daprdocs/content/en/contributing/contributing-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ See the [Dapr community repository](https://github.com/dapr/community) for more
1818

1919
1. **Docs**: This [repository](https://github.com/dapr/docs) contains the documentation for Dapr. You can contribute by updating existing documentation, fixing errors, or adding new content to improve user experience and clarity. Please see the specific guidelines for [docs contributions]({{< ref contributing-docs >}}).
2020

21-
2. **Quickstarts**: The Quickstarts [repository](https://github.com/dapr/quickstarts) provides simple, step-by-step guides to help users get started with Dapr quickly. Contributions in this repository involve creating new quickstarts, improving existing ones, or ensuring they stay up-to-date with the latest features.
21+
2. **Quickstarts**: The Quickstarts [repository](https://github.com/dapr/quickstarts) provides simple, step-by-step guides to help users get started with Dapr quickly. [Contributions in this repository](https://github.com/dapr/quickstarts/blob/master/CONTRIBUTING.md) involve creating new quickstarts, improving existing ones, or ensuring they stay up-to-date with the latest features.
2222

2323
3. **Runtime**: The Dapr runtime [repository](https://github.com/dapr/dapr) houses the core runtime components. Here, you can contribute by fixing bugs, optimizing performance, implementing new features, or enhancing existing ones.
2424

daprdocs/content/en/contributing/daprbot.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
type: docs
33
title: "Dapr bot reference"
44
linkTitle: "Dapr bot"
5-
weight: 15
5+
weight: 70
66
description: "List of Dapr bot capabilities."
77
---
88

daprdocs/content/en/contributing/docs-contrib/contributing-docs.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,18 @@ Style and tone conventions should be followed throughout all Dapr documentation
4141

4242
## Diagrams and images
4343

44-
Diagrams and images are invaluable visual aids for documentation pages. Diagrams are kept in a [Dapr Diagrams Deck](https://github.com/dapr/docs/tree/v1.11/daprdocs/static/presentations), which includes guidance on style and icons.
44+
Diagrams and images are invaluable visual aids for documentation pages. Use the diagram style and icons in the [Dapr Diagrams template deck](https://github.com/dapr/docs/tree/v1.14/daprdocs/static/presentations).
4545

46-
As you create diagrams for your documentation:
46+
The process for creating diagrams for your documentation:
4747

48-
- Save them as high-res PNG files into the [images folder](https://github.com/dapr/docs/tree/v1.11/daprdocs/static/images).
49-
- Name your PNG files using the convention of a concept or building block so that they are grouped.
48+
1. Download the [Dapr Diagrams template deck](https://github.com/dapr/docs/tree/v1.14/daprdocs/static/presentations) to use the icons and colors.
49+
1. Add a new slide and create your diagram.
50+
1. Screen capture the diagram as high-res PNG file and save in the [images folder](https://github.com/dapr/docs/tree/v1.14/daprdocs/static/images).
51+
1. Name your PNG files using the convention of a concept or building block so that they are grouped.
5052
- For example: `service-invocation-overview.png`.
5153
- For more information on calling out images using shortcode, see the [Images guidance](#images) section below.
52-
- Add the diagram to the correct section in the `Dapr-Diagrams.pptx` deck so that they can be amended and updated during routine refresh.
54+
1. Add the diagram to the appropriate section in your documentation using the HTML `<image>` tag.
55+
1. In your PR, comment the diagram slide (not the screen capture) so it can be reviewed and added to the diagram deck by maintainers.
5356

5457
## Contributing a new docs page
5558

daprdocs/content/en/developing-applications/building-blocks/pubsub/subscription-methods.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,16 @@ metadata:
3737
spec:
3838
topic: orders
3939
routes:
40-
default: /checkout
40+
default: /orders
4141
pubsubname: pubsub
4242
scopes:
4343
- orderprocessing
44-
- checkout
4544
```
4645
4746
Here the subscription called `order`:
4847
- Uses the pub/sub component called `pubsub` to subscribes to the topic called `orders`.
49-
- Sets the `route` field to send all topic messages to the `/checkout` endpoint in the app.
50-
- Sets `scopes` field to scope this subscription for access only by apps with IDs `orderprocessing` and `checkout`.
48+
- Sets the `route` field to send all topic messages to the `/orders` endpoint in the app.
49+
- Sets `scopes` field to scope this subscription for access only by apps with ID `orderprocessing`.
5150

5251
When running Dapr, set the YAML component file path to point Dapr to the component.
5352

@@ -113,7 +112,7 @@ In your application code, subscribe to the topic specified in the Dapr pub/sub c
113112

114113
```csharp
115114
//Subscribe to a topic
116-
[HttpPost("checkout")]
115+
[HttpPost("orders")]
117116
public void getCheckout([FromBody] int orderId)
118117
{
119118
Console.WriteLine("Subscriber received : " + orderId);
@@ -128,7 +127,7 @@ public void getCheckout([FromBody] int orderId)
128127
import io.dapr.client.domain.CloudEvent;
129128
130129
//Subscribe to a topic
131-
@PostMapping(path = "/checkout")
130+
@PostMapping(path = "/orders")
132131
public Mono<Void> getCheckout(@RequestBody(required = false) CloudEvent<String> cloudEvent) {
133132
return Mono.fromRunnable(() -> {
134133
try {
@@ -146,7 +145,7 @@ public Mono<Void> getCheckout(@RequestBody(required = false) CloudEvent<String>
146145
from cloudevents.sdk.event import v1
147146
148147
#Subscribe to a topic
149-
@app.route('/checkout', methods=['POST'])
148+
@app.route('/orders', methods=['POST'])
150149
def checkout(event: v1.Event) -> None:
151150
data = json.loads(event.Data())
152151
logging.info('Subscriber received: ' + str(data))
@@ -163,7 +162,7 @@ const app = express()
163162
app.use(bodyParser.json({ type: 'application/*+json' }));
164163
165164
// listen to the declarative route
166-
app.post('/checkout', (req, res) => {
165+
app.post('/orders', (req, res) => {
167166
console.log(req.body);
168167
res.sendStatus(200);
169168
});
@@ -178,7 +177,7 @@ app.post('/checkout', (req, res) => {
178177
var sub = &common.Subscription{
179178
PubsubName: "pubsub",
180179
Topic: "orders",
181-
Route: "/checkout",
180+
Route: "/orders",
182181
}
183182
184183
func eventHandler(ctx context.Context, e *common.TopicEvent) (retry bool, err error) {
@@ -191,7 +190,7 @@ func eventHandler(ctx context.Context, e *common.TopicEvent) (retry bool, err er
191190

192191
{{< /tabs >}}
193192

194-
The `/checkout` endpoint matches the `route` defined in the subscriptions and this is where Dapr sends all topic messages to.
193+
The `/orders` endpoint matches the `route` defined in the subscriptions and this is where Dapr sends all topic messages to.
195194

196195
### Streaming subscriptions
197196

@@ -325,7 +324,7 @@ In the example below, you define the values found in the [declarative YAML subsc
325324

326325
```csharp
327326
[Topic("pubsub", "orders")]
328-
[HttpPost("/checkout")]
327+
[HttpPost("/orders")]
329328
public async Task<ActionResult<Order>>Checkout(Order order, [FromServices] DaprClient daprClient)
330329
{
331330
// Logic
@@ -337,7 +336,7 @@ or
337336

338337
```csharp
339338
// Dapr subscription in [Topic] routes orders topic to this route
340-
app.MapPost("/checkout", [Topic("pubsub", "orders")] (Order order) => {
339+
app.MapPost("/orders", [Topic("pubsub", "orders")] (Order order) => {
341340
Console.WriteLine("Subscriber received : " + order);
342341
return Results.Ok(order);
343342
});
@@ -359,7 +358,7 @@ app.UseEndpoints(endpoints =>
359358
```java
360359
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
361360
362-
@Topic(name = "checkout", pubsubName = "pubsub")
361+
@Topic(name = "orders", pubsubName = "pubsub")
363362
@PostMapping(path = "/orders")
364363
public Mono<Void> handleMessage(@RequestBody(required = false) CloudEvent<String> cloudEvent) {
365364
return Mono.fromRunnable(() -> {
@@ -370,6 +369,7 @@ public Mono<Void> handleMessage(@RequestBody(required = false) CloudEvent<String
370369
throw new RuntimeException(e);
371370
}
372371
});
372+
}
373373
```
374374

375375
{{% /codetab %}}
@@ -382,7 +382,7 @@ def subscribe():
382382
subscriptions = [
383383
{
384384
'pubsubname': 'pubsub',
385-
'topic': 'checkout',
385+
'topic': 'orders',
386386
'routes': {
387387
'rules': [
388388
{
@@ -418,7 +418,7 @@ app.get('/dapr/subscribe', (req, res) => {
418418
res.json([
419419
{
420420
pubsubname: "pubsub",
421-
topic: "checkout",
421+
topic: "orders",
422422
routes: {
423423
rules: [
424424
{
@@ -480,7 +480,7 @@ func configureSubscribeHandler(w http.ResponseWriter, _ *http.Request) {
480480
t := []subscription{
481481
{
482482
PubsubName: "pubsub",
483-
Topic: "checkout",
483+
Topic: "orders",
484484
Routes: routes{
485485
Rules: []rule{
486486
{

daprdocs/content/en/developing-applications/building-blocks/state-management/howto-get-save-state.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ State management is one of the most common needs of any new, legacy, monolith, o
1010

1111
In this guide, you'll learn the basics of using the key/value state API to allow an application to save, get, and delete state.
1212

13-
## Example
14-
1513
The code example below _loosely_ describes an application that processes orders with an order processing service which has a Dapr sidecar. The order processing service uses Dapr to store state in a Redis state store.
1614

1715
<img src="/images/building-block-state-management-example.png" width=1000 alt="Diagram showing state management of example service">
@@ -554,7 +552,7 @@ namespace EventService
554552
string DAPR_STORE_NAME = "statestore";
555553
//Using Dapr SDK to retrieve multiple states
556554
using var client = new DaprClientBuilder().Build();
557-
IReadOnlyList<BulkStateItem> mulitpleStateResult = await client.GetBulkStateAsync(DAPR_STORE_NAME, new List<string> { "order_1", "order_2" }, parallelism: 1);
555+
IReadOnlyList<BulkStateItem> multipleStateResult = await client.GetBulkStateAsync(DAPR_STORE_NAME, new List<string> { "order_1", "order_2" }, parallelism: 1);
558556
}
559557
}
560558
}

daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Because workflow retry policies are configured in code, the exact developer expe
135135
| --- | --- |
136136
| **Maximum number of attempts** | The maximum number of times to execute the activity or child workflow. |
137137
| **First retry interval** | The amount of time to wait before the first retry. |
138-
| **Backoff coefficient** | The amount of time to wait before each subsequent retry. |
138+
| **Backoff coefficient** | The coefficient used to determine the rate of increase of back-off. For example a coefficient of 2 doubles the wait of each subsequent retry. |
139139
| **Maximum retry interval** | The maximum amount of time to wait before each subsequent retry. |
140140
| **Retry timeout** | The overall timeout for retries, regardless of any configured max number of attempts. |
141141

daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ description: Get started with the Dapr Workflow building block
1010
Dapr Workflow is currently in beta. [See known limitations for {{% dapr-latest-version cli="true" %}}]({{< ref "workflow-overview.md#limitations" >}}).
1111
{{% /alert %}}
1212

13+
{{% alert title="Note" color="primary" %}}
14+
Redis is currently used as the state store component for Workflows in the Quickstarts. However, Redis does not support transaction rollbacks and should not be used in production as an actor state store.
15+
{{% /alert %}}
16+
1317
Let's take a look at the Dapr [Workflow building block]({{< ref workflow-overview.md >}}). In this Quickstart, you'll create a simple console application to demonstrate Dapr's workflow programming model and the workflow management APIs.
1418

1519
In this guide, you'll:
@@ -1356,4 +1360,4 @@ Join the discussion in our [discord channel](https://discord.com/channels/778680
13561360
- Walk through a more in-depth [.NET SDK example workflow](https://github.com/dapr/dotnet-sdk/tree/master/examples/Workflow)
13571361
- Learn more about [Workflow as a Dapr building block]({{< ref workflow-overview >}})
13581362
1359-
{{< button text="Explore Dapr tutorials >>" page="getting-started/tutorials/_index.md" >}}
1363+
{{< button text="Explore Dapr tutorials >>" page="getting-started/tutorials/_index.md" >}}

0 commit comments

Comments
 (0)