You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Changes to SqlServerDsc
Reverting the change that was made as part of the issue #1260
in the previous release, as it only mitigated the issue, it did not
solve the issue.
Removed the container testing since that broke the integration tests,
possible due to using excessive amount of memory on the AppVeyor build
worker. This will make the unit tests to take a bit longer to run
(issue #1260).
The unit tests and the integration tests are now run in two separate
build workers in AppVeyor. One build worker runs the integration tests,
while a second build worker runs the unit tests. The build workers runs
in parallel on paid accounts, but sequentially on free accounts
(issue #1260).
Clean up error handling in some of the integration tests that was
part of a workaround for a bug in Pester. The bug is resolved, and
the error handling is not again built into Pester.
Speeding up the AppVeyor tests by splitting the common tests in a
separate build job.
Updated the appveyor.yml to have the correct build step, and also
correct run the build step only in one of the jobs.
Update integration tests to use the new integration test template.
Added SqlAgentOperator resource.
Changes to SqlServiceAccount
Fixed Get-ServiceObject when searching for Integration Services service.
Unlike the rest of SQL Server services, the Integration Services service
cannot be instanced, however you can have multiple versions installed.
Get-Service object would return the correct service name that you
are looking for, but it appends the version number at the end. Added
parameter VersionNumber so the search would return the correct
service name.
Added code to allow for using Managed Service Accounts.
Now the correct service type string value is returned by the function Get-TargetResource. Previously one value was passed in as a parameter
(e.g. DatabaseEngine), but a different string value as returned
(e.g. SqlServer). Now Get-TargetResource return the same values
that can be passed as values in the parameter ServiceType
(issue #981).
Changes to SqlServerLogin
Fixed issue in Test-TargetResource to valid password on disabled accounts
(issue #915).
Now when adding a login of type SqlLogin, and the SQL Server login mode
is set to 'Integrated', an error is correctly thrown
(issue #1179).
Changes to SqlSetup
Updated the integration test to stop the named instance while installing
the other instances to mitigate issue #1260.
Add parameters to configure the Tempdb files during the installation of
the instance. The new parameters are SqlTempdbFileCount, SqlTempdbFileSize,
SqlTempdbFileGrowth, SqlTempdbLogFileSize and SqlTempdbLogFileGrowth
(issue #1167).
Changes to SqlServerEndpoint
Add the optional parameter Owner. The default owner remains the login used
for the creation of the endpoint
(issue #1251). Maxime Daniou (@mdaniou)