Skip to content

Commit

Permalink
!deploy v2.18.0 - Add Fields param for #87, add new functions from #108
Browse files Browse the repository at this point in the history
…, add Sync-GSUserCache for #87

## 2.18.0

* [Issue #87](#87)
  * Added: `Get-GSCourseParticipant` and `Get-GSClassroomUserProfile` now have the `Fields` parameter
  * Added: `Sync-GSUserCache` to create a hashtable of users for quick lookups throughout scripts
* [Issue #53](#53) via [PR #108](#108) - _Thanks, [@dwrusse](https://github.com/dwrusse)!_
  * Added: `Get-GSContactList`
  * Added: `Remove-GSContact`
* Other additions via [PR #108](#108) - _Thanks, [@dwrusse](https://github.com/dwrusse)!_
  * Added: `Remove-GSCalendarEvent`
  * Added: `New-GSGmailLabel`
  * Added: `Remove-GSGmailLabel`
  • Loading branch information
Nate Ferrell authored and Nate Ferrell committed Nov 6, 2018
1 parent 2cb8c3a commit 11894d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psake.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ task TestOnly -Depends Init $pesterScriptBlock -description 'Run Pester tests on
$deployScriptBlock = {
if ($ENV:BHBuildSystem -eq 'VSTS' -and $env:BHCommitMessage -match '!deploy' -and $env:BHBranchName -eq "master") {
# Load the module, read the exported functions, update the psd1 FunctionsToExport
$commParsed = $env:BHCommitMessage | Select-String -Pattern '\sv\d\.\d\.\d\s'
$commParsed = $env:BHCommitMessage | Select-String -Pattern '\sv\d+\.\d+\.\d+\s'
if ($commParsed) {
$commitVer = $commParsed.Matches.Value.Trim().Replace('v','')
}
Expand Down

0 comments on commit 11894d8

Please sign in to comment.