diff --git a/.circleci/config.yml b/.circleci/config.yml index 2236fe7c..464f946e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,6 +44,9 @@ jobs: - run: name: Install extra deps for CI command: npm install --no-save replace-in-file@3.0.0 aws-sdk@2.597.0 @octokit/rest@16.36.0 @slack/client@5.0.2 + - add_ssh_keys: + fingerprints: + - "56:a2:ef:d1:41:dd:99:a2:95:cf:df:a0:15:0e:6b:f1" - run: node ./scripts/release-master workflows: diff --git a/CHANGELOG.md b/CHANGELOG.md index c6df7f38..05c388ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## release note +## [v4.3.0](https://github.com/skyway/skyway-js-sdk/releases/tag/v4.3.0) - 2021-01-19 + +### Fixed + +- Fixed a connecting process to signaling server so that `Peer` would reconnect when a request to the dispatcher server failed. ([#297](https://github.com/skyway/skyway-js-sdk/pull/297)) +- Remove unnecessary module settings in package.json. + ## [v4.2.0](https://github.com/skyway/skyway-js-sdk/releases/tag/v4.2.0) - 2020-12-22 ### Added diff --git a/README.md b/README.md index 1aa0e073..da8b7161 100644 --- a/README.md +++ b/README.md @@ -7,23 +7,13 @@ Add the following script tag to your html file. ```html - + ``` You can then use the `Peer` object to start connecting. For more details, check out the [Tutorial](https://webrtc.ecl.ntt.com/en/js-tutorial.html). ([日本語](https://webrtc.ecl.ntt.com/js-tutorial.html)) -#### How to specify version and minified -By changing the file name, you can use each version and minified version. - -Example -- Using version 4.2.0: `skyway-4.2.0.js`. -- Using minified version 4.2.0 : `skyway-4.2.0.min.js`. -- Using the latest minified version: `skyway-latest.min.js`. - -#### CAUTION -When using `skyway-latest.js` and `skyway-latest.min.js`, when a new version of the SDK is released, the latest version will automatically be applied to your application. This makes it easy to keep up with browser updates, but depending on the changes in the SDK, your application may be affected. - +To use the compressed version, add `.min` to the end of the file name, like `skyway-4.3.0.min.js`. ### Installing using npm to use with a bundler (e.g. webpack or browserify) diff --git a/examples/p2p-data/index.html b/examples/p2p-data/index.html index 0de28da4..21873fb7 100644 --- a/examples/p2p-data/index.html +++ b/examples/p2p-data/index.html @@ -27,7 +27,7 @@