Releases: uladz-zubrycki/Reseed
Releases · uladz-zubrycki/Reseed
v0.1.12
- Implemented InlineDataProvider publicly available
DataProviders.Inline; - Fixed NUnit sample for the case when seed actions generation fails;
- Improve error messages slightly.
v0.1.11
Implement identity columns reseed script generation.
Public api extended for CleanupConfiguration: CleanupDefinition.Script and CleanupDefinition.Procedure now have optional bool reseedIdentityColumns, which is false by default.
Script contains similar sql statement for every table with identity column, which is to be cleaned up
DBCC CHECKIDENT
(
'[dbo].[User]', RESEED, 1
);v.0.1.10
- Allow to reuse Reseed for multiple databases;
- Allow to reuse same SqlConnection instance for both Generate and Execute steps;
- Minor internal fixes.
v0.1.9
Add ReseederOptions to:
- skip data validation step;
- disable automatic identity generation
v0.1.8
Publish v0.1.8
v0.1.7
- Allow to speficy
TimeSpantimeout for action execution
v0.1.6
Simplify cleanup configuration
v0.1.5
Rename Simple mode to Basic
v0.1.4
- Add integration tests and fix issues revealed;
- Improve naming of concepts;
- Refactor and stabilize public api more or less;