Skip to content

Commit

Permalink
update release notes with missing items
Browse files Browse the repository at this point in the history
  • Loading branch information
Badgerati committed May 17, 2024
1 parent 5f1063d commit fb774fb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
18 changes: 15 additions & 3 deletions .build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -499,12 +499,24 @@ task ReleaseNotes {
}
}

$str = "* #$($pr.number): $($pr.title)"
$titles = @($pr.title)
if ($pr.title.Contains(';')) {
$titles = ($pr.title -split ';').Trim()
}

$author = $null
if (($pr.author.login -ine 'badgerati') -and ($pr.author.login -inotlike '*dependabot*')) {
$str += " (thanks @$($pr.author.login)!)"
$author = $pr.author.login
}

$categories[$label] += $str
foreach ($title in $titles) {
$str = "* #$($pr.number): $($title)"
if (![string]::IsNullOrWhiteSpace($author)) {
$str += " (thanks @$($author)!)"
}

$categories[$label] += $str
}
}

# add dependabot aggregated PRs
Expand Down
11 changes: 9 additions & 2 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
```plain
### Features
* #468: Add Button Groups element, and support for Buttons in Card headers
* #551: Adds built-in support for handing session Tab scope
* #551: Adds built-in support for handling sessions with Tab scope
* #568: Add support for SSE and Async Updates
* #571: Add support for logically grouping element together
* #571: Adds Actions for Padding, Margin, and Display
* #571: Adds new Span Element
### Enhancements
* #412: Added Update-PodeWebTextbox ReadOnly parameter (thanks @RobinBeismann!)
* #455: Additional Actions for Accordions, Bellows, and Tabs
* #455: Merge Layouts and Elements to be just Elements
* #455: Migrate element rending to JavaScript
* #458: Add Update-PodeWebRaw support
* #459: Add support for initial Date/Time values on the DateTime element
Expand All @@ -20,7 +24,9 @@
* #467: Centralise class/styles, add custom attribute support, and enable hiding element on creation
* #469: Add Update-PodeWebImage support
* #478: Add actions for Icons, Toggle/Hover support, and -Icon parameter can now accept New-PodeWebIcon
* #531: Adds functions to customise Groups, enables custom Paths for Pages, and Remove Home Page function
* #531: Adds functions to customise Groups
* #531: Adds support for re-ordering of Pages in the sidebar
* #531: Enable custom Paths for Pages, and Remove Home Page function
* #547: Enables support to use scoped variables in Pages, Elements, etc.
### Bugs
Expand All @@ -40,6 +46,7 @@
* #500: fix: README.md example (thanks @Szeraax!)
* #530: Update Image.md (thanks @Szeraax!)
* #561: Fix typo in CommentBlock.md (thanks @KeithALane!)
* #573: Add mike to mkdocs to support multiple doc versions
### Dependencies
* #515 Bump jquery from 3.6.3 to 3.7.1
Expand Down

0 comments on commit fb774fb

Please sign in to comment.