Tree:
4245c22b44
bdk-0.11
bip39
burn-down-handle
chore/actor-names-in-logs
chore/bump-bdk-0.15
chore/bump-maia
chore/changelog-entries
chore/leaner-release-process
chore/remove-next-dependency
chore/sql-format
chore/use-esplora-backend
compile-for-aarch64
contact-taker-before-changing-cfd-state
debug-collab-settlement
debug-statements
dependabot/cargo/anyhow-1.0.52
dependabot/cargo/clap-3.0.0-rc.8
dependabot/cargo/reqwest-0.11.8
dependabot/github_actions/docker/login-action-1.12.0
dependabot/npm_and_yarn/taker-frontend/types/node-17.0.4
dependabot/npm_and_yarn/taker-frontend/types/react-17.0.38
dependabot/npm_and_yarn/taker-frontend/vite-2.7.6
failing-clippy
feature/actor-custom-derive
feature/concurrent-roll-over
feature/delete-wallet-cache-on-failure
feature/force-stop-button
feature/integration-tests
feature/reconnect-button
feature/rollover-event-sourcing
feature/supervised-connection
fix-bad-api-calls
fix-olivia-event-id
fix/incorrect-tracing-use
fix/sql-oddness
frontend-backend
heartbeat-event-source
hotfix/0.1.1
hotfix/0.3.1
initial-taker-ui
integrate-protocol-maker-side
maker-taker-cfd-setup-messaging
master
new-http-api
no-buy-button-while-setting-up-cfd
no-contract-setup-message
pAndLAndPayout
patch-1
patch-2
reconnect-to-maker
refactor/no-log-handler
release/0.3.1
release/0.3.2
remove-long-heartbeat-interval-in-debug-mode
resilient-broadcast
rollover-test
rollover-test-2
shutdown-taker-if-no-maker-present
staging
state-machine
temporary-fast-timelocks
test-force-close-without-fake-clock
testing
ui-rampup
update-blockstream-electrum-server-url
upload-correct-windows-binary
verify-transactions
0.1.0
0.1.1
0.1.2
0.2.0
0.3.0
0.3.1
0.3.2
preview
${ noResults }
1236 Commits (4245c22b44b182bf7d8dd1554e8efc1541f11a60)
Author | SHA1 | Message | Date |
---|---|---|---|
Thomas Eizinger |
e448f37442
|
Migrate `do_send_async` to `send`
This cannot fail, nothing left to do. |
3 years ago |
Thomas Eizinger |
4e34bbade4
|
Migrate `do_send_async` to `send`
First log the warning, then attempt to send. This makes sure we always log the warning, even if we fail to send the message. |
3 years ago |
Thomas Eizinger |
a253a62582
|
Migrate `do_send_async` to `send`
First clean up state, then attempt to send the message. If it fails, we bubble up but leave things in a consistent state. |
3 years ago |
Thomas Eizinger |
7f0a218502
|
Migrate `do_send_async` to `send`
If we fail to deliver `NotifySettlementAccepted`, we just clean-up our internal state. |
3 years ago |
Thomas Eizinger |
ec8e4d6c6a
|
Migrate `do_send_async` to `send`
Handling the `Sync` message is quick because we internally use concurrency to fetch attestations and announcement. This will not actually block startup. |
3 years ago |
Thomas Eizinger |
8c025d4ed2
|
Mock handlers for contract setup
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. |
3 years ago |
Mariusz Klochowicz |
c01dfdd47f
|
Add a footer with social media links
Add Telegram, Twitter and GitHub links to ItchySats. The footer is styled in the similar way to the header and follows the theme changes. |
3 years ago |
bors[bot] |
5fbc226e96
|
Merge #618
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> |
3 years ago |
dependabot[bot] |
70e993b4c6
|
Bump typescript from 4.4.4 to 4.5.2 in /taker-frontend
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.4.4 to 4.5.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v4.4.4...v4.5.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
732174e603
|
Bump react-refresh from 0.10.0 to 0.11.0 in /maker-frontend
Bumps [react-refresh](https://github.com/facebook/react/tree/HEAD/packages/react) from 0.10.0 to 0.11.0. - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v0.11.0/packages/react) --- updated-dependencies: - dependency-name: react-refresh dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
bors[bot] |
2d57c4e395
|
Merge #610 #612 #613 #614 #615 #617
610: Bump @testing-library/jest-dom from 5.14.1 to 5.15.0 in /maker-frontend r=bonomat a=dependabot[bot] Bumps [`@testing-library/jest-dom](https://github.com/testing-library/jest-dom)` from 5.14.1 to 5.15.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/testing-library/jest-dom/releases"><code>`@testing-library/jest-dom</code>'s` releases</a>.</em></p> <blockquote> <h2>v5.15.0</h2> <h1><a href="https://github.com/testing-library/jest-dom/compare/v5.14.1...v5.15.0">5.15.0</a> (2021-11-02)</h1> <h3>Features</h3> <ul> <li>import parse directly from css (<a href="https://github-redirect.dependabot.com/testing-library/jest-dom/issues/415">#415</a>) (<a href=" |
3 years ago |
dependabot[bot] |
72711f0d39
|
Bump vite from 2.6.13 to 2.6.14 in /taker-frontend
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 2.6.13 to 2.6.14. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v2.6.14/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v2.6.14/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
90822f3232
|
Bump @testing-library/user-event in /taker-frontend
Bumps [@testing-library/user-event](https://github.com/testing-library/user-event) from 12.8.3 to 13.5.0. - [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/v12.8.3...v13.5.0) --- 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> |
3 years ago |
dependabot[bot] |
b3bc2b2bf2
|
Bump @types/node from 12.20.37 to 16.11.7 in /taker-frontend
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 12.20.37 to 16.11.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
9ffd2d31dc
|
Bump eslint-plugin-react-hooks from 4.2.0 to 4.3.0 in /maker-frontend
Bumps [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) from 4.2.0 to 4.3.0. - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks) --- updated-dependencies: - dependency-name: eslint-plugin-react-hooks dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
f86f8dab07
|
Bump @emotion/react from 11.4.1 to 11.6.0 in /maker-frontend
Bumps [@emotion/react](https://github.com/emotion-js/emotion) from 11.4.1 to 11.6.0. - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.4.1...@emotion/react@11.6.0) --- updated-dependencies: - dependency-name: "@emotion/react" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
65f4e89860
|
Bump @testing-library/jest-dom from 5.14.1 to 5.15.0 in /maker-frontend
Bumps [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) from 5.14.1 to 5.15.0. - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v5.14.1...v5.15.0) --- updated-dependencies: - dependency-name: "@testing-library/jest-dom" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
bors[bot] |
e4036440b2
|
Merge #601
601: Use the taker's public key for `TakerId` r=thomaseizinger a=thomaseizinger Co-authored-by: Thomas Eizinger <thomas@eizinger.io> |
3 years ago |
Thomas Eizinger |
47bfc3a2a9
|
Replace implementation of TakerId with public key
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. |
3 years ago |
Thomas Eizinger |
8bda269e7a
|
Improve variable naming
|
3 years ago |
Thomas Eizinger |
0b2d2ec3c2
|
Prefer tracing fields of stringified log message
|
3 years ago |
bors[bot] |
70b2af4067
|
Merge #606
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> |
3 years ago |
Mariusz Klochowicz |
342c36ef72
|
Reduce heartbeat interval in test harness
As a rule of thumb, taker waits twice the amount of HEARTBEAT_INTERVAL until it assumes that maker disappeared. |
3 years ago |
bors[bot] |
1fb91df89e
|
Merge #589
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> |
3 years ago |
Mariusz Klochowicz |
e8d2c86182
|
Add a test for triggering and noticing a maker shutdown
|
3 years ago |
Mariusz Klochowicz |
9c4e89325f
|
Tie tasks spawned inside actor systems to actor system lifetime
When the actor system shuts down, async tasks spawned by it on the tokio runtime should be stopped too. |
3 years ago |
Mariusz Klochowicz |
143cc09e65
|
Extend our futures trait for better ergonomics with remote handles
Simplify dealing with spawning a task on a runtime that returns a remote a handle that can be used to stop it. |
3 years ago |
bors[bot] |
0d6c4a4b57
|
Merge #602
602: Bug hunting cleanups r=thomaseizinger a=thomaseizinger Some changes I made whilst bug hunting. Co-authored-by: Thomas Eizinger <thomas@eizinger.io> |
3 years ago |
bors[bot] |
06c6d83fea
|
Merge #598
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=" |
3 years ago |
Thomas Eizinger |
573a950527
|
Remove left-over dbg!
|
3 years ago |
Thomas Eizinger |
05a883297f
|
Prettify log message for sending message
|
3 years ago |
Thomas Eizinger |
900d9560e2
|
Log readiness of actor systems
|
3 years ago |
Thomas Eizinger |
b1f6e9e1db
|
Generalize logging for received messages
|
3 years ago |
Thomas Eizinger |
ca2bd5e291
|
Statically ensure that our only failure mode is `NoConnection`
By creating a dedicated error type, we can communicate that the only failure mode of this function is a missing connection. |
3 years ago |
Thomas Eizinger |
561b189de1
|
Remove unnecessary `Result` return value
|
3 years ago |
Thomas Eizinger |
89576974e2
|
Inline `handle_new_order`
This indirection is unnecessary. |
3 years ago |
Thomas Eizinger |
1e38ec38ac
|
`unwrap` only in the tests
This makes the stacktrace more useful because it shows us where exactly it is failing. |
3 years ago |
Thomas Eizinger |
7bdc93c636
|
Reduce timeout to 10 seconds
With the reduced number of payout curve entries, our tests are always fast. |
3 years ago |
bors[bot] |
9ac886bba0
|
Merge #597
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> |
3 years ago |
dependabot[bot] |
7a512a8d31
|
Bump @types/node from 12.20.23 to 16.11.7 in /maker-frontend
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 12.20.23 to 16.11.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
bors[bot] |
c1b520eb92
|
Merge #599 #600
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> |
3 years ago |
dependabot[bot] |
35c4003889
|
Bump @types/jest from 25.2.3 to 27.0.2 in /taker-frontend
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 25.2.3 to 27.0.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) --- updated-dependencies: - dependency-name: "@types/jest" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
9e939fbcb3
|
Bump @types/react-table from 7.7.3 to 7.7.8 in /maker-frontend
Bumps [@types/react-table](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-table) from 7.7.3 to 7.7.8. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-table) --- updated-dependencies: - dependency-name: "@types/react-table" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
bors[bot] |
98e90f769f
|
Merge #584
584: Bump prettier from 2.3.2 to 2.4.1 in /maker-frontend r=bonomat a=dependabot[bot] Bumps [prettier](https://github.com/prettier/prettier) from 2.3.2 to 2.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>2.4.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#241">Changelog</a></p> <h2>2.4.0</h2> <p><a href="https://github.com/prettier/prettier/compare/2.3.2...2.4.0">diff</a></p> <p><a href="https://prettier.io/blog/2021/09/09/2.4.0.html">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>2.4.1</h1> <p><a href="https://github.com/prettier/prettier/compare/2.4.0...2.4.1">diff</a></p> <h4>Fix wildcard syntax in <code>`@forward</code>` (<a href="https://github-redirect.dependabot.com/prettier/prettier/pull/11482">#11482</a>) (<a href="https://github-redirect.dependabot.com/prettier/prettier/pull/11487">#11487</a> by <a href="https://github.com/niksy"><code>`@niksy</code></a>)</h4>` <!-- raw HTML omitted --> <pre lang="scss"><code>// Input `@forward` "library" as btn-*; <p>// Prettier 2.4.0 <a href="https://github.com/forward"><code>`@forward</code></a>` "library" as btn- *;</p> <p>// Prettier 2.4.1 <a href="https://github.com/forward"><code>`@forward</code></a>` "library" as btn-*; </code></pre></p> <h4>Add new CLI option <code>debug-print-ast</code> (<a href="https://github-redirect.dependabot.com/prettier/prettier/pull/11514">#11514</a> by <a href="https://github.com/sosukesuzuki"><code>`@sosukesuzuki</code></a>)</h4>` <p>A new <code>--debug-print-ast</code> CLI flag for debugging.</p> <h1>2.4.0</h1> <p><a href="https://github.com/prettier/prettier/compare/2.3.2...2.4.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2021/09/09/2.4.0.html">Release Notes</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
3 years ago |
bors[bot] |
95ee9469a1
|
Merge #590 #591 #592 #593 #594 #595
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=" |
3 years ago |
dependabot[bot] |
e0e6779fb9
|
Bump eslint-plugin-flowtype from 5.9.2 to 5.10.0 in /maker-frontend
Bumps [eslint-plugin-flowtype](https://github.com/gajus/eslint-plugin-flowtype) from 5.9.2 to 5.10.0. - [Release notes](https://github.com/gajus/eslint-plugin-flowtype/releases) - [Commits](https://github.com/gajus/eslint-plugin-flowtype/compare/v5.9.2...v5.10.0) --- updated-dependencies: - dependency-name: eslint-plugin-flowtype dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
2fe26b9c7a
|
Bump @types/react-router-dom from 5.3.1 to 5.3.2 in /taker-frontend
Bumps [@types/react-router-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-router-dom) from 5.3.1 to 5.3.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-router-dom) --- updated-dependencies: - dependency-name: "@types/react-router-dom" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
642a70679c
|
Bump react-icons from 3.11.0 to 4.3.1 in /taker-frontend
Bumps [react-icons](https://github.com/react-icons/react-icons) from 3.11.0 to 4.3.1. - [Release notes](https://github.com/react-icons/react-icons/releases) - [Commits](https://github.com/react-icons/react-icons/compare/v3.11.0...v4.3.1) --- updated-dependencies: - dependency-name: react-icons dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
9e84f6e032
|
Bump @emotion/react from 11.5.0 to 11.6.0 in /taker-frontend
Bumps [@emotion/react](https://github.com/emotion-js/emotion) from 11.5.0 to 11.6.0. - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.5.0...@emotion/react@11.6.0) --- updated-dependencies: - dependency-name: "@emotion/react" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |
dependabot[bot] |
c6cb05318b
|
Bump @types/jest from 26.0.24 to 27.0.2 in /maker-frontend
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.24 to 27.0.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) --- updated-dependencies: - dependency-name: "@types/jest" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> |
3 years ago |