Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
86e1882
chore(deps): bump the androidx group across 1 directory with 2 updates
dependabot[bot] Apr 25, 2026
915f767
chore(deps): bump the compose group across 1 directory with 7 updates
dependabot[bot] Apr 25, 2026
171fe87
chore(deps): bump com.google.devtools.ksp from 2.3.5 to 2.3.6
dependabot[bot] Apr 21, 2026
df84df2
chore(deps): bump org.cyclonedx.bom from 3.1.0 to 3.2.4
dependabot[bot] Apr 21, 2026
f510d36
chore(deps): bump com.gradle.develocity from 4.3.2 to 4.4.1
dependabot[bot] Apr 21, 2026
575de67
chore(deps): bump org.openrewrite.rewrite from 7.28.0 to 7.31.0
dependabot[bot] Apr 21, 2026
c75a632
chore(deps): bump io.netty:netty-bom from 4.1.132.Final to 4.2.12.Final
dependabot[bot] Apr 21, 2026
48120da
chore(deps): bump com.github.spotbugs from 6.4.8 to 6.5.1
dependabot[bot] Apr 21, 2026
8d57b0d
chore(deps): bump com.autonomousapps.dependency-analysis
dependabot[bot] Apr 21, 2026
53304ea
chore(deps): bump com.gradleup.shadow from 9.3.1 to 9.4.1
dependabot[bot] Apr 21, 2026
0f63f12
chore(deps): bump the rust-cerebro-dependencies group across 1 direct…
dependabot[bot] Apr 25, 2026
9c17120
chore(deps): bump the rust-runtime-dependencies group across 1 direct…
dependabot[bot] Apr 25, 2026
bd7227e
chore(deps): bump the npm_and_yarn group across 1 directory with 2 up…
dependabot[bot] Apr 24, 2026
d824e41
refactor(build-logic): replace detekt magic numbers with named constants
yacosta738 Apr 26, 2026
61d0049
fix(agent-runtime): restore rust hashing and hmac checks
yacosta738 Apr 26, 2026
89f5448
fix(agent-runtime): import hmac key init in webhook test
yacosta738 Apr 26, 2026
fb5cb53
chore(deps): update lockfiles for dependency consolidation
yacosta738 Apr 26, 2026
82b4e82
Merge remote-tracking branch 'origin/main' into chore/deps-consolidation
yacosta738 Apr 26, 2026
ddc0cdf
fix(build-logic): avoid config-cache lock check failure
yacosta738 Apr 26, 2026
c7a16d1
Merge branch 'main' into chore/deps-consolidation
yacosta738 Apr 26, 2026
9244bb4
fix(gradle): align compose catalog and lock checks
yacosta738 Apr 26, 2026
53c0641
fix(gradle): restore compose catalog compatibility
yacosta738 Apr 26, 2026
dd84942
Merge remote-tracking branch 'origin/chore/deps-consolidation' into c…
yacosta738 Apr 26, 2026
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
3 changes: 1 addition & 2 deletions clients/agent-runtime/src/gateway/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ use axum::{
routing::{get, post},
Router,
};
use hmac::KeyInit;
use parking_lot::Mutex;
use regex::Regex;
use std::collections::hash_map::DefaultHasher;
Expand Down Expand Up @@ -3126,7 +3125,7 @@ async fn handle_whatsapp_verify(
/// Returns true if the signature is valid, false otherwise.
/// See: <https://developers.facebook.com/docs/graph-api/webhooks/getting-started#verification-requests>
pub fn verify_whatsapp_signature(app_secret: &str, body: &[u8], signature_header: &str) -> bool {
use hmac::{Hmac, Mac};
use hmac::{Hmac, KeyInit, Mac};
use sha2::Sha256;

// Signature format: "sha256=<hex_signature>"
Expand Down
130 changes: 62 additions & 68 deletions clients/androidApp/gradle.lockfile

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions clients/composeApp/buildscript-gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ org.glassfish.jaxb:jaxb-runtime:2.3.2=classpath
org.glassfish.jaxb:txw2:2.3.2=classpath
org.jdom:jdom2:2.0.6.1=classpath
org.jetbrains.compose.hot-reload:hot-reload-gradle-plugin:1.0.0=classpath
org.jetbrains.compose:compose-gradle-plugin:1.10.2=classpath
org.jetbrains.compose:org.jetbrains.compose.gradle.plugin:1.10.2=classpath
org.jetbrains.compose:compose-gradle-plugin:1.10.3=classpath
org.jetbrains.compose:org.jetbrains.compose.gradle.plugin:1.10.3=classpath
org.jetbrains.kotlin.plugin.compose:org.jetbrains.kotlin.plugin.compose.gradle.plugin:2.3.20=classpath
org.jetbrains.kotlin:abi-tools-api:2.3.20=classpath
org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.3.20=classpath
Expand Down
257 changes: 127 additions & 130 deletions clients/composeApp/gradle.lockfile

Large diffs are not rendered by default.

97 changes: 38 additions & 59 deletions clients/web/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading