Closed dependabot[bot] closed 3 months ago
@dependabot merge
On Wed, Aug 14, 2024, 8:15 AM dependabot[bot] @.***> wrote:
Bumps syn https://github.com/dtolnay/syn from 2.0.72 to 2.0.74. Release notes
Sourced from syn's releases https://github.com/dtolnay/syn/releases.
2.0.74
- Fix "temporary is dropped and runs the destructor for type
impl Iterator
" regression affecting certain use of Generics iterator methods (#1719 https://redirect.github.com/dtolnay/syn/issues/1719)2.0.73
- Support parsing unnamed C varargs within function pointer types (
1711 https://redirect.github.com/dtolnay/syn/issues/1711)
- Improve synthesized error message on unexpected tokens at the end of the expected contents of a delimited group (#1713 https://redirect.github.com/dtolnay/syn/issues/1713)
- Support parsing unstable tail call syntax (#1714 https://redirect.github.com/dtolnay/syn/issues/1714, rust-lang/rust#112788 https://redirect.github.com/rust-lang/rust/issues/112788)
- Add Fields::members https://docs.rs/syn/2.0.73/syn/enum.Fields.html#method.members iterator (#1716 https://redirect.github.com/dtolnay/syn/issues/1716, thanks @Fancyflame https://github.com/Fancyflame)
Commits
- b15ae28 https://github.com/dtolnay/syn/commit/b15ae2840910cb6102d4d23d8b1e7bcb91304b23 Release 2.0.74
- 6cf2344 https://github.com/dtolnay/syn/commit/6cf234444021eb753af7a26f8122c28ce9d84935 Merge pull request #1719 https://redirect.github.com/dtolnay/syn/issues/1719 from dtolnay/iterators
- 2955ac5 https://github.com/dtolnay/syn/commit/2955ac55b70952e2114e559d1cd61267225152e8 Expose non-impl-Trait iterator return types
- 7dc05a5 https://github.com/dtolnay/syn/commit/7dc05a564398eabc552a2d46bb580f9a60d410fb Add regression test for issue 1718
- 857942e https://github.com/dtolnay/syn/commit/857942e411d71d3c0787e14e220c8c7d9d491051 Revert "Define Fields::members iterator type privately inside method"
- 65ec30d https://github.com/dtolnay/syn/commit/65ec30d65913e2368febc1f00a68324ec9a9ecd4 Revert "Embed Generics iterator implementations into method bodies"
- b5a5a8c https://github.com/dtolnay/syn/commit/b5a5a8c17737ac7a7b3553ec202626035bfa779c Release 2.0.73
- 8cdb5c7 https://github.com/dtolnay/syn/commit/8cdb5c734dab211eef10bbd0c47a251d38dca9e1 Add example of using Fields::members iterator
- 2afdc12 https://github.com/dtolnay/syn/commit/2afdc1267471c9813739a500f9bd2c0b19aa99af Remove redundancy of Generics::split_for_impl cfg with type's cfg
- 64b0dc8 https://github.com/dtolnay/syn/commit/64b0dc8d0d5fa6b3bf996c60fdff054944f1c993 Combine Generics impl blocks into one
- Additional commits viewable in compare view https://github.com/dtolnay/syn/compare/2.0.72...2.0.74
[image: Dependabot compatibility score] https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores
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 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 show
ignore conditions will show all of the ignore conditions of the specified dependency - @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)
You can view, comment on, or merge this pull request online at:
https://github.com/andrewdavidmackenzie/flow/pull/2286 Commit Summary
- cae9c6a https://github.com/andrewdavidmackenzie/flow/pull/2286/commits/cae9c6afb0a8c5108bc268f6eeed148915fc7eba build(deps): bump syn from 2.0.72 to 2.0.74
File Changes
(1 file https://github.com/andrewdavidmackenzie/flow/pull/2286/files)
- M Cargo.lock https://github.com/andrewdavidmackenzie/flow/pull/2286/files#diff-13ee4b2252c9e516a0547f2891aa2105c3ca71c6d7a1e682c69be97998dfc87e (48)
Patch Links:
- https://github.com/andrewdavidmackenzie/flow/pull/2286.patch
- https://github.com/andrewdavidmackenzie/flow/pull/2286.diff
— Reply to this email directly, view it on GitHub https://github.com/andrewdavidmackenzie/flow/pull/2286, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABKF4LFU2UTYRX6PICG3HSDZRLYY5AVCNFSM6AAAAABMPUJSO6VHI2DSMVQWIX3LMV43ASLTON2WKOZSGQ3DIOJYHA4DMMQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>
One of your CI runs failed on this pull request, so Dependabot won't merge it.
Dependabot will still automatically merge this pull request if you amend it and your tests pass.
Superseded by #2291.
Bumps syn from 2.0.72 to 2.0.74.
Release notes
Sourced from syn's releases.
Commits
b15ae28
Release 2.0.746cf2344
Merge pull request #1719 from dtolnay/iterators2955ac5
Expose non-impl-Trait iterator return types7dc05a5
Add regression test for issue 1718857942e
Revert "Define Fields::members iterator type privately inside method"65ec30d
Revert "Embed Generics iterator implementations into method bodies"b5a5a8c
Release 2.0.738cdb5c7
Add example of using Fields::members iterator2afdc12
Remove redundancy of Generics::split_for_impl cfg with type's cfg64b0dc8
Combine Generics impl blocks into oneDependabot 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 will merge this PR once CI passes on it, as requested by @andrewdavidmackenzie.
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 show