Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ICE candidate errors sending to a server #151

Merged
merged 19 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
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
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,29 @@ All user visible changes to this project will be documented in this file. This p



## [0.4.1] · 2024-??-?? (unreleased)
[0.4.1]: /../../tree/medea-jason-0.4.1
## [0.5.0] · 2024-??-?? (unreleased)
[0.5.0]: /../../tree/medea-jason-0.5.0

[Diff](https://github.com/instrumentisto/medea-jason/compare/medea-jason-0.4.0...medea-jason-0.4.1)
[Diff](https://github.com/instrumentisto/medea-jason/compare/medea-jason-0.4.0...medea-jason-0.5.0)

### BC Breaks

- Minimal supported version of `medea-client-api-proto` is `0.6.0` ([#151]).

### Added

- Logging:
- Exceptions thrown from Dart callbacks called by Rust ([#138]).
- Monitoring:
- `IceCandidateError` metric sending to server ([#151]).

### Fixed

- Screen sharing in Firefox ([#135]).

[#135]: /../../pull/135
[#138]: /../../pull/138
[#151]: /../../pull/151



Expand Down
73 changes: 33 additions & 40 deletions Cargo.lock

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

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "medea-jason"
version = "0.4.1-dev"
version = "0.5.0-dev"
edition = "2021"
rust-version = "1.65"
description = "Client library for Medea media server."
Expand Down Expand Up @@ -44,7 +44,7 @@ derivative = "2.2"
derive_more = "0.99"
futures = "0.3"
log = "0.4"
medea-client-api-proto = { version = "0.5", path = "proto/client-api" }
medea-client-api-proto = { version = "0.6.0-dev", path = "proto/client-api" }
medea-macro = { version = "0.3", path = "crates/medea-macro" }
medea-reactive = { version = "0.1", path = "crates/medea-reactive" }
mockall = { version = "0.12", optional = true }
Expand Down Expand Up @@ -95,6 +95,7 @@ wee_alloc = { version = "0.4", optional = true }
"RtcIceTransportPolicy",
"RtcOfferOptions",
"RtcPeerConnection", "RtcPeerConnectionIceEvent",
"RtcPeerConnectionIceErrorEvent",
"RtcRtpReceiver", "RtcRtpSender",
"RtcRtpTransceiver", "RtcRtpTransceiverDirection",
"RtcRtpTransceiverInit",
Expand All @@ -105,6 +106,12 @@ wee_alloc = { version = "0.4", optional = true }
"WebSocket", "Window",
]

[patch.crates-io]
web-sys = { git = "https://github.com/rustwasm/wasm-bindgen.git", rev = "12889ef666f9b355585602e268be2b70d7f3ec80" }
js-sys = { git = "https://github.com/rustwasm/wasm-bindgen.git", rev = "12889ef666f9b355585602e268be2b70d7f3ec80" }
wasm-bindgen = { git = "https://github.com/rustwasm/wasm-bindgen.git", rev = "12889ef666f9b355585602e268be2b70d7f3ec80" }
wasm-bindgen-shared = { git = "https://github.com/rustwasm/wasm-bindgen.git", rev = "12889ef666f9b355585602e268be2b70d7f3ec80" }

[build-dependencies]
cc = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion flutter/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.4.1-dev"
version: "0.5.0-dev"
meta:
dependency: transitive
description:
Expand Down
Loading