Skip to content

Commit

Permalink
Merge remote-tracking branch 'doganc/Precision'
Browse files Browse the repository at this point in the history
# Conflicts:
#	Signum.Engine/CodeGeneration/EntityCodeGenerator.cs
#	Signum.Engine/Connection/Connector.cs
#	Signum.Engine/Connection/PostgreSqlConnector.cs
#	Signum.Engine/Connection/SqlServerConnector.cs
#	Signum.Engine/Engine/SchemaSynchronizer.cs
#	Signum.Engine/Engine/SqlBuilder.cs
#	Signum.Engine/Engine/SqlPreCommand.cs
#	Signum.Engine/Schema/Schema.Basics.cs
#	Signum.Engine/Schema/Schema.Save.cs
#	Signum.Engine/Schema/SchemaBuilder/SchemaBuilder.cs
#	Signum.Engine/Schema/SchemaBuilder/SchemaSettings.cs
#	Signum.Engine/Signum.Engine.csproj
#	Signum.Entities/FieldAttributes.cs
#	Signum.Entities/ValidationAttributes.cs
  • Loading branch information
olmobrutall committed Dec 18, 2021
2 parents df135bd + 20dc47b commit fe17abd
Show file tree
Hide file tree
Showing 14 changed files with 8,508 additions and 8,409 deletions.
1,395 changes: 701 additions & 694 deletions Signum.Engine/CodeGeneration/EntityCodeGenerator.cs

Large diffs are not rendered by default.

278 changes: 139 additions & 139 deletions Signum.Engine/Connection/Connector.cs

Large diffs are not rendered by default.

813 changes: 411 additions & 402 deletions Signum.Engine/Connection/PostgreSqlConnector.cs

Large diffs are not rendered by default.

965 changes: 487 additions & 478 deletions Signum.Engine/Connection/SqlServerConnector.cs

Large diffs are not rendered by default.

2,216 changes: 1,111 additions & 1,105 deletions Signum.Engine/Engine/SchemaSynchronizer.cs

Large diffs are not rendered by default.

1,074 changes: 542 additions & 532 deletions Signum.Engine/Engine/SqlBuilder.cs

Large diffs are not rendered by default.

637 changes: 320 additions & 317 deletions Signum.Engine/Engine/SqlPreCommand.cs

Large diffs are not rendered by default.

2,575 changes: 1,293 additions & 1,282 deletions Signum.Engine/Schema/Schema.Basics.cs

Large diffs are not rendered by default.

2,248 changes: 1,125 additions & 1,123 deletions Signum.Engine/Schema/Schema.Save.cs

Large diffs are not rendered by default.

1,523 changes: 763 additions & 760 deletions Signum.Engine/Schema/SchemaBuilder/SchemaBuilder.cs

Large diffs are not rendered by default.

793 changes: 412 additions & 381 deletions Signum.Engine/Schema/SchemaBuilder/SchemaSettings.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Signum.Engine/Signum.Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" Version="3.0.1" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.0.0" />
<PackageReference Include="Npgsql" Version="6.0.1" />
<PackageReference Include="Signum.Analyzer" Version="3.2.0" />
<PackageReference Include="Signum.MSBuildTask" Version="6.0.0" />
Expand Down
Loading

3 comments on commit fe17abd

@olmobrutall
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Split between Size and Precission

Thanks to the awesome PR from @rezanos we get three improvements:

Microsoft.Data.SqlClient 4.0.0

Aditionally this PR updates Signum.Engine to Microsoft.Data.SqlClient 4.0.0

This new version has an important breaking change, they have turned connection encryption to true by default, in an effort to increase the security level (like when browsers went from default HTTP to HTTPS)

The upgrade Upgrade_20211219_MicrosoftDataSqlClient will try to fix your connection strings by replacing:
"Integrated Security=true" -> "Integrated Security=true;TrustServerCertificate=true"

If your connection strings do not have Integrated Security=true, you will need to update them manually.

@MehdyKarimpour
Copy link
Contributor

@MehdyKarimpour MehdyKarimpour commented on fe17abd Dec 19, 2021 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rezanos
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙏 Thanks to your excellent help and guidance, as always 👍

Please sign in to comment.