Skip to content

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.106

Release Notes

dtolnay/syn (syn)

v2.0.106

Compare Source

v2.0.105

Compare Source

v2.0.104

Compare Source

  • Disallow attributes on range expression (#​1872)

v2.0.103

Compare Source

  • Insert parentheses around binary operation with attribute (#​1871)

v2.0.102

Compare Source

  • Fix printing of nested Expr::Index and Expr::Tuple in non-full mode (#​1869)

v2.0.101

Compare Source

  • Improve TypeGenerics::as_turbofish to return longer-lived return value (#​1861)

v2.0.100

Compare Source

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#​1852)

v2.0.99

Compare Source

  • Documentation improvements

v2.0.98

Compare Source

  • Allow lifetimes in function pointer return values in ParseStream::call and Punctuated parsers (#​1847)

v2.0.97

Compare Source

  • Documentation improvements

v2.0.96

Compare Source

v2.0.95

Compare Source

  • Fix parenthesization of struct literals in let-chains (#​1832)

v2.0.94

Compare Source

v2.0.93

Compare Source

v2.0.92

Compare Source

  • Fix parenthesization of jumps inside ranges (#​1798)

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 changed the title Update Rust crate syn to v2.0.90 Update Rust crate syn to v2.0.91 Dec 22, 2024
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.91 Update Rust crate syn to v2.0.92 Dec 27, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 88f2c17 to 3692e21 Compare December 27, 2024 04:20
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.92 Update Rust crate syn to v2.0.93 Dec 29, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 3692e21 to 9938a43 Compare December 29, 2024 04:04
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.93 Update Rust crate syn to v2.0.94 Jan 2, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 9938a43 to 7acd2f0 Compare January 2, 2025 04:21
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.94 Update Rust crate syn to v2.0.95 Jan 5, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 7acd2f0 to e191932 Compare January 5, 2025 06:24
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.95 Update Rust crate syn to v2.0.96 Jan 10, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from e191932 to fb6c781 Compare January 10, 2025 04:22
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.96 Update Rust crate syn to v2.0.98 Feb 2, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from fb6c781 to b85cbd0 Compare February 2, 2025 04:24
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from b85cbd0 to 65087ab Compare March 3, 2025 09:10
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.98 Update Rust crate syn to v2.0.99 Mar 3, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 65087ab to d544923 Compare March 10, 2025 03:06
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.99 Update Rust crate syn to v2.0.100 Mar 10, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from d544923 to 56dbd3d Compare April 27, 2025 03:27
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.100 Update Rust crate syn to v2.0.101 Apr 27, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 56dbd3d to 8df6db5 Compare June 11, 2025 03:31
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.101 Update Rust crate syn to v2.0.102 Jun 11, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 8df6db5 to 8e95326 Compare June 13, 2025 03:30
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.102 Update Rust crate syn to v2.0.103 Jun 13, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 8e95326 to 7d43c43 Compare June 22, 2025 03:51
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.103 Update Rust crate syn to v2.0.104 Jun 22, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 7d43c43 to 28ffcca Compare August 14, 2025 03:34
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.104 Update Rust crate syn to v2.0.105 Aug 14, 2025
@oxide-renovate oxide-renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 28ffcca to 77d1ce1 Compare August 16, 2025 03:32
@oxide-renovate oxide-renovate bot changed the title Update Rust crate syn to v2.0.105 Update Rust crate syn to v2.0.106 Aug 16, 2025
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