Handling the `Sync` message is quick because we internally use
concurrency to fetch attestations and announcement. This will not
actually block startup.
Running this test with `--nocapture` reveals that we have unmocked
handlers. Adding these mocks fixes those panics (which are being
captured by tokio and hence did not abort the test).
Additionally we specialize the `mock_common_handlers` function to just
deal with the two `Sync` messages to make it clear that no more mocks
should be added to this function.
618: Bump react-refresh from 0.10.0 to 0.11.0 in /maker-frontend r=bonomat a=dependabot[bot]
Bumps [react-refresh](https://github.com/facebook/react/tree/HEAD/packages/react) from 0.10.0 to 0.11.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/facebook/react/releases">react-refresh's releases</a>.</em></p>
<blockquote>
<h2>v0.11.0</h2>
<h3>React Core</h3>
<h4>Breaking Changes</h4>
<ul>
<li><code>getDefaultProps()</code> is now called once per class and shared across all instances</li>
<li><code>MyComponent()</code> now returns a descriptor, not an instance</li>
<li><code>React.isValidComponent</code> and <code>React.PropTypes.component</code> validate <em>descriptors</em>, not component instances</li>
<li>Custom <code>propType</code> validators should return an <code>Error</code> instead of logging directly</li>
</ul>
<h4>New Features</h4>
<ul>
<li>Rendering to <code>null</code></li>
<li>Keyboard events include normalized <code>e.key</code> and <code>e.getModifierState()</code> properties</li>
<li>New normalized <code>onBeforeInput</code> event</li>
<li><code>React.Children.count</code> has been added as a helper for counting the number of children</li>
</ul>
<h4>Bug Fixes</h4>
<ul>
<li>Re-renders are batched in more cases</li>
<li>Events: <code>e.view</code> properly normalized</li>
<li>Added Support for more HTML attributes (<code>coords</code>, <code>crossOrigin</code>, <code>download</code>, <code>hrefLang</code>, <code>mediaGroup</code>, <code>muted</code>, <code>scrolling</code>, <code>shape</code>, <code>srcSet</code>, <code>start</code>, <code>useMap</code>)</li>
<li>Improved SVG support
<ul>
<li>Changing <code>className</code> on a mounted SVG component now works correctly</li>
<li>Added support for elements <code>mask</code> and <code>tspan</code></li>
<li>Added support for attributes <code>dx</code>, <code>dy</code>, <code>fillOpacity</code>, <code>fontFamily</code>, <code>fontSize</code>, <code>markerEnd</code>, <code>markerMid</code>, <code>markerStart</code>, <code>opacity</code>, <code>patternContentUnits</code>, <code>patternUnits</code>, <code>preserveAspectRatio</code>, <code>strokeDasharray</code>, <code>strokeOpacity</code></li>
</ul>
</li>
<li>CSS property names with vendor prefixes (<code>Webkit</code>, <code>ms</code>, <code>Moz</code>, <code>O</code>) are now handled properly</li>
<li>Duplicate keys no longer cause a hard error; now a warning is logged (and only one of the children with the same key is shown)</li>
<li><code>img</code> event listeners are now unbound properly, preventing the error "Two valid but unequal nodes with the same <code>data-reactid</code>"</li>
<li>Added explicit warning when missing polyfills</li>
</ul>
<h3>React With Addons</h3>
<ul>
<li>PureRenderMixin: a mixin which helps optimize "pure" components</li>
<li>Perf: a new set of tools to help with performance analysis</li>
<li>Update: New <code>$apply</code> command to transform values</li>
<li>TransitionGroup bug fixes with null elements, Android</li>
</ul>
<h3>React NPM Module</h3>
<ul>
<li>Now includes the pre-built packages under <code>dist/</code>.</li>
<li><code>envify</code> is properly listed as a dependency instead of a peer dependency</li>
</ul>
<h3>JSX</h3>
<ul>
<li>Added support for namespaces, eg <code><Components.Checkbox /></code></li>
<li>JSXTransformer
<ul>
<li>Enable the same <code>harmony</code> features available in the command line with <code><script type="text/jsx;harmony=true"></code></li>
<li>Scripts are downloaded in parallel for more speed. They are still executed in order (as you would expect with normal script tags)</li>
<li>Fixed a bug preventing sourcemaps from working in Firefox</li>
</ul>
</li>
</ul>
<h3>React Tools Module</h3>
<ul>
<li>Improved readme with usage and API information</li>
<li>Improved ES6 transforms available with <code>--harmony</code> option</li>
<li>Added <code>--source-map-inline</code> option to the <code>jsx</code> executable</li>
<li>New <code>transformWithDetails</code> API which gives access to the raw sourcemap data</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/facebook/react/blob/main/CHANGELOG.md">react-refresh's changelog</a>.</em></p>
<blockquote>
<h2>0.11.0 (July 17, 2014)</h2>
<h3>React Core</h3>
<h4>Breaking Changes</h4>
<ul>
<li><code>getDefaultProps()</code> is now called once per class and shared across all instances</li>
<li><code>MyComponent()</code> now returns a descriptor, not an instance</li>
<li><code>React.isValidComponent</code> and <code>React.PropTypes.component</code> validate <em>descriptors</em>, not component instances</li>
<li>Custom <code>propType</code> validators should return an <code>Error</code> instead of logging directly</li>
</ul>
<h4>New Features</h4>
<ul>
<li>Rendering to <code>null</code></li>
<li>Keyboard events include normalized <code>e.key</code> and <code>e.getModifierState()</code> properties</li>
<li>New normalized <code>onBeforeInput</code> event</li>
<li><code>React.Children.count</code> has been added as a helper for counting the number of children</li>
</ul>
<h4>Bug Fixes</h4>
<ul>
<li>Re-renders are batched in more cases</li>
<li>Events: <code>e.view</code> properly normalized</li>
<li>Added Support for more HTML attributes (<code>coords</code>, <code>crossOrigin</code>, <code>download</code>, <code>hrefLang</code>, <code>mediaGroup</code>, <code>muted</code>, <code>scrolling</code>, <code>shape</code>, <code>srcSet</code>, <code>start</code>, <code>useMap</code>)</li>
<li>Improved SVG support
<ul>
<li>Changing <code>className</code> on a mounted SVG component now works correctly</li>
<li>Added support for elements <code>mask</code> and <code>tspan</code></li>
<li>Added support for attributes <code>dx</code>, <code>dy</code>, <code>fillOpacity</code>, <code>fontFamily</code>, <code>fontSize</code>, <code>markerEnd</code>, <code>markerMid</code>, <code>markerStart</code>, <code>opacity</code>, <code>patternContentUnits</code>, <code>patternUnits</code>, <code>preserveAspectRatio</code>, <code>strokeDasharray</code>, <code>strokeOpacity</code></li>
</ul>
</li>
<li>CSS property names with vendor prefixes (<code>Webkit</code>, <code>ms</code>, <code>Moz</code>, <code>O</code>) are now handled properly</li>
<li>Duplicate keys no longer cause a hard error; now a warning is logged (and only one of the children with the same key is shown)</li>
<li><code>img</code> event listeners are now unbound properly, preventing the error "Two valid but unequal nodes with the same <code>data-reactid</code>"</li>
<li>Added explicit warning when missing polyfills</li>
</ul>
<h3>React With Addons</h3>
<ul>
<li>PureRenderMixin: a mixin which helps optimize "pure" components</li>
<li>Perf: a new set of tools to help with performance analysis</li>
<li>Update: New <code>$apply</code> command to transform values</li>
<li>TransitionGroup bug fixes with null elements, Android</li>
</ul>
<h3>React NPM Module</h3>
<ul>
<li>Now includes the pre-built packages under <code>dist/</code>.</li>
<li><code>envify</code> is properly listed as a dependency instead of a peer dependency</li>
</ul>
<h3>JSX</h3>
<ul>
<li>Added support for namespaces, eg <code><Components.Checkbox /></code></li>
<li>JSXTransformer
<ul>
<li>Enable the same <code>harmony</code> features available in the command line with <code><script type="text/jsx;harmony=true"></code></li>
<li>Scripts are downloaded in parallel for more speed. They are still executed in order (as you would expect with normal script tags)</li>
<li>Fixed a bug preventing sourcemaps from working in Firefox</li>
</ul>
</li>
</ul>
<h3>React Tools Module</h3>
<ul>
<li>Improved readme with usage and API information</li>
<li>Improved ES6 transforms available with <code>--harmony</code> option</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/facebook/react/commits/v0.11.0/packages/react">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-refresh&package-manager=npm_and_yarn&previous-version=0.10.0&new-version=0.11.0)](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>
This is a backwards-incompatible change in regards to the database
because we previously serialized UUIDs and now expect to deserialize
public keys.
It is a first step towards #576.
606: Reduce heartbeat interval in test harness r=klochowicz a=klochowicz
As a rule of thumb, taker waits twice the amount of HEARTBEAT_INTERVAL until it
assumes that maker disappeared.
Co-authored-by: Mariusz Klochowicz <mariusz@klochowicz.com>
589: Test maker actor system shutdown r=klochowicz a=klochowicz
- maker actor system now stops all its async tasks when it gets destroyed
- taker notices absence of maker in a newly written test
Note: I did not include the roll-out on the taker side (it would be done the
same way), as I wanted to first get some feedback from the reviewers.
Co-authored-by: Mariusz Klochowicz <mariusz@klochowicz.com>
602: Bug hunting cleanups r=thomaseizinger a=thomaseizinger
Some changes I made whilst bug hunting.
Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
598: Bump eslint-plugin-flowtype from 5.9.2 to 5.10.0 in /maker-frontend r=bonomat a=dependabot[bot]
Bumps [eslint-plugin-flowtype](https://github.com/gajus/eslint-plugin-flowtype) from 5.9.2 to 5.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/gajus/eslint-plugin-flowtype/releases">eslint-plugin-flowtype's releases</a>.</em></p>
<blockquote>
<h2>v5.10.0</h2>
<h1><a href="https://github.com/gajus/eslint-plugin-flowtype/compare/v5.9.2...v5.10.0">5.10.0</a> (2021-09-14)</h1>
<h3>Features</h3>
<ul>
<li>add new rule sort-type-union-intersection-members (<a href="https://github-redirect.dependabot.com/gajus/eslint-plugin-flowtype/issues/501">#501</a>) (<a href="fa4207de7f">fa4207d</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="fa4207de7f"><code>fa4207d</code></a> feat: add new rule sort-type-union-intersection-members (<a href="https://github-redirect.dependabot.com/gajus/eslint-plugin-flowtype/issues/501">#501</a>)</li>
<li>See full diff in <a href="https://github.com/gajus/eslint-plugin-flowtype/compare/v5.9.2...v5.10.0">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-flowtype&package-manager=npm_and_yarn&previous-version=5.9.2&new-version=5.10.0)](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>
597: Bump @types/node from 12.20.23 to 16.11.7 in /maker-frontend r=bonomat a=dependabot[bot]
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [`@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)` from 12.20.23 to 16.11.7.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@types/node&package-manager=npm_and_yarn&previous-version=12.20.23&new-version=16.11.7)](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>
599: Bump @types/react-table from 7.7.3 to 7.7.8 in /maker-frontend r=bonomat a=dependabot[bot]
Bumps [`@types/react-table](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-table)` from 7.7.3 to 7.7.8.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-table">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@types/react-table&package-manager=npm_and_yarn&previous-version=7.7.3&new-version=7.7.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>
600: Bump @types/jest from 25.2.3 to 27.0.2 in /taker-frontend r=bonomat a=dependabot[bot]
Bumps [`@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest)` from 25.2.3 to 27.0.2.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@types/jest&package-manager=npm_and_yarn&previous-version=25.2.3&new-version=27.0.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>
590: Bump tokio from 1.13.1 to 1.14.0 r=bonomat a=dependabot[bot]
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.13.1 to 1.14.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/tokio-rs/tokio/commits">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.13.1&new-version=1.14.0)](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>
591: Bump @chakra-ui/icons from 1.0.17 to 1.1.1 in /taker-frontend r=bonomat a=dependabot[bot]
Bumps [`@chakra-ui/icons](https://github.com/chakra-ui/chakra-ui/tree/HEAD/packages/icons)` from 1.0.17 to 1.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/chakra-ui/chakra-ui/releases"><code>`@chakra-ui/icons</code>'s` releases</a>.</em></p>
<blockquote>
<h2><code>`@chakra-ui/icons</code><a` href="https://github.com/1"><code>`@1</code></a>.1.1</h2>`
<h3>Patch Changes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/chakra-ui/chakra-ui/pull/5075">#5075</a>
<a href="b281429462"><code>b28142946</code></a>
Thanks <a href="https://github.com/cschroeter"><code>`@cschroeter</code></a>!` - Update babel config to
transpile soruces for older browsers. This fixes issues with CRA and
Storybook.</li>
<li>Updated dependencies
[<a href="b281429462"><code>b28142946</code></a>]:
<ul>
<li><code>`@chakra-ui/icon</code><a` href="https://github.com/1"><code>`@1</code></a>.2.1</li>`
</ul>
</li>
</ul>
<h2><code>`@chakra-ui/icons</code><a` href="https://github.com/1"><code>`@1</code></a>.1.0</h2>`
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://github-redirect.dependabot.com/chakra-ui/chakra-ui/pull/4991">#4991</a>
<a href="6095eaf9ac"><code>6095eaf9a</code></a>
Thanks <a href="https://github.com/segunadebayo"><code>`@segunadebayo</code></a>!` - Update build system
we use from a custom babel cli setup to
<a href="https://preconstruct.tools/">preconstruct</a>.</p>
<p>The previous build system transpiles the code in <code>src</code> directory to <code>dist/esm</code>
and <code>dist/cjs</code> keeping the same file structure. The new build system merges
all files in <code>src</code> and transpiles to a single <code>esm</code> and <code>cjs</code> file.</p>
<p><strong>Potential Breaking Change:</strong> The side effect of this is that, if you
imported any function, component or hook using the <strong>undocumented</strong> approach
like
<code>import { useOutsideClick } from "`@chakra-ui/hooks/dist/use-outside-click"</code>,`
you'll notice that the this doesn't work anymore.</p>
<p>Here's how to resolve it:</p>
<pre lang="jsx" data-meta="live=false"><code>// Won't work 🎇
import { useOutsideClick } from "`@chakra-ui/hooks/dist/use-outside-click"`
<p>// Works ✅
import { useOutsideClick } from "<code>`@chakra-ui/hooks</code>"`
</code></pre></p>
<p>If this affected your project, we recommend that you import hooks, functions
or components the way it's shown in the documentation. This will help keep
your project future-proof.</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
[<a href="6095eaf9ac"><code>6095eaf9a</code></a>]:
<ul>
<li><code>`@chakra-ui/icon</code><a` href="https://github.com/1"><code>`@1</code></a>.2.0</li>`
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/chakra-ui/chakra-ui/blob/main/packages/icons/CHANGELOG.md"><code>`@chakra-ui/icons</code>'s` changelog</a>.</em></p>
<blockquote>
<h2>1.1.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/chakra-ui/chakra-ui/pull/5075">#5075</a>
<a href="b281429462"><code>b28142946</code></a>
Thanks <a href="https://github.com/cschroeter"><code>`@cschroeter</code></a>!` - Update babel config to
transpile soruces for older browsers. This fixes issues with CRA and
Storybook.</li>
<li>Updated dependencies
[<a href="b281429462"><code>b28142946</code></a>]:
<ul>
<li><code>`@chakra-ui/icon</code><a` href="https://github.com/1"><code>`@1</code></a>.2.1</li>`
</ul>
</li>
</ul>
<h2>1.1.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a href="https://github-redirect.dependabot.com/chakra-ui/chakra-ui/pull/4991">#4991</a>
<a href="6095eaf9ac"><code>6095eaf9a</code></a>
Thanks <a href="https://github.com/segunadebayo"><code>`@segunadebayo</code></a>!` - Update build system
we use from a custom babel cli setup to
<a href="https://preconstruct.tools/">preconstruct</a>.</p>
<p>The previous build system transpiles the code in <code>src</code> directory to <code>dist/esm</code>
and <code>dist/cjs</code> keeping the same file structure. The new build system merges
all files in <code>src</code> and transpiles to a single <code>esm</code> and <code>cjs</code> file.</p>
<p><strong>Potential Breaking Change:</strong> The side effect of this is that, if you
imported any function, component or hook using the <strong>undocumented</strong> approach
like
<code>import { useOutsideClick } from "`@chakra-ui/hooks/dist/use-outside-click"</code>,`
you'll notice that the this doesn't work anymore.</p>
<p>Here's how to resolve it:</p>
<pre lang="jsx" data-meta="live=false"><code>// Won't work 🎇
import { useOutsideClick } from "`@chakra-ui/hooks/dist/use-outside-click"`
<p>// Works ✅
import { useOutsideClick } from "<code>`@chakra-ui/hooks</code>"`
</code></pre></p>
<p>If this affected your project, we recommend that you import hooks, functions
or components the way it's shown in the documentation. This will help keep
your project future-proof.</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="ceaac6fe62"><code>ceaac6f</code></a> chore(release): version packages</li>
<li><a href="b3bc4b5d22"><code>b3bc4b5</code></a> build: export sources</li>
<li><a href="63a7c270d9"><code>63a7c27</code></a> chore(release): version packages</li>
<li><a href="4ac515f212"><code>4ac515f</code></a> chore: remove key from pkg.json</li>
<li><a href="7afff0d86e"><code>7afff0d</code></a> chore: remove src from files</li>
<li><a href="c42dca05af"><code>c42dca0</code></a> chore: merge main into branch</li>
<li><a href="b7f06a0c05"><code>b7f06a0</code></a> chore: add src to pkg files</li>
<li><a href="849948cb4a"><code>849948c</code></a> Merge branch 'build/preconstruct' into preconstruct</li>
<li><a href="1898e0f544"><code>1898e0f</code></a> chore: adjust packages</li>
<li><a href="007f425348"><code>007f425</code></a> Merge branch 'main' into preconstruct</li>
<li>Additional commits viewable in <a href="https://github.com/chakra-ui/chakra-ui/commits/`@chakra-ui/icons@1.1.1/packages/icons">compare` view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@chakra-ui/icons&package-manager=npm_and_yarn&previous-version=1.0.17&new-version=1.1.1)](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>
592: Bump @types/jest from 26.0.24 to 27.0.2 in /maker-frontend r=bonomat a=dependabot[bot]
Bumps [`@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest)` from 26.0.24 to 27.0.2.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@types/jest&package-manager=npm_and_yarn&previous-version=26.0.24&new-version=27.0.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>
593: Bump @emotion/react from 11.5.0 to 11.6.0 in /taker-frontend r=bonomat a=dependabot[bot]
Bumps [`@emotion/react](https://github.com/emotion-js/emotion)` from 11.5.0 to 11.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/emotion-js/emotion/releases"><code>`@emotion/react</code>'s` releases</a>.</em></p>
<blockquote>
<h2><code>`@emotion/react</code><a` href="https://github.com/11"><code>`@11</code></a>.6.0</h2>`
<h3>Minor Changes</h3>
<ul>
<li><a href="https://github-redirect.dependabot.com/emotion-js/emotion/pull/2542">#2542</a> <a href="eb013d2572"><code>eb013d25</code></a> Thanks <a href="https://github.com/eps1lon"><code>`@eps1lon</code></a>!` - Fixed hydration mismatches if <code>React.useId</code> (the upcoming API of the React 18) is used within a tree below our components.</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://github-redirect.dependabot.com/emotion-js/emotion/pull/2551">#2551</a> <a href="99fcea04a2"><code>99fcea04</code></a> Thanks <a href="https://github.com/Andarist"><code>`@Andarist</code></a>!` - Shorten the path of the "private" <code>isolated-hoist-non-react-statics-do-not-use-this-in-your-code</code> entrypoint to avoid exeeding path limitations on Windows.</p>
</li>
<li>
<p>Updated dependencies [<a href="9e82a99162"><code>9e82a991</code></a>, <a href="516fe45805"><code>516fe458</code></a>]:</p>
<ul>
<li><code>`@emotion/sheet</code><a` href="https://github.com/1"><code>`@1</code></a>.1.0</li>`
<li><code>`@emotion/cache</code><a` href="https://github.com/11"><code>`@11</code></a>.6.0</li>`
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="2bac69b6c0"><code>2bac69b</code></a> Upgrade node version in the release workflow</li>
<li><a href="ed90c2e9da"><code>ed90c2e</code></a> Version Packages (<a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2539">#2539</a>)</li>
<li><a href="3c902cfd7d"><code>3c902cf</code></a> Fix & upgrade benchmarks (<a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2544">#2544</a>)</li>
<li><a href="9e82a99162"><code>9e82a99</code></a> Tweak changesets created in <a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2521">#2521</a></li>
<li><a href="d9b247d189"><code>d9b247d</code></a> Add a note that <code>container</code> can be used to inject styles to windows (<a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2541">#2541</a>)</li>
<li><a href="99fcea04a2"><code>99fcea0</code></a> Shorten the path of the "private" `isolated-hoist-non-react-statics-do-not-us...</li>
<li><a href="9861a18bbf"><code>9861a18</code></a> Add <code>enterKeyHint</code> prop to the <code>isPropValid</code> allowlist (<a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2540">#2540</a>)</li>
<li><a href="eb013d2572"><code>eb013d2</code></a> Fix hydration mismatches with <code>React.useId</code> (<a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2542">#2542</a>)</li>
<li><a href="516fe45805"><code>516fe45</code></a> Add <code>insertionPoint</code> option in <code>EmotionCache</code> (<a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2521">#2521</a>)</li>
<li><a href="01e4e0f6fe"><code>01e4e0f</code></a> Document extra installation step for M1 Mac (<a href="https://github-redirect.dependabot.com/emotion-js/emotion/issues/2535">#2535</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/emotion-js/emotion/compare/`@emotion/react@11.5.0...@emotion/react@11.6.0">compare` view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@emotion/react&package-manager=npm_and_yarn&previous-version=11.5.0&new-version=11.6.0)](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>
594: Bump react-icons from 3.11.0 to 4.3.1 in /taker-frontend r=bonomat a=dependabot[bot]
Bumps [react-icons](https://github.com/react-icons/react-icons) from 3.11.0 to 4.3.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/react-icons/react-icons/releases">react-icons's releases</a>.</em></p>
<blockquote>
<h2>v4.3.1</h2>
<table>
<thead>
<tr>
<th>Icon Library</th>
<th>License</th>
<th>Version</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://fontawesome.com/">Font Awesome</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0 License</a></td>
<td>5.15.4</td>
<td></td>
</tr>
<tr>
<td>7d3d774145ac38663f6d1effc6def0334b68ab7e</td>
<td>1612</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 4</a></td>
<td><a href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>4.6.3</td>
<td>696</td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 5</a></td>
<td><a href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>5.5.0</td>
<td>1332</td>
</tr>
<tr>
<td><a href="http://google.github.io/material-design-icons/">Material Design icons</a></td>
<td><a href="https://github.com/google/material-design-icons/blob/master/LICENSE">Apache License Version 2.0</a></td>
<td>63c5cb306073a9ecdfd3579f0f696746ab6305f6</td>
<td>3650</td>
</tr>
<tr>
<td><a href="http://s-ings.com/typicons/">Typicons</a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a></td>
<td>2.1.2</td>
<td>336</td>
</tr>
<tr>
<td><a href="https://octicons.github.com/">Github Octicons icons</a></td>
<td><a href="https://github.com/primer/octicons/blob/master/LICENSE">MIT</a></td>
<td>8.5.0</td>
<td>184</td>
</tr>
<tr>
<td><a href="https://feathericons.com/">Feather</a></td>
<td><a href="https://github.com/feathericons/feather/blob/master/LICENSE">MIT</a></td>
<td>4.28.0</td>
<td>286</td>
</tr>
<tr>
<td><a href="https://game-icons.net/">Game Icons</a></td>
<td><a href="https://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a></td>
<td>12920d6565588f0512542a3cb0cdfd36a497f910</td>
<td>4040</td>
</tr>
<tr>
<td><a href="https://erikflowers.github.io/weather-icons/">Weather Icons</a></td>
<td><a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a></td>
<td>2.0.12</td>
<td>219</td>
</tr>
<tr>
<td><a href="https://vorillaz.github.io/devicons/">Devicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.8.0</td>
<td>192</td>
</tr>
<tr>
<td><a href="https://github.com/ant-design/ant-design-icons">Ant Design Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>4.2.1</td>
<td>789</td>
</tr>
<tr>
<td><a href="https://github.com/twbs/icons">Bootstrap Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.5.0</td>
<td>1846</td>
</tr>
<tr>
<td><a href="https://github.com/Remix-Design/RemixIcon">Remix Icon</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version 2.0</a></td>
<td>2.5.0</td>
<td>2271</td>
</tr>
<tr>
<td><a href="https://github.com/icons8/flat-color-icons">Flat Color Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.2</td>
<td>329</td>
</tr>
<tr>
<td><a href="https://github.com/grommet/grommet-icons">Grommet-Icons</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version 2.0</a></td>
<td>4.6.2</td>
<td>615</td>
</tr>
<tr>
<td><a href="https://github.com/tailwindlabs/heroicons">Heroicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.4</td>
<td>460</td>
</tr>
<tr>
<td><a href="https://simpleicons.org/">Simple Icons</a></td>
<td><a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal</a></td>
<td>5.16.0</td>
<td>2024</td>
</tr>
<tr>
<td><a href="https://github.com/Keyamoon/IcoMoon-Free">IcoMoon Free</a></td>
<td><a href="https://github.com/react-icons/react-icons/blob/HEAD/undefined">CC BY 4.0 License</a></td>
<td>d006795ede82361e1bac1ee76f215cf1dc51e4ca</td>
<td>491</td>
</tr>
<tr>
<td><a href="https://github.com/atisawd/boxicons">BoxIcons</a></td>
<td><a href="https://github.com/react-icons/react-icons/blob/HEAD/undefined">CC BY 4.0 License</a></td>
<td>2.0.9</td>
<td>757</td>
</tr>
<tr>
<td><a href="https://github.com/astrit/css.gg">css.gg</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>2.0.0</td>
<td>704</td>
</tr>
<tr>
<td><a href="https://github.com/microsoft/vscode-codicons">VS Code Icons</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></td>
<td>0.0.23</td>
<td>383</td>
</tr>
</tbody>
</table>
<h2>v4.3.0</h2>
<table>
<thead>
<tr>
<th>Icon Library</th>
<th>License</th>
<th>Version</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://fontawesome.com/">Font Awesome</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0 License</a></td>
<td>5.15.4</td>
<td></td>
</tr>
<tr>
<td>7d3d774145ac38663f6d1effc6def0334b68ab7e</td>
<td>1612</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 4</a></td>
<td><a href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>4.6.3</td>
<td>696</td>
</tr>
<tr>
<td><a href="https://ionicons.com/">Ionicons 5</a></td>
<td><a href="https://github.com/ionic-team/ionicons/blob/master/LICENSE">MIT</a></td>
<td>5.5.0</td>
<td>1332</td>
</tr>
<tr>
<td><a href="http://google.github.io/material-design-icons/">Material Design icons</a></td>
<td><a href="https://github.com/google/material-design-icons/blob/master/LICENSE">Apache License Version 2.0</a></td>
<td>4.0.0-12-g63c5cb3060</td>
<td></td>
</tr>
<tr>
<td>63c5cb306073a9ecdfd3579f0f696746ab6305f6</td>
<td>3650</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="http://s-ings.com/typicons/">Typicons</a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a></td>
<td>2.1.2</td>
<td>336</td>
</tr>
<tr>
<td><a href="https://octicons.github.com/">Github Octicons icons</a></td>
<td><a href="https://github.com/primer/octicons/blob/master/LICENSE">MIT</a></td>
<td>8.5.0</td>
<td>184</td>
</tr>
<tr>
<td><a href="https://feathericons.com/">Feather</a></td>
<td><a href="https://github.com/feathericons/feather/blob/master/LICENSE">MIT</a></td>
<td>4.28.0</td>
<td>286</td>
</tr>
<tr>
<td><a href="https://game-icons.net/">Game Icons</a></td>
<td><a href="https://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a></td>
<td>12920d6565588f0512542a3cb0cdfd36a497f910</td>
<td>4040</td>
</tr>
<tr>
<td><a href="https://erikflowers.github.io/weather-icons/">Weather Icons</a></td>
<td><a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a></td>
<td>2.0.12</td>
<td>219</td>
</tr>
<tr>
<td><a href="https://vorillaz.github.io/devicons/">Devicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.8.0</td>
<td>192</td>
</tr>
<tr>
<td><a href="https://github.com/ant-design/ant-design-icons">Ant Design Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>4.2.1</td>
<td>789</td>
</tr>
<tr>
<td><a href="https://github.com/twbs/icons">Bootstrap Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.5.0</td>
<td>1846</td>
</tr>
<tr>
<td><a href="https://github.com/Remix-Design/RemixIcon">Remix Icon</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version 2.0</a></td>
<td>2.5.0</td>
<td>2271</td>
</tr>
<tr>
<td><a href="https://github.com/icons8/flat-color-icons">Flat Color Icons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.2</td>
<td>329</td>
</tr>
<tr>
<td><a href="https://github.com/grommet/grommet-icons">Grommet-Icons</a></td>
<td><a href="http://www.apache.org/licenses/">Apache License Version 2.0</a></td>
<td>4.6.2</td>
<td>615</td>
</tr>
<tr>
<td><a href="https://github.com/tailwindlabs/heroicons">Heroicons</a></td>
<td><a href="https://opensource.org/licenses/MIT">MIT</a></td>
<td>1.0.4</td>
<td>460</td>
</tr>
<tr>
<td><a href="https://simpleicons.org/">Simple Icons</a></td>
<td><a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal</a></td>
<td>5.16.0</td>
<td>2024</td>
</tr>
<tr>
<td><a href="https://github.com/Keyamoon/IcoMoon-Free">IcoMoon Free</a></td>
<td><a href="https://github.com/react-icons/react-icons/blob/HEAD/undefined">CC BY 4.0 License</a></td>
<td>d006795ede82361e1bac1ee76f215cf1dc51e4ca</td>
<td>491</td>
</tr>
<tr>
<td><a href="https://github.com/atisawd/boxicons">BoxIcons</a></td>
<td><a href="https://github.com/react-icons/react-icons/blob/HEAD/undefined">CC BY 4.0 License</a></td>
<td>2.0.9</td>
<td>757</td>
</tr>
</tbody>
</table>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="6d9ccf4df4"><code>6d9ccf4</code></a> v4.3.1</li>
<li><a href="e00f273918"><code>e00f273</code></a> rebuild</li>
<li><a href="0780033611"><code>0780033</code></a> v4.3.0</li>
<li><a href="c07e6cb8b3"><code>c07e6cb</code></a> Update README.md</li>
<li><a href="be56478419"><code>be56478</code></a> Upgrade all icons</li>
<li><a href="e9c6cd4c58"><code>e9c6cd4</code></a> Upgrade Material Design icons from v3 to v4</li>
<li><a href="07f19ab1fc"><code>07f19ab</code></a> Remove webfont-medical-icons</li>
<li><a href="cda1f91c48"><code>cda1f91</code></a> Add language property to CodeBlock (<a href="https://github-redirect.dependabot.com/react-icons/react-icons/issues/467">#467</a>)</li>
<li><a href="a2f13ccdbf"><code>a2f13cc</code></a> Bump io5 (ionicons) from 5.2.3 to 5.5.0 (<a href="https://github-redirect.dependabot.com/react-icons/react-icons/issues/425">#425</a>)</li>
<li><a href="0b8586c03d"><code>0b8586c</code></a> Proposed Medical Icon (<a href="https://github-redirect.dependabot.com/react-icons/react-icons/issues/434">#434</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/react-icons/react-icons/compare/v3.11.0...v4.3.1">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/~nolanleung">nolanleung</a>, a new releaser for react-icons since your current version.</p>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-icons&package-manager=npm_and_yarn&previous-version=3.11.0&new-version=4.3.1)](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>
595: Bump @types/react-router-dom from 5.3.1 to 5.3.2 in /taker-frontend r=bonomat a=dependabot[bot]
Bumps [`@types/react-router-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-router-dom)` from 5.3.1 to 5.3.2.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-router-dom">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=`@types/react-router-dom&package-manager=npm_and_yarn&previous-version=5.3.1&new-version=5.3.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>