Skip to content

Commit

Permalink
chore: release server 0.1.1 (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 24, 2024
1 parent 958ce3a commit 8b2059e
Show file tree
Hide file tree
Showing 22 changed files with 269 additions and 47 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

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

12 changes: 12 additions & 0 deletions packages/audio-mixer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-audio-mixer-v0.1.0...atm0s-media-server-audio-mixer-v0.1.1) - 2024-01-24

### Other
- update Cargo.toml dependencies
2 changes: 1 addition & 1 deletion packages/audio-mixer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-media-server-audio-mixer"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "Audio Mixer for atm0s-media-server"
Expand Down
31 changes: 31 additions & 0 deletions packages/cluster/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-cluster-v0.1.0...atm0s-media-server-cluster-v0.2.0) - 2024-01-24

### Added
- gateway global ([#185](https://github.com/8xFF/atm0s-media-server/pull/185))
- sip transport and hooks ([#167](https://github.com/8xFF/atm0s-media-server/pull/167))
- allow run https self-signed cert for testing with remote server ([#175](https://github.com/8xFF/atm0s-media-server/pull/175))
- node info endpoint ([#151](https://github.com/8xFF/atm0s-media-server/pull/151))
- connector external event log - protobuf ([#132](https://github.com/8xFF/atm0s-media-server/pull/132))
- implement secure with static key JWT, update atm0s-sdn, update readme ([#129](https://github.com/8xFF/atm0s-media-server/pull/129))
- audio mix-minus and allow subscribe multi sources ([#126](https://github.com/8xFF/atm0s-media-server/pull/126))
- gateway and refactor media-server ([#106](https://github.com/8xFF/atm0s-media-server/pull/106))

### Fixed
- *(deps)* update rust crate atm0s-sdn to 0.1.8 ([#162](https://github.com/8xFF/atm0s-media-server/pull/162))
- whip/whep sdp patch with client ices failed [#176](https://github.com/8xFF/atm0s-media-server/pull/176) ([#179](https://github.com/8xFF/atm0s-media-server/pull/179))
- missing dashboard in gateway and live sessions not update when session ended ([#111](https://github.com/8xFF/atm0s-media-server/pull/111))
- wrong typos cause publish error ([#93](https://github.com/8xFF/atm0s-media-server/pull/93))

### Other
- rename token terms ([#174](https://github.com/8xFF/atm0s-media-server/pull/174))
- restructure cargo workspace deps and fix [#122](https://github.com/8xFF/atm0s-media-server/pull/122) ([#125](https://github.com/8xFF/atm0s-media-server/pull/125))
- Feat connector server ([#120](https://github.com/8xFF/atm0s-media-server/pull/120))
- release ([#88](https://github.com/8xFF/atm0s-media-server/pull/88))
10 changes: 5 additions & 5 deletions packages/cluster/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "atm0s-media-server-cluster"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Cluster Interface for atm0s-media-server"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
transport = { package = "atm0s-media-server-transport", path = "../transport", version = "0.1.0" }
media-utils = { package = "atm0s-media-server-utils", path = "../media-utils", version = "0.1.0" }
proc-macro = { package = "atm0s-media-server-proc-macro", path = "../proc-macro", version = "0.1.0" }
transport = { package = "atm0s-media-server-transport", path = "../transport", version = "0.2.0" }
media-utils = { package = "atm0s-media-server-utils", path = "../media-utils", version = "0.2.0" }
proc-macro = { package = "atm0s-media-server-proc-macro", path = "../proc-macro", version = "0.1.1" }
atm0s-sdn = { version = "0.1.8", features = ["all"], optional = true }
async-trait = { workspace = true }
serde = { workspace = true }
poem-openapi = { version = "3.0" }
bincode = { version = "1" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.0" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.1" }

async-std = { workspace = true, optional = true }
log = { workspace = true, optional = true }
Expand Down
27 changes: 27 additions & 0 deletions packages/endpoint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-endpoint-v0.1.0...atm0s-media-server-endpoint-v0.2.0) - 2024-01-24

### Added
- gateway global ([#185](https://github.com/8xFF/atm0s-media-server/pull/185))
- sip transport and hooks ([#167](https://github.com/8xFF/atm0s-media-server/pull/167))
- F32p2 conversion to from f32 ([#152](https://github.com/8xFF/atm0s-media-server/pull/152))
- connector external event log - protobuf ([#132](https://github.com/8xFF/atm0s-media-server/pull/132))
- auto or manual peer info subscribe ([#135](https://github.com/8xFF/atm0s-media-server/pull/135))
- implement secure with static key JWT, update atm0s-sdn, update readme ([#129](https://github.com/8xFF/atm0s-media-server/pull/129))
- audio mix-minus and allow subscribe multi sources ([#126](https://github.com/8xFF/atm0s-media-server/pull/126))
- gateway and refactor media-server ([#106](https://github.com/8xFF/atm0s-media-server/pull/106))

### Fixed
- wrong typos cause publish error ([#93](https://github.com/8xFF/atm0s-media-server/pull/93))

### Other
- restructure cargo workspace deps and fix [#122](https://github.com/8xFF/atm0s-media-server/pull/122) ([#125](https://github.com/8xFF/atm0s-media-server/pull/125))
- Feat connector server ([#120](https://github.com/8xFF/atm0s-media-server/pull/120))
- release ([#88](https://github.com/8xFF/atm0s-media-server/pull/88))
12 changes: 6 additions & 6 deletions packages/endpoint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "atm0s-media-server-endpoint"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "Media Endpoint for atm0s-media-server"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cluster = { package = "atm0s-media-server-cluster", path = "../cluster", version = "0.1.0" }
transport = { package = "atm0s-media-server-transport", path = "../transport", version = "0.1.0" }
media-utils = { package = "atm0s-media-server-utils", path = "../media-utils", version = "0.1.0" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.0" }
audio-mixer = { package = "atm0s-media-server-audio-mixer", path = "../audio-mixer", version = "0.1.0" }
cluster = { package = "atm0s-media-server-cluster", path = "../cluster", version = "0.2.0" }
transport = { package = "atm0s-media-server-transport", path = "../transport", version = "0.2.0" }
media-utils = { package = "atm0s-media-server-utils", path = "../media-utils", version = "0.2.0" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.1" }
audio-mixer = { package = "atm0s-media-server-audio-mixer", path = "../audio-mixer", version = "0.1.1" }
log = { workspace = true }
async-std = { workspace = true }
serde = { workspace = true }
Expand Down
21 changes: 21 additions & 0 deletions packages/media-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-utils-v0.1.0...atm0s-media-server-utils-v0.2.0) - 2024-01-24

### Added
- gateway global ([#185](https://github.com/8xFF/atm0s-media-server/pull/185))
- audio mix-minus and allow subscribe multi sources ([#126](https://github.com/8xFF/atm0s-media-server/pull/126))
- gateway and refactor media-server ([#106](https://github.com/8xFF/atm0s-media-server/pull/106))

### Fixed
- *(deps)* update rust crate lz4_flex to 0.11.2 ([#165](https://github.com/8xFF/atm0s-media-server/pull/165))

### Other
- Feat connector server ([#120](https://github.com/8xFF/atm0s-media-server/pull/120))
- release ([#88](https://github.com/8xFF/atm0s-media-server/pull/88))
2 changes: 1 addition & 1 deletion packages/media-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-media-server-utils"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "Utils for atm0s-media-server"
Expand Down
15 changes: 15 additions & 0 deletions packages/proc-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-proc-macro-v0.1.0...atm0s-media-server-proc-macro-v0.1.1) - 2024-01-24

### Fixed
- *(deps)* update rust crate quote to 1.0.35 ([#139](https://github.com/8xFF/atm0s-media-server/pull/139))
- *(deps)* update rust crate syn to 2.0.48 ([#128](https://github.com/8xFF/atm0s-media-server/pull/128))
- *(deps)* update rust crate syn to 2.0.42 ([#124](https://github.com/8xFF/atm0s-media-server/pull/124))
- *(deps)* update rust crate syn to 2.0.41 ([#110](https://github.com/8xFF/atm0s-media-server/pull/110))
2 changes: 1 addition & 1 deletion packages/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-media-server-proc-macro"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "Proc macro for atm0s-media-server"
Expand Down
16 changes: 16 additions & 0 deletions packages/protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.1](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-protocol-v0.1.0...atm0s-media-server-protocol-v0.1.1) - 2024-01-24

### Added
- connector with persistent queue ([#161](https://github.com/8xFF/atm0s-media-server/pull/161))
- F32p2 conversion to from f32 ([#152](https://github.com/8xFF/atm0s-media-server/pull/152))

### Fixed
- try fixing protoc release ([#155](https://github.com/8xFF/atm0s-media-server/pull/155))
2 changes: 1 addition & 1 deletion packages/protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-media-server-protocol"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Cluster Protobuf definitions for atm0s-media-server"
license = "MIT"
Expand Down
18 changes: 18 additions & 0 deletions packages/transport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-transport-v0.1.0...atm0s-media-server-transport-v0.2.0) - 2024-01-24

### Added
- sip transport and hooks ([#167](https://github.com/8xFF/atm0s-media-server/pull/167))
- audio mix-minus and allow subscribe multi sources ([#126](https://github.com/8xFF/atm0s-media-server/pull/126))
- gateway and refactor media-server ([#106](https://github.com/8xFF/atm0s-media-server/pull/106))

### Other
- restructure cargo workspace deps and fix [#122](https://github.com/8xFF/atm0s-media-server/pull/122) ([#125](https://github.com/8xFF/atm0s-media-server/pull/125))
- release ([#88](https://github.com/8xFF/atm0s-media-server/pull/88))
4 changes: 2 additions & 2 deletions packages/transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "atm0s-media-server-transport"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Transport Interface for atm0s-media-server"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
media-utils = { package = "atm0s-media-server-utils", path = "../media-utils", version = "0.1.0" }
media-utils = { package = "atm0s-media-server-utils", path = "../media-utils", version = "0.2.0" }
async-trait = { workspace = true }
async-std = { workspace = true }
serde = { workspace = true }
Expand Down
45 changes: 45 additions & 0 deletions servers/media-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,51 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-v0.1.0...atm0s-media-server-v0.1.1) - 2024-01-24

### Added
- gateway global ([#185](https://github.com/8xFF/atm0s-media-server/pull/185))
- sip transport and hooks ([#167](https://github.com/8xFF/atm0s-media-server/pull/167))
- allow run https self-signed cert for testing with remote server ([#175](https://github.com/8xFF/atm0s-media-server/pull/175))
- connector with persistent queue ([#161](https://github.com/8xFF/atm0s-media-server/pull/161))
- F32p2 conversion to from f32 ([#152](https://github.com/8xFF/atm0s-media-server/pull/152))
- node info endpoint ([#151](https://github.com/8xFF/atm0s-media-server/pull/151))
- connector external event log - protobuf ([#132](https://github.com/8xFF/atm0s-media-server/pull/132))
- implement secure with static key JWT, update atm0s-sdn, update readme ([#129](https://github.com/8xFF/atm0s-media-server/pull/129))
- audio mix-minus and allow subscribe multi sources ([#126](https://github.com/8xFF/atm0s-media-server/pull/126))
- gateway and refactor media-server ([#106](https://github.com/8xFF/atm0s-media-server/pull/106))
- auto or manual peer info subscribe ([#135](https://github.com/8xFF/atm0s-media-server/pull/135))

### Fixed
- *(deps)* update rust crate clap to 4.4.18 ([#134](https://github.com/8xFF/atm0s-media-server/pull/134))
- whip/whep sdp patch with client ices failed [#176](https://github.com/8xFF/atm0s-media-server/pull/176) ([#179](https://github.com/8xFF/atm0s-media-server/pull/179))
- *(deps)* update rust crate yaque to 0.6.6 ([#169](https://github.com/8xFF/atm0s-media-server/pull/169))
- missing dashboard in gateway and live sessions not update when session ended ([#111](https://github.com/8xFF/atm0s-media-server/pull/111))
- *(deps)* update rust crate atm0s-sdn to 0.1.8 ([#162](https://github.com/8xFF/atm0s-media-server/pull/162))
- wrong typos cause publish error ([#93](https://github.com/8xFF/atm0s-media-server/pull/93))
- *(deps)* update rust crate lz4_flex to 0.11.2 ([#165](https://github.com/8xFF/atm0s-media-server/pull/165))
- *(deps)* update rust crate quote to 1.0.35 ([#139](https://github.com/8xFF/atm0s-media-server/pull/139))
- *(deps)* update rust crate syn to 2.0.48 ([#128](https://github.com/8xFF/atm0s-media-server/pull/128))
- *(deps)* update rust crate syn to 2.0.42 ([#124](https://github.com/8xFF/atm0s-media-server/pull/124))
- *(deps)* update rust crate syn to 2.0.41 ([#110](https://github.com/8xFF/atm0s-media-server/pull/110))
- *(deps)* update rust crate local-ip-address to 0.5.7 ([#178](https://github.com/8xFF/atm0s-media-server/pull/178))
- doctests sdp patch to ices ([#181](https://github.com/8xFF/atm0s-media-server/pull/181))
- wrong track_id convert from random webrtc Mid ([#140](https://github.com/8xFF/atm0s-media-server/pull/140))
- webrtc stream missing info if sdk stop then create new with same name ([#100](https://github.com/8xFF/atm0s-media-server/pull/100))
- unused warn and local cluster aggregate bitrate ([#99](https://github.com/8xFF/atm0s-media-server/pull/99))
- *(deps)* update rust crate fdk-aac to 0.6.0 ([#186](https://github.com/8xFF/atm0s-media-server/pull/186))

### Other
- rename token terms ([#174](https://github.com/8xFF/atm0s-media-server/pull/174))
- *(deps)* bump rust-embed from 8.1.0 to 8.2.0 ([#142](https://github.com/8xFF/atm0s-media-server/pull/142))
- *(deps)* bump clap from 4.4.11 to 4.4.13 ([#149](https://github.com/8xFF/atm0s-media-server/pull/149))
- restructure cargo workspace deps and fix [#122](https://github.com/8xFF/atm0s-media-server/pull/122) ([#125](https://github.com/8xFF/atm0s-media-server/pull/125))
- Bump clap from 4.4.10 to 4.4.11 ([#104](https://github.com/8xFF/atm0s-media-server/pull/104))
- Bump rust-embed from 8.0.0 to 8.1.0 ([#109](https://github.com/8xFF/atm0s-media-server/pull/109))
- Feat connector server ([#120](https://github.com/8xFF/atm0s-media-server/pull/120))
- release ([#88](https://github.com/8xFF/atm0s-media-server/pull/88))
- Bump udp_sas_async from 0.1.0 to 0.2.0 ([#97](https://github.com/8xFF/atm0s-media-server/pull/97))

## [0.1.0](https://github.com/8xFF/atm0s-media-server/releases/tag/atm0s-media-server-v0.1.0) - 2023-11-23

### Added
Expand Down
Loading

0 comments on commit 8b2059e

Please sign in to comment.