Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
30c157e
feat(websocket): added the websocket server-client implementation
amitami2 Mar 7, 2026
20bd60d
add integration tests and examples for the websocket
amitami2 Mar 7, 2026
373bcf4
fix the ci pipeline
amitami2 Mar 8, 2026
67ed5b0
fix the test cases
amitami2 Mar 8, 2026
b548686
add the todos for the auth handling
amitami2 Mar 9, 2026
2230f28
fix the data-plane lint errors
amitami2 Mar 9, 2026
317dd64
added features for the websocket and wasm
amitami2 Mar 11, 2026
6550e64
add tasks for all the features
amitami2 Mar 13, 2026
2e55fed
added the wasm feature for all of the components
amitami2 Mar 26, 2026
83843b5
add the wasm feature for rest of the crates
amitami2 Mar 28, 2026
8f8a746
add the wasm feature for rest of the crates
amitami2 Mar 28, 2026
9b3b12f
fix: resolve post-rebase compilation errors
amitami2 Mar 30, 2026
c484d87
fix the errors
amitami2 Apr 2, 2026
274e46f
address conflicts
amitami2 Apr 4, 2026
c0b572f
feat: add the web apps for the validation
amitami2 Apr 5, 2026
e3764fa
modify web-app and slim-wasm crate
amitami2 Apr 5, 2026
8cc61d8
fixed the unsubcription issue
amitami2 Apr 5, 2026
908874b
fix the errors in the slim wasm
amitami2 Apr 5, 2026
af989db
revert the golanf version changes
amitami2 Apr 5, 2026
f2f32b4
fix integration tests
amitami2 Apr 5, 2026
e377b2f
remove the codeql changes
amitami2 Apr 5, 2026
310031d
removed the wasm check from ci
amitami2 Apr 5, 2026
54cc3dd
remove the go version update from dockerfile
amitami2 Apr 5, 2026
1c91dab
fix the CI
amitami2 Apr 6, 2026
957c5e9
fix: override LLVM toolchain vars for legacy binary builds
amitami2 Apr 6, 2026
f4c2aff
fix: remove unused deps and ignore getrandom in cargo-machete
amitami2 Apr 6, 2026
36dc7ac
fix: sort Cargo.toml dependencies
amitami2 Apr 6, 2026
a903b4a
fix the lint errors and codeQL flags
amitami2 Apr 12, 2026
6c4e99c
revert the llvm version changes
amitami2 Apr 13, 2026
40371d6
fix the ci failures
amitami2 Apr 13, 2026
0367952
added the recently merged patch
amitami2 Apr 13, 2026
523e71f
fix the build errors
amitami2 Apr 13, 2026
c52d165
fix the integration tests for the grpc
amitami2 Apr 13, 2026
a7302c0
fix the lockfile conflicts
amitami2 Apr 17, 2026
8a6d8db
fixed the lint error
amitami2 Apr 25, 2026
2e453f3
fix(deps): bump rustls-webpki to 0.103.13 (RUSTSEC-2026-0104)
amitami2 Apr 25, 2026
693ec8b
addressed the review comments
amitami2 May 4, 2026
6804380
bumped proto-gen-go version
amitami2 May 4, 2026
49fd069
fix(websocket): fix lint errors
amitami2 May 4, 2026
2808619
fix lint errors
amitami2 May 4, 2026
848679a
feat(websocket): rebased the pr
amitami2 May 7, 2026
50b6612
resolved merge conflicts
amitami2 May 8, 2026
3a26140
fix the go version issue
amitami2 May 8, 2026
d735402
add P256 as a default CipherSuite
amitami2 May 8, 2026
76b8071
add the unit test for the uncovered lines
amitami2 May 8, 2026
5c0864f
lint fixes
amitami2 May 8, 2026
ba70104
resolve the merge conflcits
amitami2 May 10, 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
2 changes: 1 addition & 1 deletion control-plane/common/controller/validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/xeipuuv/gojsonschema"
)

//go:generate cp ../../../data-plane/core/config/src/grpc/schema/client-config.schema.json ./schema.json
//go:generate cp ../../../data-plane/core/config/src/schema/client-config.schema.json ./schema.json
//go:embed schema.json
var schemaData []byte

Expand Down
5 changes: 5 additions & 0 deletions data-plane/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ rustflags = ["-C", "link-arg=-mios-version-min=13.4"]
linker = "clang-ios-linker-wrapper.sh"
rustflags = ["-C", "link-arg=-mios-simulator-version-min=13.4"]

# Enable mls_build_async for WASM targets so that mls-rs traits and methods
# become async (required by mls-rs-crypto-webcrypto which uses SubtleCrypto).
[target.wasm32-unknown-unknown]
rustflags = ["--cfg", "mls_build_async"]

[env]
# CFLAGS suppresses macro redefinition warnings that occur when system headers
# are mixed with Zig's headers (common with Windows cross-compilation).
Expand Down
Loading
Loading