Skip to content

Commit d443b23

Browse files
authored
Merge branch 'v1.15' into chore/stale-bot
2 parents c1cd36c + 69cc52f commit d443b23

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ 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+
| April 4th 2025 | 1.15.4</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.4 </br>JS 3.5.2 </br>Rust 0.16.1 | 0.15.0 | Supported (current) | [v1.15.4 release notes](https://github.com/dapr/dapr/releases/tag/v1.15.4) |
49+
| March 5rd 2025 | 1.15.3</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.4 </br>JS 3.5.2 </br>Rust 0.16.1 | 0.15.0 | Supported (current) | [v1.15.3 release notes](https://github.com/dapr/dapr/releases/tag/v1.15.3) |
4850
| 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) |
4951
| 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) |
5052
| 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) |

daprdocs/content/en/reference/components-reference/supported-bindings/s3.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,16 @@ To perform a create operation, invoke the AWS S3 binding with a `POST` method an
170170
"operation": "create",
171171
"data": "YOUR_CONTENT",
172172
"metadata": {
173-
"storageClass": "STANDARD_IA"
173+
"storageClass": "STANDARD_IA",
174+
"tags": "project=sashimi,year=2024",
174175
}
175176
}
176177
```
177178

178-
For example you can provide a storage class while using the `create` operation with a Linux curl command
179+
For example you can provide a storage class or tags while using the `create` operation with a Linux curl command
179180

180181
```bash
181-
curl -d '{ "operation": "create", "data": "YOUR_BASE_64_CONTENT", "metadata": { "storageClass": "STANDARD_IA" } }' /
182+
curl -d '{ "operation": "create", "data": "YOUR_BASE_64_CONTENT", "metadata": { "storageClass": "STANDARD_IA", "project=sashimi,year=2024" } }' /
182183
http://localhost:<dapr-port>/v1.0/bindings/<binding-name>
183184
```
184185

0 commit comments

Comments
 (0)