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

Release v0.4.1 #35

Merged
merged 4 commits into from
Mar 8, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WORKDIR /skyway
# glibc packages for Alpine Linux are prepared by Sasha Gerrand and the releases are published in sgerrand/alpine-pkg-glibc github repo.
# https://github.com/sgerrand/alpine-pkg-glibc
RUN apk add --no-cache --virtual tmpPackages ca-certificates wget && \
wget https://github.com/skyway/skyway-webrtc-gateway/releases/download/0.4.0/gateway_linux_x64 && \
wget https://github.com/skyway/skyway-webrtc-gateway/releases/download/0.4.1/gateway_linux_x64 && \
chmod +x ./gateway_linux_x64 && \
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.29-r0/glibc-2.29-r0.apk && \
Expand Down
2 changes: 1 addition & 1 deletion api/api.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
description: 'SkyWay WebRTC Gatewayを操作するためのREST API仕様書'
version: 0.4.0
version: 0.4.1
title: SkyWay WebRTC Gateway REST API
termsOfService: 'http://nttcom.github.io/skyway/'
contact:
Expand Down
4 changes: 4 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SkyWay WebRTC Gateway release notes

## [v0.4.1](https://github.com/skyway/skyway-webrtc-gateway/releases/tag/0.4.1)

- Call への応答 API で `constranints` の `video` が `false` の場合に PLI パケット送信 API を実行した際、405 エラーが返却される不具合を修正しました。

## [v0.4.0](https://github.com/skyway/skyway-webrtc-gateway/releases/tag/0.4.0)

- `PeerID` を指定せずに生成した `Peer` が、シグナリングサーバと自動再接続する際に、 `PeerID` が変わってしまう不具合を修正しました。
Expand Down