Skip to content

chore(deps): update all non-major regex dependencies #926

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 24, 2025

This PR contains the following updates:

Package Update Change
air-verse/air patch 1.61.5 -> 1.61.7
authzed/zed minor 0.23.0 -> 0.30.1
bufbuild/buf minor 1.48.0 -> 1.53.0
dapr/cli minor 1.14.1 -> 1.15.1
dapr/dapr minor 1.14.4 -> 1.15.4
dart (source) minor 3.6.0 -> 3.7.3
fullstorydev/grpcurl patch 1.9.2 -> 1.9.3
golang minor 1.23 -> 1.24
golang-migrate/migrate patch 4.18.1 -> 4.18.3
golangci/golangci-lint minor 1.63.4 -> 1.64.8
mvdan/gofumpt minor 0.7.0 -> 0.8.0
sqlc-dev/sqlc minor 1.27.0 -> 1.29.0
superfly/flyctl patch 0.3.57 -> 0.3.110

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

air-verse/air (air-verse/air)

v1.61.7

Compare Source

What's Changed

New Contributors

Full Changelog: air-verse/air@v1.61.5...v1.61.7

v1.61.6

Compare Source

Changelog

  • ce50989 Add exiter to test os.Exit case
authzed/zed (authzed/zed)

v0.30.1

Compare Source

What's Changed

Full Changelog: authzed/zed@v0.30.0...v0.30.1

v0.30.0

Compare Source

What's Changed

Full Changelog: authzed/zed@v0.29.0...v0.30.0

v0.29.0

Compare Source

What's Changed

Full Changelog: authzed/zed@v0.28.0...v0.29.0

v0.28.0

Compare Source

Highlights
  • Added resumable backup support to zed backup
  • Added cursor support to zed permission lookup-resources
  • Added socks5 proxy support
What's Changed
New Contributors

Full Changelog: authzed/zed@v0.27.0...v0.28.0

v0.27.0

Compare Source

What's New

Composable schema support! See documentation here: https://authzed.com/docs/spicedb/modeling/composable-schemas

What's Changed

Full Changelog: authzed/zed@v0.26.0...v0.27.0

v0.26.0

Compare Source

What's New

You can now add an expiration to a relationship written by zed with the --expiration flag:

      --expiration-time string   the expiration time for the relationship in RFC 3339 format

In practice:

zed relationship touch resource:1 reader user:1 --expiration-time 2025-12-09T16:09:53+00:00
What's Changed

Full Changelog: authzed/zed@v0.25.0...v0.26.0

v0.25.0

Compare Source

New in this release
  • You can now add --explain to a bulk check call and get the same kind of debug output that you get on a normal check call
  • You can now have a schemaFile key in your validation yaml files that references an external schema by path. This allows for a schema file to be kept separate from the validation file without having to manually concatenate.
  • You can now run zed validate with multiple files as arguments. Together with the previous change, this should mean that you can have a folder full of independent validation files that describe separate test cases and all reference the same schema.
What's Changed

Full Changelog: authzed/zed@v0.24.0...v0.25.0

v0.24.0

Compare Source

What's Changed
New Contributors

Full Changelog: authzed/zed@v0.23.0...v0.24.0

bufbuild/buf (bufbuild/buf)

v1.53.0

Compare Source

  • Fix buf breaking annotations for JSON format.

v1.52.1

Compare Source

  • Fix language version for pre-commit hooks.

v1.52.0

Compare Source

  • Fix exclude_type on a non imported package.
  • Fix --exclude-type flag for buf generate when an input is specified.
  • Fix type filter import filtering for options.
  • Add OS environment when invoking local buf plugins.
  • Add file path to buf lint and buf breaking output even when source code info is not
    available. This allows buf lint and buf breaking to respect ignore and ignore_only
    configurations when source code info is not available.

v1.51.0

Compare Source

  • Fix buf convert to allow for zero length for binpb, txtpb, and yaml formats.
  • Fix use of deprecated flag --include-types for buf generate.
  • Add --against-registry flag to buf breaking that runs breaking checks against the latest
    commit on the default branch of the corresponding module in the registry.
  • Fix type filter with unused image dependencies for buf generate.
  • Improve type filtering for buf generate. Adds the ability to exclude types with the parameter
    exclude_types in buf.gen.yaml and a flag --exclude-types in the CLI.
    Type filters may now also be specified as plugin parameters in buf.gen.yaml.

v1.50.1

Compare Source

  • Minor fixes and dependency updates.

v1.50.0

Compare Source

  • Add input parameter filter for use with git inputs. This sets the filter
    flag argument for the git fetch command.

v1.49.0

Compare Source

  • Fix buf plugin push --label to allow pushing a plugin with a label.
  • Add --digest-changes-only flag to buf registry {module,plugin} commit list to filter
    out commits that have no digest changes.
  • Fix buf plugin push --source-control-url to allow pushing a plugin with the source
    control url.
dapr/cli (dapr/cli)

v1.15.1: Dapr CLI v1.15.1

Compare Source

v1.15.0: Dapr CLI v1.15.0

Compare Source

dapr/dapr (dapr/dapr)

v1.15.4: Dapr Runtime v1.15.4

Compare Source

Dapr 1.15.4

This update includes bug fixes:

Fix degradation of Workflow runtime performance over time
Problem

Running a Workflow app multiple times would cause the performance of the Workflow runtime to degrade significantly over multiple runs.

Impact

Workflow applications would not complete in a timely manner.

Root cause

There was an issue whereby Scheduler client (daprd) connections where not properly pruned from the connection pool for a given Namespace's appID/actorTypes set.
This would lead to jobs/actor reminders being sent to stale client connections that were no longer active.
This caused Jobs to fail, and enter failure policy retry loops.

Solution

Refactor the Scheduler connection pool logic to properly prune stale connections to prevent job execution occurring on stale connections and causing failure policy loops.

Fix remote Actor invocation 500 retry
Problem

An actor invocation across hosts which result in a 500 HTTP header response code would result in the request being retried 5 times.

Impact

Services which return a 500 HTTP header response code would result in requests under normal operation to return slowly, and request the service on the same request multiple times.

Root cause

The Actor engine considered a 500 HTTP header response code to be a retriable error, rather than a successful request which returned a non-200 status code.

Solution

Remove the 500 HTTP header response code from the list of retriable errors.

Problem
Fix Global Actors Enabled Configuration
Problem

When global.actors.enabled was set to false via Helm or the environment variable ACTORS_ENABLED=false, the Dapr sidecar would still attempt to connect to the placement service, causing readiness probe failures and repeatedly logged errors about failing to connect to placement.
Fixes this issue.

Impact

Dapr sidecars would fail their readiness probes and log errors like:

Failed to connect to placement dns:///dapr-placement-server.dapr-system.svc.cluster.local:50005: failed to create placement client: rpc error: code = Unavailable desc = last resolver error: produced zero addresses
Root cause

The sidecar injector was not properly respecting the global actors enabled configuration when setting up the placement service connection.

Solution

The sidecar injector now properly respects the global.actors.enabled helm configuration and ACTORS_ENABLED environment variable. When set to false, it will not attempt to connect to the placement service, allowing the sidecar to start successfully without actor functionality.

Prevent panic of reminder operations on slow Actor Startup
Problem

The Dapr runtime HTTP server would panic if a reminder operation timed out while an Actor was starting up.

Impact

The HTTP server would panic, causing degraded performance.

Root cause

The Dapr runtime would attempt to use the reminder service before it was initialized.

Solution

Correctly return an errors that the actor runtime was not ready in time for the reminder operation.

Remove client-side rate limiter from Sentry
Problem

A cold start of many Dapr deployments would take a long time, and even cause some crash loops.

Impact

A large Dapr deployment would take a non-linear more amount of time that a smaller one to completely roll out.

Root cause

The Sentry Kubernetes client was configured with a rate limiter which would be exhausted when services all new Dapr deployment at once, cause many client to wait significantly.

Solution

Remove the client-side rate limiting from the Sentry Kubernetes client.

Allow Service Account for MetalBear mirrord operator in sidecar injector
Problem

Mirrord Operator is not on the allow list of Service Accounts for the dapr sidecar injector.

Impact

Running mirrord in copy_target mode would cause the pod to initalise without the dapr container.

Root cause

Mirrord Operator is not on the allow list of Service Accounts for the dapr sidecar injector.

Solution

Add the Mirrord Operator into the allow list of Service Accounts for the dapr sidecar injector.

Fix Scheduler Client connection pruning
Problem

Daprd would attempt to connect to stale Scheduler addresses.

Impact

Network resource usage and error reporting from service mesh sidecars.

Root cause

Daprd would not close Scheduler gRPC connections to hosts which no longer exist.

Solution

Daprd now closes connections to Scheduler hosts when they are no longer in the list of active hosts.

v1.15.3: Dapr Runtime v1.15.3

Compare Source

Dapr 1.15.3

This update includes bug fixes:

Fix Timers Deactivating after timer invocation fails
Problem

Fixes this issue.
An app returning a non-2xx status code from a timer invocation would cause a periodic timer to no longer trigger.

Impact

An Actor app which restarted/crashed, or was otherwise busy, would cause a timer to no longer trigger.
This breaks backwards compatibility where a periodic Actor timer would continue to trigger at the defined period, even if the actor was busy or had an error.

Root cause

The Actor timer handle logic deactivates the timer if any timer invocation failed.
Regardless of whether the timer had further ticks defined in it's period schedule.

Solution

As did before v1.15.0, treat any successful or failed timer invocation as the same, and tick the Actor timer forward allowing for future invocations.

Fix Daprd continuously growing in memory
Problem

Fixes an issue where Daprd would continually grow in memory when using Workflows.

Impact

Daprd would eventually use all available memory on the node or cgroup, causing an OOM crash.

Root cause

An internal Actor lock object was not being released from Workflow Activities.

Solution

Release lock memory during Workflow Activity completion.

Fix Scheduler continuously growing in memory
Problem

Scheduler would continuously grow in memory when under heavy usage, for example using Workflows.

Impact

Scheduler would eventually use all available memory on the node or cgroup, causing an OOM crash.

Root cause

Etcd does not automatically Defragment after compaction, causing unused memory to not be released.

Solution

Every 10 minutes, each Scheduler host will check whether the total memory is twice the size of used memory and if so, will defragment that host's Etcd database.

v1.15.2: Dapr Runtime v1.15.2

Compare Source

Dapr 1.15.2

This update includes bug fixes:

Fix Actor Invocation from non-Actor hosted Apps
Problem

When invoking an actor from an app which did not have the Actor state store configured, the actor invocation fails.

Impact

Applications were unable to invoke actors if the Actor state store was not scoped for that App ID.

Root cause

If daprd did not have an Actor state store configured, it did not connect to Placement.
This meant it did not have the address for the target Actor.

Solution

Daprd will always attempt to connect to Placement if a Placement address is configured.

Fix Scheduler memory leak
Problem

Scheduler would continually grow in memory during usage.

Impact

Scheduler would consume the entirety of memory on the host machine, or to it's cgroup limit, then OOM crash.

Root cause

A Go routine was doing being closed on connection sends.

Solution

Correctly close the Go routine on completion of the connection send.

v1.15.1: Dapr Runtime v1.15.1

Compare Source

Dapr 1.15.1

This update includes bug fixes:

Fix Dapr not honoring max-body-size when invoking actors
Problem

Issue reported here.
When an actor client attempts to invoke an actor with a payload size larger than 4Mb, the call fails with rpc error: code = ResourceExhausted desc = grpc: received message larger than max.

Impact

Users were unable to send actor messages with payloads larger than 4Mb.

Root cause

The Dapr actor gRPC client did not honor the max-body-size parameter that is passed to daprd.

Solution

The Dapr actor gRPC client is configured with the proper gRPC call options.

Fix sending Actor Reentrancy ID HTTP header when disabled
Problem

Calling this.StateManager.TryGetStateAsync() in the DotNet Actor SDK would return stale data during some invocation scenarios.

Impact

The latest Actor state data was not being correctly returned during some Actor invocation scenarios using the DotNet Actor SDK.

Root cause

When Reentrancy was disabled, the Actor Reentrancy ID HTTP header was still being sent to Actor HTTP servers.
The DotNet SDK uses the existence of this HTTP header in logic to determine what state should be returned to the Actor.

Solution

Don't send the Actor Reentrancy ID HTTP header ("Dapr-Reentrancy-Id") when Reentrancy is disabled.

v1.15.0: Dapr Runtime v1.15.0

Compare Source

Dapr 1.15

We're excited to announce the release of Dapr 1.15!

We would like to thank you all for your patience and also give our thanks to all the new and existing contributors who helped make this release happen.

If you're new to Dapr, visit the getting started page and familiarize yourself with Dapr.

Docs have been updated with all the new features and changes of this release. To get started with new capabilities introduced in this release, go to the Concepts and the Developing applications.

Please read the Breaking Changes carefully. If you're experiencing any issues, please report them on Discord. The following core maintainers are available to help you: @joshvanl, @​yaron2, @​cassie1coyle.

Note: This release contains a few Breaking Changes.

See this section on upgrading Dapr to version 1.15.

Acknowledgements

Thanks to everyone who made this release possible!

@​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

Special thanks go to Rob J - You know who you are!

Highlights

These are the v1.15 release highlights:

Dapr Workflow (stable)

Dapr workflow makes it easy to write long running stateful applications using durable execution. You can try out Dapr workflow with the Quickstart Samples. The ability to author and run workflows is now stable. This includes the Dapr runtime along with the Dapr .NET, Java, Python, Go and Javascript SDKs.

The workflow runtime engine has undergone a major overwrite to achieve substantial performance and scalability improvements, as well as reliability and stability traits that are required to run mission critical apps at massive scale. Workflows now support dynamically scaling your Workflow applications from 0 to many replicas, whilst maintaining durability of your tasks at runtime.

Dapr Actors

The Actor runtime engine has had a rewrite in its implementation. Although no changes have been made to the API surface of Actors, this overhaul significantly improves the reliability of handling Actors at scale and in dynamically scaling environments. This work has also been instrumental in making the, now stable, Workflows engine dynamic and durable.

The Actor runtime implementation is now capable of being extended upon to implement new highly requested Actor APIs, or even targeting new Actor targets beyond your app and Workflows in future.

Scheduler Service (stable)

The Scheduler service is the control plane service used to schedule jobs, running in self-hosted mode or on Kubernetes. It is installed when using the Dapr CLI and is the service responsible for managing scheduled jobs. The Scheduler service is now stable

  • Note: 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. 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
Conversation API (alpha)

A new Conversation API (alpha) reduces the complexity of interacting with large language models (LLM) at scale, providing a consistent API to talk to LLM providers. With the Conversation API, you can:

  • Send prompt and responses LLMs including Anthropic, AWS Bedrock, Hugging Face, Mistral, OpenAI and DeepSeek
  • Enable critical performance and security functionality, including prompt caching to reduce the number of calls and PII obfuscation to scrub PII data.

The Go, .NET, and Rust SDKs have the conversation API implemented as part of this release. As with all APIs, Dapr provides observability by issuing metrics for your LLM interactions.

Learn more about the Conversation API, or dive into a .NET or Go Quickstart.

SDK Improvements
.NET SDK

The .NET SDK added support for the Jobs, Conversation and streaming pub/sub APIs.

  • Support for services targeting .NET 9.
Python SDK

The Python SDK added support for streaming pub/sub APIs and the Conversation API.

  • Added Mock actors for unit testing.
  • The Dapr Client workflow functions were deprecated in favor of the DaprWorkflowClient. (TBD need to point to docs/example)
  • The default timeout for wait_for_orchestration_start and wait_for_orchestration_completion was changed from 60 seconds to no timeout
  • Support for Python 3.8 was removed and support for Python 3.13 was added.
Java SDK

The Java SDK added a Spring Boot integration, including Spring Boot Starters for interacting with the Dapr APIs and testing capabilities using Testcontainers. The Spring Boot integration now supports:

  • DaprClient and DaprWorkflowClient bean injection
  • Spring Data CrudRepository support using Dapr StateStore + Bindings
  • Spring Messaging support using Dapr PubSub APIs
  • Dapr Workflows support with automatic Workflows and Activities registration and support for bean injection
  • Testcontainers integration providing DaprContainer and PlacementServiceContainer
Javascript SDK

The JavaScript SDK added support for the Pause, Resume and SetStatus methods on the Workflow API. Progress is being made to improve the JavaScript SDK documentation.

Go SDK
  • The Go SDK added support for the Conversation API.
  • Dead Letter Topic support for subscriptions is now available.
  • Workflow authoring and management with this SDK are 'stable'.
    • Retry policies have been added.
    • Custom statuses on workflows can be set.
    • Purge options are now supported.
    • An ID re-use policy can now be applied.
  • Streaming subscriptions now re-connect automatically on unknown/unavailable grpc connection statuses.
Rust SDK (alpha)

The Rust SDK added support for the Conversation API support. Progress is being made in other areas towards a refactor for beta/stable state.

CLI and Env Vars
Components
New components

The following new components have been added

Component improvements
Kubernetes improvements
List of issues in this release
Dapr Runtime
  • ADDED Status filter for service invocation resiliency 6683
  • FIXED W3C Correlation of Event Publishing 7275
  • ADDED api: add Conversation API 7858
  • FIXED Exception thrown during Job schedule API call 7897
  • ADDED Actor service failure detection by Placement Service is now configurable (docs) 7955
  • ADDED Dapr Actor Processing in FIFO 7956
  • ADDED securityContext/runAsGroup and securityContext/runAsUser as sidecar injector options. 7958
  • BREAKING The scheduler is now used by default for actor reminders. Migration is required from an existing statestore-backed reminder system. 8045
  • FIXED Update Dapr Chart image.name README with current values 8051
  • FIXED Update the default value of app.kubernetes.io/managed-by 8052
  • FIXED Add apiVersion and kind to volumeClaimTemplates 8067
  • FIXED Runtime outputs memory address on startup for metrics spec 8169
  • ADDED Enable PII scrubbing for LLM inputs/outputs 8189
  • FIXED Moved helm priority class declaration in the right position of dapr_placement_statefulset.yaml manifests 8205
  • ADDED Provide ability to configure dapr grpc ports through dapr pod annotations. 8227
  • ADDED sftp component register 8263
  • FIXED Expose localhost on scheduler locally. 8412
  • ADDED Daprd Env Variables from Secrets 8180
  • FIXED Fixes placement service dissemination failure on stream hang 8326
  • ADDED Exposed raft and placement service leadership status as metrics (dapr_placement_leader_status and dapr_placement_raft_leader_status)8245
  • FIXED Fix Scheduler readOnlyRootFilesystem: true 8465
  • ADDED Otel tracing support to add headers for token authentication 8143
Dapr CLI
  • UPDATED Update CLI to runtime 1.14 and Go 1.22 1440
  • FIXED fix: population of the schedulerhostaddress in self-hosted mode 1475
  • UPDATED Pin go to 1.23.5 1477
Components
  • FIXED Properties and System properties missing when subscribing to Azure Events pubsub 2530
  • ADDED Sftp binding 3206
  • FIXED fatal error: unlock of unlocked mutex 3443
  • FIXED snssqs: fix consumer starvation 3479
  • FIXED Error net/http: invalid header field value for "__key\ in Dapr version 1.13.5 on Windows machine 3503
  • FIXED EventHub component delivers out of order messages (pubsub, binding) 3568
  • FIXED Event Hub binding should allow transforming ALL custom properties as headers, not just iot-hub systemproperties 3570
  • FIXED Azure Event Hub binding stops working if storage act returns 503 3573
  • FIXED [Mongo] - Serialization issues with Transaction upsert operation 3575
  • FIXED Fix Azure blob storage metadata header value sanitization 3581
  • FIXED Pulsar key_shared functionality. 3601
  • UPDATED Promoted AWS Secrets Manager secret store component to Beta 3504
.NET SDK
  • ADDED [actors] Incremental source generator for actors 1334
  • ADDED [client] Optional DI lifecycle change 1408
  • ADDED [conversation] Add .NET client for LLM Conversations support 1382
  • ADDED [docs] Add Jobs API .NET client example to doc 1322
  • ADDED [examples] Added workflow sample: Task chaining 1387
  • ADDED [examples] Added workflow sample: Monitor 1388
  • ADDED [examples] Added workflow example: External interaction 1389
  • ADDED [examples] Added workflow sample: Async operations 1394
  • ADDED [examples] Added workflow sample: Sub-workflows 1395
  • ADDED [examples] Added workflow example: Fan out/fan in 1396
  • ADDED [jobs] Add .NET client for Dapr Jobs API 1384
  • ADDED [pubsub] Add .NET client for pub/sub support - streaming subscriptions 1381
  • ADDED [invoke] Adding instance-based CreateInvokableHttpClient 1319
  • ADDED [misc] Support .NET 9 1404
  • ADDED [misc] Support gRPC richer error model 1436
  • ADDED [state] Support for saving and retrieving state as byte arrays without serialization to and from JSON 906
  • ADDED [state] Added methods in state API supports for saving and reading binary data 1116
  • ADDED [tests] Validate method invocation with extraneous headers 1355
  • ADDED [tests] Provide the ability to Mock WorkflowActivityContext 1358
  • ADDED [tests] Added unit test to Secrets API test suite 1347
  • ADDED [workflow] Added option to override GrpcChannelOptions when adding DaprWorkflow (#​7218) 1244
  • ADDED [workflow] Adds workflow replay-safe logger 1434
  • FIXED [actors] Multiple methods per interface with JSON serialization doesn´t work 1343
  • FIXED [actors] Actor source generator generates invalid code for generic interfaces 1419
  • FIXED [actors] Actor reminders should return null if not registered 1468
  • FIXED [client] DI registration not completing as expected 1386
  • FIXED [client] Prioritize retrieval of environment variables from IConfiguration instead of directly 1363
  • ADDED [client] Additional lifecycle registration changes 1410
  • FIXED [actors] Actor reminders should return null if not registered 1468
  • FIXED [config] BREAKING CHANGE Preserve comparer of the original dictionary 935
  • FIXED [config] DaprConfigurationStoreProvider not applying case-insensitive configuration updates correctly. 934
  • FIXED [conversation] Conversation builder consistency changes 1423
  • FIXED [conversation] Conversation SDK updated to reflect changes to protos 1469
  • FIXED [crypto] Crypto ReadOnlyMemory decryption times out 1443
  • FIXED [jobs] Single-invocation point-in-time job fails to register 1455
  • FIXED [jobs] Invoked job not populating payload from inbound request 1457
  • FIXED [jobs] Fix for GetJobAsync deserialization issue 1461
  • FIXED [jobs] Fix for duration-based scheduling being incorrected formatted 1462
  • FIXED [jobs] Fix Jobs mapping handler to properly assign cancellation tokens per-request instead of globally 1474
  • FIXED [misc] Remove unused using statements. 1313
  • FIXED [misc] Remove unused variables 1314
  • FIXED [misc] Removes floating classes and introduces Dapr.Common project 1365
  • FIXED [misc] Fixed security advisory updates across dependencies (transitive and direct) 1366
  • FIXED [pubsub] Fixes + unit tests for streaming PubSub implementation 1415
  • FIXED [pubsub] NullReferenceException when trying to sub with streaming subscriptions 1412
  • FIXED [workflow] Bug during workflow client registration 1385
  • FIXED [workflow] Added missing workflow status branch 1348
  • DOCS [docs] Updating actor serialization documentation 1371
  • DOCS [docs] Document That Users Can Self-Assign Issues 1149
  • DOCS [docs] Improvement of the dotnet-contributing files 1330
  • DOCS [docs] Updated prereqs to specify .NET 6 and .NET 8 in v1.15 1398
  • DOCS [docs] Updating Dapr .NET SDK documentation 1409
  • DOCS [docs] Update Workflow to stable 1418
  • DOCS [examples] Modify workflow sample README 1210
  • DOCS [examples] Simplfying Crypto example 1442
  • UPDATED [misc] Consolidated version of nugets used in test project 1315
  • UPDATED [misc] Updated protos to latest in dapr/dapr 1420
  • UPDATED [misc] Extracted Protos out to common project 1367
  • UPDATED [misc] Migrate from FluentAssertions 1450
Go SDK
  • FIXED Fixed superfluous bug 619
  • BREAKING Remove obsolete workflow methods 634
  • ADDED Conversation API support 645
  • UPDATED Update Dependencies - fix sec vulnerability 658
  • UPDATED chore: bump validation dapr runtime to 1.15.0-rc.2 667
  • UPDATED release: version bump and tidy 673
  • UPDATED Bump gover, tag, x/deps and dapr 674
  • UPDATED ci: include pre-release label for RCs 675
  • UPDATED Adding the name of the failing activity for more detail 678
Java SDK
  • BREAKING Drop Spring Boot 2.x support as it is no longer supported by the spring community 1039
  • ADDED Support Spring Boot baseline of 3.2.x 1050
  • ADDED Include metadata on actor method invocation to support headers. 1071
  • ADDED Streaming Subscription Support 1072
  • ADDED Spring Boot enhancements, Spring Data Repository, Testcontainers 1089
  • ADDED Dapr Container default wait strategy based on healthz/outbound [1105](https://redirect.

Configuration

📅 Schedule: Branch creation - Between 06:00 PM and 09:59 PM, only on Friday ( * 18-21 * * 5 ) in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the deps label Jan 24, 2025
@renovate renovate bot requested a review from a team as a code owner January 24, 2025 17:08
@renovate renovate bot requested review from FoseFx and PaulKalho and removed request for a team January 24, 2025 17:08
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 7 times, most recently from 468087e to ff76b76 Compare February 3, 2025 20:58
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 4 times, most recently from 801dc04 to 43409ce Compare February 10, 2025 20:22
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 8 times, most recently from c4ebd61 to 41c6618 Compare February 17, 2025 19:31
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 4 times, most recently from fcc4d64 to e976775 Compare February 26, 2025 18:01
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 2 times, most recently from e121447 to 493d6c9 Compare February 27, 2025 21:36
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 4 times, most recently from 5937c6a to da5e3e6 Compare March 26, 2025 22:50
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 5 times, most recently from a8a10d2 to 32c600f Compare April 3, 2025 21:34
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 7 times, most recently from 0d4fc5a to 7c2a7be Compare April 14, 2025 17:00
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 7 times, most recently from 677784e to 5a654cf Compare April 21, 2025 22:31
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch 5 times, most recently from 0d6c7b1 to 4e0120a Compare April 25, 2025 00:14
@renovate renovate bot force-pushed the renovate/all-non-major-regex-dependencies branch from 4e0120a to 0ddc369 Compare April 25, 2025 19:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants