Skip to content

Commit

Permalink
Merge pull request #684 from duplocloud/release/0.10.45
Browse files Browse the repository at this point in the history
Release v0.10.45
  • Loading branch information
zafarabbas authored Sep 9, 2024
2 parents 9002f96 + cc7975c commit 0e3d644
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
if: env.modified == 'true'
run: |
git config --global user.name 'Duplo Githug Bot'
git config --global user.email 'tahir@duplocloud.net'
git config --global user.email 'tahir+github-bot@duplocloud.net'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git commit -am "lint: go fmt"
git push
8 changes: 4 additions & 4 deletions .github/workflows/finish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
branches:
- master
env:
git_user: tahir-duplo
git_email: tahir@duplocloud.net
git_user: duplo-bot
git_email: tahir+github-bot@duplocloud.net
jobs:
finish-release:
if: github.event.pull_request.merged == true && (startsWith(github.head_ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/'))
Expand All @@ -33,7 +33,7 @@ jobs:
with:
validate_merge: false
delete_branch: false
github_token: ${{ secrets.DUPLO_TF_GITHUB_TOKEN }}
github_token: ${{ secrets.DUPLO_GITHUB_TOKEN }}

version-bump:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -73,5 +73,5 @@ jobs:
- name: Push develop
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.DUPLO_TF_GITHUB_TOKEN }}
github_token: ${{ secrets.DUPLO_GITHUB_TOKEN }}
branch: develop
4 changes: 2 additions & 2 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
args: release --parallelism 2 --rm-dist
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.DUPLO_TF_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.DUPLO_GITHUB_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
publish-release:
runs-on: ubuntu-latest
Expand All @@ -50,7 +50,7 @@ jobs:
name: Publish the release
uses: actions/github-script@v5
with:
github-token: ${{ secrets.DUPLO_TF_GITHUB_TOKEN }}
github-token: ${{ secrets.DUPLO_GITHUB_TOKEN }}
script: |
// List all releases.
let releases = await github.rest.repos.listReleases({ owner: context.repo.owner, repo: context.repo.repo });
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/start-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
required: false
default: '' # default to current version
env:
git_user: tahir-duplo
git_email: tahir@duplocloud.net
git_user: duplo-bot
git_email: tahir+github-bot@duplocloud.net
jobs:
start-release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Start gitflow release
uses: duplocloud/ghactions-start-gitflow-release@master
with:
github_token: ${{ secrets.DUPLO_TF_GITHUB_TOKEN }}
github_token: ${{ secrets.DUPLO_GITHUB_TOKEN }}
version: "${{ steps.version.outputs.release }}"
precommit_run: |
# Fail on errors
Expand Down
45 changes: 23 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
## 2024-09-09

### Enhanced

- Updated provider version to 0.10.45 across multiple examples.

## 2024-09-07

### Documentation

- Added examples for configuring Redis logging and automatic failover in Amazon ElastiCache documentation.
- Updated schema description for `destination_type` in Redis configuration, removing outdated reference links.

## 2024-09-06

### Enhanced

- Improved RDS instance validation with a new `CustomizeDiff` function to ensure compatibility of engine and instance size combinations.
- Streamlined performance insights handling for RDS instances, enhancing the enabling and disabling process.
- Added validation for Aurora database storage types to ensure correct configuration.
- Included a new example in the documentation for configuring performance insights on a cluster RDS instance.

## 2024-09-09

### Configuration

- Updated GitHub bot user email and credentials in multiple workflow files.
- Changed GitHub token secret name in workflows for improved consistency.

## 2024-09-07

### Documentation

- Added examples for configuring Redis logging and automatic failover in Amazon ElastiCache documentation.
- Updated schema description for `destination_type` in Redis configuration, removing outdated reference links.

## 2024-09-06

### Enhanced

- Improved RDS instance validation with a new `CustomizeDiff` function to ensure compatibility of engine and instance size combinations.
- Streamlined performance insights handling for RDS instances, enhancing the enabling and disabling process.
- Added validation for Aurora database storage types to ensure correct configuration.
- Included a new example in the documentation for configuring performance insights on a cluster RDS instance.

## 2024-09-06

### Fixed
Expand Down

0 comments on commit 0e3d644

Please sign in to comment.