[PR #4347] [MERGED] Bump Moq from 4.14.6 to 4.14.7 #9855

Closed
opened 2025-12-22 07:42:42 +01:00 by backuprepo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/4347
Author: @dependabot[bot]
Created: 10/19/2020
Status: Merged
Merged: 10/29/2020
Merged by: @dkanada

Base: masterHead: dependabot/nuget/Moq-4.14.7


📝 Commits (1)

  • ed8899d Bump Moq from 4.14.6 to 4.14.7

📊 Changes

2 files changed (+2 additions, -2 deletions)

View changed files

📝 tests/Jellyfin.Api.Tests/Jellyfin.Api.Tests.csproj (+1 -1)
📝 tests/Jellyfin.Server.Implementations.Tests/Jellyfin.Server.Implementations.Tests.csproj (+1 -1)

📄 Description

Bumps Moq from 4.14.6 to 4.14.7.

Changelog

Sourced from Moq's changelog.

4.14.7 (2020-10-14)

Changed

  • Mocks created by DefaultValue.Mock now inherit SetupAllProperties from their "parent" mock (like it says in the XML documentation) (@stakx, #1074)

Fixed

  • Setup not triggered due to VB.NET transparently inserting superfluous type conversions into a setup expression (@InteXX, #1067)
  • Nested mocks created by Mock.Of<T>() no longer have their properties stubbed since version 4.14.0 (@vruss, @1071)
  • Verify fails for recursive setups not explicitly marked as Verifiable (@killergege, #1073)
  • Mock.Of<> fails for COM interop types that are annotated with a [CompilerGenerated] custom attribute (@killergege, #1072)
Commits
  • 02f14d5 Update version to 4.14.7
  • 05f1d5f Merge branch 'com-interop' into hotfix-release
  • 4d7d3c7 Update the changelog
  • 9a936b9 More precise check for anonymous types
  • 69c0223 Mock.Of\<> can't handle [CompilerGenerated] COM interop types
  • 3b537f6 Merge branch 'inner-mock-setups' into hotfix-release
  • cd9a3c2 Update the changelog
  • b9e733b Don't require inner mock setups to be matched
  • 42c0083 Inner mock setup causes verification failure
  • ab83afc Merge branch 'inner-mocks-inherit-setupallproperties' into hotfix-release
  • 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/jellyfin/jellyfin/pull/4347 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/19/2020 **Status:** ✅ Merged **Merged:** 10/29/2020 **Merged by:** [@dkanada](https://github.com/dkanada) **Base:** `master` ← **Head:** `dependabot/nuget/Moq-4.14.7` --- ### 📝 Commits (1) - [`ed8899d`](https://github.com/jellyfin/jellyfin/commit/ed8899da4c2b3ea74ed78d9e6d89ca3514985b47) Bump Moq from 4.14.6 to 4.14.7 ### 📊 Changes **2 files changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `tests/Jellyfin.Api.Tests/Jellyfin.Api.Tests.csproj` (+1 -1) 📝 `tests/Jellyfin.Server.Implementations.Tests/Jellyfin.Server.Implementations.Tests.csproj` (+1 -1) </details> ### 📄 Description Bumps [Moq](https://github.com/moq/moq4) from 4.14.6 to 4.14.7. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/moq/moq4/blob/master/CHANGELOG.md">Moq's changelog</a>.</em></p> <blockquote> <h2>4.14.7 (2020-10-14)</h2> <h4>Changed</h4> <ul> <li>Mocks created by <code>DefaultValue.Mock</code> now inherit <code>SetupAllProperties</code> from their &quot;parent&quot; mock (like it says in the XML documentation) (<a href="https://github.com/stakx">@stakx</a>, <a href="https://github-redirect.dependabot.com/moq/moq4/issues/1074">#1074</a>)</li> </ul> <h4>Fixed</h4> <ul> <li>Setup not triggered due to VB.NET transparently inserting superfluous type conversions into a setup expression (<a href="https://github.com/InteXX">@InteXX</a>, <a href="https://github-redirect.dependabot.com/moq/moq4/issues/1067">#1067</a>)</li> <li>Nested mocks created by <code>Mock.Of&lt;T&gt;()</code> no longer have their properties stubbed since version 4.14.0 (<a href="https://github.com/vruss">@vruss</a>, <a href="https://github.com/1071">@1071</a>)</li> <li><code>Verify</code> fails for recursive setups not explicitly marked as <code>Verifiable</code> (<a href="https://github.com/killergege">@killergege</a>, <a href="https://github-redirect.dependabot.com/moq/moq4/issues/1073">#1073</a>)</li> <li><code>Mock.Of&lt;&gt;</code> fails for COM interop types that are annotated with a <code>[CompilerGenerated]</code> custom attribute (<a href="https://github.com/killergege">@killergege</a>, <a href="https://github-redirect.dependabot.com/moq/moq4/issues/1072">#1072</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/moq/moq4/commit/02f14d5ebf46d315b85c902a8521a6bb6ad786ca"><code>02f14d5</code></a> Update version to 4.14.7</li> <li><a href="https://github.com/moq/moq4/commit/05f1d5f9627fca00f8617a7faeadacb5ee563a09"><code>05f1d5f</code></a> Merge branch 'com-interop' into hotfix-release</li> <li><a href="https://github.com/moq/moq4/commit/4d7d3c72eef2b22fae3f01e59f13a427fa15a804"><code>4d7d3c7</code></a> Update the changelog</li> <li><a href="https://github.com/moq/moq4/commit/9a936b9fe58b18a233ae27c642640185a721f71c"><code>9a936b9</code></a> More precise check for anonymous types</li> <li><a href="https://github.com/moq/moq4/commit/69c02232eeeb8f8de3c742f48d23c4e224921805"><code>69c0223</code></a> <code>Mock.Of\&lt;&gt;</code> can't handle [CompilerGenerated] COM interop types</li> <li><a href="https://github.com/moq/moq4/commit/3b537f66a4a3fab71189a609990c748962d627c6"><code>3b537f6</code></a> Merge branch 'inner-mock-setups' into hotfix-release</li> <li><a href="https://github.com/moq/moq4/commit/cd9a3c239b69ebc8784ae7a260c65c01fd8377c2"><code>cd9a3c2</code></a> Update the changelog</li> <li><a href="https://github.com/moq/moq4/commit/b9e733bff7a98bc19ee33e35278c1100a9ec1fae"><code>b9e733b</code></a> Don't require inner mock setups to be matched</li> <li><a href="https://github.com/moq/moq4/commit/42c00836efd7a463a2a8fba428c8ee0ed408c126"><code>42c0083</code></a> Inner mock setup causes verification failure</li> <li><a href="https://github.com/moq/moq4/commit/ab83afc161a0ab7fc825cd5cd6a92bfcbe77a684"><code>ab83afc</code></a> Merge branch 'inner-mocks-inherit-setupallproperties' into hotfix-release</li> <li>Additional commits viewable in <a href="https://github.com/moq/moq4/compare/v4.14.6...v4.14.7">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Moq&package-manager=nuget&previous-version=4.14.6&new-version=4.14.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) 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>
backuprepo 2025-12-22 07:42:42 +01: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/jellyfin#9855
No description provided.