[PR #399] [CLOSED] chore(deps): bump syn from 1.0.109 to 2.0.15 #907

Closed
opened 2026-01-05 14:53:22 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/399
Author: @dependabot[bot]
Created: 4/16/2023
Status: Closed

Base: masterHead: dependabot/cargo/syn-2.0.15


📝 Commits (1)

  • 12b4c87 chore(deps): bump syn from 1.0.109 to 2.0.15

📊 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.15.

Release notes

Sourced from syn's releases.

2.0.15

  • Ensure Type::Tuple of length 1 prints as a tuple even if trailing comma is not provided in the Punctuated (#1444, thanks @​Fancyflame)

2.0.14

2.0.13

  • Improve spans of Expr::Field parsed from a float Literal (#1433, #1436)

2.0.12

  • Refer to compile_error! by absolute path in token stream produced by syn::Error::to_compile_error (#1431, thanks @​smoelius)

2.0.11

  • Improve error message on empty parens inside parse_nested_meta (#1428)

2.0.10

  • Fix visibility being parsed incorrectly on macro invocations inside of a trait

2.0.9

  • Disallow type items in an extern block, trait, or module from being marked default

2.0.8

  • Treat try keyword as 2015-edition identifier in definition of try macro (#1422)

2.0.7

  • Fix parsing of mut self inside of Type::BareFn

2.0.6

  • Improve error message on missing ';' between statements (#1419)
  • Keep non-brace macro invocations in trailing expr position as Expr::Macro (#1420)

2.0.5

  • Expose ExprMacro data structure even when features="full" is not used (#1417)

2.0.4

  • Improve error reporting when parsing identifiers and paths (#1415, #1416)

2.0.3

  • Expose ExprGroup data structure even when features="full" is not used (#1412)

2.0.2

  • Documentation improvements

2.0.1

  • Add methods on syn::Meta for reporting error on an incorrect kind of attribute (#1409)

2.0.0

This release contains a batch of syntax tree improvements to incorporate ongoing Rust language development from the past 3.5 years since syn 1.

It never seems like an ideal time to finalize a syntax tree design, considering the frankly alarming number of syntax-disrupting language features currently in flight: keyword generics, restrictions, capabilities and contexts, conditional constness, new varieties of literals, dyn revamp such as explicitly dyn-safe traits and dyn-star, expression syntax in various phases of being added or being torn out (const blocks, try blocks, raw references), auto traits and negative impls, generalizations to higher rank trait bounds, async closures and static async trait methods, postfix keywords, pattern types, return type notation, unsafe attributes, …

... (truncated)

Commits
  • 3da56a7 Release 2.0.15
  • 2b7ba23 Merge pull request #1444 from Fancyflame/master
  • 03e4f21 fix TypeTuple::to_tokens may result in TypeParen
  • 0f78bdf Update test suite to nightly-2023-04-13
  • 6536786 Ignore unnecessary_box_returns pedantic clippy lint
  • 23686e4 Release 2.0.14
  • ed15fda Merge pull request #1442 from programmerjake/add-pop-punct
  • 81c5035 add Punctuated::pop_punct()
  • 2dc7988 Update test suite to nightly-2023-04-05
  • 1c1c2f0 Release syn-codegen 0.3.1
  • Additional commits viewable in compare view

Dependabot compatibility score

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/399 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 4/16/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/syn-2.0.15` --- ### 📝 Commits (1) - [`12b4c87`](https://github.com/LGUG2Z/komorebi/commit/12b4c87ce2675c6791ddb6261a3f74ee8c20fd6b) chore(deps): bump syn from 1.0.109 to 2.0.15 ### 📊 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.15. <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.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> <h2>2.0.9</h2> <ul> <li>Disallow <code>type</code> items in an extern block, trait, or module from being marked <code>default</code></li> </ul> <h2>2.0.8</h2> <ul> <li>Treat <code>try</code> keyword as 2015-edition identifier in definition of try macro (<a href="https://redirect.github.com/dtolnay/syn/issues/1422">#1422</a>)</li> </ul> <h2>2.0.7</h2> <ul> <li>Fix parsing of <code>mut self</code> inside of Type::BareFn</li> </ul> <h2>2.0.6</h2> <ul> <li>Improve error message on missing ';' between statements (<a href="https://redirect.github.com/dtolnay/syn/issues/1419">#1419</a>)</li> <li>Keep non-brace macro invocations in trailing expr position as Expr::Macro (<a href="https://redirect.github.com/dtolnay/syn/issues/1420">#1420</a>)</li> </ul> <h2>2.0.5</h2> <ul> <li>Expose <code>ExprMacro</code> data structure even when <code>features=&quot;full&quot;</code> is not used (<a href="https://redirect.github.com/dtolnay/syn/issues/1417">#1417</a>)</li> </ul> <h2>2.0.4</h2> <ul> <li>Improve error reporting when parsing identifiers and paths (<a href="https://redirect.github.com/dtolnay/syn/issues/1415">#1415</a>, <a href="https://redirect.github.com/dtolnay/syn/issues/1416">#1416</a>)</li> </ul> <h2>2.0.3</h2> <ul> <li>Expose <code>ExprGroup</code> data structure even when <code>features=&quot;full&quot;</code> is not used (<a href="https://redirect.github.com/dtolnay/syn/issues/1412">#1412</a>)</li> </ul> <h2>2.0.2</h2> <ul> <li>Documentation improvements</li> </ul> <h2>2.0.1</h2> <ul> <li>Add methods on syn::Meta for reporting error on an incorrect kind of attribute (<a href="https://redirect.github.com/dtolnay/syn/issues/1409">#1409</a>)</li> </ul> <h2>2.0.0</h2> <p>This release contains a batch of syntax tree improvements to incorporate ongoing Rust language development from the past 3.5 years since syn 1.</p> <p>It never seems like an ideal time to finalize a syntax tree design, considering the frankly alarming number of syntax-disrupting language features currently in flight: keyword generics, restrictions, capabilities and contexts, conditional constness, new varieties of literals, dyn revamp such as explicitly dyn-safe traits and dyn-star, expression syntax in various phases of being added or being torn out (const blocks, try blocks, raw references), auto traits and negative impls, generalizations to higher rank trait bounds, async closures and static async trait methods, postfix keywords, pattern types, return type notation, unsafe attributes, …</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/syn/commit/3da56a712abf7933b91954dbfb5708b452f88504"><code>3da56a7</code></a> Release 2.0.15</li> <li><a href="https://github.com/dtolnay/syn/commit/2b7ba235593c685b09f430a0f6bc916f472a4130"><code>2b7ba23</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/syn/issues/1444">#1444</a> from Fancyflame/master</li> <li><a href="https://github.com/dtolnay/syn/commit/03e4f217bdf7f3bbeff9a96919106abde2bebd03"><code>03e4f21</code></a> fix TypeTuple::to_tokens may result in TypeParen</li> <li><a href="https://github.com/dtolnay/syn/commit/0f78bdf2eb203382c89a5cb277f72dd787b9c2cf"><code>0f78bdf</code></a> Update test suite to nightly-2023-04-13</li> <li><a href="https://github.com/dtolnay/syn/commit/65367869006d842bfe17acc16c7973ae5fab56cf"><code>6536786</code></a> Ignore unnecessary_box_returns pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/syn/commit/23686e408a760848b95b421e5ff1895b70cc8380"><code>23686e4</code></a> Release 2.0.14</li> <li><a href="https://github.com/dtolnay/syn/commit/ed15fda5e8662095b3b7456c521ff4bd1edc01af"><code>ed15fda</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/syn/issues/1442">#1442</a> from programmerjake/add-pop-punct</li> <li><a href="https://github.com/dtolnay/syn/commit/81c503550e4080f86eb377a214c31245e4a64eeb"><code>81c5035</code></a> add Punctuated::pop_punct()</li> <li><a href="https://github.com/dtolnay/syn/commit/2dc79880cd982ec217c0e0dbcf751a6e78186b43"><code>2dc7988</code></a> Update test suite to nightly-2023-04-05</li> <li><a href="https://github.com/dtolnay/syn/commit/1c1c2f074fec3297e41b4e2ba70316fd2ce28d24"><code>1c1c2f0</code></a> Release syn-codegen 0.3.1</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/syn/compare/1.0.109...2.0.15">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=syn&package-manager=cargo&previous-version=1.0.109&new-version=2.0.15)](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>
adam added the pull-request label 2026-01-05 14:53:22 +01:00
adam closed this issue 2026-01-05 14:53:22 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#907