Skip to content

Commit

Permalink
Generate v4.11.0 code (no API changes).
Browse files Browse the repository at this point in the history
  • Loading branch information
brocaar committed Jan 16, 2025
1 parent d1b0862 commit 4238e71
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chirpstack
Submodule chirpstack updated 56 files
+43 −49 Cargo.lock
+179 −153 api/go/integration/integration.pb.go
+1 −1 api/grpc-web/package.json
+1 −1 api/java/build.gradle.kts
+1 −1 api/js/package.json
+1 −1 api/kotlin/build.gradle.kts
+1 −1 api/php/composer.json
+8 −0 api/proto/integration/integration.proto
+1 −1 api/python/src/setup.py
+1 −1 api/rust/Cargo.toml
+0 −5 api/rust/build.rs
+8 −0 api/rust/proto/chirpstack/integration/integration.proto
+1 −1 backend/Cargo.toml
+2 −2 chirpstack-integration/Cargo.toml
+1 −1 chirpstack/Cargo.toml
+2 −2 chirpstack/src/adr/plugin.rs
+1 −1 chirpstack/src/api/backend/mod.rs
+1 −1 chirpstack/src/api/oauth2.rs
+1 −1 chirpstack/src/api/oidc.rs
+2 −2 chirpstack/src/codec/js/mod.rs
+1 −1 chirpstack/src/downlink/tx_ack.rs
+5 −14 chirpstack/src/gateway/backend/mqtt.rs
+1 −1 chirpstack/src/integration/kafka.rs
+1 −1 chirpstack/src/integration/loracloud/buffer.rs
+18 −2 chirpstack/src/storage/device.rs
+1 −1 chirpstack/src/storage/device_gateway.rs
+4 −4 chirpstack/src/storage/downlink_frame.rs
+2 −2 chirpstack/src/storage/mac_command.rs
+2 −2 chirpstack/src/storage/metrics.rs
+1 −1 chirpstack/src/storage/mod.rs
+4 −4 chirpstack/src/storage/passive_roaming.rs
+1 −1 chirpstack/src/stream/api_request.rs
+1 −1 chirpstack/src/stream/backend_interfaces.rs
+2 −2 chirpstack/src/stream/event.rs
+8 −8 chirpstack/src/stream/frame.rs
+2 −2 chirpstack/src/stream/meta.rs
+1 −1 chirpstack/src/test/assert.rs
+4 −7 chirpstack/src/test/class_a_pr_test.rs
+37 −285 chirpstack/src/test/class_a_test.rs
+4 −7 chirpstack/src/test/class_b_test.rs
+7 −7 chirpstack/src/test/otaa_js_test.rs
+4 −7 chirpstack/src/test/otaa_pr_test.rs
+7 −28 chirpstack/src/test/otaa_test.rs
+10 −7 chirpstack/src/test/relay_class_a_test.rs
+4 −7 chirpstack/src/test/relay_otaa_test.rs
+11 −18 chirpstack/src/uplink/data.rs
+17 −16 chirpstack/src/uplink/join.rs
+1 −0 chirpstack/src/uplink/join_sns.rs
+36 −58 chirpstack/src/uplink/mod.rs
+2 −2 examples/frame_log/go/go.mod
+5 −5 examples/frame_log/go/go.sum
+1 −1 lrwn-filters/Cargo.toml
+1 −1 lrwn/Cargo.toml
+1 −1 rust-toolchain.toml
+1 −1 ui/package.json
+3 −3 ui/yarn.lock
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
toolchain go1.21.4

require (
github.com/chirpstack/chirpstack/api/go/v4 v4.10.2
github.com/chirpstack/chirpstack/api/go/v4 v4.11.0
github.com/goreleaser/goreleaser v1.10.2
github.com/goreleaser/nfpm/v2 v2.16.0
github.com/gorilla/handlers v1.5.1
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,8 @@ github.com/chirpstack/chirpstack/api/go/v4 v4.10.1 h1:Xu25+jUthhNuDGLJWVPHBm8ImT
github.com/chirpstack/chirpstack/api/go/v4 v4.10.1/go.mod h1:NNVeEib9I7GGomK2bPiP5c5UstkoMfxYiJ1Z5wrYCh4=
github.com/chirpstack/chirpstack/api/go/v4 v4.10.2 h1:48Nx4mQVEdYtGgBXR4JVd42W7NeC6/tVR9Cruv8tgWE=
github.com/chirpstack/chirpstack/api/go/v4 v4.10.2/go.mod h1:NNVeEib9I7GGomK2bPiP5c5UstkoMfxYiJ1Z5wrYCh4=
github.com/chirpstack/chirpstack/api/go/v4 v4.11.0 h1:XXZcWrZjZkYFojLQfipSVTNEDN3Bg0OrXk1i8qSGe/E=
github.com/chirpstack/chirpstack/api/go/v4 v4.11.0/go.mod h1:NNVeEib9I7GGomK2bPiP5c5UstkoMfxYiJ1Z5wrYCh4=
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
Expand Down
2 changes: 1 addition & 1 deletion ui/api.json

Large diffs are not rendered by default.

0 comments on commit 4238e71

Please sign in to comment.