Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Rust crate syn to v2.0.91 #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

oxide-renovate[bot]
Copy link

@oxide-renovate oxide-renovate bot commented Apr 9, 2024

This PR contains the following updates:

Package Type Update Change
syn dependencies patch 2.0.41 -> 2.0.91

Release Notes

dtolnay/syn (syn)

v2.0.91

Compare Source

v2.0.90

Compare Source

  • Fix automatic parenthesization of subexpressions containing outer attributes, such as (#[attr] thing).field (#​1785)
  • Fix automatic parenthesization of function calls via a struct field, such as (thing.field)() and thing.0() (#​1786)

v2.0.89

Compare Source

v2.0.88

Compare Source

  • Improve error recovery in parse_str (#​1783)

v2.0.87

Compare Source

v2.0.86

Compare Source

  • Support peeking the end of a parse stream (#​1689)
  • Allow parse_quote! to produce Vec<Attribute> (#​1775)

v2.0.85

Compare Source

  • Preserve extern static unsafety in ForeignItem::Verbatim (#​1773)

v2.0.84

Compare Source

v2.0.83

Compare Source

  • Documentation improvements

v2.0.82

Compare Source

  • Provide Parse impls for PreciseCapture and CapturedParam (#​1757, #​1758)
  • Support parsing unsafe attributes (#​1759)
  • Add Fold and VisitMut methods for Vec<Attribute> (#​1762)

v2.0.81

Compare Source

  • Add TypeParamBound::PreciseCapture to represent precise capture syntax impl Trait + use<'a, T> (#​1752, #​1753, #​1754)

v2.0.80

Compare Source

  • Add Expr::RawAddr (#​1743)
  • Reject precise captures and ~const in inappropriate syntax positions (#​1747)
  • Reject trait bound containing only precise capture (#​1748)

v2.0.79

Compare Source

  • Fix infinite loop on parsing chained ranges (#​1741)
  • Fix panic in parsing use items containing absolute paths (#​1742)

v2.0.78

Compare Source

  • Fix infinite loop on chained comparison (#​1739)

v2.0.77

Compare Source

  • Support parsing Expr::Tuple in non-"full" mode (#​1727)

v2.0.76

Compare Source

  • Enforce that tail call become keyword is followed by an expression (#​1725)

v2.0.75

Compare Source

  • Automatically fill in missing turbofish when printing ExprPath and other paths in expression position (#​1722)

v2.0.74

Compare Source

  • Fix "temporary is dropped and runs the destructor for type `impl Iterator`" regression affecting certain use of Generics iterator methods (#​1719)

v2.0.73

Compare Source

v2.0.72

Compare Source

v2.0.71

Compare Source

v2.0.70

Compare Source

v2.0.69

Compare Source

  • Correctly parenthesize labeled loops inside a break value (#​1692)
  • Add Punctuated::get and get_mut (#​1693)

v2.0.68

Compare Source

  • Improve panic location when parse_quote! parses invalid syntax (#​1690, thanks @​stepancheg)
  • More efficient peek implementation for Group and Lifetime (#​1687)

v2.0.67

Compare Source

  • Produce more accurate error message locations for errors located at the end of a nested group (#​1679, #​1680)
  • Support peeking LitCStr in ParseStream::peek (#​1682)

v2.0.66

Compare Source

  • Allow braced structs when parsing ExprLet (#​1671)

v2.0.65

Compare Source

v2.0.64

Compare Source

  • Support using ParseBuffer across catch_unwind (#​1646)
  • Validate that the expression in a let-else ends in brace as required by rustc (#​1648, #​1649)
  • Legalize invalid const generic arguments by wrapping in braces (#​1654, #​1655)
  • Fix some expression precedence edge cases involving break and return in loop headers (#​1656)
  • Always print closure bodies with a brace when the closure has an explicit return type (#​1658)
  • Automatically insert necessary parentheses in ToTokens for Expr when required by expression precedence (#​1659)
  • Support struct literal syntax in match guard expressions (#​1662)

v2.0.63

Compare Source

  • Parse and print long if-else-if chains without reliance on deep recursion to avoid overflowing stack (#​1644, #​1645)

v2.0.62

Compare Source

  • Reject invalid unparenthesized range and comparison operator expressions (#​1642, #​1643)

v2.0.61

Compare Source

  • Check for legal binding name in the ident of Pat::Ident (#​1627)
  • Resolve unexpected_cfgs warning (#​1635)

v2.0.60

Compare Source

  • Improve how None-delimited groups are counted by peek (#​1625)

v2.0.59

Compare Source

  • Parse c"…" and cr"…" C-string literal syntax as Lit::CStr (#​1502)

v2.0.58

Compare Source

  • Support $ in custom_punctuation! macro (#​1611)

v2.0.57

Compare Source

  • Eliminate dependency on quote when built with default-features disabled and the "proc-macro" feature enabled (#​1608, thanks @​BD103)

v2.0.56

Compare Source

  • Apply RUSTC_WORKSPACE_WRAPPER when deciding whether to run nightly-only tests (#​1605)

v2.0.55

Compare Source

  • Restore compatibility with rustc 1.56 through 1.59 (#​1603)

v2.0.54

Compare Source

  • Fix dead code warning in generated code when using custom_keyword! with syn's "printing" feature disabled (#​1602)

v2.0.53

Compare Source

  • Implement Copy, Clone, and ToTokens for syn::parse::Nothing (#​1597)

v2.0.52

Compare Source

  • Add an expression parser that uses match-arm's boundary rules (#​1593)

v2.0.51

Compare Source

  • Resolve non_local_definitions warnings in generated code under rustc 1.78-nightly

v2.0.50

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78

v2.0.49

Compare Source

  • Improve error location when parsing from an empty string literal using LitStr::parse (#​1590)

v2.0.48

Compare Source

  • Improve error message on unexpected token after else (#​1578)

v2.0.47

Compare Source

  • Improve error messages related to proc_macro::LexError (#​1575)

v2.0.46

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v2.0.45

Compare Source

  • Parse unsupported expressions in enum discriminants of DeriveInput as Expr::Verbatim in non-"full" mode, instead of error (#​1513)
  • Support parsing PatType with parse_quote! (#​1573)

v2.0.44

Compare Source

  • Documentation improvements

v2.0.43

Compare Source

  • Insert trailing comma if not already present when printing a 1-tuple in pattern position (#​1553)

v2.0.42

Compare Source

  • Documentation improvements

Configuration

📅 Schedule: Branch creation - "after 8pm,before 6am" in timezone America/Los_Angeles, Automerge - "after 8pm,before 6am" in timezone America/Los_Angeles.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.58 Update Rust crate syn to v2.0.59 Apr 15, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 8c5201d to 36ac4f0 Compare April 15, 2024 03:51
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.59 Update Rust crate syn to v2.0.60 Apr 18, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 36ac4f0 to 0508912 Compare April 18, 2024 03:13
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.60 Update Rust crate syn to v2.0.60 - autoclosed Apr 25, 2024
@oxide-renovate oxide-renovate bot closed this Apr 25, 2024
@oxide-renovate oxide-renovate bot deleted the renovate/syn-2.x-lockfile branch April 25, 2024 20:25
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.60 - autoclosed Update Rust crate syn to v2.0.60 Apr 26, 2024
@oxide-renovate oxide-renovate bot reopened this Apr 26, 2024
@oxide-renovate oxide-renovate bot restored the renovate/syn-2.x-lockfile branch April 26, 2024 17:37
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.60 Update Rust crate syn to v2.0.61 May 7, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 0508912 to d9b04e6 Compare May 7, 2024 03:13
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.61 Update Rust crate syn to v2.0.62 May 11, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from d9b04e6 to 04e3a2e Compare May 11, 2024 03:39
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.62 Update Rust crate syn to v2.0.63 May 12, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 04e3a2e to 1ec3b18 Compare May 12, 2024 03:11
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.63 Update Rust crate syn to v2.0.64 May 17, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 1ec3b18 to cc2b652 Compare May 17, 2024 03:12
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.64 Update Rust crate syn to v2.0.65 May 20, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from cc2b652 to de90cda Compare May 20, 2024 03:11
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.65 Update Rust crate syn to v2.0.66 May 24, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from de90cda to b9910fa Compare May 24, 2024 03:18
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.66 Update Rust crate syn to v2.0.67 Jun 22, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from b9910fa to f0ff1e5 Compare June 22, 2024 03:26
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.67 Update Rust crate syn to v2.0.68 Jun 24, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from f0ff1e5 to 295177b Compare June 24, 2024 03:11
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.68 Update Rust crate syn to v2.0.69 Jul 7, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 295177b to d96d9f7 Compare July 7, 2024 03:14
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.69 Update Rust crate syn to v2.0.70 Jul 9, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from eb9c5b5 to 4517305 Compare August 12, 2024 03:23
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.73 Update Rust crate syn to v2.0.74 Aug 12, 2024
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.74 Update Rust crate syn to v2.0.75 Aug 18, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 4517305 to 5d21379 Compare August 18, 2024 03:16
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.75 Update Rust crate syn to v2.0.76 Aug 24, 2024
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.76 Update Rust crate syn to v2.0.77 Aug 31, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 5d21379 to ffdbd59 Compare September 12, 2024 03:05
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.77 Update Rust crate syn to v2.0.79 Sep 28, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from ffdbd59 to df95c8c Compare September 28, 2024 03:10
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.79 Update Rust crate syn to v2.0.80 Oct 20, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from df95c8c to 1c8ce09 Compare October 20, 2024 03:29
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.80 Update Rust crate syn to v2.0.81 Oct 20, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 1c8ce09 to 5ee9005 Compare October 20, 2024 05:51
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.81 Update Rust crate syn to v2.0.82 Oct 21, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 5ee9005 to 0b82603 Compare October 21, 2024 03:17
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.82 Update Rust crate syn to v2.0.85 Oct 24, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 0b82603 to 3eb8b3b Compare October 24, 2024 03:12
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 3eb8b3b to 94f2590 Compare November 1, 2024 03:09
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.85 Update Rust crate syn to v2.0.86 Nov 1, 2024
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.86 Update Rust crate syn to v2.0.87 Nov 3, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 94f2590 to 16978ac Compare November 3, 2024 03:27
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.87 Update Rust crate syn to v2.0.88 Nov 21, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch 2 times, most recently from a9f011c to f83dbeb Compare November 21, 2024 06:31
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.88 Update Rust crate syn to v2.0.89 Nov 21, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from f83dbeb to a1cdacb Compare November 30, 2024 04:03
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.89 Update Rust crate syn to v2.0.90 Nov 30, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from a1cdacb to 88f2c17 Compare December 22, 2024 04:23
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.90 Update Rust crate syn to v2.0.91 Dec 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants