Skip to content

Commit

Permalink
Merge branch 'main' into remove-old-resources
Browse files Browse the repository at this point in the history
  • Loading branch information
sathish-progress authored Jan 11, 2022
2 parents c645416 + 9a289bb commit 75162f6
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .expeditor/publish-release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set -eou pipefail
PRODUCT=inspec-azure
CURRENTDATE=$(date +"%Y-%m-%d")
DOCS_DIR="docs-chef-io/static/release-notes/inspec-azure"
DOCS_ASSETS_DIR="docs-chef-io/assets/release-notes/inspec-azure"
BRANCH="expeditor/update_release_notes_${CURRENTDATE}"

git checkout -b "$BRANCH"
Expand All @@ -19,6 +20,11 @@ DATES_FILE="${DOCS_DIR}/release-dates.json"
DATES=$( cat "$DATES_FILE" | jq --arg DATE "$CURRENTDATE" '. |= .+ [$DATE]' )
echo $DATES | jq . > "$DATES_FILE"

# Append the date to the array of dates in docs-chef-io/assets/release-notes/inspec-azure/release-dates.json
DATES_FILE="${DOCS_ASSETS_DIR}/release-dates.json"
DATES=$( cat "$DATES_FILE" | jq --arg DATE "$CURRENTDATE" '. |= .+ [$DATE]' )
echo $DATES | jq . > "$DATES_FILE"

pushd ./inspec-azure.wiki
# Publish release notes to S3
aws s3 cp Pending-Release-Notes.md "s3://chef-automate-artifacts/release-notes/${PRODUCT}/${CURRENTDATE}.md" --acl public-read --content-type "text/plain" --profile chef-cd
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# Changelog
<!-- latest_release 1.84.1 -->
<!-- latest_release 1.84.3 -->
## [v1.84.3](https://github.com/inspec/inspec-azure/tree/v1.84.3) (2022-01-07)

#### Merged Pull Requests
- Publish latest release notes 2022-01-07 [#604](https://github.com/inspec/inspec-azure/pull/604) ([IanMadd](https://github.com/IanMadd))
<!-- latest_release -->

## [v1.84.2](https://github.com/inspec/inspec-azure/tree/v1.84.2) (2022-01-07)

#### Merged Pull Requests
- Move release-dates.json file to assets dir [#603](https://github.com/inspec/inspec-azure/pull/603) ([IanMadd](https://github.com/IanMadd))

## [v1.84.1](https://github.com/inspec/inspec-azure/tree/v1.84.1) (2021-12-09)

#### Merged Pull Requests
- Resource docs fixes [#577](https://github.com/inspec/inspec-azure/pull/577) ([IanMadd](https://github.com/IanMadd))
<!-- latest_release -->

## [v1.84.0](https://github.com/inspec/inspec-azure/tree/v1.84.0) (2021-12-09)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.84.1
1.84.3
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[
"2021-10-08",
"2022-01-07"
]
14 changes: 14 additions & 0 deletions docs-chef-io/static/release-notes/inspec-azure/2022-01-07.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## New Azure Cloud Resources

- [Virtual Network Gateway Connections](https://github.com/inspec/inspec-azure/pull/531)
- [Virtual Network Gateway](https://github.com/inspec/inspec-azure/pull/530)
- [Migrate Assessment Machines](https://github.com/inspec/inspec-azure/pull/434)
- [Sentinel Incident](https://github.com/inspec/inspec-azure/pull/459)
- [Datalake Storage Gen2 Filesystem](https://github.com/inspec/inspec-azure/pull/482)
- [PowerBI Gateway](https://github.com/inspec/inspec-azure/pull/517)
- [Managed Sql Instance](https://github.com/inspec/inspec-azure/pull/563)
- [Alert Rule Template](https://github.com/inspec/inspec-azure/pull/476)

## Bug Fixes

- [Resolved an error in the `azure_network_security_group` resource when verifying a destination port or range of destination ports](https://github.com/inspec/inspec-azure/pull/564).
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[
"2021-10-08"
"2021-10-08",
"2022-01-07"
]
2 changes: 1 addition & 1 deletion inspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ copyright: Chef Software, Inc.
copyright_email: [email protected]
license: Apache-2.0
summary: This resource pack provides compliance resources for Azure.
version: 1.84.1
version: 1.84.3
inspec_version: '>= 4.18.39'
supports:
- platform: azure

0 comments on commit 75162f6

Please sign in to comment.