Commit Graph

1408 Commits

Author SHA1 Message Date
Franck Royer 277e11f781
Remove unneeded path from libp2p-noise import 2022-04-06 13:41:15 +10:00
Franck Royer f953a41546
Declare it-pipe dependency, properly import
As it was implicitly using it-pipe@1.0.0 that has a different import
format.
2022-04-06 13:41:15 +10:00
Franck R 249d9bf1a4
Merge pull request #657 from status-im/nim-waku-v0.9 2022-04-06 13:39:44 +10:00
Franck 7bfbefa91a
Get system details before running nwaku 2022-04-06 12:39:19 +10:00
Franck 2511b7daec
Nwaku v0.9 is taking more time to start-up 2022-04-06 12:39:18 +10:00
Franck dc90279905
Rename nim-waku to nwaku 2022-04-06 12:39:18 +10:00
Franck ecd2445bf9
Update nim-waku to v0.9 2022-04-06 12:39:18 +10:00
Franck Royer dc6d37a94e
test: Only use timestamps in the past for a more realistic test 2022-04-06 12:39:18 +10:00
Franck Royer d95d773f45
Send nanoseconds timestamp in nim-waku RPC 2022-04-06 12:39:18 +10:00
Franck Royer c07396c30b
Update nwaku RPC with nanoseconds timestamp 2022-04-06 12:39:18 +10:00
Franck Royer a23d2be461
Upgrade nim-waku to 0.8 2022-04-06 12:39:18 +10:00
status-bors-ng[bot] 3b9e42fd67
Merge #675
675: Bump @testing-library/user-event from 13.5.0 to 14.0.4 in /examples/eth-pm r=D4nte a=dependabot[bot]

Bumps [`@testing-library/user-event](https://github.com/testing-library/user-event)` from 13.5.0 to 14.0.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/testing-library/user-event/releases"><code>`@​testing-library/user-event</code>'s` releases</a>.</em></p>
<blockquote>
<h2>v14.0.4</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.3...v14.0.4">14.0.4</a> (2022-04-01)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>) (<a href="6d36828e22">6d36828</a>)</li>
</ul>
<h2>v14.0.3</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.2...v14.0.3">14.0.3</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pointer:</strong> change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>) (<a href="06f12a6475">06f12a6</a>)</li>
</ul>
<h2>v14.0.2</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.1...v14.0.2">14.0.2</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>) (<a href="126d2e7b78">126d2e7</a>)</li>
</ul>
<h2>v14.0.1</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.0...v14.0.1">14.0.1</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>) (<a href="a7f99066a5">a7f9906</a>)</li>
<li><strong>pointer:</strong> support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>) (<a href="e23e559297">e23e559</a>)</li>
</ul>
<h2>v14.0.0</h2>
<h2><a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.0">14.0.0</a> (2022-03-29)</h2>
<h3>⚠ BREAKING CHANGES</h3>
<ul>
<li><strong>APIs always return a Promise.</strong></li>
<li><strong>pointer:</strong> <code>skipPointerEvents</code> has been removed.
Use <code>pointerEventsCheck: PointerEventsCheckLevel.Never</code> instead.</li>
<li><strong>upload:</strong> <code>init</code> parameter has been removed from <code>userEvent.upload</code>.</li>
<li>The <code>userEvent.paste</code> API has new parameters.</li>
<li><code>{ctrl}</code>, <code>{del}</code>, <code>{esc}</code> no longer describe a key. Use <code>{Control}</code>, <code>{Delete}</code>, <code>{Escape}</code> instead.</li>
<li><code>{alt}</code>, <code>{ctrl}</code>, <code>{meta}</code>, <code>{shift}</code> no longer imply not releasing the key. Use <code>{Alt&gt;}</code>, <code>{Control&gt;}</code>, <code>{Meta&gt;}</code>, <code>{Shift&gt;}</code> instead.</li>
<li><code>init</code> parameter has been removed from these APIs:
<ul>
<li><code>userEvent.click</code></li>
<li><code>userEvent.dblClick</code></li>
<li><code>userEvent.tripleClick</code></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6d36828e22"><code>6d36828</code></a> fix: track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>)</li>
<li><a href="f2e8f8e25f"><code>f2e8f8e</code></a> docs: add wKovacs64 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/896">#896</a>)</li>
<li><a href="06f12a6475"><code>06f12a6</code></a> fix(pointer): change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>)</li>
<li><a href="dff6d54882"><code>dff6d54</code></a> docs: add tbertrand7 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/893">#893</a>)</li>
<li><a href="126d2e7b78"><code>126d2e7</code></a> fix: work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>)</li>
<li><a href="810c0d856c"><code>810c0d8</code></a> chore: update test environment to React18 (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/891">#891</a>)</li>
<li><a href="886780c2a8"><code>886780c</code></a> docs: add robcaldecott as a contributor for bug, code (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/890">#890</a>)</li>
<li><a href="e23e559297"><code>e23e559</code></a> fix(pointer): support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>)</li>
<li><a href="a7f99066a5"><code>a7f9906</code></a> fix: maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>)</li>
<li><a href="f209a6f863"><code>f209a6f</code></a> chore: update link to CONTRIBUTORS</li>
<li>Additional commits viewable in <a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@testing-library/user-event&package-manager=npm_and_yarn&previous-version=13.5.0&new-version=14.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)`

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-05 07:15:33 +00:00
dependabot[bot] 3b9f691eb7
Bump @testing-library/user-event in /examples/eth-pm
Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 13.5.0 to 14.0.4.
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4)

---
updated-dependencies:
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-05 03:10:14 +00:00
status-bors-ng[bot] bb186929e0
Merge #672 #673 #674
672: Bump @testing-library/user-event from 13.5.0 to 14.0.4 in /examples/store-reactjs-chat r=D4nte a=dependabot[bot]

Bumps [`@testing-library/user-event](https://github.com/testing-library/user-event)` from 13.5.0 to 14.0.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/testing-library/user-event/releases"><code>`@​testing-library/user-event</code>'s` releases</a>.</em></p>
<blockquote>
<h2>v14.0.4</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.3...v14.0.4">14.0.4</a> (2022-04-01)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>) (<a href="6d36828e22">6d36828</a>)</li>
</ul>
<h2>v14.0.3</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.2...v14.0.3">14.0.3</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pointer:</strong> change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>) (<a href="06f12a6475">06f12a6</a>)</li>
</ul>
<h2>v14.0.2</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.1...v14.0.2">14.0.2</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>) (<a href="126d2e7b78">126d2e7</a>)</li>
</ul>
<h2>v14.0.1</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.0...v14.0.1">14.0.1</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>) (<a href="a7f99066a5">a7f9906</a>)</li>
<li><strong>pointer:</strong> support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>) (<a href="e23e559297">e23e559</a>)</li>
</ul>
<h2>v14.0.0</h2>
<h2><a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.0">14.0.0</a> (2022-03-29)</h2>
<h3>⚠ BREAKING CHANGES</h3>
<ul>
<li><strong>APIs always return a Promise.</strong></li>
<li><strong>pointer:</strong> <code>skipPointerEvents</code> has been removed.
Use <code>pointerEventsCheck: PointerEventsCheckLevel.Never</code> instead.</li>
<li><strong>upload:</strong> <code>init</code> parameter has been removed from <code>userEvent.upload</code>.</li>
<li>The <code>userEvent.paste</code> API has new parameters.</li>
<li><code>{ctrl}</code>, <code>{del}</code>, <code>{esc}</code> no longer describe a key. Use <code>{Control}</code>, <code>{Delete}</code>, <code>{Escape}</code> instead.</li>
<li><code>{alt}</code>, <code>{ctrl}</code>, <code>{meta}</code>, <code>{shift}</code> no longer imply not releasing the key. Use <code>{Alt&gt;}</code>, <code>{Control&gt;}</code>, <code>{Meta&gt;}</code>, <code>{Shift&gt;}</code> instead.</li>
<li><code>init</code> parameter has been removed from these APIs:
<ul>
<li><code>userEvent.click</code></li>
<li><code>userEvent.dblClick</code></li>
<li><code>userEvent.tripleClick</code></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6d36828e22"><code>6d36828</code></a> fix: track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>)</li>
<li><a href="f2e8f8e25f"><code>f2e8f8e</code></a> docs: add wKovacs64 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/896">#896</a>)</li>
<li><a href="06f12a6475"><code>06f12a6</code></a> fix(pointer): change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>)</li>
<li><a href="dff6d54882"><code>dff6d54</code></a> docs: add tbertrand7 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/893">#893</a>)</li>
<li><a href="126d2e7b78"><code>126d2e7</code></a> fix: work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>)</li>
<li><a href="810c0d856c"><code>810c0d8</code></a> chore: update test environment to React18 (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/891">#891</a>)</li>
<li><a href="886780c2a8"><code>886780c</code></a> docs: add robcaldecott as a contributor for bug, code (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/890">#890</a>)</li>
<li><a href="e23e559297"><code>e23e559</code></a> fix(pointer): support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>)</li>
<li><a href="a7f99066a5"><code>a7f9906</code></a> fix: maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>)</li>
<li><a href="f209a6f863"><code>f209a6f</code></a> chore: update link to CONTRIBUTORS</li>
<li>Additional commits viewable in <a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@testing-library/user-event&package-manager=npm_and_yarn&previous-version=13.5.0&new-version=14.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)`

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

673: Bump @testing-library/user-event from 13.5.0 to 14.0.4 in /examples/web-chat r=D4nte a=dependabot[bot]

Bumps [`@testing-library/user-event](https://github.com/testing-library/user-event)` from 13.5.0 to 14.0.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/testing-library/user-event/releases"><code>`@​testing-library/user-event</code>'s` releases</a>.</em></p>
<blockquote>
<h2>v14.0.4</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.3...v14.0.4">14.0.4</a> (2022-04-01)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>) (<a href="6d36828e22">6d36828</a>)</li>
</ul>
<h2>v14.0.3</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.2...v14.0.3">14.0.3</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pointer:</strong> change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>) (<a href="06f12a6475">06f12a6</a>)</li>
</ul>
<h2>v14.0.2</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.1...v14.0.2">14.0.2</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>) (<a href="126d2e7b78">126d2e7</a>)</li>
</ul>
<h2>v14.0.1</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.0...v14.0.1">14.0.1</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>) (<a href="a7f99066a5">a7f9906</a>)</li>
<li><strong>pointer:</strong> support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>) (<a href="e23e559297">e23e559</a>)</li>
</ul>
<h2>v14.0.0</h2>
<h2><a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.0">14.0.0</a> (2022-03-29)</h2>
<h3>⚠ BREAKING CHANGES</h3>
<ul>
<li><strong>APIs always return a Promise.</strong></li>
<li><strong>pointer:</strong> <code>skipPointerEvents</code> has been removed.
Use <code>pointerEventsCheck: PointerEventsCheckLevel.Never</code> instead.</li>
<li><strong>upload:</strong> <code>init</code> parameter has been removed from <code>userEvent.upload</code>.</li>
<li>The <code>userEvent.paste</code> API has new parameters.</li>
<li><code>{ctrl}</code>, <code>{del}</code>, <code>{esc}</code> no longer describe a key. Use <code>{Control}</code>, <code>{Delete}</code>, <code>{Escape}</code> instead.</li>
<li><code>{alt}</code>, <code>{ctrl}</code>, <code>{meta}</code>, <code>{shift}</code> no longer imply not releasing the key. Use <code>{Alt&gt;}</code>, <code>{Control&gt;}</code>, <code>{Meta&gt;}</code>, <code>{Shift&gt;}</code> instead.</li>
<li><code>init</code> parameter has been removed from these APIs:
<ul>
<li><code>userEvent.click</code></li>
<li><code>userEvent.dblClick</code></li>
<li><code>userEvent.tripleClick</code></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6d36828e22"><code>6d36828</code></a> fix: track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>)</li>
<li><a href="f2e8f8e25f"><code>f2e8f8e</code></a> docs: add wKovacs64 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/896">#896</a>)</li>
<li><a href="06f12a6475"><code>06f12a6</code></a> fix(pointer): change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>)</li>
<li><a href="dff6d54882"><code>dff6d54</code></a> docs: add tbertrand7 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/893">#893</a>)</li>
<li><a href="126d2e7b78"><code>126d2e7</code></a> fix: work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>)</li>
<li><a href="810c0d856c"><code>810c0d8</code></a> chore: update test environment to React18 (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/891">#891</a>)</li>
<li><a href="886780c2a8"><code>886780c</code></a> docs: add robcaldecott as a contributor for bug, code (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/890">#890</a>)</li>
<li><a href="e23e559297"><code>e23e559</code></a> fix(pointer): support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>)</li>
<li><a href="a7f99066a5"><code>a7f9906</code></a> fix: maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>)</li>
<li><a href="f209a6f863"><code>f209a6f</code></a> chore: update link to CONTRIBUTORS</li>
<li>Additional commits viewable in <a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@testing-library/user-event&package-manager=npm_and_yarn&previous-version=13.5.0&new-version=14.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)`

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

674: Bump @testing-library/user-event from 13.5.0 to 14.0.4 in /examples/relay-reactjs-chat r=D4nte a=dependabot[bot]

Bumps [`@testing-library/user-event](https://github.com/testing-library/user-event)` from 13.5.0 to 14.0.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/testing-library/user-event/releases"><code>`@​testing-library/user-event</code>'s` releases</a>.</em></p>
<blockquote>
<h2>v14.0.4</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.3...v14.0.4">14.0.4</a> (2022-04-01)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>) (<a href="6d36828e22">6d36828</a>)</li>
</ul>
<h2>v14.0.3</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.2...v14.0.3">14.0.3</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pointer:</strong> change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>) (<a href="06f12a6475">06f12a6</a>)</li>
</ul>
<h2>v14.0.2</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.1...v14.0.2">14.0.2</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>) (<a href="126d2e7b78">126d2e7</a>)</li>
</ul>
<h2>v14.0.1</h2>
<h3><a href="https://github.com/testing-library/user-event/compare/v14.0.0...v14.0.1">14.0.1</a> (2022-03-31)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>) (<a href="a7f99066a5">a7f9906</a>)</li>
<li><strong>pointer:</strong> support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>) (<a href="e23e559297">e23e559</a>)</li>
</ul>
<h2>v14.0.0</h2>
<h2><a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.0">14.0.0</a> (2022-03-29)</h2>
<h3>⚠ BREAKING CHANGES</h3>
<ul>
<li><strong>APIs always return a Promise.</strong></li>
<li><strong>pointer:</strong> <code>skipPointerEvents</code> has been removed.
Use <code>pointerEventsCheck: PointerEventsCheckLevel.Never</code> instead.</li>
<li><strong>upload:</strong> <code>init</code> parameter has been removed from <code>userEvent.upload</code>.</li>
<li>The <code>userEvent.paste</code> API has new parameters.</li>
<li><code>{ctrl}</code>, <code>{del}</code>, <code>{esc}</code> no longer describe a key. Use <code>{Control}</code>, <code>{Delete}</code>, <code>{Escape}</code> instead.</li>
<li><code>{alt}</code>, <code>{ctrl}</code>, <code>{meta}</code>, <code>{shift}</code> no longer imply not releasing the key. Use <code>{Alt&gt;}</code>, <code>{Control&gt;}</code>, <code>{Meta&gt;}</code>, <code>{Shift&gt;}</code> instead.</li>
<li><code>init</code> parameter has been removed from these APIs:
<ul>
<li><code>userEvent.click</code></li>
<li><code>userEvent.dblClick</code></li>
<li><code>userEvent.tripleClick</code></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6d36828e22"><code>6d36828</code></a> fix: track calls to <code>HTMLInputElement.select()</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/898">#898</a>)</li>
<li><a href="f2e8f8e25f"><code>f2e8f8e</code></a> docs: add wKovacs64 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/896">#896</a>)</li>
<li><a href="06f12a6475"><code>06f12a6</code></a> fix(pointer): change selection before dispatching <code>focus</code> (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/895">#895</a>)</li>
<li><a href="dff6d54882"><code>dff6d54</code></a> docs: add tbertrand7 as a contributor for bug (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/893">#893</a>)</li>
<li><a href="126d2e7b78"><code>126d2e7</code></a> fix: work around shadowed globals (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/892">#892</a>)</li>
<li><a href="810c0d856c"><code>810c0d8</code></a> chore: update test environment to React18 (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/891">#891</a>)</li>
<li><a href="886780c2a8"><code>886780c</code></a> docs: add robcaldecott as a contributor for bug, code (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/890">#890</a>)</li>
<li><a href="e23e559297"><code>e23e559</code></a> fix(pointer): support nested select (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/888">#888</a>)</li>
<li><a href="a7f99066a5"><code>a7f9906</code></a> fix: maintain UI value on controlled number input (<a href="https://github-redirect.dependabot.com/testing-library/user-event/issues/889">#889</a>)</li>
<li><a href="f209a6f863"><code>f209a6f</code></a> chore: update link to CONTRIBUTORS</li>
<li>Additional commits viewable in <a href="https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@testing-library/user-event&package-manager=npm_and_yarn&previous-version=13.5.0&new-version=14.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)`

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-05 03:04:06 +00:00
dependabot[bot] 9a43b86b4d
Bump @testing-library/user-event in /examples/relay-reactjs-chat
Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 13.5.0 to 14.0.4.
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4)

---
updated-dependencies:
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-01 15:22:32 +00:00
dependabot[bot] e848bf2e2c
Bump @testing-library/user-event in /examples/web-chat
Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 13.5.0 to 14.0.4.
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4)

---
updated-dependencies:
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-01 15:22:27 +00:00
dependabot[bot] c4a06eba8a
Bump @testing-library/user-event in /examples/store-reactjs-chat
Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 13.5.0 to 14.0.4.
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/user-event/compare/v13.5.0...v14.0.4)

---
updated-dependencies:
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-01 15:22:02 +00:00
Franck R 3b77fa17ea
Merge pull request #666 from status-im/protons 2022-04-01 17:54:39 +11:00
Franck Royer 47277e5bb5
Replaces protons with protobufjs 2022-04-01 16:16:53 +11:00
Franck R ddffe6ec67
Merge pull request #651 from status-im/release/0.20.0 2022-03-30 10:27:12 +11:00
Franck Royer 929f05968b
Release 0.20.0 2022-03-30 10:14:25 +11:00
status-bors-ng[bot] 7e61dd3031
Merge #644
644: Freeze `libp2p-gossipsub` version to 0.13.0 r=D4nte a=D4nte

0.13.2 moved heartbeat class which is a breaking change.

Cc `@jemboh` 

Co-authored-by: Franck Royer <franck@status.im>
2022-03-29 12:26:45 +00:00
Franck R e45e62ff23
Merge pull request #645 from status-im/remove-workflow
Remove combine PR workflow
2022-03-29 22:55:13 +11:00
Franck Royer d154683924
Remove combine PR workflow
Using bors instead.
2022-03-29 21:35:26 +11:00
Franck Royer 13d12f8284
Froze `libp2p-gossipsub` version to 0.13.0
0.13.2 moved heartbeat class which is a breaking change.
2022-03-29 21:28:03 +11:00
status-bors-ng[bot] a53c728aaf
Merge #635
635: Bump webpack-cli from 4.9.1 to 4.9.2 r=jemboh a=dependabot[bot]

Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 4.9.1 to 4.9.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/webpack/webpack-cli/releases">webpack-cli's releases</a>.</em></p>
<blockquote>
<h2>v4.9.2</h2>
<h2><a href="https://github.com/webpack/webpack-cli/compare/webpack-cli@4.9.1...webpack-cli@4.9.2">4.9.2</a> (2022-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>respect <code>negatedDescription</code> for flags from schema (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3102">#3102</a>) (<a href="463b73115b">463b731</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md">webpack-cli's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/webpack/webpack-cli/compare/webpack-cli@4.9.1...webpack-cli@4.9.2">4.9.2</a> (2022-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>respect <code>negatedDescription</code> for flags from schema (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3102">#3102</a>) (<a href="463b73115b">463b731</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="88cbb3fe6a"><code>88cbb3f</code></a> chore(release): publish new version</li>
<li><a href="463b73115b"><code>463b731</code></a> fix: respect <code>negatedDescription</code> for flags from schema (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3102">#3102</a>)</li>
<li><a href="8bb55fb68d"><code>8bb55fb</code></a> chore(deps-dev): bump lint-staged from 12.2.2 to 12.3.1 (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3103">#3103</a>)</li>
<li><a href="4650e66b14"><code>4650e66</code></a> docs: update webpack options (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3101">#3101</a>)</li>
<li><a href="a59de986d8"><code>a59de98</code></a> chore(deps-dev): bump lint-staged from 12.2.1 to 12.2.2 (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3100">#3100</a>)</li>
<li><a href="98270b4496"><code>98270b4</code></a> chore(deps-dev): bump typescript from 4.5.4 to 4.5.5 (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3098">#3098</a>)</li>
<li><a href="c2ef3acf02"><code>c2ef3ac</code></a> chore(deps-dev): bump <code>`@​commitlint/cli</code>` from 16.0.3 to 16.1.0 (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3099">#3099</a>)</li>
<li><a href="4dc2a6245d"><code>4dc2a62</code></a> chore(deps-dev): bump <code>`@​typescript-eslint/parser</code></li>`
<li><a href="5de8ffb76a"><code>5de8ffb</code></a> chore(deps-dev): bump <code>`@​commitlint/cli</code></li>`
<li><a href="953daa15bc"><code>953daa1</code></a> chore(deps-dev): bump lint-staged from 12.2.0 to 12.2.1 (<a href="https://github-redirect.dependabot.com/webpack/webpack-cli/issues/3096">#3096</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/webpack/webpack-cli/compare/webpack-cli@4.9.1...webpack-cli@4.9.2">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=webpack-cli&package-manager=npm_and_yarn&previous-version=4.9.1&new-version=4.9.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-25 16:15:58 +00:00
dependabot[bot] eb4dc84c18
Bump webpack-cli from 4.9.1 to 4.9.2
Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 4.9.1 to 4.9.2.
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.9.1...webpack-cli@4.9.2)

---
updated-dependencies:
- dependency-name: webpack-cli
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-25 15:23:30 +00:00
status-bors-ng[bot] 7fc70cff56
Merge #631
631: Bump ts-loader from 9.2.6 to 9.2.8 r=D4nte a=dependabot[bot]

Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 9.2.6 to 9.2.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/TypeStrong/ts-loader/releases">ts-loader's releases</a>.</em></p>
<blockquote>
<h2>v9.2.8</h2>
<ul>
<li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1439">Bug fix: support webpack 5 in ts-loader</a> <a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1438">#1438</a> - thanks <a href="https://github.com/einatbar"><code>`@​einatbar</code></a></li>`
</ul>
<h2>v9.2.7</h2>
<ul>
<li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1422">cater for change in resolveTypeReferenceDirective API in TypeScript 4.7</a>  <a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1421">#1421</a> - thanks <a href="https://github.com/johnnyreilly"><code>`@​johnnyreilly</code></a>` and <a href="https://github.com/cspotcode"><code>`@​cspotcode</code></a>` for inspiration in ts-node work here: <a href="https://github-redirect.dependabot.com/TypeStrong/ts-node/pull/1648">TypeStrong/ts-node#1648</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md">ts-loader's changelog</a>.</em></p>
<blockquote>
<h2>v9.2.8</h2>
<ul>
<li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1439">Bug fix: support webpack 5 in ts-loader</a> <a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1438">#1438</a> - thanks <a href="https://github.com/einatbar"><code>`@​einatbar</code></a></li>`
</ul>
<h2>v9.2.7</h2>
<ul>
<li><a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/pull/1422">cater for change in resolveTypeReferenceDirective API in TypeScript 4.7</a> <a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1421">#1421</a> - thanks <a href="https://github.com/johnny"><code>`@​johnny</code></a>_reilly` and <a href="https://github.com/cspotcode"><code>`@​cspotcode</code></a>` for inspiration in ts-node work here: <a href="https://github-redirect.dependabot.com/TypeStrong/ts-node/pull/1648">TypeStrong/ts-node#1648</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="12f4ffe738"><code>12f4ffe</code></a> Bug fix: support webpack 5 in ts-loader (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1439">#1439</a>)</li>
<li><a href="65bb27c617"><code>65bb27c</code></a> Bump lodash from 4.17.4 to 4.17.21 in /test/execution-tests/babel-es2015 (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1428">#1428</a>)</li>
<li><a href="e7a2ba6c8e"><code>e7a2ba6</code></a> Bump url-parse from 1.5.1 to 1.5.10 in /examples/vanilla (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1424">#1424</a>)</li>
<li><a href="96ddcc5675"><code>96ddcc5</code></a> Bump url-parse in /examples/fork-ts-checker-webpack-plugin (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1423">#1423</a>)</li>
<li><a href="ecdc9c1358"><code>ecdc9c1</code></a> Bump ajv in /examples/fork-ts-checker-webpack-plugin (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1412">#1412</a>)</li>
<li><a href="5858b5596e"><code>5858b55</code></a> feat/4.6 (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1426">#1426</a>)</li>
<li><a href="f09024d655"><code>f09024d</code></a> fix: cater for change in resolveTypeReferenceDirective API in TypeScript 4.7 ...</li>
<li><a href="dcec071c11"><code>dcec071</code></a> 4.5 (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1387">#1387</a>)</li>
<li><a href="8bc7b8b58b"><code>8bc7b8b</code></a> Create FUNDING.yml (<a href="https://github-redirect.dependabot.com/TypeStrong/ts-loader/issues/1381">#1381</a>)</li>
<li>See full diff in <a href="https://github.com/TypeStrong/ts-loader/compare/v9.2.6...v9.2.8">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ts-loader&package-manager=npm_and_yarn&previous-version=9.2.6&new-version=9.2.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-25 06:14:25 +00:00
status-bors-ng[bot] 0784cf2545
Merge #634
634: Replace conversion functions with `uint8arrays` r=D4nte a=D4nte

Resolves #603

Co-authored-by: Franck Royer <franck@status.im>
2022-03-25 06:08:53 +00:00
Franck Royer 49998c02bd
Ensure Uint8Array is passed to utf-8 conversion function
Proto unexpectedly returns an `Array<number>`.
2022-03-25 17:08:03 +11:00
Franck Royer 52009b7be9
Use `concat` to simplify code 2022-03-25 17:08:03 +11:00
Franck Royer bf63e85e9e
Move utf-8 utils to `utils` 2022-03-25 17:08:03 +11:00
Franck Royer 638b96c17d
Replace custom utf-8 convert implementations with `uint8arrays` 2022-03-25 17:08:03 +11:00
Franck Royer 6ef0550433
Replace custom utf-8 convert implementations with `uint8arrays` 2022-03-25 17:08:03 +11:00
Franck Royer 33e6c3fe39
Replace custom hex implementations with `uint8arrays` 2022-03-25 17:08:02 +11:00
Franck Royer a915acfcda
Remove deprecated utils functions 2022-03-25 17:08:02 +11:00
Franck Royer c4d779d1db
Remove `equalByteArrays` 2022-03-25 17:08:02 +11:00
Franck R 7410e83798
Merge pull request #633 from status-im/603-uint8arrays 2022-03-25 11:38:01 +11:00
Franck Royer d0dea3884b
Replace Base 64 buggy conversion functions with `uint8arrays` 2022-03-25 11:02:40 +11:00
dependabot[bot] 6bc963f372
Bump ts-loader from 9.2.6 to 9.2.8
Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 9.2.6 to 9.2.8.
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/ts-loader/compare/v9.2.6...v9.2.8)

---
updated-dependencies:
- dependency-name: ts-loader
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-24 15:32:18 +00:00
Franck R a67df28ae8
Merge pull request #630 from status-im/dependabot/npm_and_yarn/fast-check-2.23.2 2022-03-24 14:58:15 +11:00
dependabot[bot] 4b9a4fdb6f
Bump fast-check from 2.22.0 to 2.23.2
Bumps [fast-check](https://github.com/dubzzz/fast-check) from 2.22.0 to 2.23.2.
- [Release notes](https://github.com/dubzzz/fast-check/releases)
- [Changelog](https://github.com/dubzzz/fast-check/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dubzzz/fast-check/compare/v2.22.0...v2.23.2)

---
updated-dependencies:
- dependency-name: fast-check
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-23 18:54:07 +00:00
Franck R e91dc7bbda
Merge pull request #629 from status-im/dependabot/npm_and_yarn/ethersproject/rlp-5.6.0 2022-03-23 15:11:02 +11:00
dependabot[bot] 9d36bcaece
Bump @ethersproject/rlp from 5.5.0 to 5.6.0
Bumps [@ethersproject/rlp](https://github.com/ethers-io/ethers.js/tree/HEAD/packages/rlp) from 5.5.0 to 5.6.0.
- [Release notes](https://github.com/ethers-io/ethers.js/releases)
- [Changelog](https://github.com/ethers-io/ethers.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ethers-io/ethers.js/commits/v5.6.0/packages/rlp)

---
updated-dependencies:
- dependency-name: "@ethersproject/rlp"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-22 15:38:18 +00:00
Franck R a6fce594e1
Merge pull request #627 from status-im/dependabot/npm_and_yarn/debug-4.3.4
Bump debug from 4.3.3 to 4.3.4
2022-03-22 19:53:53 +11:00
dependabot[bot] dceba4e81b
Bump debug from 4.3.3 to 4.3.4
Bumps [debug](https://github.com/debug-js/debug) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/debug-js/debug/releases)
- [Commits](https://github.com/debug-js/debug/compare/4.3.3...4.3.4)

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-21 15:31:29 +00:00
status-bors-ng[bot] aa09b49b13
Merge #626
626: Fix typo r=D4nte a=D4nte



Co-authored-by: Franck Royer <franck@status.im>
2022-03-21 04:08:45 +00:00
Franck Royer 6f62ef84a7
Fix typo 2022-03-21 15:07:42 +11:00
status-bors-ng[bot] bce9c156bc
Merge #623
623: Bump libp2p-websockets from 0.16.1 to 0.16.2 r=D4nte a=dependabot[bot]

Bumps [libp2p-websockets](https://github.com/libp2p/js-libp2p-websockets) from 0.16.1 to 0.16.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/libp2p/js-libp2p-websockets/releases">libp2p-websockets's releases</a>.</em></p>
<blockquote>
<h2>v0.16.2</h2>
<p>No release notes provided.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/libp2p/js-libp2p-websockets/blob/master/CHANGELOG.md">libp2p-websockets's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/libp2p/js-libp2p-websockets/compare/v0.16.1...v0.16.2">0.16.2</a> (2021-09-28)</h2>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="b70e7231ad"><code>b70e723</code></a> chore: release version v0.16.2</li>
<li><a href="0c8bb6865b"><code>0c8bb68</code></a> chore: update contributors</li>
<li><a href="a7f243736a"><code>a7f2437</code></a> chore: update ipfs-utils (<a href="https://github-redirect.dependabot.com/libp2p/js-libp2p-websockets/issues/136">#136</a>)</li>
<li>See full diff in <a href="https://github.com/libp2p/js-libp2p-websockets/compare/v0.16.1...v0.16.2">compare view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a href="https://www.npmjs.com/~achingbrain">achingbrain</a>, a new releaser for libp2p-websockets since your current version.</p>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=libp2p-websockets&package-manager=npm_and_yarn&previous-version=0.16.1&new-version=0.16.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-21 03:43:36 +00:00
status-bors-ng[bot] e87ecc3531
Merge #625
625: Add JavaScript Relay example r=D4nte a=D4nte

Simple JavaScript app that uses Waku Relay.

Could be subject for a new guide (we don't have a pure JS guide at the moment).

Co-authored-by: Franck Royer <franck@status.im>
2022-03-21 01:34:18 +00:00