Skip to content
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

Bump mkdocs-material from 9.5.19 to 9.5.20 #2842

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump mkdocs-material from 9.5.19 to 9.5.20
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.19 to 9.5.20.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.19...9.5.20)

---
updated-dependencies:
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
dependabot[bot] authored Apr 29, 2024

Verified

This commit was signed with the committer’s verified signature.
isaacbowen Isaac Bowen
commit 6d11ebe90972c2968069f11e93fceb5cc1752124
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mkdocs==1.6.0
mkdocs-material==9.5.19
mkdocs-material==9.5.20
pymdown-extensions==10.8
mike==2.0.0
mkdocs-git-revision-date-localized-plugin==1.2.4

Unchanged files with check annotations Beta

set { base[index] = value; }
}
public override IEnumerable<T?> Values<T>() where T : default

Check warning on line 253 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 253 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
{
return base.Values<T>();
}
public override T? Value<T>(object key) where T : default

Check warning on line 258 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 258 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
{
return base.Value<T>(key);
}
IsSecret = secret;
}
public new JToken? this[string propertyName]

Check warning on line 283 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 283 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
{
get { return GetValue(propertyName); }
set { base[propertyName] = value; }
set { base[key] = value; }
}
public override T? Value<T>(object key) where T : default

Check warning on line 298 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 298 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
{
return base.Value<T>(key);
}
public override IEnumerable<T?> Values<T>() where T : default

Check warning on line 303 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.

Check warning on line 303 in src/PSRule.Rules.Azure/Data/Template/Mocks.cs

GitHub Actions / Build

The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
{
return base.Values<T>();
}