[PR #85] [CLOSED] Bump testfixtures from 6.15.0 to 6.18.1 #86

Closed
opened 2026-02-27 10:25:48 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/modoboa/modoboa-postfix-autoreply/pull/85
Author: @dependabot[bot]
Created: 8/23/2021
Status: Closed

Base: masterHead: dependabot/pip/testfixtures-6.18.1


📝 Commits (1)

  • 9450422 Bump testfixtures from 6.15.0 to 6.18.1

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 test-requirements.txt (+1 -1)

📄 Description

Bumps testfixtures from 6.15.0 to 6.18.1.

Changelog

Sourced from testfixtures's changelog.

6.18.1 (20 Aug 2021)

  • Fix bug when showing differences between mappings found by :func:compare when mismatching values contained the same number more than once.

6.18.0 (15 Jul 2021)

  • Add support for lazy resolution of prefix and suffix when using :func:compare.

6.17.1 (14 Jan 2020)

  • Fix bug where bug where duplicated entries in an ordered but partial :class:SequenceComparison could result in a failed match.

6.17.0 (16 Dec 2020)

  • Add simpler flag support to :class:StringComparison.

  • Fix deprecation warning about invalid escape sequence.

Thanks to Wim Glenn for the deprecation warning fix.

6.16.0 (9 Dec 2020)

  • Simplify and clarify the documentation of timezones when using :class:test_datetime.

  • :doc:api has been re-arranged to make it easier to browse.

  • The strict parameter to :class:Comparison has been deprecated in favour of partial.

  • Add :class:SequenceComparison, :class:Subset and :class:Permutation objects.

  • Add :class:MappingComparison objects.

  • Officially support Python 3.9.

Commits
  • 01a4f92 Prepare for 6.18.1 release.
  • 5c3dcd8 Fix bug showing diffs where values were singletons
  • a7c9628 Prepare for 6.18.0 release.
  • dbacd53 Better support for prefix and suffix lazy resolution.
  • 6e30006 Merge pull request #155 from wimglenn/types
  • 0ee1bda MappingComparison.ne should return boolean result, not None
  • 2e80aca remove an test combo that's not adding much anymore
  • 52a14d9 appease Django 3.2
  • db4999e Prepare for 6.17.1 release.
  • 8ce4a47 Fix bug where duplicated entries in an ordered but partial SequenceComparison...
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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)

🔄 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/modoboa/modoboa-postfix-autoreply/pull/85 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/23/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/pip/testfixtures-6.18.1` --- ### 📝 Commits (1) - [`9450422`](https://github.com/modoboa/modoboa-postfix-autoreply/commit/945042203efd841034608e6d0d82aacaf728dcb0) Bump testfixtures from 6.15.0 to 6.18.1 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `test-requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [testfixtures](https://github.com/Simplistix/testfixtures) from 6.15.0 to 6.18.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Simplistix/testfixtures/blob/master/CHANGELOG.rst">testfixtures's changelog</a>.</em></p> <blockquote> <h2>6.18.1 (20 Aug 2021)</h2> <ul> <li>Fix bug when showing differences between mappings found by :func:<code>compare</code> when mismatching values contained the same number more than once.</li> </ul> <h2>6.18.0 (15 Jul 2021)</h2> <ul> <li>Add support for lazy resolution of <code>prefix</code> and <code>suffix</code> when using :func:<code>compare</code>.</li> </ul> <h2>6.17.1 (14 Jan 2020)</h2> <ul> <li>Fix bug where bug where duplicated entries in an ordered but partial :class:<code>SequenceComparison</code> could result in a failed match.</li> </ul> <h2>6.17.0 (16 Dec 2020)</h2> <ul> <li> <p>Add simpler flag support to :class:<code>StringComparison</code>.</p> </li> <li> <p>Fix deprecation warning about invalid escape sequence.</p> </li> </ul> <p>Thanks to Wim Glenn for the deprecation warning fix.</p> <h2>6.16.0 (9 Dec 2020)</h2> <ul> <li> <p>Simplify and clarify the documentation of timezones when using :class:<code>test_datetime</code>.</p> </li> <li> <p>:doc:<code>api</code> has been re-arranged to make it easier to browse.</p> </li> <li> <p>The <code>strict</code> parameter to :class:<code>Comparison</code> has been deprecated in favour of <code>partial</code>.</p> </li> <li> <p>Add :class:<code>SequenceComparison</code>, :class:<code>Subset</code> and :class:<code>Permutation</code> objects.</p> </li> <li> <p>Add :class:<code>MappingComparison</code> objects.</p> </li> <li> <p>Officially support Python 3.9.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Simplistix/testfixtures/commit/01a4f92af2f49e3cb649c576b413332755ead5cd"><code>01a4f92</code></a> Prepare for 6.18.1 release.</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/5c3dcd853d7c05035a497b0adf3b3f8cc4958af3"><code>5c3dcd8</code></a> Fix bug showing diffs where values were singletons</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/a7c9628f69fcf8175c6106cc6a508414dcdd06ab"><code>a7c9628</code></a> Prepare for 6.18.0 release.</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/dbacd5337e89a620557c25fc3c1bf3481066182b"><code>dbacd53</code></a> Better support for prefix and suffix lazy resolution.</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/6e30006e0fcf8832dc805c722ceb0ffc99979e39"><code>6e30006</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Simplistix/testfixtures/issues/155">#155</a> from wimglenn/types</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/0ee1bda05968657b1d535ea26dce17684bc5cb70"><code>0ee1bda</code></a> MappingComparison.<strong>ne</strong> should return boolean result, not None</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/2e80aca186569cd787512eab643dbf35b14ad02a"><code>2e80aca</code></a> remove an test combo that's not adding much anymore</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/52a14d92a122665b1a101e6398eca3982de01739"><code>52a14d9</code></a> appease Django 3.2</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/db4999e9c4fe1711b3f7cd272f29bca8f4cfd7a5"><code>db4999e</code></a> Prepare for 6.17.1 release.</li> <li><a href="https://github.com/Simplistix/testfixtures/commit/8ce4a47d496db3204eab396bf0afd0fd23de717b"><code>8ce4a47</code></a> Fix bug where duplicated entries in an ordered but partial SequenceComparison...</li> <li>Additional commits viewable in <a href="https://github.com/Simplistix/testfixtures/compare/6.15.0...6.18.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=testfixtures&package-manager=pip&previous-version=6.15.0&new-version=6.18.1)](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-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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem closed this issue 2026-02-27 10:25:48 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/modoboa-postfix-autoreply-modoboa#86
No description provided.