This repository was archived by the owner on Mar 23, 2021. It is now read-only.
Release version 0.1.0 of nectar#3306
Merged
thomaseizinger merged 45 commits intomasterfrom Oct 20, 2020
Merged
Conversation
The previous error logged the error twice when printed with anyhow. We are not using the error outside of the module so we can just replace it with .context
This allows us to use it outside of this module.
This allows us to use it with struct-opt and parse SwapIds from the commandline.
These commands take the swap-id, the HTLC location and in case of redeem also the secret and produce a signed transaction for the particular ledger that just needs to be broadcasted in order to trigger this action. This can be useful in cases where nectar's swap execution gets stuck and one just wants to manually trigger a specific action.
Previously, we've only merged the release branch back into dev after a release. That ensured that any commits to the release branch like bumping the version in the manifest and updating the changelog were also present in the dev branch. Even though those changes were merged back into dev, GitHub still considered a new release branch to be "out-of-date" with master because it was missing the _merge_ commit that represents the actual release. There is no semantic difference between merging the release branch and merging the master branch back into dev. We change the workflow to use the master branch to have the warning go away and avoid developers being distracted by it, thinking the have to action it somehow.
3288: Merge `release/cnd/0.9.0` into `dev` r=thomaseizinger a=comit-botty-mc-botface This PR merges the `release/cnd/0.9.0` branch back into `dev`. This happens to ensure that the updates that happend on the release branch, i.e. CHANGELOG and manifest updates are also present on the dev branch. Co-authored-by: COMIT Botty McBotface <botty@coblox.tech>
This type knows how to serialize itself in the specified format and allows us to avoid repeating ourselves in several places.
With Rust 1.47, we can remove the serde_hex dependency and instead directly use the `hex` library for serializing arrays of arbitrary length.
3283: Commands for manually creating redeem/refund transactions for nectar r=mergify[bot] a=thomaseizinger Last patch introduces the commands, all previous patches are smaller refactorings to make it happen. Here is an example invocation for creating a redeem transaction for the herc20 protocol: > nectar create-transaction redeem 5c1c2771-4405-46a7-acbc-850ef80b3929 --secret abababababababababababababababababababababababababababababababab --address 0x0011001100110011001100110011001100110011 The hex output is written to stdout whereas all the logging to stderr, meaning one can directly pipe the output to a file or the clipboard if we one wants. I was also thinking of adding a `--and-broadcast` option if it should be directly broadcasted to the network but refrained from doing so for now. We can add that later if we want to. At the moment, we also depend on the connections to the wallet to be present even though we would not necessarily need that but I also saw that as an optimization on top of this. Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.58 to 1.0.59. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.58...v1.0.59) Signed-off-by: dependabot[bot] <support@github.com>
Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.19 to 0.3.20. - [Release notes](https://github.com/TeXitoi/structopt/releases) - [Changelog](https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md) - [Commits](TeXitoi/structopt@v0.3.19...v0.3.20) Signed-off-by: dependabot[bot] <support@github.com>
3292: Bump serde_json from 1.0.58 to 1.0.59 r=mergify[bot] a=dependabot[bot] Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.58 to 1.0.59. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/64bb3962bd70ae74d6e8a9daa496504c64033760"><code>64bb396</code></a> Release 1.0.59</li> <li><a href="https://github.com/serde-rs/json/commit/9b64e0b17ca73e7fbecace37758ff19bc35dea05"><code>9b64e0b</code></a> Format with rustfmt 1.4.22-nightly</li> <li><a href="https://github.com/serde-rs/json/commit/d61505059766c0552e4798b3eaac227e2c56c563"><code>d615050</code></a> Filter floats that parse to infinity from as_f64</li> <li><a href="https://github.com/serde-rs/json/commit/b1ca6c718674e5d1f9f66f9cbe12b930f547fc0b"><code>b1ca6c7</code></a> Add test of as_f64 on large number</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.58...v1.0.59">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Align with the other configuration parameters.
3293: Bump structopt from 0.3.19 to 0.3.20 r=thomaseizinger a=dependabot[bot] Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.19 to 0.3.20. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md">structopt's changelog</a>.</em></p> <blockquote> <h1>v0.3.20 (2020-10-12)</h1> <ul> <li>Fixed <a href="https://github-redirect.dependabot.com/TeXitoi/structopt/issues/439">a breakage</a> when the struct is placed inside a <code>macro_rules!</code> macro.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TeXitoi/structopt/commit/6fa8d68298eab6b4eb94b4b40ce64992b20c7263"><code>6fa8d68</code></a> v0.3.20</li> <li><a href="https://github.com/TeXitoi/structopt/commit/4c17b61a96d3f6a5ae5820399d6864787252984e"><code>4c17b61</code></a> cargo fmt & clippy</li> <li><a href="https://github.com/TeXitoi/structopt/commit/0852b918c40a1346b3ffe29ab0eba6991612c529"><code>0852b91</code></a> Fix <a href="https://github-redirect.dependabot.com/TeXitoi/structopt/issues/439">#439</a></li> <li>See full diff in <a href="https://github.com/TeXitoi/structopt/compare/v0.3.19...v0.3.20">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This allows us to declare the function `async` and makes it more convenient to do async stuff during startup.
Returning in case of Err and continuing when Ok is exactly what the `?` operator does. Let's utilize that.
The nightly version we use for formatting is pretty old already. For example, if we were to use attributes on expressions, the formatter would complain that this is still unstable although it was already stablized.
Printing diagnostics output to stderr is a useful thing for a commandline tool because it allows users to print the stdout output to a file or pipe it to other commands.
3289: Merge master into dev instead of the release branch r=thomaseizinger a=thomaseizinger Previously, we've only merged the release branch back into dev after a release. That ensured that any commits to the release branch like bumping the version in the manifest and updating the changelog were also present in the dev branch. Even though those changes were merged back into dev, GitHub still considered a new release branch to be "out-of-date" with master because it was missing the _merge_ commit that represents the actual release. There is no semantic difference between merging the release branch and merging the master branch back into dev. We change the workflow to use the master branch to have the warning go away and avoid developers being distracted by it, thinking the have to action it somehow. Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
For the hbit protocol, we create and sign the transaction for redeeming and refunding within the node. We can offer sub-commands that produce exactly these transactions for a swap. For the herc20 protocol, we don't create and sign these transactions. However, manually redeeming / refunding those is fairly trivial through MyEtherWallet as long as you have the secret. We offer a sub- command for printing the secret in case we are Alice.
3291: Bump Rust to 1.47.0 r=thomaseizinger a=thomaseizinger A clean build with Rust 1.47.0 is ~20% faster for me locally: 6m vs 7m 30s! CI doesn't seem to be affected too much which I guess is because we only have 2 cores there :) Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.58 to 1.0.59. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.58...v1.0.59) Signed-off-by: dependabot[bot] <support@github.com>
Bumps [toml](https://github.com/alexcrichton/toml-rs) from 0.5.6 to 0.5.7. - [Release notes](https://github.com/alexcrichton/toml-rs/releases) - [Commits](toml-rs/toml-rs@0.5.6...0.5.7) Signed-off-by: dependabot[bot] <support@github.com>
3295: Bump serde_json from 1.0.58 to 1.0.59 r=mergify[bot] a=dependabot[bot] Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.58 to 1.0.59. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/64bb3962bd70ae74d6e8a9daa496504c64033760"><code>64bb396</code></a> Release 1.0.59</li> <li><a href="https://github.com/serde-rs/json/commit/9b64e0b17ca73e7fbecace37758ff19bc35dea05"><code>9b64e0b</code></a> Format with rustfmt 1.4.22-nightly</li> <li><a href="https://github.com/serde-rs/json/commit/d61505059766c0552e4798b3eaac227e2c56c563"><code>d615050</code></a> Filter floats that parse to infinity from as_f64</li> <li><a href="https://github.com/serde-rs/json/commit/b1ca6c718674e5d1f9f66f9cbe12b930f547fc0b"><code>b1ca6c7</code></a> Add test of as_f64 on large number</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.58...v1.0.59">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3296: Bump toml from 0.5.6 to 0.5.7 r=mergify[bot] a=dependabot[bot] Bumps [toml](https://github.com/alexcrichton/toml-rs) from 0.5.6 to 0.5.7. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/alexcrichton/toml-rs/commit/9a9461087244f8f59c7ed9785231f0ad02eadcf3"><code>9a94610</code></a> Bump to 0.5.7</li> <li><a href="https://github.com/alexcrichton/toml-rs/commit/c74293f7a87cea3ce60a4df1c905501d4b749067"><code>c74293f</code></a> Improve error message when parsing unquoted string (<a href="https://github-redirect.dependabot.com/alexcrichton/toml-rs/issues/385">#385</a>)</li> <li><a href="https://github.com/alexcrichton/toml-rs/commit/940fcf9e183ab4f29204ef4f3ea92c01de8cc08a"><code>940fcf9</code></a> Allow delimiter quotes at the end of multiline strings (<a href="https://github-redirect.dependabot.com/alexcrichton/toml-rs/issues/393">#393</a>)</li> <li><a href="https://github.com/alexcrichton/toml-rs/commit/7a43ac9e9c28afec8414f6d924024f5d33fe8fa2"><code>7a43ac9</code></a> Apply some Clippy suggestions. (<a href="https://github-redirect.dependabot.com/alexcrichton/toml-rs/issues/378">#378</a>)</li> <li><a href="https://github.com/alexcrichton/toml-rs/commit/d99f5665b420f570c4aa26602360f7d5eaee1dc9"><code>d99f566</code></a> Rustdoc: Add links. Show all reexports as reexports. (<a href="https://github-redirect.dependabot.com/alexcrichton/toml-rs/issues/377">#377</a>)</li> <li><a href="https://github.com/alexcrichton/toml-rs/commit/bb675c5f56c6ddb5d450df53d2685f519dc8d78c"><code>bb675c5</code></a> Fix roundtripping of \u001f and \u007f in toml string literals (<a href="https://github-redirect.dependabot.com/alexcrichton/toml-rs/issues/372">#372</a>)</li> <li><a href="https://github.com/alexcrichton/toml-rs/commit/f60e3423426c7322533433f9d40e0f282a05d220"><code>f60e342</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/alexcrichton/toml-rs/issues/370">#370</a> from zeenix/fix-typo</li> <li><a href="https://github.com/alexcrichton/toml-rs/commit/87fcd656a6720b88323ee4a932c64d6b08676cf4"><code>87fcd65</code></a> Fix a small typo in docs</li> <li>See full diff in <a href="https://github.com/alexcrichton/toml-rs/compare/0.5.6...0.5.7">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.116 to 1.0.117. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.116...v1.0.117) Signed-off-by: dependabot[bot] <support@github.com>
Bumps [syn](https://github.com/dtolnay/syn) from 1.0.44 to 1.0.45. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](dtolnay/syn@1.0.44...1.0.45) Signed-off-by: dependabot[bot] <support@github.com>
Bumps [jasmine](https://github.com/jasmine/jasmine-npm) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/jasmine/jasmine-npm/releases) - [Commits](jasmine/jasmine-npm@v3.6.1...v3.6.2) Signed-off-by: dependabot[bot] <support@github.com>
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.11.8 to 14.11.10. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Signed-off-by: dependabot[bot] <support@github.com>
3303: Bump jasmine from 3.6.1 to 3.6.2 in /tests r=mergify[bot] a=dependabot[bot] Bumps [jasmine](https://github.com/jasmine/jasmine-npm) from 3.6.1 to 3.6.2. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jasmine/jasmine-npm/commit/949522508b3b31fb2138a9949abdc0bbd55427a7"><code>9495225</code></a> Bump version to 3.6.2</li> <li><a href="https://github.com/jasmine/jasmine-npm/commit/c8ebcffcf15388f4f530b1b5a805aa4e29074c89"><code>c8ebcff</code></a> Added support for ES modules</li> <li><a href="https://github.com/jasmine/jasmine-npm/commit/a91e8d4a97a4241ab04cc531ebfe917c618a208c"><code>a91e8d4</code></a> Switched from jshint to eslint</li> <li><a href="https://github.com/jasmine/jasmine-npm/commit/5e153dc6ff19b411fffbd7da6865a7e68c658e5e"><code>5e153dc</code></a> Switch back to just plain <code>glob</code> for smaller dependency list</li> <li><a href="https://github.com/jasmine/jasmine-npm/commit/4b3938996d41b2916dcbc0e6485fbaed35d14f3d"><code>4b39389</code></a> Remove code related to multiple workers.</li> <li><a href="https://github.com/jasmine/jasmine-npm/commit/f54316ed97442059653e3a75bb957ca75d9275e4"><code>f54316e</code></a> Added Node 13 and 14 to Travis builds</li> <li><a href="https://github.com/jasmine/jasmine-npm/commit/e6e7ed8e82e3106299ad8b9eff010581bfc84824"><code>e6e7ed8</code></a> Update dependencies</li> <li>See full diff in <a href="https://github.com/jasmine/jasmine-npm/compare/v3.6.1...v3.6.2">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> 3304: Bump @types/node from 14.11.8 to 14.11.10 in /tests r=mergify[bot] a=dependabot[bot] Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.11.8 to 14.11.10. <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 /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3301: Bump serde from 1.0.116 to 1.0.117 r=thomaseizinger a=dependabot[bot] Bumps [serde](https://github.com/serde-rs/serde) from 1.0.116 to 1.0.117. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/serde/releases">serde's releases</a>.</em></p> <blockquote> <h2>v1.0.117</h2> <ul> <li>Allow serialization of std::net::SocketAddrV6 to include a scope id if present (based on <a href="https://github-redirect.dependabot.com/rust-lang/rust/pull/77426">rust-lang/rust#77426</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/serde/commit/fc3f104c4a08a85b403c468348347240db6cc992"><code>fc3f104</code></a> Release 1.0.117</li> <li><a href="https://github.com/serde-rs/serde/commit/4bec9ffd0fe20e2556444b8e1322989594a1c838"><code>4bec9ff</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/1906">#1906</a> from Mingun/fix-misprint</li> <li><a href="https://github.com/serde-rs/serde/commit/e6d2322e689855dbd79a6be4ace991194a64774a"><code>e6d2322</code></a> Fix misprint in the error message</li> <li><a href="https://github.com/serde-rs/serde/commit/2b504099e4e480625e74d3599f5ddab2f42c63de"><code>2b50409</code></a> Include room for SocketAddrV6 to serialize scope id</li> <li><a href="https://github.com/serde-rs/serde/commit/be7d0e7eb2216dbc80a7804d7f53ee2d4fc9f3f0"><code>be7d0e7</code></a> Ignore map_err_ignore Clippy pedantic lint</li> <li>See full diff in <a href="https://github.com/serde-rs/serde/compare/v1.0.116...v1.0.117">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3302: Bump syn from 1.0.44 to 1.0.45 r=mergify[bot] a=dependabot[bot] Bumps [syn](https://github.com/dtolnay/syn) from 1.0.44 to 1.0.45. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/syn/releases">syn's releases</a>.</em></p> <blockquote> <h2>1.0.45</h2> <ul> <li>Provide more detailed error messages when parsing specific literal kind (<a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/908">#908</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/syn/commit/41622dafbebbe2d724e073a22fd0795844c68d18"><code>41622da</code></a> Release 1.0.45</li> <li><a href="https://github.com/dtolnay/syn/commit/0db160e42efecfc261b89df4e3cd5ad41a7cfc74"><code>0db160e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/syn/issues/908">#908</a> from dtolnay/expectliteral</li> <li><a href="https://github.com/dtolnay/syn/commit/18ccb5b7756ea973d548f64866aeba0bd3d73755"><code>18ccb5b</code></a> Provide more detailed error when parsing specific literal kind</li> <li><a href="https://github.com/dtolnay/syn/commit/1e4e050bb0a73adb1edc632af43ea4353c9fc402"><code>1e4e050</code></a> Add test of Lit parsing error message</li> <li>See full diff in <a href="https://github.com/dtolnay/syn/compare/1.0.44...1.0.45">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [jest](https://github.com/facebook/jest) from 26.5.3 to 26.6.0. - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md) - [Commits](jestjs/jest@v26.5.3...v26.6.0) Signed-off-by: dependabot[bot] <support@github.com>
3305: Bump jest from 26.5.3 to 26.6.0 in /tests r=mergify[bot] a=dependabot[bot] Bumps [jest](https://github.com/facebook/jest) from 26.5.3 to 26.6.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/jest/releases">jest's releases</a>.</em></p> <blockquote> <h2>26.6.0</h2> <h3>Features</h3> <ul> <li><code>[jest-cli, jest-config]</code> Add support for the <code>jest.config.ts</code> configuration file (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10564">#10564</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[jest-config]</code> Simplify transform RegExp (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10207">#10207</a>)</li> <li><code>[jest-fake-timers]</code> Lazily instantiate mock timers (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10551">#10551</a>)</li> <li><code>[jest-runtime]</code> <code>require.main</code> is no longer <code>undefined</code> when using <code>jest.resetModules</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10626">#10626</a>)</li> <li><code>[@jest/types]</code> Add missing values for <code>timers</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10632">#10632</a>)</li> </ul> <h3>Chore & Maintenance</h3> <ul> <li><code>[docs]</code> Add step for fetching <code>backers.json</code> file in website setup docs (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10631">#10631</a>)</li> <li><code>[docs]</code> Add page detailing environment variables set by Jest (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10630">#10630</a>)</li> <li><code>[jest-circus]</code> Refactor <code>callAsyncCircusFn</code> parameters (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10629">#10629</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/facebook/jest/blob/master/CHANGELOG.md">jest's changelog</a>.</em></p> <blockquote> <h2>26.6.0</h2> <h3>Features</h3> <ul> <li><code>[jest-cli, jest-config]</code> Add support for the <code>jest.config.ts</code> configuration file (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10564">#10564</a>)</li> </ul> <h3>Fixes</h3> <ul> <li><code>[jest-config]</code> Simplify transform RegExp (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10207">#10207</a>)</li> <li><code>[jest-fake-timers]</code> Lazily instantiate mock timers (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10551">#10551</a>)</li> <li><code>[jest-runtime]</code> <code>require.main</code> is no longer <code>undefined</code> when using <code>jest.resetModules</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10626">#10626</a>)</li> <li><code>[@jest/types]</code> Add missing values for <code>timers</code> (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10632">#10632</a>)</li> </ul> <h3>Chore & Maintenance</h3> <ul> <li><code>[docs]</code> Add step for fetching <code>backers.json</code> file in website setup docs (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10631">#10631</a>)</li> <li><code>[docs]</code> Add page detailing environment variables set by Jest (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10630">#10630</a>)</li> <li><code>[jest-circus]</code> Refactor <code>callAsyncCircusFn</code> parameters (<a href="https://github-redirect.dependabot.com/facebook/jest/pull/10629">#10629</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/facebook/jest/commit/b254fd82fdedcba200e1c7eddeaab83a09bdaaef"><code>b254fd8</code></a> v26.6.0</li> <li><a href="https://github.com/facebook/jest/commit/30a22fc6f63aeab25aba57176a67e4aad3796601"><code>30a22fc</code></a> chore: update changelog for release</li> <li><a href="https://github.com/facebook/jest/commit/7d7e97fb9ce82a91969b67a3d18b638b266ff988"><code>7d7e97f</code></a> fix: simplify transform RegExp (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10207">#10207</a>)</li> <li><a href="https://github.com/facebook/jest/commit/ecb31a71f03e6ba191c96988e1e88379bacfb241"><code>ecb31a7</code></a> refactor(fake-timers): don't setup fakeTimerAPIs unless needed (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10551">#10551</a>)</li> <li><a href="https://github.com/facebook/jest/commit/621ecf7cf47ce7612e5ea433c0b0981b3be7d373"><code>621ecf7</code></a> chore(docs): Added MIT Licence Badge and aligned all badges (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10411">#10411</a>)</li> <li><a href="https://github.com/facebook/jest/commit/8ea403dece7cbd15606098069985832e7263953e"><code>8ea403d</code></a> chore(website): minor CSS improvements to logos (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10410">#10410</a>)</li> <li><a href="https://github.com/facebook/jest/commit/e84a70c8456d61daa36b5c79a4df7ee752d6d6d6"><code>e84a70c</code></a> refactor: add missing options for timers on config.ts file (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10632">#10632</a>)</li> <li><a href="https://github.com/facebook/jest/commit/50b534ee612d0bf3de56df4c1b974a1792b8c022"><code>50b534e</code></a> chore: fix snapshot</li> <li><a href="https://github.com/facebook/jest/commit/19886b5a93a351eb77b570721eba1eecaa86f888"><code>19886b5</code></a> chore: refactor <code>callAsyncCircusFn</code> parameters (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10629">#10629</a>)</li> <li><a href="https://github.com/facebook/jest/commit/d077f2e6f36cc5717d61b973cda51f63bd1a280e"><code>d077f2e</code></a> Add environment variables docs page (<a href="https://github-redirect.dependabot.com/facebook/jest/issues/10630">#10630</a>)</li> <li>Additional commits viewable in <a href="https://github.com/facebook/jest/compare/v26.5.3...v26.6.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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 </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
thomaseizinger
approved these changes
Oct 20, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi @thomaseizinger!
This PR was created in response to a manual trigger of the release workflow here: https://github.com/comit-network/comit-rs/actions/runs/316593862.
I've updated the changelog and bumped the versions in the manifest files in this commit: 154159c.
Merging this PR will create a GitHub release and upload any assets that are created as part of the release build.