Skip to content

Commit 4bb1a5f

Browse files
committed
update release notes
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 55a6e5b commit 4bb1a5f

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

daprblog/content/posts/2025/v1.15-release.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ See [this](#upgrading-to-dapr-1.15) section on upgrading Dapr to version 1.15.
2424

2525
Thanks to everyone who made this release possible!
2626

27-
@adrianhr91, @alicejgibbons, @antontroshin, @aqeelat, @arslanmusta, @artur-ciocanu, @arturotrenard, @artursouza, @bhagya05, @cicoyle, @daixiang0, @diegodocs, @divzi-p, @Druid-of-Luhn, @elena-kolevska, @emsearcy, @evhen14, @famarting, @filintod, @GowthamHN, @hhunter-ms, @humandigital-ruud, @ItalyPaleAle, @Jeroen-VdB, @jev-e, @JoshVanL, @jseguillon, @LeonMatthesKDAB, @lor1113, @luigirende, @m3nax, @marcduiker, @mikeee, @MregXN, @msfussell, @olitomlinson, @passuied, @paule96, @paulyuk, @qustavo, @RafaelJCamara, @rochabr, @salaboy @shubham1172, @Shubhdeep02, @sicoyle, @siri-varma, @SpiffyEight77, @Taction, @ThomasVitale, @tomhreb, @vil02, @WhitWaldo, @yaron2, @ytimocin, @znd4
27+
@adrianhr91, @alicejgibbons, @antontroshin, @aqeelat, @arslanmusta, @artur-ciocanu, @arturotrenard, @artursouza, @bhagya05, @cicoyle, @daixiang0, @diegodocs, @divzi-p, @Druid-of-Luhn, @elena-kolevska, @emsearcy, @evhen14, @famarting, @filintod, @GowthamHN, @hhunter-ms, @humandigital-ruud, @ItalyPaleAle, @Jeroen-VdB, @jev-e, @JoshVanL, @jseguillon, @LeonMatthesKDAB, @lor1113, @luigirende, @m3nax, @marcduiker, @mikeee, @MregXN, @msfussell, @olitomlinson, @passuied, @paule96, @paulyuk, @qustavo, @RafaelJCamara, @rochabr, @salaboy, @shubham1172, @Shubhdeep02, @sicoyle, @siri-varma, @SpiffyEight77, @Taction, @ThomasVitale, @tomhreb, @vil02, @WhitWaldo, @yaron2, @ytimocin, @znd4
2828

2929
## Highlights
3030
These are the v1.15 release highlights:
@@ -46,7 +46,9 @@ The [Scheduler service](https://v1-15.docs.dapr.io/concepts/dapr-services/schedu
4646
{{% alert title="Note" color="primary" %}}
4747
Prior to Dapr v1.15, actor reminders were run using the Placement service by default. Now, by default in v1.15, the `SchedulerReminders` feature flag is set to true, and all new actor reminders you create are run using the Scheduler service.
4848

49-
When you deploy Dapr v1.15, *any existing actor reminders are migrated from the Placement service to the Scheduler service as a one time operation for each actor type*. You can prevent this migration by setting the `SchedulerReminders` flag to `false` in the application configuration file for the actor type. See [Scheduler Actor Reminders](https://v1-15.docs.dapr.io/concepts/dapr-services/scheduler/#actor-reminders)
49+
When you deploy Dapr v1.15, *any existing actor reminders are migrated from the Placement service to the Scheduler service as a one time operation for each actor type*. You can prevent this migration by setting the `SchedulerReminders` flag to `false` in the application configuration file for the actor type.
50+
51+
See [Scheduler Actor Reminders](https://v1-15.docs.dapr.io/concepts/dapr-services/scheduler/#actor-reminders).
5052
{{% /alert %}}
5153

5254
### Conversation API (alpha)
@@ -179,17 +181,21 @@ The following new components have been added
179181
- **ADDED** [workflow] Adds workflow replay-safe logger [1434](https://github.com/dapr/dotnet-sdk/pull/1434)
180182
- **FIXED** [actors] Multiple methods per interface with JSON serialization doesn´t work [1343](https://github.com/dapr/dotnet-sdk/pull/1343)
181183
- **FIXED** [actors] Actor source generator generates invalid code for generic interfaces [1419](https://github.com/dapr/dotnet-sdk/pull/1419)
184+
- **FIXED** [actors] Actor reminders should return null if not registered [1468](https://github.com/dapr/dotnet-sdk/pull/1468)
182185
- **FIXED** [client] DI registration not completing as expected [1386](https://github.com/dapr/dotnet-sdk/pull/1386)
183186
- **FIXED** [client] Prioritize retrieval of environment variables from IConfiguration instead of directly [1363](https://github.com/dapr/dotnet-sdk/pull/1363)
184187
- **ADDED** [client] Additional lifecycle registration changes [1410](https://github.com/dapr/dotnet-sdk/pull/1410)
188+
- **FIXED** [actors] Actor reminders should return null if not registered [1468](https://github.com/dapr/dotnet-sdk/pull/1468)
185189
- **FIXED** [config] ***BREAKING CHANGE*** Preserve comparer of the original dictionary [935](https://github.com/dapr/dotnet-sdk/pull/935)
186190
- **FIXED** [config] `DaprConfigurationStoreProvider` not applying case-insensitive configuration updates correctly. [934](https://github.com/dapr/dotnet-sdk/issues/934)
187191
- **FIXED** [conversation] Conversation builder consistency changes [1423](https://github.com/dapr/dotnet-sdk/pull/1423)
192+
- **FIXED** [conversation] Conversation SDK updated to reflect changes to protos [1469](https://github.com/dapr/dotnet-sdk/pull/1469)
188193
- **FIXED** [crypto] Crypto ReadOnlyMemory<byte> decryption times out [1443](https://github.com/dapr/dotnet-sdk/pull/1443)
189194
- **FIXED** [jobs] Single-invocation point-in-time job fails to register [1455](https://github.com/dapr/dotnet-sdk/pull/1455)
190195
- **FIXED** [jobs] Invoked job not populating payload from inbound request [1457](https://github.com/dapr/dotnet-sdk/pull/1457)
191196
- **FIXED** [jobs] Fix for `GetJobAsync` deserialization issue [1461](https://github.com/dapr/dotnet-sdk/pull/1461)
192197
- **FIXED** [jobs] Fix for duration-based scheduling being incorrected formatted [1462](https://github.com/dapr/dotnet-sdk/pull/1462)
198+
- **FIXED** [jobs] Fix Jobs mapping handler to properly assign cancellation tokens per-request instead of globally [1474](https://github.com/dapr/dotnet-sdk/pull/1474)
193199
- **FIXED** [misc] Remove unused using statements. [1313](https://github.com/dapr/dotnet-sdk/pull/1313)
194200
- **FIXED** [misc] Remove unused variables [1314](https://github.com/dapr/dotnet-sdk/pull/1314)
195201
- **FIXED** [misc] Removes floating classes and introduces Dapr.Common project [1365](https://github.com/dapr/dotnet-sdk/pull/1365)
@@ -363,10 +369,10 @@ To upgrade to this release of Dapr, follow the steps here to ensure a smooth upg
363369

364370
### Local Machine / Self-hosted
365371

366-
Uninstall Dapr using the CLI you currently have installed. Linux users need to run `sudo` if Docker command needs `sudo`:
372+
Uninstall Dapr using the CLI you currently have installed. Linux users need to run `sudo` if Docker command needs `sudo`.
367373

368374
{{% alert title="Note" color="primary" %}}
369-
This will remove the default `$HOME/.dapr` directory, binaries, and all containers `dapr_redis`, `dapr_placement`, and `dapr_zipkin`.
375+
This will remove the default `$HOME/.dapr `directory, binaries, and all containers: `dapr_redis`, `dapr_placement`, and `dapr_zipkin`.
370376
{{% /alert %}}
371377

372378
```bash

0 commit comments

Comments
 (0)