Skip to content

Commit 4a21bfb

Browse files
authored
Merge pull request #94 from AsBuiltReport/dev
v1.3.3
2 parents 1525d68 + e4bfc85 commit 4a21bfb

File tree

5 files changed

+125
-59
lines changed

5 files changed

+125
-59
lines changed

.github/workflows/Release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,18 @@ jobs:
1313
shell: pwsh
1414
run: |
1515
Publish-Module -Path ./ -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }} -Verbose
16+
tweet:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: Eomm/why-don-t-you-tweet@v1
20+
# We don't want to tweet if the repository is not a public one
21+
if: ${{ !github.event.repository.private }}
22+
with:
23+
# GitHub event payload
24+
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
25+
tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #VMware #vSphere #AsBuiltReport #vExpert"
26+
env:
27+
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
28+
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
29+
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
30+
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

AsBuiltReport.VMware.vSphere.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'AsBuiltReport.VMware.vSphere.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.3.1'
15+
ModuleVersion = '1.3.3'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = 'Desktop'
@@ -51,7 +51,7 @@
5151
RequiredModules = @(
5252
@{
5353
ModuleName = 'AsBuiltReport.Core';
54-
ModuleVersion = '1.1.0'
54+
ModuleVersion = '1.2.0'
5555
}
5656
)
5757

CHANGELOG.md

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,38 @@
1-
# :arrows_counterclockwise: VMware vSphere As Built Report Changelog
1+
# :arrows_clockwise: VMware vSphere As Built Report Changelog
2+
3+
## [[1.3.3](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.3)] - 2022-04-21
4+
5+
### Added
6+
- Added VMHost IPMI / BMC configuration information
7+
8+
## [[1.3.2](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.2)] - 2022-03-24
9+
10+
### Added
11+
- Automated tweet release workflow
12+
13+
### Fixed
14+
- Fix colour placeholders in `README.md`
215

316
## [[1.3.1](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.1)] - 2021-09-03
417

518
### Added
619
- VMHost network adapter LLDP reporting
720

821
## [[1.3.0](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.0)] - 2021-08-29
9-
### Fixed
10-
- Incorrect section reporting with certain InfoLevels
11-
- Datastore table now sorts by Datastore Name
12-
- vSAN advanced detailed reporting
13-
- VMkernel Adpater reporting
14-
- Distributed vSwitch advanced detailed reporting
15-
- Display issues with highlights in [README.md](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/blob/master/README.md)
16-
1722
### Added
1823
- PowerShell 7 compatibility
1924
- PSScriptAnalyzer & PublishPSModule GitHub Action workflows
2025
- Advanced detailed reporting for VI roles
2126
- Advanced detailed reporting for vSAN disks
2227
- Support for VMware Cloud environments (VCF, VMC, AVS, GVE) ([Fix #87](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/issues/87))
23-
- Include release and issue links in [README.md](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/blob/master/README.md)
24-
28+
- NSX TCP/IP stacks for VMkernel Adpater reporting
29+
- Include release and issue links in `CHANGELOG.md`
30+
### Fixed
31+
- Incorrect section reporting with certain InfoLevels
32+
- Datastore table now sorts by Datastore Name
33+
- vSAN advanced detailed reporting
34+
- Distributed vSwitch advanced detailed reporting
35+
- Display issues with highlights in `README.md`
2536

2637
## [[1.2.1](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.2.1)] - 2020-09-29
2738
### Fixed

0 commit comments

Comments
 (0)