Skip to content

Commit

Permalink
Add documentation for YesSQL breaking change (#12681)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skrypt authored Oct 25, 2022
1 parent 37f5428 commit ab8701a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/docs/releases/1.5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,12 @@ ManageIndexes will be now ManageLuceneIndexes
|--------|--------|--------|
| Indexed | Indexed | Indexed meant "Keyword" in Lucene so we migrated these to "Keyword" in the content index settings.
| Analyzed | Keyword | The Analyzed option is removed. Everything that was set as analyzed doesn't need migration because it is now the default. |
| Stored | Stored | Nothing to do. Should work as before |
| Stored | Stored | Nothing to do. Should work as before |

## YesSQL breaking changes

YesSql is now using the new SQL client which encrypts the connection by default.

If the SQL Server does not have a trusted SSL certificate and you would and want to continue using encrypted communicated using the untrusted server, add `TrustServerCertificate=True` to the connection string.

If you do not want to encrypt the communication at all, you can use `Encrypt=false`.

0 comments on commit ab8701a

Please sign in to comment.