Skip to content

Commit 8cbd37a

Browse files
authored
Merge branch 'v1.15' into issue_4410
2 parents 60d5332 + b24527e commit 8cbd37a

File tree

12 files changed

+46
-80
lines changed

12 files changed

+46
-80
lines changed

daprdocs/content/en/concepts/dapr-services/sidecar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ For a detailed list of all available arguments run `daprd --help` or see this [t
5252
1. Specify the port your application is listening to
5353

5454
```bash
55-
daprd --app-id --app-port 5000
55+
daprd --app-id myapp --app-port 5000
5656
```
5757

5858
1. If you are using several custom resources and want to specify the location of the resource definition files, use the `--resources-path` argument:

daprdocs/content/en/developing-applications/building-blocks/configuration/howto-manage-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ using System.Threading.Tasks;
263263
using Dapr.Client;
264264

265265
const string DAPR_CONFIGURATION_STORE = "configstore";
266-
var CONFIGURATION_KEYS = new List<string> { "orderId1", "orderId2" };
266+
var CONFIGURATION_ITEMS = new List<string> { "orderId1", "orderId2" };
267267
var client = new DaprClientBuilder().Build();
268268

269269
// Subscribe for configuration changes

daprdocs/content/en/developing-applications/local-development/multi-app-dapr-run/multi-app-template.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -254,14 +254,14 @@ The properties for the Multi-App Run template align with the `dapr run` CLI flag
254254
| `apiListenAddresses` | N | Dapr API listen addresses | |
255255
| `logLevel` | N | The log verbosity. | |
256256
| `appMaxConcurrency` | N | The concurrency level of the application; default is unlimited | |
257-
| `placementHostAddress` | N | | |
257+
| `placementHostAddress` | N | Comma separated list of addresses for Dapr placement servers | `127.0.0.1:50057,127.0.0.1:50058` |
258+
| `schedulerHostAddress` | N | Dapr Scheduler Service host address | `localhost:50006` |
258259
| `appSSL` | N | Enable https when Dapr invokes the application | |
259-
| `daprHTTPMaxRequestSize` | N | Max size of the request body in MB. | |
260-
| `daprHTTPReadBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. The default 4 KB | |
260+
| `maxBodySize` | N | Max size of the request body in MB. Set the value using size units (e.g., `16Mi` for 16MB). The default is `4Mi` | |
261+
| `readBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. Set the value using size units, for example `32Ki` will support headers up to 32KB . Default is `4Ki` for 4KB | |
261262
| `enableAppHealthCheck` | N | Enable the app health check on the application | `true`, `false` |
262263
| `appHealthCheckPath` | N | Path to the health check file | `/healthz` |
263-
| `appHealthProbeInterval` | N | Interval to probe for the health of the app in seconds
264-
| |
264+
| `appHealthProbeInterval` | N | Interval to probe for the health of the app in seconds | |
265265
| `appHealthProbeTimeout` | N | Timeout for app health probes in milliseconds | |
266266
| `appHealthThreshold` | N | Number of consecutive failures for the app to be considered unhealthy | |
267267
| `enableApiLogging` | N | Enable the logging of all API calls from application to Dapr | |
@@ -303,10 +303,11 @@ The properties for the Multi-App Run template align with the `dapr run -k` CLI f
303303
| `apiListenAddresses` | N | Dapr API listen addresses | |
304304
| `logLevel` | N | The log verbosity. | |
305305
| `appMaxConcurrency` | N | The concurrency level of the application; default is unlimited | |
306-
| `placementHostAddress` | N | | |
306+
| `placementHostAddress` | N | Comma separated list of addresses for Dapr placement servers | `127.0.0.1:50057,127.0.0.1:50058` |
307+
| `schedulerHostAddress` | N | Dapr Scheduler Service host address | `127.0.0.1:50006` |
307308
| `appSSL` | N | Enable https when Dapr invokes the application | |
308-
| `daprHTTPMaxRequestSize` | N | Max size of the request body in MB. | |
309-
| `daprHTTPReadBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. The default 4 KB | |
309+
| `maxBodySize` | N | Max size of the request body in MB. Set the value using size units (e.g., `16Mi` for 16MB). The default is `4Mi` | `16Mi` |
310+
| `readBufferSize` | N | Max size of the HTTP read buffer in KB. This also limits the maximum size of HTTP headers. Set the value using size units, for example `32Ki` will support headers up to 32KB . Default is `4Ki` for 4KB | `32Ki` |
310311
| `enableAppHealthCheck` | N | Enable the app health check on the application | `true`, `false` |
311312
| `appHealthCheckPath` | N | Path to the health check file | `/healthz` |
312313
| `appHealthProbeInterval` | N | Interval to probe for the health of the app in seconds | |

daprdocs/content/en/operations/hosting/kubernetes/kubernetes-persisting-scheduler.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This means the actual disk usage of Scheduler will be higher than the current ob
4141
### Setting the Storage Size on Installation
4242

4343
If you need to increase an **existing** Scheduler storage size, see the [Increase Scheduler Storage Size](#increase-existing-scheduler-storage-size) section below.
44-
To increase the storage size (in this example- `16Gi`) for a **fresh** Dapr instalation, you can use the following command:
44+
To increase the storage size (in this example- `16Gi`) for a **fresh** Dapr installation, you can use the following command:
4545

4646
{{< tabs "Dapr CLI" "Helm" >}}
4747
<!-- Dapr CLI -->
@@ -69,6 +69,14 @@ helm upgrade --install dapr dapr/dapr \
6969
{{% /codetab %}}
7070
{{< /tabs >}}
7171

72+
{{% alert title="Note" color="primary" %}}
73+
For storage providers that do NOT support dynamic volume expansion: If Dapr has ever been installed on the cluster before, the Scheduler's Persistent Volume Claims must be manually uninstalled in order for new ones with increased storage size to be created.
74+
```bash
75+
kubectl delete pvc -n dapr-system dapr-scheduler-data-dir-dapr-scheduler-server-0 dapr-scheduler-data-dir-dapr-scheduler-server-1 dapr-scheduler-data-dir-dapr-scheduler-server-2
76+
```
77+
Persistent Volume Claims are not deleted automatically with an [uninstall]({{< ref dapr-uninstall.md >}}). This is a deliberate safety measure to prevent accidental data loss.
78+
{{% /alert %}}
79+
7280
#### Increase existing Scheduler Storage Size
7381

7482
{{% alert title="Warning" color="warning" %}}

daprdocs/content/en/operations/security/mtls.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -334,12 +334,12 @@ Example:
334334
dapr status -k
335335

336336
NAME NAMESPACE HEALTHY STATUS REPLICAS VERSION AGE CREATED
337-
dapr-operator dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.26
338-
dapr-placement-server dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.27
337+
dapr-operator dapr-system True Running 1 1.15.1 4m 2025-02-19 17:36.26
338+
dapr-placement-server dapr-system True Running 1 1.15.1 4m 2025-02-19 17:36.27
339339
dapr-dashboard dapr-system True Running 1 0.15.0 4m 2025-02-19 17:36.27
340-
dapr-sentry dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.26
341-
dapr-scheduler-server dapr-system True Running 3 1.15.0 4m 2025-02-19 17:36.27
342-
dapr-sidecar-injector dapr-system True Running 1 1.15.0 4m 2025-02-19 17:36.26
340+
dapr-sentry dapr-system True Running 1 1.15.1 4m 2025-02-19 17:36.26
341+
dapr-scheduler-server dapr-system True Running 3 1.15.1 4m 2025-02-19 17:36.27
342+
dapr-sidecar-injector dapr-system True Running 1 1.15.1 4m 2025-02-19 17:36.26
343343
⚠ Dapr root certificate of your Kubernetes cluster expires in 2 days. Expiry date: Mon, 04 Apr 2025 15:01:03 UTC.
344344
Please see docs.dapr.io for certificate renewal instructions to avoid service interruptions.
345345
```

daprdocs/content/en/operations/support/support-release-policy.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ The table below shows the versions of Dapr releases that have been tested togeth
4545

4646
| Release date | Runtime | CLI | SDKs | Dashboard | Status | Release notes |
4747
|--------------------|:--------:|:--------|---------|---------|---------|------------|
48-
| February 27th 2025 | 1.15.0</br> | 1.15.0 | Java 1.14.0 </br>Go 1.12.0 </br>PHP 1.2.0 </br>Python 1.15.0 </br>.NET 1.15.0 </br>JS 3.5.0 </br>Rust 0.16 | 0.15.0 | Supported (current) | [v1.15.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.15.0) |
48+
| March 3rd 2025 | 1.15.2</br> | 1.15.0 | Java 1.14.0 </br>Go 1.12.0 </br>PHP 1.2.0 </br>Python 1.15.0 </br>.NET 1.15.0 </br>JS 3.5.0 </br>Rust 0.16 | 0.15.0 | Supported (current) | [v1.15.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.15.2) |
49+
| February 28th 2025 | 1.15.1</br> | 1.15.0 | Java 1.14.0 </br>Go 1.12.0 </br>PHP 1.2.0 </br>Python 1.15.0 </br>.NET 1.15.0 </br>JS 3.5.0 </br>Rust 0.16 | 0.15.0 | Supported (current) | [v1.15.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.15.1) |
50+
| February 27th 2025 | 1.15.0</br> | 1.15.0 | Java 1.14.0 </br>Go 1.12.0 </br>PHP 1.2.0 </br>Python 1.15.0 </br>.NET 1.15.0 </br>JS 3.5.0 </br>Rust 0.16 | 0.15.0 | Supported | [v1.15.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.15.0) |
4951
| September 16th 2024 | 1.14.4</br> | 1.14.1 | Java 1.12.0 </br>Go 1.11.0 </br>PHP 1.2.0 </br>Python 1.14.0 </br>.NET 1.14.0 </br>JS 3.3.1 | 0.15.0 | Supported | [v1.14.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.14.4) |
5052
| September 13th 2024 | 1.14.3</br> | 1.14.1 | Java 1.12.0 </br>Go 1.11.0 </br>PHP 1.2.0 </br>Python 1.14.0 </br>.NET 1.14.0 </br>JS 3.3.1 | 0.15.0 | ⚠️ Recalled | [v1.14.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.14.3) |
5153
| September 6th 2024 | 1.14.2</br> | 1.14.1 | Java 1.12.0 </br>Go 1.11.0 </br>PHP 1.2.0 </br>Python 1.14.0 </br>.NET 1.14.0 </br>JS 3.3.1 | 0.15.0 | Supported | [v1.14.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.14.2) |
@@ -56,11 +58,11 @@ The table below shows the versions of Dapr releases that have been tested togeth
5658
| April 3rd 2024 | 1.13.2</br> | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported | [v1.13.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.2) |
5759
| March 26th 2024 | 1.13.1</br> | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported | [v1.13.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.1) |
5860
| March 6th 2024 | 1.13.0</br> | 1.13.0 | Java 1.11.0 </br>Go 1.10.0 </br>PHP 1.2.0 </br>Python 1.13.0 </br>.NET 1.13.0 </br>JS 3.3.0 | 0.14.0 | Supported | [v1.13.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.13.0) |
59-
| January 17th 2024 | 1.12.4</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.4) |
60-
| January 2nd 2024 | 1.12.3</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.3) |
61-
| November 18th 2023 | 1.12.2</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.2) |
62-
| November 16th 2023 | 1.12.1</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Supported | [v1.12.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.1) |
63-
| October 11th 2023 | 1.12.0</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.0 </br>PHP 1.1.0 </br>Python 1.11.0 </br>.NET 1.12.0 </br>JS 3.1.2 | 0.14.0 | Supported | [v1.12.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.0) |
61+
| January 17th 2024 | 1.12.4</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Unsupported | [v1.12.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.4) |
62+
| January 2nd 2024 | 1.12.3</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Unsupported | [v1.12.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.3) |
63+
| November 18th 2023 | 1.12.2</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Unsupported | [v1.12.2 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.2) |
64+
| November 16th 2023 | 1.12.1</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.1 </br>PHP 1.2.0 </br>Python 1.12.0 </br>.NET 1.12.0 </br>JS 3.2.0 | 0.14.0 | Unsupported | [v1.12.1 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.1) |
65+
| October 11th 2023 | 1.12.0</br> | 1.12.0 | Java 1.10.0 </br>Go 1.9.0 </br>PHP 1.1.0 </br>Python 1.11.0 </br>.NET 1.12.0 </br>JS 3.1.2 | 0.14.0 | Unsupported | [v1.12.0 release notes](https://github.com/dapr/dapr/releases/tag/v1.12.0) |
6466
| November 18th 2023 | 1.11.6</br> | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.6 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.6) |
6567
| November 3rd 2023 | 1.11.5</br> | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.5 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.5) |
6668
| October 5th 2023 | 1.11.4</br> | 1.11.0 | Java 1.9.0 </br>Go 1.8.0 </br>PHP 1.1.0 </br>Python 1.10.0 </br>.NET 1.11.0 </br>JS 3.1.0 | 0.13.0 | Unsupported | [v1.11.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.11.4) |

daprdocs/content/en/reference/api/jobs_api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ With the jobs API, you can schedule jobs and tasks in the future.
2020
Schedule a job with a name. Jobs are scheduled based on the clock of the server where the Scheduler service is running. The timestamp is not converted to UTC. You can provide the timezone with the timestamp in RFC3339 format to specify which timezone you'd like the job to adhere to. If no timezone is provided, the server's local time is used.
2121

2222
```
23-
POST http://localhost:3500/v1.0-alpha1/jobs/<name>
23+
POST http://localhost:<daprPort>/v1.0-alpha1/jobs/<name>
2424
```
2525

2626
### URL parameters
@@ -100,7 +100,7 @@ $ curl -X POST \
100100
Get a job from its name.
101101

102102
```
103-
GET http://localhost:3500/v1.0-alpha1/jobs/<name>
103+
GET http://localhost:<daprPort>/v1.0-alpha1/jobs/<name>
104104
```
105105

106106
### URL parameters
@@ -138,7 +138,7 @@ $ curl -X GET http://localhost:3500/v1.0-alpha1/jobs/jobforjabba -H "Content-Typ
138138
Delete a named job.
139139

140140
```
141-
DELETE http://localhost:3500/v1.0-alpha1/jobs/<name>
141+
DELETE http://localhost:<daprPort>/v1.0-alpha1/jobs/<name>
142142
```
143143

144144
### URL parameters

daprdocs/content/en/reference/api/workflow_api.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Dapr provides users with the ability to interact with workflows through its buil
1313
Start a workflow instance with the given name and optionally, an instance ID.
1414

1515
```
16-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<workflowName>/start[?instanceID=<instanceID>]
16+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<workflowName>/start[?instanceID=<instanceID>]
1717
```
1818

1919
Note that workflow instance IDs can only contain alphanumeric characters, underscores, and dashes.
@@ -53,7 +53,7 @@ The API call will provide a response similar to this:
5353
Terminate a running workflow instance with the given name and instance ID.
5454

5555
```
56-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/terminate
56+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/terminate
5757
```
5858

5959
{{% alert title="Note" color="primary" %}}
@@ -87,7 +87,7 @@ This API does not return any content.
8787
For workflow components that support subscribing to external events, such as the Dapr Workflow engine, you can use the following "raise event" API to deliver a named event to a specific workflow instance.
8888

8989
```
90-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceID>/raiseEvent/<eventName>
90+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceID>/raiseEvent/<eventName>
9191
```
9292

9393
{{% alert title="Note" color="primary" %}}
@@ -120,7 +120,7 @@ None.
120120
Pause a running workflow instance.
121121

122122
```
123-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/pause
123+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/pause
124124
```
125125

126126
### URL parameters
@@ -147,7 +147,7 @@ None.
147147
Resume a paused workflow instance.
148148

149149
```
150-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/resume
150+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/resume
151151
```
152152

153153
### URL parameters
@@ -174,7 +174,7 @@ None.
174174
Purge the workflow state from your state store with the workflow's instance ID.
175175

176176
```
177-
POST http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>/purge
177+
POST http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>/purge
178178
```
179179

180180
{{% alert title="Note" color="primary" %}}
@@ -205,7 +205,7 @@ None.
205205
Get information about a given workflow instance.
206206

207207
```
208-
GET http://localhost:3500/v1.0/workflows/<workflowComponentName>/<instanceId>
208+
GET http://localhost:<daprPort>/v1.0/workflows/<workflowComponentName>/<instanceId>
209209
```
210210

211211
### URL parameters

0 commit comments

Comments
 (0)