Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
456330f
feat: allow specifying Redis Sentinel auth (#3905)
dani-maarouf Jul 30, 2025
78efc97
Merge release 1.15 to main (#3790)
antontroshin Jul 31, 2025
737b844
Enhance OpenAI to be Azure OpenAi compatible (#3918)
fabistb Jul 31, 2025
9088baa
update connection string handling (#3871)
adam6878 Jul 31, 2025
ff10bea
chore: Use base64 to store sqlserver state data (#3919)
javier-aliaga Aug 1, 2025
7e34cc7
feat: Add support for replicateSubscriptionState in Pulsar pubsub com…
pnagaraj80 Aug 1, 2025
20d7345
Update PR template (#3866)
cicoyle Aug 1, 2025
8d675f4
Conversation Tool Calling fix on echo and other minor fixes (#3930)
filintod Aug 7, 2025
d29c295
fix: 'ttlInSeconds' metadata key now respected when publishing to Azu…
aladd04 Aug 7, 2025
eb8fefd
chore: Move kafka to use aws sdk v2 (#3940)
javier-aliaga Aug 11, 2025
9c9e376
fix(common): add missing region and remove session token requirement …
mikeee Aug 12, 2025
e61effe
feat: add pubsub proper registrations (#3957)
sicoyle Aug 12, 2025
a47da8e
feat: crypto comp registration fixes (#3954)
sicoyle Aug 12, 2025
89e9e1c
feat: proper secretstore registration fixes (#3952)
sicoyle Aug 12, 2025
038ebb1
feat: lock comp registration fixes (#3953)
sicoyle Aug 12, 2025
517a3a5
feat: add middleware comp proper registrations (#3956)
sicoyle Aug 12, 2025
a347062
Revert "chore: Use base64 to store sqlserver state data" (#3966)
nelson-parente Aug 13, 2025
a71ca26
Added enpoint in configuration (#3931)
swatimodi-scout Aug 14, 2025
01747c7
fix: pin macos-14 (#3972)
nelson-parente Aug 14, 2025
5d4b864
fixed the kubernetes secret component for cryptography (#3971)
olitomlinson Aug 14, 2025
7a06090
fix: pubsub.azure.eventhubs status check (#3976)
mikeee Aug 18, 2025
6a90d6e
fix(tests): fix state.azure.tablestorage cert test (#3975)
mikeee Aug 18, 2025
4c93c90
fix(test): up ngrok version + fix silent failure on url parsing (#3969)
sicoyle Aug 18, 2025
e5c9192
fix: postgresql doc link fix (#3904)
Eileen-Yu Aug 18, 2025
506118f
feat: add state component registrations (#3951)
sicoyle Aug 18, 2025
608a1b0
feat: Add Redis Sentinel failover support to Redis lock component (#3…
inishchith Aug 20, 2025
3b9591e
Fix: Rebuild all testing wasm files with tinygo 0.34.0 (#3982)
acroca Aug 20, 2025
b01c4b4
Fix panic when processing incoming messages after close (#3984)
yaron2 Aug 20, 2025
6a45e8e
Supporting more properties for rabbitmq (#3806)
abossard Aug 20, 2025
ca1b620
fix: wasm timing issue with strict sandbox (#3987)
acroca Aug 21, 2025
ab1dd7f
Add Azure spiffe oidc auth profile (#3797)
jjcollinge Aug 21, 2025
1c09c95
FIX: Add options for Azure AD and AWS IAM in configuration.postgresql…
adegroff Aug 22, 2025
e37211d
feat: add nameresolution comps + fixes (#3955)
sicoyle Aug 22, 2025
42b3cee
feat: ensure endgame task comp registration + complete metadata bundl…
sicoyle Aug 22, 2025
b11b6da
feat: add binding metadata files plus fixes (#3950)
sicoyle Aug 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .build-tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,23 @@ You have two ways to run the CLI:
The list of available commands in this CLI is dynamic and is subject to change at any time. Each command, including the "root" one (no sub-command), are self-documented in the CLI, and you can read the help page by adding `--help`.

For example, `./build-tools --help` shows the full list of commands the CLI offers.

### check-component-registrations

Checks that all components in components-contrib are properly registered in dapr/dapr. This includes checking for:

- Registry files in dapr/pkg/components/
- Registration of specific components in dapr/cmd/daprd/components/
- Metadata files in component directories

Usage:
```bash
# Run from build-tools directory
go run . check-component-registrations

# Or using the compiled binary
./build-tools check-component-registrations
```

This command will scan all component types (conversation, state, secretstores, pubsub, bindings, configuration, nameresolution, middleware, cryptography, lock) and report any missing registrations.
This is part of the release endgame tasking to ensure all components properly register within runtime as expected.
Loading
Loading