Skip to content

Commit

Permalink
Release for v1.13.1 (#381)
Browse files Browse the repository at this point in the history
* [tagpr] prepare for the next release

* [tagpr] update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 16, 2024
1 parent 61e6be0 commit 1db8bb9
Show file tree
Hide file tree
Showing 3 changed files with 153 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
exclude:
labels:
- tagpr
42 changes: 42 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# config file for the tagpr in git config format
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
# CONFIGURATIONS:
# tagpr.releaseBranch
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
# creates or updates a pull request as a release candidate, or tags when they are merged.
#
# tagpr.versionFile
# Versioning file containing the semantic version needed to be updated at release.
# It will be synchronized with the "git tag".
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
# Sometimes the source code file, such as version.go or Bar.pm, is used.
# If you do not want to use versioning files but only git tags, specify the "-" string here.
# You can specify multiple version files by comma separated strings.
#
# tagpr.vPrefix
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
# This is only a tagging convention, not how it is described in the version file.
#
# tagpr.changelog (Optional)
# Flag whether or not changelog is added or changed during the release.
#
# tagpr.command (Optional)
# Command to change files just before release.
#
# tagpr.template (Optional)
# Pull request template in go template format
#
# tagpr.release (Optional)
# GitHub Release creation behavior after tagging [true, draft, false]
# If this value is not set, the release is to be created.
#
# tagpr.majorLabels (Optional)
# Label of major update targets. Default is [major]
#
# tagpr.minorLabels (Optional)
# Label of minor update targets. Default is [minor]
#
[tagpr]
vPrefix = true
releaseBranch = main
versionFile = -
107 changes: 107 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# Changelog

## [v1.13.1](https://github.com/go-to-k/delstack/compare/v1.13.0...v1.13.1) - 2024-08-16
- chore: use math/rand/v2 by @go-to-k in https://github.com/go-to-k/delstack/pull/377
- chore: use new gomock by @go-to-k in https://github.com/go-to-k/delstack/pull/378
- ci: add linter by @go-to-k in https://github.com/go-to-k/delstack/pull/379
- ci: use tagpr by @go-to-k in https://github.com/go-to-k/delstack/pull/380

## [v1.13.0](https://github.com/go-to-k/delstack/compare/v1.12.0...v1.13.0) - 2024-08-15
- feat(operation): unsupport IAM role because it can be deleted by normal deletion now by @go-to-k in https://github.com/go-to-k/delstack/pull/369
- chore(deps): bump github.com/urfave/cli/v2 from 2.25.0 to 2.27.4 by @dependabot in https://github.com/go-to-k/delstack/pull/367
- test: improve testdata by @go-to-k in https://github.com/go-to-k/delstack/pull/372
- fix: BackVault deletion fails by @go-to-k in https://github.com/go-to-k/delstack/pull/371
- fix: DeleteBucket error on Directory Buckets by @go-to-k in https://github.com/go-to-k/delstack/pull/374

## [v1.12.0](https://github.com/go-to-k/delstack/compare/v1.11.0...v1.12.0) - 2024-08-13
- chore(deps): bump goreleaser/goreleaser-action from 5 to 6 by @dependabot in https://github.com/go-to-k/delstack/pull/348
- chore(deps): bump github.com/rs/zerolog from 1.32.0 to 1.33.0 by @dependabot in https://github.com/go-to-k/delstack/pull/359
- chore(deps): bump github.com/aws/aws-sdk-go-v2/service/ecr from 1.31.0 to 1.32.0 by @dependabot in https://github.com/go-to-k/delstack/pull/364
- chore(deps): bump golang.org/x/sync from 0.5.0 to 0.8.0 by @dependabot in https://github.com/go-to-k/delstack/pull/365
- feat(operator): support IAM Groups by @go-to-k in https://github.com/go-to-k/delstack/pull/368

## [v1.11.0](https://github.com/go-to-k/delstack/compare/v1.10.0...v1.11.0) - 2024-08-07
- chore(client): remove ListObjectVersions method by @go-to-k in https://github.com/go-to-k/delstack/pull/360
- test(client): remove unused functions by @go-to-k in https://github.com/go-to-k/delstack/pull/361
- test: fix region for ecr in deploy.sh by @go-to-k in https://github.com/go-to-k/delstack/pull/362
- refactor(client): change unused methods from operator to private by @go-to-k in https://github.com/go-to-k/delstack/pull/366
- feat(operator): support Directory Buckets for S3 Express One Zone by @go-to-k in https://github.com/go-to-k/delstack/pull/363

## [v1.10.0](https://github.com/go-to-k/delstack/compare/v1.9.0...v1.10.0) - 2024-08-01
- chore(deps): update AWS SDK versions by @go-to-k in https://github.com/go-to-k/delstack/pull/355
- feat(client): retry on APIs other than DeleteObjects in S3 client by @go-to-k in https://github.com/go-to-k/delstack/pull/357
- refactor(client): retryer in IAM client by @go-to-k in https://github.com/go-to-k/delstack/pull/356

## [v1.9.0](https://github.com/go-to-k/delstack/compare/v1.8.0...v1.9.0) - 2024-07-21
- chore: change config of brews in .goreleaser.yaml by @go-to-k in https://github.com/go-to-k/delstack/pull/346
- chore(deps): bump github.com/aws/aws-sdk-go-v2/service/cloudformation from 1.39.1 to 1.47.0 by @dependabot in https://github.com/go-to-k/delstack/pull/337
- chore(deps): bump github.com/aws/aws-sdk-go-v2/service/iam from 1.27.2 to 1.31.1 by @dependabot in https://github.com/go-to-k/delstack/pull/336
- chore(deps): bump actions/cache from 3 to 4 by @dependabot in https://github.com/go-to-k/delstack/pull/315
- chore(deps): bump actions/upload-artifact from 3 to 4 by @dependabot in https://github.com/go-to-k/delstack/pull/303
- chore(deps): bump go.uber.org/goleak from 1.2.1 to 1.3.0 by @dependabot in https://github.com/go-to-k/delstack/pull/264
- chore(deps): bump github.com/rs/zerolog from 1.30.0 to 1.32.0 by @dependabot in https://github.com/go-to-k/delstack/pull/317
- feat(client): improve deletion logic for S3 by @go-to-k in https://github.com/go-to-k/delstack/pull/347

## [v1.8.0](https://github.com/go-to-k/delstack/compare/v1.7.1...v1.8.0) - 2024-03-27
- feat(operation): check all stacks for TerminationProtection before starting deletion when multiple stacks by @go-to-k in https://github.com/go-to-k/delstack/pull/345

## [v1.7.1](https://github.com/go-to-k/delstack/compare/v1.7.0...v1.7.1) - 2024-03-25
- chore(action): tweak for handling stack names with spaces by @go-to-k in https://github.com/go-to-k/delstack/pull/343

## [v1.7.0](https://github.com/go-to-k/delstack/compare/v1.6.0...v1.7.0) - 2024-03-24
- feat(action): can specify multiple stacks in GitHub Actions by @go-to-k in https://github.com/go-to-k/delstack/pull/342

## [v1.6.0](https://github.com/go-to-k/delstack/compare/v1.5.0...v1.6.0) - 2024-03-23
- chore: add PR template by @go-to-k in https://github.com/go-to-k/delstack/pull/309
- docs: aqua install in README by @go-to-k in https://github.com/go-to-k/delstack/pull/314
- chore(operation): add an issue link in the unsupported error message by @go-to-k in https://github.com/go-to-k/delstack/pull/338
- feat(app): multiple stacks deletion by @go-to-k in https://github.com/go-to-k/delstack/pull/341

## [v1.5.0](https://github.com/go-to-k/delstack/compare/v1.4.2...v1.5.0) - 2023-12-22
- feat(io): keep filter for resource types selection active in interactive mode by @go-to-k in https://github.com/go-to-k/delstack/pull/308

## [v1.4.2](https://github.com/go-to-k/delstack/compare/v1.4.1...v1.4.2) - 2023-12-22
- fix(io): trim spaces from stack name selection filter in interactive mode by @go-to-k in https://github.com/go-to-k/delstack/pull/307

## [v1.4.1](https://github.com/go-to-k/delstack/compare/v1.4.0...v1.4.1) - 2023-12-08
- chore(app): change message for stack name selection when interactive mode by @go-to-k in https://github.com/go-to-k/delstack/pull/299

## [v1.4.0](https://github.com/go-to-k/delstack/compare/v1.3.0...v1.4.0) - 2023-12-08
- feat(operation): do not display stacks with delete protection in the interactive mode by @go-to-k in https://github.com/go-to-k/delstack/pull/296
- feat(operation): throws error if a stack with XxxInProgress is specified by @go-to-k in https://github.com/go-to-k/delstack/pull/298

## [v1.3.0](https://github.com/go-to-k/delstack/compare/v1.2.0...v1.3.0) - 2023-12-07
- feat(install): Use Script Install by @go-to-k in https://github.com/go-to-k/delstack/pull/292

## [v1.2.0](https://github.com/go-to-k/delstack/compare/v1.1.2...v1.2.0) - 2023-12-07
- chore(client): upgrade aws-sdk-go-v2/service/s3 to v1.47.3 and fix a breaking change by the version by @go-to-k in https://github.com/go-to-k/delstack/pull/291
- chore(deps): bump actions/setup-go from 4 to 5 by @dependabot in https://github.com/go-to-k/delstack/pull/289

## [v1.1.2](https://github.com/go-to-k/delstack/compare/v1.1.1...v1.1.2) - 2023-11-17
- docs: fix a default region in README by @go-to-k in https://github.com/go-to-k/delstack/pull/258
- chore(deps): aws sdk version up to 1.23.0 by @go-to-k in https://github.com/go-to-k/delstack/pull/263
- chore(deps): bump golang.org/x/sync from 0.3.0 to 0.5.0 by @dependabot in https://github.com/go-to-k/delstack/pull/254
- chore(deps): bump goreleaser/goreleaser-action from 4 to 5 by @dependabot in https://github.com/go-to-k/delstack/pull/234
- chore(deps): bump actions/checkout from 3 to 4 by @dependabot in https://github.com/go-to-k/delstack/pull/233

## [v1.1.1](https://github.com/go-to-k/delstack/compare/v1.1.0...v1.1.1) - 2023-10-29
- chore: minor improvement for keyword search by @go-to-k in https://github.com/go-to-k/delstack/pull/247

## [v1.1.0](https://github.com/go-to-k/delstack/compare/v1.0.4...v1.1.0) - 2023-10-08
- docs: change version sample for github actions by @go-to-k in https://github.com/go-to-k/delstack/pull/227
- docs: change GitHub Actions sample by @go-to-k in https://github.com/go-to-k/delstack/pull/228
- chore(deps): bump github.com/aws/aws-sdk-go-v2 from 1.20.3 to 1.21.0 by @dependabot in https://github.com/go-to-k/delstack/pull/213
- docs: Resource Types description in README by @go-to-k in https://github.com/go-to-k/delstack/pull/229
- test: add goleak by @go-to-k in https://github.com/go-to-k/delstack/pull/231
- ci: fix coverage report path by @go-to-k in https://github.com/go-to-k/delstack/pull/232
- chore: go version to 1.21 by @go-to-k in https://github.com/go-to-k/delstack/pull/243

## [v1.0.4](https://github.com/go-to-k/delstack/compare/v1.0.3...v1.0.4) - 2023-08-27
- fix: action shell by @go-to-k in https://github.com/go-to-k/delstack/pull/226

## [v1.0.3](https://github.com/go-to-k/delstack/compare/v1.0.2...v1.0.3) - 2023-08-27
- chore: add with in custom action by @go-to-k in https://github.com/go-to-k/delstack/pull/225

## [v1.0.2](https://github.com/go-to-k/delstack/compare/v1.0.1...v1.0.2) - 2023-08-26
- docs: change github actions sample by @go-to-k in https://github.com/go-to-k/delstack/pull/223
- chore: github action run commands by @go-to-k in https://github.com/go-to-k/delstack/pull/224

0 comments on commit 1db8bb9

Please sign in to comment.