Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: SqlRole: Resource overhaul for tests #1623

Closed
wants to merge 45 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a361e0a
Major overhaul of resource.
Fiander Oct 6, 2020
bb949fc
major overhaul
Fiander Oct 6, 2020
343df27
Merge branch 'master' into master
Fiander Oct 6, 2020
14e1f04
parameterblock added
Fiander Oct 6, 2020
65478eb
Merge branch 'master' of https://github.com/Fiander/SqlServerDsc
Fiander Oct 6, 2020
174e4e7
fix for changed parameter return in test
Fiander Oct 6, 2020
c16cd25
Forgot integration tests after rehaul.
Fiander Oct 6, 2020
fdd7ac4
With dubug code
Fiander Oct 12, 2020
ddb2b45
debug pipeline
Fiander Oct 12, 2020
a833614
debuf pipeline
Fiander Oct 12, 2020
aeff59c
new branch
Fiander Oct 12, 2020
c772ac1
with verbose
Fiander Oct 13, 2020
e4c3ecf
just do it
Fiander Oct 13, 2020
e92d1f3
azure cicd working?
Fiander Oct 13, 2020
683456b
change for cicd
Fiander Oct 13, 2020
1563d5d
test cicd
Fiander Oct 13, 2020
91374be
test change
Fiander Oct 13, 2020
34f8b50
Set up CI with Azure Pipelines
Fiander Oct 14, 2020
e3114f5
fix with {
Fiander Oct 14, 2020
5fec5fa
Merge branch 'sqlrole' of https://github.com/Fiander/SqlServerDsc int…
Fiander Oct 14, 2020
4d00273
yet another try
Fiander Oct 14, 2020
55d7f95
jippie
Fiander Oct 14, 2020
d6fbb14
sjugt
Fiander Oct 14, 2020
e2715cf
damm
Fiander Oct 14, 2020
208476b
23
Fiander Oct 15, 2020
2b18e46
24
Fiander Oct 15, 2020
67c97a7
26
Fiander Oct 15, 2020
d257c73
last check
Fiander Oct 15, 2020
02e4cd9
last one?
Fiander Oct 15, 2020
87ff148
last cleanup
Fiander Oct 15, 2020
3742d0f
Sqlrole (#2)
Fiander Oct 16, 2020
2cb8255
axidential updated azure-pipelines with my own version
Fiander Oct 16, 2020
dc92c33
Update azure-pipelines.yml
Fiander Oct 16, 2020
423f6f5
some changes as requested
Fiander Oct 31, 2020
7735fed
-Be $null removed
Fiander Nov 1, 2020
5744e52
now should be good
Fiander Nov 1, 2020
0f26946
Merge branch 'master' into master
Fiander Nov 1, 2020
11f926c
fixed integrationTests for exeption
Fiander Nov 2, 2020
901d29a
Merge branch 'sqlrole'
Fiander Nov 2, 2020
93ec9c3
Merge branch 'master' of https://github.com/Fiander/SqlServerDsc
Fiander Nov 2, 2020
5d51aa5
fixed integrationTests for exeption
Fiander Nov 2, 2020
56db008
SqlDatabaseRole: Add a test to check error message on helper function…
jpomfret Oct 29, 2020
7888735
IntegrationTest updates
Fiander Nov 4, 2020
5343549
update on integration tests
Fiander Nov 4, 2020
d37ca3d
Merge branch 'master' of https://github.com/Fiander/SqlServerDsc
Fiander Nov 4, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- SqlRole
- Major overhaul of resource
- Removed decision making from get-TargetResource; this prevented a simple solution for
issue #550. it now just tels if a role exists or not. And what members are in that
role. MembersToInclude and MembersToExclude now always return $null
- Added sanitize function (Get-CorrectedMemberParameters) to make it so for the
sysadmin role SA does not get altered. ([issue #550](https://github.com/dsccommunity/SqlServerDsc/issues/550))
- added lots of tests.

### Added

- SqlEndpoint
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
trigger:
branches:
include:
- master
- Master
paths:
include:
- source/*
Expand Down
Loading