Releases: ose-net/yesql.net
Releases · ose-net/yesql.net
v2.0.0
What's Changed
- BREAKING CHANGE: Allow tag name to be case-insensitive by @MrDave1999 in #119
Full Changelog: v1.0.1...v2.0.0
v1.0.1
What's Changed
- restructure: Group related elements of each core module to maximize cohesion by @MrDave1999 in #113
- refactor: Use ref structure types by @MrDave1999 in #114
- refactor: Use collection initializers or expressions by @MrDave1999 in #115
- feat: Create resources to save exception messages in different languages by @MrDave1999 in #116
- refactor: Create guard clauses by @MrDave1999 in #117
Full Changelog: v1.0.0...v1.0.1
v1.0.0
What's Changed
- docs: Add sample on how to distribute SQL files from a NuGet package by @MrDave1999 in #108
Full Changelog: v0.8.0-alpha...v1.0.0
v0.8.0-alpha
v0.7.0-alpha
What's Changed
Breaking changes
- fix!: Avoid throwing an exception when a directory does not contain SQL files. (#90, #92)
- fix!: Avoid throwing an exception when the length of the params list is zero. (#91, #93)
- refactor: Rename a load method to
LoadFromDefaultDirectory
. (#94, #96) - refactor: Rename IYeSqlCollection interface to ISqlCollection. (#95, #97)
Documentation
v0.6.0-alpha
v0.5.0-alpha
What's Changed
Features
- feat: Copy .sql files to output directory. (#12, #73)
- chore: Change package name to
CopySqlFilesToOutputDirectory
. (#74) - The package was published here: https://www.nuget.org/packages/CopySqlFilesToOutputDirectory
- chore: Change package name to
- feat: Copy .sql files from the output directory to the publish directory. (#75, #76)
- The package was published here: https://www.nuget.org/packages/CopySqlFilesToPublishDirectory
- feat: Add Load method without parameters to
YeSqlLoader
type. (#72, #79)
Breaking Changes
- refactor!: Mark the constructor of the type
YeSqlValidationResult
as internal.
Other Changes
v0.4.0-alpha
What's Changed
- Validation to check if the elements of a collection has null, an empty string or consists only of white-space characters. (#46, #62)
- Removed a null check in the
LoadFromDirectory
method. (b31746a)
- Removed a null check in the
- Validation to check if a parameter list is equal to zero. (#44, #63)
- Validation to check if the directory does not exist. (#45, #65)
- Added tests to verify if the loader returns the error messages associated with the parser. (#66)