Fix value computed by LitByteStr::value in the case of a cooked byte string literal containing form feed or vertical tab characters following an escaped newline (#1474)
2.0.20
Documentation improvements
2.0.19
Improve rendering of compile errors within 2015-edition code calling a 2018+ edition proc macro (#1467, thanks @danielhenrymantilla)
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
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)
Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/LGUG2Z/komorebi/pull/491
**Author:** [@dependabot[bot]](https://github.com/apps/dependabot)
**Created:** 7/13/2023
**Status:** ❌ Closed
**Base:** `master` ← **Head:** `dependabot/cargo/syn-2.0.25`
---
### 📝 Commits (1)
- [`5a95b02`](https://github.com/LGUG2Z/komorebi/commit/5a95b02c34a79345cfba5cf6e7ced9dd0e6f51b7) chore(deps): bump syn from 1.0.109 to 2.0.25
### 📊 Changes
**2 files changed** (+2 additions, -2 deletions)
<details>
<summary>View changed files</summary>
📝 `Cargo.lock` (+1 -1)
📝 `derive-ahk/Cargo.toml` (+1 -1)
</details>
### 📄 Description
Bumps [syn](https://github.com/dtolnay/syn) from 1.0.109 to 2.0.25.
<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>2.0.25</h2>
<ul>
<li>Support single identifier as unbraced const generic argument (<a href="https://redirect.github.com/dtolnay/syn/issues/1483">#1483</a>)</li>
<li>Produce error message when LitStr::parse is used on a suffixed string literal (<a href="https://redirect.github.com/dtolnay/syn/issues/1484">#1484</a>)</li>
</ul>
<h2>2.0.24</h2>
<ul>
<li>Fix duplication of braces around const generic argument in non-full mode (<a href="https://redirect.github.com/dtolnay/syn/issues/1482">#1482</a>)</li>
</ul>
<h2>2.0.23</h2>
<ul>
<li>Preserve attributes on verbatim Item in statement position (<a href="https://redirect.github.com/dtolnay/syn/issues/1476">#1476</a>)</li>
<li>Support generic_const_exprs where-clauses such as <code>where [(); { T::COUNT }]:</code> in non-"full" mode (<a href="https://redirect.github.com/dtolnay/syn/issues/1478">#1478</a>)</li>
</ul>
<h2>2.0.22</h2>
<ul>
<li>Parse <code>c"…"</code> c-string literals (tracking issue: <a href="https://redirect.github.com/rust-lang/rust/issues/105723">rust-lang/rust#105723</a>)</li>
</ul>
<h2>2.0.21</h2>
<ul>
<li>Fix value computed by <code>LitByteStr::value</code> in the case of a cooked byte string literal containing form feed or vertical tab characters following an escaped newline (<a href="https://redirect.github.com/dtolnay/syn/issues/1474">#1474</a>)</li>
</ul>
<h2>2.0.20</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>2.0.19</h2>
<ul>
<li>Improve rendering of compile errors within 2015-edition code calling a 2018+ edition proc macro (<a href="https://redirect.github.com/dtolnay/syn/issues/1467">#1467</a>, thanks <a href="https://github.com/danielhenrymantilla"><code>@danielhenrymantilla</code></a>)</li>
</ul>
<h2>2.0.18</h2>
<ul>
<li>Permit empty attr in syn::meta::parser (<a href="https://redirect.github.com/dtolnay/syn/issues/1460">#1460</a>)</li>
</ul>
<h2>2.0.17</h2>
<ul>
<li>Enable proc_macro support on wasm targets (<a href="https://redirect.github.com/dtolnay/syn/issues/1459">#1459</a>)</li>
</ul>
<h2>2.0.16</h2>
<ul>
<li>Parse <code>builtin #</code> syntax as Expr::Verbatim (<a href="https://redirect.github.com/rust-lang/rust/issues/110680">rust-lang/rust#110680</a>, <a href="https://redirect.github.com/dtolnay/syn/issues/1454">#1454</a>)</li>
</ul>
<h2>2.0.15</h2>
<ul>
<li>Ensure <code>Type::Tuple</code> of length 1 prints as a tuple even if trailing comma is not provided in the Punctuated (<a href="https://redirect.github.com/dtolnay/syn/issues/1444">#1444</a>, thanks <a href="https://github.com/Fancyflame"><code>@Fancyflame</code></a>)</li>
</ul>
<h2>2.0.14</h2>
<ul>
<li>Add Punctuated::pop_punct() (<a href="https://redirect.github.com/dtolnay/syn/issues/1442">#1442</a>, thanks <a href="https://github.com/programmerjake"><code>@programmerjake</code></a>)</li>
</ul>
<h2>2.0.13</h2>
<ul>
<li>Improve spans of Expr::Field parsed from a float Literal (<a href="https://redirect.github.com/dtolnay/syn/issues/1433">#1433</a>, <a href="https://redirect.github.com/dtolnay/syn/issues/1436">#1436</a>)</li>
</ul>
<h2>2.0.12</h2>
<ul>
<li>Refer to <code>compile_error!</code> by absolute path in token stream produced by syn::Error::to_compile_error (<a href="https://redirect.github.com/dtolnay/syn/issues/1431">#1431</a>, thanks <a href="https://github.com/smoelius"><code>@smoelius</code></a>)</li>
</ul>
<h2>2.0.11</h2>
<ul>
<li>Improve error message on empty parens inside parse_nested_meta (<a href="https://redirect.github.com/dtolnay/syn/issues/1428">#1428</a>)</li>
</ul>
<h2>2.0.10</h2>
<ul>
<li>Fix visibility being parsed incorrectly on macro invocations inside of a trait</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/dtolnay/syn/commit/026a38ccb0dbc0fcfbba21c718f5604e3225deec"><code>026a38c</code></a> Release 2.0.25</li>
<li><a href="https://github.com/dtolnay/syn/commit/4d7254398ce1d2faa90c8ad2ef1201072a0f75da"><code>4d72543</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/syn/issues/1484">#1484</a> from dtolnay/parsesuffix</li>
<li><a href="https://github.com/dtolnay/syn/commit/d59afb25b739bd0cee1bb3add15064d918e429e1"><code>d59afb2</code></a> Reject parse on LitStr containing suffix</li>
<li><a href="https://github.com/dtolnay/syn/commit/7e8358abefb858ac59375e8dfcc2567f15a08306"><code>7e8358a</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/syn/issues/1483">#1483</a> from dtolnay/identgeneric</li>
<li><a href="https://github.com/dtolnay/syn/commit/ed8d784eff614f564cd0daf52a622aaba6f81c19"><code>ed8d784</code></a> Support single identifier as unbraced const generic argument</li>
<li><a href="https://github.com/dtolnay/syn/commit/e523c3663601e0545aa96d34c2151782814419f0"><code>e523c36</code></a> Directly call more specific expr ToTokens impl</li>
<li><a href="https://github.com/dtolnay/syn/commit/24c48cdef661faee12d612a69c4e835060c3f5b6"><code>24c48cd</code></a> Release 2.0.24</li>
<li><a href="https://github.com/dtolnay/syn/commit/cefa056bab4f67a29ad4d3c208c3a76af5007360"><code>cefa056</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/syn/issues/1482">#1482</a> from dtolnay/nonfullconstarg</li>
<li><a href="https://github.com/dtolnay/syn/commit/a4fc6b113b3c3b8316d1fede7881b4b3bdd643e2"><code>a4fc6b1</code></a> Fix duplication of braces around const generic argument in non-full mode</li>
<li><a href="https://github.com/dtolnay/syn/commit/d757cf4eb700a408bb3c005192af405049bff786"><code>d757cf4</code></a> Update test suite to nightly-2023-07-07</li>
<li>Additional commits viewable in <a href="https://github.com/dtolnay/syn/compare/1.0.109...2.0.25">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR 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>
> **Note**
> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/LGUG2Z/komorebi/pull/491
Author: @dependabot[bot]
Created: 7/13/2023
Status: ❌ Closed
Base:
master← Head:dependabot/cargo/syn-2.0.25📝 Commits (1)
5a95b02chore(deps): bump syn from 1.0.109 to 2.0.25📊 Changes
2 files changed (+2 additions, -2 deletions)
View changed files
📝
Cargo.lock(+1 -1)📝
derive-ahk/Cargo.toml(+1 -1)📄 Description
Bumps syn from 1.0.109 to 2.0.25.
Release notes
Sourced from syn's releases.
... (truncated)
Commits
026a38cRelease 2.0.254d72543Merge pull request #1484 from dtolnay/parsesuffixd59afb2Reject parse on LitStr containing suffix7e8358aMerge pull request #1483 from dtolnay/identgenericed8d784Support single identifier as unbraced const generic argumente523c36Directly call more specific expr ToTokens impl24c48cdRelease 2.0.24cefa056Merge pull request #1482 from dtolnay/nonfullconstarga4fc6b1Fix duplication of braces around const generic argument in non-full moded757cf4Update test suite to nightly-2023-07-07You can trigger a rebase of this PR by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.