chore(deps): Bump the nuget group with 5 updates - #46
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Bumps AWSSDK.S3 from 4.0.101.6 to 4.0.102 Bumps AWSSDK.SSO from 4.0.100.5 to 4.0.100.7 Bumps AWSSDK.SSOOIDC from 4.0.100.5 to 4.0.100.7 Bumps NSchema.Core from 5.0.0 to 5.9.0 Bumps NSubstitute from 6.0.0 to 6.1.0 --- updated-dependencies: - dependency-name: AWSSDK.S3 dependency-version: 4.0.102 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: AWSSDK.SSO dependency-version: 4.0.100.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: AWSSDK.SSOOIDC dependency-version: 4.0.100.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget - dependency-name: NSchema.Core dependency-version: 5.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget - dependency-name: NSubstitute dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget ... Signed-off-by: dependabot[bot] <support@github.com>
This file contains hidden or 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
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.
Updated AWSSDK.S3 from 4.0.101.6 to 4.0.102.
Release notes
Sourced from AWSSDK.S3's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated AWSSDK.SSO from 4.0.100.5 to 4.0.100.7.
Release notes
Sourced from AWSSDK.SSO's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated AWSSDK.SSOOIDC from 4.0.100.5 to 4.0.100.7.
Release notes
Sourced from AWSSDK.SSOOIDC's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated NSchema.Core from 5.0.0 to 5.9.0.
Release notes
Sourced from NSchema.Core's releases.
5.9.0
Added
RESTRICTis a referential action in its own right.ReferentialAction.Restrictis parsed, written and rendered.SqlDialect.SupportsRestrictsays whether the engine hasRESTRICTas distinct fromNO ACTION. Providers have to opt in.Column.IsStoredand the NSQLSTORED/VIRTUALkeywords.SqlDialect.SupportsVirtualGeneratedColumnssays whether the engine can leave one unstored. Off by default, matching Postgres, which stores every generated column.virtual-generated-column-not-supportedis a warning: a virtual generated column declared against an engine that always stores.Column.IsRowGuidand the NSQLROWGUIDCOLkeyword.Column.DefaultConstraintNameand the NSQLCONSTRAINT <name> DEFAULT <expr>form, for engines that make a default a named constraint.IdentityOptions.NotForReplication,Trigger.IsNotForReplication, and the NSQLNOT FOR REPLICATIONform on both.DiagnosticSourcesdeclares every source the engine reports under, andDiagnosticSources.Alloffers them to a caller checking a configured name against the sources that exist.Changed
.editorconfig.Fixed
Trigger.Clone(),EqualsandGetHashCodecover every field, asColumn's now do. Both enumerate fields by hand, and import clones every object on its way to a file.5.8.0
Added
PLUGIN db ( path = './artifacts/NSchema.Postgres.dll' )names a built assembly instead of a package to resolve, so a provider can be exercised straight fromdotnet buildoutput with no packing, feed or restore.Changed
LockFile.Resolvetakes aPackageReferencerather than aPluginDeclaration. A plugin declared by path has no version to resolve and no lockfile entry, so it is now unable to reach this rather than guarded inside it.PLUGINstatement with no attributes reports one finding, not two. It used to reportsourceandversionas separately missing; withpathas an alternative neither is required on its own, so it reportsmissing-plugin-origininstead.5.7.0
Added
TableIndex.Clustered,PrimaryKey.ClusteredandUniqueConstraint.Clusteredrecord whether a relation's rows are physically ordered by that index, written as T-SQL writes it.multiple-clustered-indexesis an error: a clustered index is the relation's row order, so a second one has nothing left to order.SqlDialect.SupportsClusteringsays whether the engine has clustered indexes at all.Schema.XmlSchemaCollectionsholds the named XSD bundles a typedxmlcolumn is validated against, written asCREATE XML SCHEMA COLLECTION s.name AS '…'and bound from a column asxml(DOCUMENT s.name).TableIndex.Xmlcarries anXmlIndexDefinition— the kind (primary, path, value, property) and, for a secondary, the primary XML index whose node table it reads. Written as SQL Server writes it.View.IsSchemaBoundrecords whether a view is bound to the schema of what it reads, written in NSQL asCREATE VIEW name WITH SCHEMABINDING AS …, the spelling SQL Server uses.Changed
CREATE INDEX … ON schema.viewno longer requires the view to be materialized.CreateIndexsays whether its owner is a view. The newOnViewflag rides the action, asIsMaterializeddoes on the view actions.Fixed
CREATE OR ALTER VIEWdrops an indexed view's indexes outright, so redeclaring one in place destroyed them silently. A body or binding change on a view carrying indexes now drops and recreates it, rebuilding the indexes with the definition.5.6.1
Added
LockFile.With(pins)applies a resolution over the existing file, replacing the entry for each source it names and appending the rest, so partial resolutions don't clobber other pinned versions.Fixed
---doc comment on a column or setting now takes the member indent, rather than only the first.5.6.0
Added
View.Reads(schema),Routine.References(schema),Column.References(schema),CheckConstraint.References(schema), andTrigger.References(schema)(its function reference plus its scanned body andWHENpredicate).SqlLexer: one lexical layer for engine SQL. A public, tolerant scanner over the amorphous "SQL grammar" — nestable block comments,'…'strings,"…"and[…]identifiers with doubling escapes, etc.Changed
Fixed
$$ … $$), the same quoting triggers and scripts already use, andimportwrites that form whenever the bare text would not re-parse. A T-SQL body's top-level;previously ended the statement early, so an imported SQL Server routine could not be read back.importguards a routine definition or argument list that ends in a--comment, which previously commented out the closing)or;the writer printed on the same line.5.5.0
While this is technically a bug fix, it does also make additive changes to the state file in the form of capturing every opaque SQL body twice, one
as-written in the project, and again as the database stores it.
Fixed
5.4.0
Added
CREATE AGGREGATE name(args) (…)is now supported as a kind of routine.Changed
Fixed
5.3.0
Changed
ReplaceRoutine/ReplaceViewactions instead of reusingCreateRoutine/CreateView.5.2.0
Added
NativeType) and record which extension provides an object (ProvidedBy).TypeObjectis the common base of everything a type reference can resolve to:EnumType,DomainType,CompositeType, and nowNativeType.Changed
IsImplicitandProvidedBylive on every database element. An implicit object, like a container-only schema, or a native type, is never created, dropped, managed, or imported, whatever its kind.Fixed
pg_catalog.tsvectoron an imported column previously demanded a declaration nobody could write.5.1.0
Changed
Schema.IsImplicitis now part of the provider contract. Each introspector should set it to report the schemas its engine provides. It's also now recorded in the state payload.5.0.1
Fixed
Commits viewable in compare view.
Updated NSubstitute from 6.0.0 to 6.1.0.
Release notes
Sourced from NSubstitute's releases.
6.1.0
NSubstitute v6.1.0
This release reverts nullability support introduced in 6.0. This change caused a number of problems for callers (#973, #976), and trying to resolve these (#976) revealed the need for more fundamental changes to NSubstitute to effectively support this. As a result, nullability is again disabled for public API. Huge thanks to @jdb0123, @Romfos, and @Moha-sami for their PRs addressing this, and thanks for all those who raised issues. We also humbly award @zvirja with one unlimited "I told you so" pass to use as he sees fit.
What's Changed
New Contributors
Full Changelog: nsubstitute/NSubstitute@v6.0.0...v6.1.0
Commits viewable in compare view.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions