Skip to content
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

fix(deps): update all non-major gomod dependencies #783

Merged
merged 5 commits into from
Aug 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 21, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/dapr/dapr v1.13.4 -> v1.14.0 age adoption passing confidence
github.com/go-chi/chi/v5 v5.0.12 -> v5.1.0 age adoption passing confidence
github.com/ory/client-go v1.11.7 -> v1.14.3 age adoption passing confidence
github.com/redis/go-redis/v9 v9.5.3 -> v9.6.1 age adoption passing confidence
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 -> v0.53.0 age adoption passing confidence
go.opentelemetry.io/otel v1.27.0 -> v1.28.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.28.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 -> v1.28.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/zipkin v1.27.0 -> v1.28.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk v1.27.0 -> v1.28.0 age adoption passing confidence
go.opentelemetry.io/otel/trace v1.27.0 -> v1.28.0 age adoption passing confidence
golang.org/x/net v0.26.0 -> v0.28.0 age adoption passing confidence
golang.org/x/oauth2 v0.21.0 -> v0.22.0 age adoption passing confidence
golang.org/x/text v0.16.0 -> v0.17.0 age adoption passing confidence
google.golang.org/grpc v1.64.0 -> v1.65.0 age adoption passing confidence

Release Notes

dapr/dapr (github.com/dapr/dapr)

v1.14.0: Dapr Runtime v1.14.0

Compare Source

Dapr 1.14

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

We would like to extend 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.

Note: This release contains a few breaking changes.

See this section on upgrading Dapr to version 1.14.

Highlights

These are the new feature highlights for the v1.14 release:

Jobs API and Scheduler service (preview)

Many applications require job scheduling, or the need to take an action in the future. The new jobs API is an orchestrator for scheduling these future jobs, either at a specific time or for a specific interval. For example job scheduling is useful in scenarios such as automated database backups, regular Data Processing and ETL, email notifications, maintenance tasks and system updates and batch processing to name a few.

The Dapr’s Jobs API ensures the tasks represented in these types of scenarios are performed consistently and reliably, improving efficiency and reducing the risk of errors. Think of this as a scalable version of the popular Dapr Cron Binding, now as a first class API available via the Dapr SDKs.

You can read more in the Jobs API overview documentation, or dive into a Quickstart Go code example. Support for Jobs is also in the alpha Rust-SDK!

Scheduler service (preview)

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

Increased throughput and scalability for actors and workflows (preview)

The new Scheduler service can optionally be used as the backend for actor reminders and enables increased throughput and lower latency for both actors and workflows. To use the scheduler service for actors and workflows, simply enable it in a Dapr Configuration resource like this:

apiVersion: dapr.io/v1alpha1
kind: Configuration
metadata:
  name: featureconfig
spec:
  features:
    - name: SchedulerReminders
      enabled: true

Important note: Existing reminder data is not be compatible with the scheduler service. The scheduler service should be used only for new actor and workflow reminders

Streaming subscriptions (preview)

Streaming subscriptions are a new type of subscription written in code. Streaming subscriptions are dynamic, meaning they allow for adding or removing subscriptions at runtime. They do not require a subscription HTTP endpoint in your application (which is required by the current programmatic and declarative subscriptions), making them easy to configure in code. Streaming subscriptions also do not require an app to be configured with the sidecar to receive messages. These are an incredibly easy way to configure topic subscriptions for your app. In this release streaming subscriptions are available in the Go SDK.

Actor multi-tenancy with namespacing

Namespacing in Dapr provides isolation, and thus multi-tenancy. With actor namespacing, the same actor type can be deployed into different namespaces. You can then call instances of these actors within the same namespace. Each namespaced actor deployment must use its own separate state store, especially if the same actor type is deployed into different namespaces.

HTTP metrics filtering with path matching

When invoking Dapr using HTTP, metrics are created for each requested method by default. For example metrics include error rates, latency and throughput numbers. This can result in a high number of metrics being reported, known as high cardinality, which can impact memory usage and CPU for your application.

HTTP metric path matching allows you to manage and control the cardinality, or the amount, of HTTP metrics in Dapr. This is an aggregation of metrics, so rather than having a metric for each event, you can reduce the number of metrics events and report an overall number.

Outbox message projections (stable)

The transactional outbox feature allows you to commit state and then send a message in a single transaction and can be used with a broad combination of pub/sub brokers and databases. The transactional outbox is now stable in v1.14 release.

Now in this release, when using the outbox pattern, you can send a different payload to the pub/sub broker than the one saved in the database. These are called outbox message projections, and can be shaped in any way you need.

Service invocation for non-Dapr endpoints (stable)

The ability to invoke non-Dapr endpoints using the Dapr Service invocation APIis now stable.

Dapr Shared (new preview repo in Dapr org)

Although not part of the Dapr runtime v1.14 release, Dapr Shared provides alternative deployment choices for Dapr.

Dapr, by default, is injected as a sidecar to enable the Dapr APIs for your applications for the best availability and reliability. Dapr Shared enables two alternative deployment strategies to create Dapr applications using a Kubernetes Daemonset for a per-node deployment or a Deployment for a per-cluster deployment.

For example, Dapr Shared can be used to reduce resource usage in a cluster or to make a simpler testing deployment environment.

Python SDK updates
  • The python-sdk now has support for the cryptography API.
  • The python-sdk now supports actor state TTL (timeouts)

Acknowledgements

Thanks to everyone who made this release possible!

@​aharonYK, @​akshaya-a, @​amardeep2006, @​andrejpk, @​andriisoldatenko, @​AnnuCode, @​antoniomaria, @​agoktugaydin, @​alundiak, @​andrew-hillier, @​antontroshin, @​artur-ciocanu, @​artursouza, @​avoidalone, @​berndverst, @​bibryam, @​bhagya05, @​bkc, @​bondz, @​c-thiel, @​cgillum, @​cicoyle, @​ckcd, @​cmendible, @​contributor, @​daixiang0, @​DeepanshuA, @​denisbchrsk, @​DropSnorz, @​ductnn, @​dwhiteddsoft, @​ecabrerar, @​Eileen-Yu, @​elena-kolevska, @​erwinkramer, @​evacchi, @​evhen14, @​fabistb, @​famarting, @​james-bartlett, @​filintod, @​guspan-tanadi, @​gralin, @​hhunter-ms, @​ibandhiya, @​imneov, @​ItalyPaleAle, @​jake-engelberg, @​jcchavezs, @​jjcollinge, @​jmprusi, @​joebowbeer, @​JoshVanL, @​Jossec101, @​kaibocai, @​KrylixZA, @​KentHsu, @​kindknow, @​ksachdeva, @​laurentkempe, @​m3nax, @​mahparaashley, @​marcoscale98, @​manojks1999, @​MattCosturos, @​MichaelHindley, @​mikeee, @​MO2k4, @​mohitpalsingh, @​moonorange, @​msfussell, @​mukundansundar, @​nadavv169, @​nathandl86, @​nelson-parente, @​nenikola, @​newbe36524, @​nikitasarawgi, @​olitomlinson, @​passuied, @​paulyuk, @​pdebruin, @​philliphoff, @​pravinpushkar, @​RafaelJCamara, @​robertojrojas, @​rochabr, @​ruokun-niu, @​Rutam21, @​RyanLettieri, @​sadath-12, @​salaboy, @​svdspradeep, @​SantoDE, @​shivam-51, @​shivamkm07, @​shubham1172, @​Shubhdeep02, @​sicoyle, @​Taction, @​thewilli, @​thompson-tomo, @​ThomasVitale, @​tmacam, @​toneill818, @​TomasEkeli, @​tlund101, @​umerkle, @​waltercoan, @​wardbeyens, @​WhitWaldo, @​willtsai, @​XavierGeerinck, @​yaron2, @​zedgell

New in this release

Dapr Runtime
  • ADDED New Jobs API + Scheduler Control Plane Service 7768
  • ADDED Support dynamic (on-demand) subscribe and unsubscribe of topics by user app 814
  • ADDED Support namespace isolation/multi-tenancy for Dapr Actors 3167 4711
  • ADDED [PROPOSAL] Identity Management Overhaul 5756
  • RESOLVED [Proposal]: Actor State TTL 5899
  • Change Dapr state store encryption to use AES in CBC mode 6027
  • RESOLVED Incremental improvements to Actor Reminders subsystem 6121
  • RESOLVED [Tracking issue] Actor subsystem improvements 6592
  • FIXED Placement server fails to disseminate placement tables 7031
  • CHANGED Removes legacy SPIFFE TLS clients and servers in favour of the new SPIRE TLS clients and servers 7037
  • CHANGED Remove the legacy port 80 from the sentry service 7084
  • FIXED Bug in runtime preventing outbox messages as cloudevent 7113
  • ADDED Hot-reloading for Dapr Subscriptions 7139
  • ADDED [Outbox] Allow override of CE fields on published event 7347
  • ADDED Subscription source indication in metadata response 7396
  • CHANGED Prioritized value of OTEL_SERVICE_NAME envvar over configuration if set 7451
  • FIXED Healthz overhaul 7518
  • CHANGED Change default cardinality to low for metrics 7522
  • ADDED Standardize max-body-size and read-buffer-size flags 7546
  • ADDED Update logging of "empty" 200 response for pub/sub messages to indicate success 7561
  • CHANGED Always tick renewal check every minute 7565
  • FIXED Parent-based tracing sampling has incorrect logic -- should behave differently on flag=0 vs Parent Span doesn't exist 7574
  • CHANGED Update protoc protobuffer transcompilers 7585
  • FIXED Operator logs gargage log 7607
  • ADDED Additional metrics data to differentiate DROP status messages. 7610
  • FIXED chore: fix some typos 7614
  • ADDED Operator: Component server side scope filtering 7615
  • ADDED Disk Loader: Scope filtering 7616
  • CHANGED Update logging of empty 200 response for pub/sub messages 7620
  • ADDED [observability]: allow configurable bucket settings for distributions 7641
  • FIXED security: up dependencies to fix security vulnerabilities 7681
  • ADDED Update holopin.yml to award runtime badge to contributors 7685
  • FIXED chore: fix function names in comment 7687
  • UPDATED OpenTelemetry specification to v1.25 7703
  • CHANGED Bump to Go 1.22 - Pin latest contrib with Go 1.22 7713
  • ADDED Allow outbox published data to be different than transaction data 7717
  • CHANGED HTTP monitoring method parsing in low cardinality cases 7756
  • FIXED high cardinality metrics are shown for actors but increasedCardinality is set to false 7736
  • ADDED Standardize readme shield badges 7744
  • ADDED Subscriptions: bi-directional subscription streaming- subscribe on no healthz 7757
  • FIXED Includes app API token for all requests from sidecar to app 7774
  • FIXED chore: update create namespace 7803
  • FIXED Workflow actors backend, invalid start succeeds on retries 7811
  • FIXED Doc: Update wfengine README.md 7845
  • FIXED Doc: update protoc version 7857
Dapr CLI
  • FIXED Bug in runtime (or documentation). 1023
  • Add convenience commands for placement/sentry start via dapr CLI 1032
  • ADDED support for full E2E tests on Windows 1078
  • FIXED Improve console logs of daprd in error scenarios for Multi App Run 1257
  • UPDATED Bump golang.org/x/net from 0.21.0 to 0.23.0 1401
  • FIXED Scheduler service is not started in self-hosted mode 1416
  • FIXED dapr status -k command does not show the scheduler service. 1433
  • RESOLVED dapr init -k --dev is in crash loop on redis init, failing redis component load 1436
Components
  • FIXED Kafka pubsub propagates partition key to DLT 2227
  • ENABLED signed url in GCP Storage Bucket 2862
  • ADDED support for Azure Cache for Redis in all Redis components 3088
  • ADDED RabbitMQ subscription argument to enable Single Active Consumer 3120
  • ADDED DeleteWithPrefix support for SQLite 3265
  • ADDED AWS IAM auth for postgresql components 3324
  • OPTIMIZED Kafka component to use a single Sarama client 3336
  • UPDATED Azure Service Bus to enforce autodeleteonidlesec minimum of 300 3340
  • FIXED recovery of interrupted eventhubs subscriptions 3344
  • UPDATED AWS SD version to support SQS over AWS JSON Protocol 3354
  • UPDATED http-wasm host to v0.6.0. 3360
  • FIXED context used in Kafka consumer 3366
  • FIXED Kafka pubsub's partition key propagation to DLT 3368
  • ADDED S3 storage class metadata 3369
  • ADDED Kafka producer config capabilities for connections 3371
  • ADDED support to configure heartbeat interval and session timeout on kafka's consumer 3375
  • FIXED all wasm guests build and update with TinyGo 0.28.1 3377
  • UPDATED wazero to v1.7.0 3378
  • FIXED Kafka's possible nil pointer error on close 3383
  • FIXED bug with new Avro conversion when message values are NULL 3388
  • UPDATED dependencies to fix security vulnerabilities 3390
  • FIXED CosmosDB state store's SaveBulkStateAsync() throwing context deadline exceeded exception 3399
  • FIXED CosmosDB for latest API version 3411
  • REMOVED unnecessary loglines 3412
  • FIXED metadata capitalization 3413
  • ADDED configurable ackDeadline to GCP Pub/Sub component 3422
  • ADDED support for Redis private certificates 3429
  • FIXED fatal error: concurrent map writes 3430
  • CREATED metadata for bindings.aws.sns 3432
  • ADDED AWS SNS metadata schema 3433
  • ADDED support for ApplicationProperties in subscriptions for Azure Service Bus 3436
  • ADDED support for configurable MaxOutstanding* settings in GCP pubsub 3441
  • FIXED Kafka bulk publisher 3445
  • FIXED duplicate key violating unique restraint in Postgres state stores 3446
  • FIXED incorrect metadata name/title for pubsub.solace.amqp 3451
  • UPDATED HTTP binding to use Go's default transport 3466
  • UPDATED vulnerable dependencies 3469
  • ADDED EntraID auth support to all Redis components 3470
  • ADDED Azure Auth for all Redis Components 3471
  • FIXED MQTT3 component blocking shutdown 3501
Dashboard
  • ALLOWS annotations to be set on ingress 271
  • UPDATED Go to 1.21 and dependencies 273
  • UPDATED to Dapr 1.13 and recent client-go 276
.NET SDK
  • ADDED k8s deployment yaml to demoactor sample 96
  • ADDED option to set a timeout for service invocation 1007
  • REMOVED redundant dependencies 1239
  • UPDATED handling of DAPR_GRPC_ENDPOINT 1254
  • FIXED GetBulkStateAsync to return null items for missing keys 1255
  • FIXED Dapr Actor startup in AspNetCore - Issue in .NET 8 1256
  • REMOVED polyfill packages 1258
  • ADDED ActorReference creation from the ActorBase class informations 1277
  • ADDED DaprClient dependency injection extension overload to facilitate registration with dependencies 1288
  • ADDED passing of query string parameters on method invocation 1303
  • UPDATED Dapr runtime and .NET reference updates. 1323
  • UPDATED Protos for Dapr 1.14 1327
Go SDK
  • ADDED Dependabot added in workflow. 531
  • ADDED Tests for stateManagerCtx 558
  • ADDED Implement distributed scheduler building block (alpha) 561
  • ADDED Implement distributed scheduler building block 562
  • CHANGED make workflow client struct public 577
  • CHANGED removed unnecessary warnings from actor reflection 586
  • CHANGED Bump google.golang.org/grpc from 1.64.0 to 1.65.0 590
Java SDK
  • ADDED Auto-detection of ipv4 loopback and ipv6 loopback for daprd communication. 218
  • ADDED HTTP code to DaprException 1020
  • UPDATED handling of DAPR_GRPC_ENDPOINT to support enhanced spec 1028
  • FIXED State serializer to use content type when saving actor states. 1033
  • ADDED Metadata to DaprClient 1049
  • UPDATED SDK to implement a single client and add gRPC invoke helper. 1051
  • EXPANDED Metadata response 1055
  • DELETED DaprHTTPClient for actors. 1056
Python SDK
  • RESOLVED [Crypto] Implement support for EncryptAlpha1/DecryptAlpha1 APIs 548
  • RESOLVED Preview Feature Support: Add Actor State TTL support 560
  • RESOLVED change call_child_workflow to pass correct wf name to durabletask worker 616
  • ADDED Implement retry and timeout policy for both grpc and http based clients 676
  • RESOLVED [BUG] DAPR_HEALTH_TIMEOUT as environment variable is not converted to numerical value 688
  • RESOLVED Update the holopin.yaml to use the sdk badge 693
  • FIXED .devcontainer.json configuration 702
  • RESOLVED Standardize README shield badges 710
  • ADDED Support for user-supplied actor_factory callable. 713
  • RESOLVED [BUG] configuration api returns unexpected type 720
  • RESOLVED [Feature] Health checks for dapr-ext-grpc 722
Rust SDK
  • DOCUMENTED Clarify "WIP" Status 41
  • CHANGED Move the DAPR GRPC port inside client 54
  • ADDED Procedural Macros For Pub Sub 87
  • ADDED Derive Clone for Client 92
  • ADDED Feature: Enable query state API 116
  • ADDED Implement Bulk Secret API 122
  • ADDED Implement bulksecret retrieval 123
  • DOCUMENTED Initialise Rust-SDK Docs 125
  • FIXED minor changes to github templates 132
  • ADDED Cryptography API support to the client 133
  • ADDED Dependency management 146
  • FIXED Repository bot no longer returns an error for non-assign comments and also … 149
  • DOCUMENTED Initialise docs 181
  • UPDATED chore: bump to rc.4 195
  • ADDED feat: Jobs/Scheduler API 196
JavaScript SDK
  • FIXED "TypeError: Converting circular structure to JSON" while using custom winston logger service 488
  • FIXED Update the holopin.yaml to use the sdk badge 589
Quickstarts
  • ADDED Go SDK and Go Http Quickstart for Jobs API 1026
  • FIXED Javascript Quickstart Tests/Checks FAIL (timing / sidecar not found?) 1047
  • FIXED Tutorials Tests/Checks FAIL (dapr app not ready / timing) 1048
  • UPDATED Changing Dapr runtime version to 1.13.5 to support test efforts 1049
  • FIXED Fixes Python test failure on Configuration API quickstart 1050 1051
  • FIXED fix: pub_sub javascript npm audit issues 1055
  • DOCUMENTED Updating Readme to favor kubectl based deploy vs. multi app run 1057

Upgrading to Dapr 1.14

To upgrade to this release of Dapr, follow the steps here to ensure a smooth upgrade. You know, the one where you don't get red errors on the terminal... we all hate that, right?

Local Machine / Self-hosted

Uninstall Dapr using the CLI you currently have installed. Note that this will remove the default $HOME/.dapr directory, binaries and all containers dapr_redis, dapr_placement and dapr_zipkin. Linux users need to run sudo if docker command needs sudo:

dapr uninstall --all

For RC releases like this, download the latest and greatest release from here and put the dapr binary in your PATH.

Once you have installed the CLI, run:

dapr init --runtime-version=1.14

Wait for the update to finish, ensure you are using the latest version of Dapr(1.14) with:

$ dapr --version

CLI version: 1.14
Runtime version: 1.14
Kubernetes
Upgrading from previous version

You can perform zero-downtime upgrades using both Helm 3 and the Dapr CLI.

Upgrade using the CLI

We've got some handy install scripts available: https://docs.dapr.io/getting-started/install-dapr-cli/ making sure to specify 1.14.0 as the CLI version.

Alternatively - download the latest release from here and put the dapr binary in your PATH.

To upgrade Dapr, run:

dapr upgrade --runtime-version 1.14 -k

To upgrade with high availability mode:

dapr upgrade --runtime-version 1.14 --enable-ha=true -k

Wait until the operation is finished and check your status with dapr status -k.

All done!

Note: Make sure your deployments are restarted to pick the latest version of the Dapr sidecar

Upgrade using Helm

To upgrade Dapr using Helm, run:

helm repo add dapr https://dapr.github.io/helm-charts/
helm repo update

helm upgrade dapr dapr/dapr --version 1.14 --namespace=dapr-system --wait

Wait until the operation is finished and check your status with dapr status -k.

All done!

Note: Make sure your deployments are restarted to pick the latest version of the Dapr sidecar

Starting a fresh install on a cluster

Please see how to deploy Dapr on a Kubernetes cluster for a complete guide to installing Dapr on Kubernetes

You can use Helm 3 to install Dapr:

helm repo add dapr https://dapr.github.io/helm-charts/
helm repo update

kubectl create namespace dapr-system

helm install dapr dapr/dapr --version 1.14 --namespace dapr-system --wait

Alternatively, you can use the latest version of CLI:

dapr init --runtime-version=1.14 -k
Post installation

Verify the control plane pods are running and are healthy:

$ dapr status -k
  NAME                   NAMESPACE    HEALTHY  STATUS   REPLICAS  VERSION  AGE  CREATED
  dapr-sidecar-injector  dapr-system  True     Running  1         1.14   15s  2024-07-23 13:07.39
  dapr-sentry            dapr-system  True     Running  1         1.14   15s  2024-07-23 13:07.39
  dapr-operator          dapr-system  True     Running  1         1.14   15s  2024-07-23 13:07.39
  dapr-placement         dapr-system  True     Running  1         1.14   15s  2024-07-23 13:07.39
  dapr-scheduler         dapr-system  True     Running  1         1.14   15s  2024-07-23 13:07.39

After Dapr 1.14 has been installed, perform a rolling restart for your deployments to pick up the new version of the sidecar.
This can be done with:

kubectl rollout restart deploy/<deployment-name>

Breaking changes

Java SDK
  • ADDED State serializer content type when saving actor states. 1033
    • This change can make data to be saved in a different format in the state store, causing previous data not to be read. It is recommended for users to test the new SDK using non-production state store where data was saved with the previous SDK version to confirm it will not cause issues.
Actor placement (cross-namespace actor invocation)

Actors are now namespaced, meaning that cross-namespace actor invocation is no longer supported. You must ensure that all actor invocations occur within the same namespace.

Deprecation Notices

None.

v1.13.5: Dapr Runtime v1.13.5

Compare Source

Dapr 1.13.5

Updated dependencies

Updated multiple dependencies to address reported vulnerabilities.
Currently, none of the vulnerabilities in the updated dependencies are known to be exploitable in Dapr.
Update to accomodate users that need to comply with automated vulnerability scanning tools.

go-chi/chi (github.com/go-chi/chi/v5)

v5.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.0.14...v5.1.0

v5.0.14

Compare Source

v5.0.13

Compare Source

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.0.12...v5.0.13

ory/client-go (github.com/ory/client-go)

v1.14.3

Compare Source

v1.14.2

Compare Source

v1.14.1

Compare Source

v1.14.0

Compare Source

v1.13.10

Compare Source

v1.13.6

Compare Source

v1.13.4

Compare Source

v1.13.3

Compare Source

v1.13.2

Compare Source

v1.13.1

Compare Source

v1.13.0

Compare Source

v1.12.2

Compare Source

v1.12.1

Compare Source

v1.12.0

Compare Source

v1.11.12

Compare Source

v1.11.11

Compare Source

v1.11.10

Compare Source

redis/go-redis (github.com/redis/go-redis/v9)

v9.6.1: 9.6.1

Compare Source

Changes

9.6

This release contains all new features from version 9.6.

🚀 New Features
  • Support Hash-field expiration commands (#​2991)
  • Support Hash-field expiration commands in Pipeline & Fix HExpire HExpireWithArgs expiration (#​3038)
  • Support NOVALUES parameter for HSCAN (#​2925)
  • Added test case for CLIENT KILL with MAXAGE option (#​2971)
  • Add support for XREAD last entry (#​3005)
  • Reduce the type assertion of CheckConn (#​3066)

9.6.1

In addition minor changes were performed to retract version 9.5.3 and 9.5.4 that were released accidentally.

🧰 Maintenance
🎁 Package Distribution
  • Retract versions 9.5.3 and 9.5.4 (#​3069)

Contributors

We'd like to thank all the contributors who worked on this release!

@​LINKIWI, @​b1ron, @​gerzse, @​haines, @​immersedin, @​naiqianz, @​ofekshenawa, @​srikar-jilugu, @​tzongw, @​vladvildanov, @​vmihailenco and @​monkey92t

v9.6.0: 9.6.0

Compare Source

Changes

🚀 New Features

  • Support Hash-field expiration commands (#​2991)
  • Support Hash-field expiration commands in Pipeline & Fix HExpire HExpireWithArgs expiration (#​3038)
  • Support NOVALUES parameter for HSCAN (#​2925)
  • Added test case for CLIENT KILL with MAXAGE option (#​2971)
  • Add support for XREAD last entry (#​3005)
  • Reduce the type assertion of CheckConn (#​3066)

🛠️ Improvements

This release includes support for Redis Community Edition (CE) 7.4.0, ensuring compatibility with the latest features and improvements introduced in Redis CE 7.4.0.

🧰 Maintenance

  • chore(deps): bump golangci/golangci-lint-action from 4 to 6 (#​2993)
  • Avoid unnecessary retry delay in cluster client following

Configuration

📅 Schedule: Branch creation - "* 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 becomes conflicted, 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 requested a review from a team as a code owner June 21, 2024 19:32
@renovate renovate bot added the deps label Jun 21, 2024
@renovate renovate bot requested review from FoseFx and PaulKalho and removed request for a team June 21, 2024 19:32
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 4 times, most recently from bcca5fe to f43e9ef Compare June 29, 2024 01:49
Copy link
Contributor Author

renovate bot commented Jun 29, 2024

ℹ Artifact update notice

File name: libs/common/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 7 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
github.com/go-logr/logr v1.4.1 -> v1.4.2
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/trace v1.27.0 -> v1.28.0
go.opentelemetry.io/proto/otlp v1.2.0 -> v1.3.1
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
File name: services/ory-svc/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 16 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.13.4 -> v1.14.0
github.com/go-logr/logr v1.4.1 -> v1.4.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 -> v0.53.0
go.opentelemetry.io/otel v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/zipkin v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/sdk v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/trace v1.27.0 -> v1.28.0
go.opentelemetry.io/proto/otlp v1.2.0 -> v1.3.1
golang.org/x/oauth2 v0.21.0 -> v0.22.0
golang.org/x/text v0.16.0 -> v0.17.0
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
File name: libs/telemetry/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 2 additional dependencies were updated

Details:

Package Change
github.com/go-logr/logr v1.4.1 -> v1.4.2
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
File name: libs/hwdb/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 15 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.13.4 -> v1.14.0
github.com/go-logr/logr v1.4.1 -> v1.4.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 -> v0.53.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/zipkin v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/sdk v1.27.0 -> v1.28.0
go.opentelemetry.io/proto/otlp v1.2.0 -> v1.3.1
golang.org/x/oauth2 v0.21.0 -> v0.22.0
golang.org/x/sync v0.7.0 -> v0.8.0
golang.org/x/text v0.16.0 -> v0.17.0
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
File name: libs/hwutil/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 3 additional dependencies were updated

Details:

Package Change
golang.org/x/crypto v0.24.0 -> v0.26.0
golang.org/x/sys v0.21.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0
File name: libs/hwlocale/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 3 additional dependencies were updated

Details:

Package Change
golang.org/x/crypto v0.24.0 -> v0.26.0
golang.org/x/net v0.26.0 -> v0.28.0
golang.org/x/sys v0.21.0 -> v0.23.0
File name: services/user-svc/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 20 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.13.4 -> v1.14.0
github.com/go-logr/logr v1.4.1 -> v1.4.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 -> v0.53.0
go.opentelemetry.io/otel v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/zipkin v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/sdk v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/trace v1.27.0 -> v1.28.0
go.opentelemetry.io/proto/otlp v1.2.0 -> v1.3.1
golang.org/x/crypto v0.24.0 -> v0.26.0
golang.org/x/net v0.26.0 -> v0.28.0
golang.org/x/oauth2 v0.21.0 -> v0.22.0
golang.org/x/sync v0.7.0 -> v0.8.0
golang.org/x/sys v0.21.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
File name: services/tasks-svc/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 22 additional dependencies were updated

Details:

Package Change
github.com/cespare/xxhash/v2 v2.2.0 -> v2.3.0
github.com/dapr/dapr v1.13.4 -> v1.14.0
github.com/go-logr/logr v1.4.1 -> v1.4.2
github.com/redis/go-redis/v9 v9.5.3 -> v9.6.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 -> v0.53.0
go.opentelemetry.io/otel v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/zipkin v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/sdk v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/trace v1.27.0 -> v1.28.0
go.opentelemetry.io/proto/otlp v1.2.0 -> v1.3.1
golang.org/x/crypto v0.24.0 -> v0.26.0
golang.org/x/net v0.26.0 -> v0.28.0
golang.org/x/oauth2 v0.21.0 -> v0.22.0
golang.org/x/sync v0.7.0 -> v0.8.0
golang.org/x/sys v0.21.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
File name: services/task-svc/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 22 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
github.com/cespare/xxhash/v2 v2.2.0 -> v2.3.0
github.com/dapr/dapr v1.13.4 -> v1.14.0
github.com/go-logr/logr v1.4.1 -> v1.4.2
github.com/redis/go-redis/v9 v9.5.3 -> v9.6.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 -> v0.53.0
go.opentelemetry.io/otel v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/zipkin v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/sdk v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/trace v1.27.0 -> v1.28.0
go.opentelemetry.io/proto/otlp v1.2.0 -> v1.3.1
golang.org/x/crypto v0.24.0 -> v0.26.0
golang.org/x/net v0.26.0 -> v0.28.0
golang.org/x/oauth2 v0.21.0 -> v0.22.0
golang.org/x/sync v0.7.0 -> v0.8.0
golang.org/x/sys v0.21.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
File name: services/property-svc/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 20 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.13.4 -> v1.14.0
github.com/go-logr/logr v1.4.1 -> v1.4.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 -> v0.53.0
go.opentelemetry.io/otel v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/exporters/zipkin v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/metric v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/sdk v1.27.0 -> v1.28.0
go.opentelemetry.io/otel/trace v1.27.0 -> v1.28.0
go.opentelemetry.io/proto/otlp v1.2.0 -> v1.3.1
golang.org/x/crypto v0.24.0 -> v0.26.0
golang.org/x/net v0.26.0 -> v0.28.0
golang.org/x/oauth2 v0.21.0 -> v0.22.0
golang.org/x/sync v0.7.0 -> v0.8.0
golang.org/x/sys v0.21.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 -> v0.0.0-20240701130421-f6361c86f094

@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 7 times, most recently from 5b81bb6 to de7eadb Compare July 8, 2024 16:54
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 4 times, most recently from 78c2567 to 6537386 Compare July 18, 2024 12:47
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 2 times, most recently from 759f787 to 43d29ce Compare July 25, 2024 10:28
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch from 43d29ce to 461fec5 Compare July 26, 2024 13:18
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 6 times, most recently from 29b9947 to a75f8a8 Compare August 9, 2024 19:14
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 3 times, most recently from e7eca91 to 7dd51e8 Compare August 14, 2024 08:00
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch from 7dd51e8 to 6bd08bb Compare August 14, 2024 08:10
Copy link
Contributor Author

renovate bot commented Aug 14, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@FoseFx FoseFx merged commit af7fcff into main Aug 14, 2024
40 checks passed
@FoseFx FoseFx deleted the renovate/all-non-major-gomod-dependencies branch August 14, 2024 11:06
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.

1 participant