From d96ce3378201d6fd2d2d9d04ed2dc88a708dff4f Mon Sep 17 00:00:00 2001 From: Daiki Matsui Date: Tue, 8 Mar 2022 14:25:25 +0900 Subject: [PATCH 1/4] update api reference --- api/api.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/api.yaml b/api/api.yaml index 7e69afd..0bbc2a3 100644 --- a/api/api.yaml +++ b/api/api.yaml @@ -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: From 5e3b221a71fd30e4ec5317cbd53b94fae938a380 Mon Sep 17 00:00:00 2001 From: Daiki Matsui Date: Tue, 8 Mar 2022 14:38:31 +0900 Subject: [PATCH 2/4] update release note --- release-notes.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/release-notes.md b/release-notes.md index c77d052..b7a6aa3 100644 --- a/release-notes.md +++ b/release-notes.md @@ -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 (`/media/connections/#{media_connection_id}/answer`) のリクエストボディ内の `constranints` オブジェクトの `video` プロパティを `false` にした場合に、PLI パケット送信 API (`/media/connections/#{media_connection_id}/pli`) を実行すると 405 エラーが返却される不具合を修正しました。 + ## [v0.4.0](https://github.com/skyway/skyway-webrtc-gateway/releases/tag/0.4.0) - `PeerID` を指定せずに生成した `Peer` が、シグナリングサーバと自動再接続する際に、 `PeerID` が変わってしまう不具合を修正しました。 From 30272fa54452ed9122d127407e7f6acfed92117f Mon Sep 17 00:00:00 2001 From: Daiki Matsui Date: Tue, 8 Mar 2022 14:39:21 +0900 Subject: [PATCH 3/4] update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9034ed1..c04f5f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \ From 2a64657f9f67ddb28aa998084410ca7d92e94c5f Mon Sep 17 00:00:00 2001 From: Daiki Matsui Date: Tue, 8 Mar 2022 15:02:37 +0900 Subject: [PATCH 4/4] modified description of release note --- release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes.md b/release-notes.md index b7a6aa3..89dc7df 100644 --- a/release-notes.md +++ b/release-notes.md @@ -2,7 +2,7 @@ ## [v0.4.1](https://github.com/skyway/skyway-webrtc-gateway/releases/tag/0.4.1) -- Call への応答 API (`/media/connections/#{media_connection_id}/answer`) のリクエストボディ内の `constranints` オブジェクトの `video` プロパティを `false` にした場合に、PLI パケット送信 API (`/media/connections/#{media_connection_id}/pli`) を実行すると 405 エラーが返却される不具合を修正しました。 +- Call への応答 API で `constranints` の `video` が `false` の場合に PLI パケット送信 API を実行した際、405 エラーが返却される不具合を修正しました。 ## [v0.4.0](https://github.com/skyway/skyway-webrtc-gateway/releases/tag/0.4.0)