From 1ecd7e3c3c5ffa113bda92935eeda298bc1acc9c Mon Sep 17 00:00:00 2001 From: Joe Bowbeer Date: Sat, 13 Dec 2025 20:58:47 -0800 Subject: [PATCH 1/2] feat: add dapr/testcontainer-node Update Dapr container version to 1.16.4 --- modules/dapr/index.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/modules/dapr/index.md b/modules/dapr/index.md index de84450..156cb47 100644 --- a/modules/dapr/index.md +++ b/modules/dapr/index.md @@ -11,7 +11,7 @@ docs: maintainer: official example: | ```java - var dapr = new DaprContainer("daprio/daprd:1.16.0"); + var dapr = new DaprContainer("daprio/daprd:1.16.4"); dapr.start(); ``` installation: | @@ -19,10 +19,21 @@ docs: io.dapr testcontainers-dapr - 1.16.0 + 1.16.4 test ``` + - id: nodejs + url: https://github.com/dapr/testcontainer-node + maintainer: official + example: | + ```javascript + const dapr = await new DaprContainer("daprio/daprd:1.16.4").start(); + ``` + installation: | + ```bash + npm install @dapr/testcontainer-node --save-dev + ``` description: | Dapr is a CNCF and open-source project that enables developers with consistent application-level APIs to develop secure, scalable, and resilient cloud-native applications. --- From c93a0f990599a33153331e94715d9c55b1487b10 Mon Sep 17 00:00:00 2001 From: Joe Bowbeer Date: Sat, 17 Jan 2026 11:52:10 -0800 Subject: [PATCH 2/2] Update modules/dapr/index.md Co-authored-by: Andre Hofmeister <9199345+HofmeisterAn@users.noreply.github.com> --- modules/dapr/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dapr/index.md b/modules/dapr/index.md index 810b66c..708c4de 100644 --- a/modules/dapr/index.md +++ b/modules/dapr/index.md @@ -19,7 +19,7 @@ docs: io.dapr testcontainers-dapr - 1.16.4 + 1.16.0 test ```