-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore(deps): update rstest requirement from 0.23.0 to 0.24.0 #165
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updates the requirements on [rstest](https://github.com/la10736/rstest) to permit the latest version. - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](la10736/rstest@v0.23.0...v0.24.0) --- updated-dependencies: - dependency-name: rstest dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
d13edfa
to
8c39745
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #165 +/- ##
=======================================
Coverage 82.29% 82.29%
=======================================
Files 23 23
Lines 5830 5830
Branches 5830 5830
=======================================
Hits 4798 4798
Misses 956 956
Partials 76 76 ☔ View full report in Codecov by Sentry. |
aborgna-q
approved these changes
Jan 13, 2025
github-merge-queue bot
pushed a commit
that referenced
this pull request
Jan 13, 2025
Updates the requirements on [rstest](https://github.com/la10736/rstest) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/la10736/rstest/releases">rstest's releases</a>.</em></p> <blockquote> <h2>0.24.0</h2> <h2>What's Changed</h2> <ul> <li>refactor: use <code>core</code> instead of <code>std</code> by <a href="https://github.com/rnbguy"><code>@rnbguy</code></a> in <a href="https://redirect.github.com/la10736/rstest/pull/283">la10736/rstest#283</a></li> <li>Fix msrv and complete no_std support by <a href="https://github.com/la10736"><code>@la10736</code></a> in <a href="https://redirect.github.com/la10736/rstest/pull/285">la10736/rstest#285</a></li> <li>replace futures with futures-util by <a href="https://github.com/mati865"><code>@mati865</code></a> in <a href="https://redirect.github.com/la10736/rstest/pull/288">la10736/rstest#288</a></li> <li>Introduce Context by <a href="https://github.com/la10736"><code>@la10736</code></a> in <a href="https://redirect.github.com/la10736/rstest/pull/289">la10736/rstest#289</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/rnbguy"><code>@rnbguy</code></a> made their first contribution in <a href="https://redirect.github.com/la10736/rstest/pull/283">la10736/rstest#283</a></li> <li><a href="https://github.com/mati865"><code>@mati865</code></a> made their first contribution in <a href="https://redirect.github.com/la10736/rstest/pull/288">la10736/rstest#288</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/la10736/rstest/compare/v0.23.0...v0.24.0">https://github.com/la10736/rstest/compare/v0.23.0...v0.24.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/la10736/rstest/blob/master/CHANGELOG.md">rstest's changelog</a>.</em></p> <blockquote> <h2>[0.24.0] 2025/1/1</h2> <h3>Changed</h3> <ul> <li>MSRV to 1.70.0 (see <a href="https://redirect.github.com/la10736/rstest/issues/284">#284</a> thanks to <a href="https://github.com/rnbguy"><code>@rnbguy</code></a>)</li> </ul> <h3>Add</h3> <ul> <li><code>#![no_std]</code> support: now you can use <code>rstest</code> also in <code>no_std</code> lib (see <a href="https://redirect.github.com/la10736/rstest/issues/282">#282</a> thanks to <a href="https://github.com/rnbguy"><code>@rnbguy</code></a>)</li> <li><code>#[context]</code> to have test function name and other useful thighs on the tip of your fingers (see <a href="https://redirect.github.com/la10736/rstest/issues/177">#177</a>)</li> </ul> <h2>[0.23.0] 2024/9/29</h2> <h3>Add</h3> <ul> <li>You can now use environment variables in <code>#[files]</code> with an optional default value (see <a href="https://redirect.github.com/la10736/rstest/pull/277">#277</a>).</li> <li>You can now set a base_dir for <code>#[files]</code> with the <code>$[base_dir = "..."]</code> attribute (see <a href="https://redirect.github.com/la10736/rstest/pull/277">#277</a>).</li> </ul> <h2>[0.22.0] 2024/8/4</h2> <h3>Changed</h3> <ul> <li>Now it's possible destructuring input values both for cases, values and fixtures. See <a href="https://redirect.github.com/la10736/rstest/issues/231">#231</a> for details</li> </ul> <h3>Add</h3> <ul> <li>Implemented <code>#[ignore]</code> attribute to ignore test parameters during fixtures resolution/injection. See <a href="https://redirect.github.com/la10736/rstest/issues/228">#228</a> for details</li> </ul> <h3>Fixed</h3> <ul> <li>Lot of typo in code</li> </ul> <h2>[0.21.0] 2024/6/1</h2> <h3>Changed</h3> <ul> <li>Add feature <code>crate-name</code> enabled by default to opt-in crate rename support. See <a href="https://redirect.github.com/la10736/rstest/issues/258">#258</a></li> </ul> <h2>[0.20.0] 2024/5/30</h2> <h3>Add</h3> <ul> <li>Implemented <code>#[by_ref]</code> attribute to take get a local lifetime for test arguments. See <a href="https://redirect.github.com/la10736/rstest/issues/241">#241</a> for more details. Thanks to <a href="https://github.com/narpfel"><code>@narpfel</code></a> for suggesting it and useful discussions.</li> <li>Support for import <code>rstest</code> with another name. See <a href="https://redirect.github.com/la10736/rstest/issues/221">#221</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/la10736/rstest/commit/d57af90f16718d223a29cdf71b5f8950139fd50c"><code>d57af90</code></a> Prepare release</li> <li><a href="https://github.com/la10736/rstest/commit/dfc4ff0e4262d85b3c148625154904510404dbfe"><code>dfc4ff0</code></a> Make clippy happy</li> <li><a href="https://github.com/la10736/rstest/commit/01140c13a18562cc25a96ba947a5dfdff077ce01"><code>01140c1</code></a> Docs and changelog</li> <li><a href="https://github.com/la10736/rstest/commit/4a9763f2fecbea87e99c4b5d3278f7a1fd9309f1"><code>4a9763f</code></a> 1. Test also matrix case</li> <li><a href="https://github.com/la10736/rstest/commit/d77d7c6a487d334f55636d632f97cc001cd2dd92"><code>d77d7c6</code></a> Base implementation</li> <li><a href="https://github.com/la10736/rstest/commit/7792a9b7bc2b5b68999cb5a98a23a37c2907d1ed"><code>7792a9b</code></a> Add the ability to run CI test on demand</li> <li><a href="https://github.com/la10736/rstest/commit/11869b587c0ea6072b486cbab8b7ae3fd8d325e1"><code>11869b5</code></a> Don't add channel if the env is not provided explicitly.</li> <li><a href="https://github.com/la10736/rstest/commit/9a78bfb78f5decbb47f6bcee937a2be2321eb771"><code>9a78bfb</code></a> replace futures with futures-util</li> <li><a href="https://github.com/la10736/rstest/commit/88f9c2ef6f0127e967cc65e4bba7b708c393ffe6"><code>88f9c2e</code></a> <a href="https://redirect.github.com/la10736/rstest/issues/282">#282</a> : add e2e test, cover also the once fixture case and add cheange log lines</li> <li><a href="https://github.com/la10736/rstest/commit/cb5db35f26116284f00f8ef6ff301a8862d7fca6"><code>cb5db35</code></a> Close <a href="https://redirect.github.com/la10736/rstest/issues/284">#284</a> and add a test to check msrv on rendered code.</li> <li>Additional commits viewable in <a href="https://github.com/la10736/rstest/compare/v0.23.0...v0.24.0">compare view</a></li> </ul> </details> <br /> 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-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 show <dependency name> 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) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updates the requirements on rstest to permit the latest version.
Release notes
Sourced from rstest's releases.
Changelog
Sourced from rstest's changelog.
... (truncated)
Commits
d57af90
Prepare releasedfc4ff0
Make clippy happy01140c1
Docs and changelog4a9763f
1. Test also matrix cased77d7c6
Base implementation7792a9b
Add the ability to run CI test on demand11869b5
Don't add channel if the env is not provided explicitly.9a78bfb
replace futures with futures-util88f9c2e
#282 : add e2e test, cover also the once fixture case and add cheange log linescb5db35
Close #284 and add a test to check msrv on rendered code.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 <dependency name> 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)