Skip to content

Commit

Permalink
Merge branch 'release/2020.1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuki Ito committed Jul 8, 2020
2 parents 60086fb + 166228d commit dde1996
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
- FIX
- バグ修正

## develop
## 2020.1.4

- [UPDATE] type.ts にある type Json のインデックスシグネチャに undefined を許可する
- @yuitowest

## 2020.1.3

Expand Down
6 changes: 3 additions & 3 deletions dist/sora.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* sora-js-sdk
* WebRTC SFU Sora JavaScript SDK
* @version: 2020.1.3
* @version: 2020.1.4
* @author: Shiguredo Inc.
* @license: Apache-2.0
**/
Expand Down Expand Up @@ -97,7 +97,7 @@
type: "connect",
// @ts-ignore
// eslint-disable-next-line @typescript-eslint/camelcase
sora_client: `Sora JavaScript SDK ${'2020.1.3'}`,
sora_client: `Sora JavaScript SDK ${'2020.1.4'}`,
environment: window.navigator.userAgent,
role: role,
// eslint-disable-next-line @typescript-eslint/camelcase
Expand Down Expand Up @@ -889,7 +889,7 @@
},
version: function () {
// @ts-ignore
return '2020.1.3';
return '2020.1.4';
},
};

Expand Down
4 changes: 2 additions & 2 deletions dist/sora.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export declare type Json = null | boolean | number | string | Json[] | {
[prop: string]: Json;
[prop: string]: Json | undefined;
};
export declare type SimulcastQuality = "low" | "middle" | "high";
export declare type Simulcast = boolean | {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sora-js-sdk",
"version": "2020.1.3",
"version": "2020.1.4",
"description": "WebRTC SFU Sora JavaScript SDK",
"main": "dist/sora.min.js",
"module": "dist/sora.min.js",
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type Json = null | boolean | number | string | Json[] | { [prop: string]: Json };
export type Json = null | boolean | number | string | Json[] | { [prop: string]: Json | undefined };

export type SimulcastQuality = "low" | "middle" | "high";

Expand Down

0 comments on commit dde1996

Please sign in to comment.