Skip to content

Commit 714a441

Browse files
committed
Added release notes for 2.15-alpha1
1 parent 273e22b commit 714a441

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed

CHANGELOG.md

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
## [NEXT VERSION] - YYYY-MM-DD
44

5+
## [2.15-alpha1] - 2024-06-13
6+
7+
### Added
8+
9+
- Added `-Components` to `New-JiraIssue`. This will be a comma-separated list of Component IDs. (#483, [@micheleliberman])
10+
- Added `Get-JiraIssueWorklog` (#451, [@asherber])
11+
- Allow `New-JiraSession` to be called without `-Credential` so to use `-Header` (#439, [@pwshmatt])
12+
13+
### Changed
14+
15+
- Improved `-Transition` behavior in `Invoke-JiraIssueTransition` (#416, [@Rufus125])
16+
17+
### Fixed
18+
19+
- Fixed example and improved documentation on `-Properties` hashtable for `Set-JiraUser` (#509, [@jschlackman])
20+
- Fixed `Get-JiraIssueCreateMetadata` to conform with Atlassian's API changes ([documentation](https://confluence.atlassian.com/jiracore/createmeta-rest-endpoint-to-be-removed-975040986.html)) (#488, [@robertmbaker])
21+
- Removed `reporter` from `New-JiraIssue` when project is "next-gen" (#407, [@LaurentGoderre])
22+
- Fixed `-ErrorAction` in `Add-JiraGroupMember` (#426, [@spascoe])
23+
- Fixed copy/paste error in test files for `Get-JiraIssue` (#427, [@borislol])
24+
- Fixed JSON conversion in `Invoke-JiraIssueTransition` (#417, [@Rufus125])
25+
- Fixed type in `Invoke-JiraIssueTransition` (#417, [@Rufus125])
26+
527
## [2.14] - 2020-03-28
628

729
### Changed
@@ -144,8 +166,8 @@ More detailed description about the changes can be found on [Our Website](https:
144166
- Fix empty header (#206, [@lipkau][])
145167
- Bad Body (#224, [@lipkau][])
146168
- Add Labels to array (#226, [@lipkau][])
147-
- Fix removing labels with `Set-JiraIssueLabel -Remove` (#244, [lipkau][])
148-
- Fix adding of multiple labels at once with `Set-JiraIssueLabel -Add` (#244, [lipkau][])
169+
- Fix removing labels with `Set-JiraIssueLabel -Remove` (#244, [@lipkau][])
170+
- Fix adding of multiple labels at once with `Set-JiraIssueLabel -Add` (#244, [@lipkau][])
149171

150172
## [2.5] - 2018-03-23
151173

@@ -355,27 +377,36 @@ which is in turn inspired by the [Vagrant](https://github.com/mitchellh/vagrant/
355377
<!-- reference-style links -->
356378

357379
[@alexsuslin]: https://github.com/alexsuslin
380+
[@asherber]: https://github.com/asherber
358381
[@axxelg]: https://github.com/axxelG
359382
[@beaudryj]: https://github.com/beaudryj
383+
[@borislol]: https://github.com/borislol
360384
[@brianbunke]: https://github.com/brianbunke
361385
[@clijsters]: https://github.com/Clijsters
362-
[@ctolan]: https://github.com/ctolan
363386
[@colhal]: https://github.com/colhal
387+
[@ctolan]: https://github.com/ctolan
364388
[@dejulia489]: https://github.com/Dejulia489
365389
[@ebekker]: https://github.com/ebekker
366390
[@hmmwhatsthisdo]: https://github.com/hmmwhatsthisdo
367391
[@jkknorr]: https://github.com/jkknorr
368392
[@johnheusinger]: https://github.com/johnheusinger
393+
[@jschlackman]: https://github.com/jschlackman
369394
[@kb-cs]: https://github.com/kb-cs
370395
[@kittholland]: https://github.com/kittholland
396+
[@LaurentGoderre]: https://github.com/LaurentGoderre
371397
[@liamleane]: https://github.com/LiamLeane
372398
[@lipkau]: https://github.com/lipkau
373399
[@lukhase]: https://github.com/lukhase
374400
[@michalporeba]: https://github.com/michalporeba
401+
[@micheleliberman]: https://github.com/micheleliberman
375402
[@mirrorgleam]: https://github.com/mirrorgleam
376403
[@nojp]: https://github.com/nojp
377404
[@padgers]: https://github.com/padgers
405+
[@pwshmatt]: https://github.com/pwshmatt
406+
[@robertmbaker]: https://github.com/robertmbaker
407+
[@Rufus125]: https://github.com/Rufus125
378408
[@sgtwilko]: https://github.com/sgtwilko
409+
[@spascoe]: https://github.com/spascoe
379410
[@thepsadmin]: https://github.com/ThePSAdmin
380411
[@tuxgoose]: https://github.com/tuxgoose
381412
[@vercellone]: https://github.com/vercellone

JiraPS.build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,12 @@ task UpdateManifest GetNextVersion, {
187187
Import-Module $env:BHPSModuleManifest -Force
188188
$ModuleAlias = @(Get-Alias | Where-Object { $_.ModuleName -eq "$env:BHProjectName" })
189189

190-
BuildHelpers\Update-Metadata -Path "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -PropertyName ModuleVersion -Value $env:NextBuildVersion
190+
Metadata\Update-Metadata -Path "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -PropertyName ModuleVersion -Value $env:NextBuildVersion
191191
# BuildHelpers\Update-Metadata -Path "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -PropertyName FileList -Value (Get-ChildItem "$env:BHBuildOutput/$env:BHProjectName" -Recurse).Name
192192
BuildHelpers\Set-ModuleFunctions -Name "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -FunctionsToExport ([string[]](Get-ChildItem "$env:BHBuildOutput/$env:BHProjectName/Public/*.ps1").BaseName)
193-
BuildHelpers\Update-Metadata -Path "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -PropertyName AliasesToExport -Value ''
193+
Metadata\Update-Metadata -Path "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -PropertyName AliasesToExport -Value ''
194194
if ($ModuleAlias) {
195-
BuildHelpers\Update-Metadata -Path "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -PropertyName AliasesToExport -Value @($ModuleAlias.Name)
195+
Metadata\Update-Metadata -Path "$env:BHBuildOutput/$env:BHProjectName/$env:BHProjectName.psd1" -PropertyName AliasesToExport -Value @($ModuleAlias.Name)
196196
}
197197
}
198198

0 commit comments

Comments
 (0)