summaryrefslogtreecommitdiff
path: root/vendor/github.com/gin-contrib
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-05-06 08:50:47 +0000
committerLibravatar GitHub <noreply@github.com>2024-05-06 08:50:47 +0000
commita5f28fe0c923984c263592e82bbce99b0032b794 (patch)
tree403544ad5305eb171a85d2b4c59559f83abd87a7 /vendor/github.com/gin-contrib
parent[chore]: Bump golang.org/x/image from 0.15.0 to 0.16.0 (#2898) (diff)
downloadgotosocial-a5f28fe0c923984c263592e82bbce99b0032b794.tar.xz
[chore]: Bump github.com/gin-contrib/gzip from 1.0.0 to 1.0.1 (#2899)
Bumps [github.com/gin-contrib/gzip](https://github.com/gin-contrib/gzip) from 1.0.0 to 1.0.1. - [Release notes](https://github.com/gin-contrib/gzip/releases) - [Changelog](https://github.com/gin-contrib/gzip/blob/master/.goreleaser.yaml) - [Commits](https://github.com/gin-contrib/gzip/compare/v1.0.0...v1.0.1) --- updated-dependencies: - dependency-name: github.com/gin-contrib/gzip dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/gin-contrib')
-rw-r--r--vendor/github.com/gin-contrib/gzip/.goreleaser.yaml54
1 files changed, 13 insertions, 41 deletions
diff --git a/vendor/github.com/gin-contrib/gzip/.goreleaser.yaml b/vendor/github.com/gin-contrib/gzip/.goreleaser.yaml
index aa5453cfc..4c910add4 100644
--- a/vendor/github.com/gin-contrib/gzip/.goreleaser.yaml
+++ b/vendor/github.com/gin-contrib/gzip/.goreleaser.yaml
@@ -1,57 +1,29 @@
-project_name: queue
-
builds:
- -
- # If true, skip the build.
+ - # If true, skip the build.
# Useful for library projects.
# Default is false
skip: true
changelog:
- # Set it to true if you wish to skip the changelog generation.
- # This may result in an empty release notes on GitHub/GitLab/Gitea.
- skip: false
-
- # Changelog generation implementation to use.
- #
- # Valid options are:
- # - `git`: uses `git log`;
- # - `github`: uses the compare GitHub API, appending the author login to the changelog.
- # - `gitlab`: uses the compare GitLab API, appending the author name and email to the changelog.
- # - `github-native`: uses the GitHub release notes generation API, disables the groups feature.
- #
- # Defaults to `git`.
- use: git
-
- # Sorts the changelog by the commit's messages.
- # Could either be asc, desc or empty
- # Default is empty
- sort: asc
-
- # Group commits messages by given regex and title.
- # Order value defines the order of the groups.
- # Proving no regex means all commits will be grouped under the default group.
- # Groups are disabled when using github-native, as it already groups things by itself.
- #
- # Default is no groups.
+ use: github
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- - title: 'Bug fixes'
+ - title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- - title: 'Enhancements'
+ - title: "Enhancements"
regexp: "^.*chore[(\\w)]*:+.*$"
order: 2
+ - title: "Refactor"
+ regexp: "^.*refactor[(\\w)]*:+.*$"
+ order: 3
+ - title: "Build process updates"
+ regexp: ^.*?(build|ci)(\(.+\))??!?:.+$
+ order: 4
+ - title: "Documentation updates"
+ regexp: ^.*?docs?(\(.+\))??!?:.+$
+ order: 4
- title: Others
order: 999
-
- filters:
- # Commit messages matching the regexp listed here will be removed from
- # the changelog
- # Default is empty
- exclude:
- - '^docs'
- - 'CICD'
- - typo