Releases: RiskIdent/jelease
Releases · RiskIdent/jelease
v0.6.3
What's Changed
- Bump remark-preset-lint-markdown-style-guide from 5.1.3 to 6.0.0 by @dependabot in #41
- Bump remark-lint from 9.1.2 to 10.0.0 by @dependabot in #42
- Bump github.com/a-h/templ from 0.2.648 to 0.2.663 by @dependabot in #40
- Bump slackapi/slack-github-action from 1.25.0 to 1.26.0 by @dependabot in #43
- Bump golang.org/x/oauth2 from 0.19.0 to 0.20.0 by @dependabot in #45
- Bump github.com/a-h/templ from 0.2.663 to 0.2.680 by @dependabot in #44
- Update to Go 1.22.3 by @applejag in #46
Full Changelog: v0.6.2...v0.6.3
v0.6.2
v0.6.1
v0.6.0
What's Changed
Breaking changes
-
Removed config
packages[].repos[].patches[].file
in favor of per-patch config defining.file
by @applejag in #30For example:
# before: - url: tmp/upstream-test patches: - file: go.mod # <--- regex: match: '(github.com/joho/godotenv) v.*' replace: '{{ index .Groups 1 }} {{ .Version }}' # after: - url: tmp/upstream-test patches: - regex: file: go.mod # <--- match: '(github.com/joho/godotenv) v.*' replace: '{{ index .Groups 1 }} {{ .Version }}'
New features
Under the hood changes
Dependencies
- Bump actions/checkout from 3 to 4 by @dependabot in #32
- Bump fsfe/reuse-action from 1 to 3 by @dependabot in #34
- Bump remark-gfm from 3.0.1 to 4.0.0 by @dependabot in #35
- Bump remark-cli from 11.0.0 to 12.0.0 by @dependabot in #36
- Bump slackapi/slack-github-action from 1.24.0 to 1.25.0 by @dependabot in #33
New Contributors
- @dependabot made their first contribution in #32
Full Changelog: v0.5.2...v0.6.0
v0.5.2
v0.5.1
What's Changed
- Add Docker labels for ghcr.io by @applejag in #20
- Upgrade to Go 1.21 by @applejag in #22
- [OP-2035] Added govulncheck by @applejag in #21
- [OP-2035] Fixed govulncheck action by @applejag in #23
- Updated dependencies to fix govulncheck by @applejag in #24
- [OP-2197] Update Go to fix GO-2023-2185 by @applejag in #26
Full Changelog: v0.5.0...v0.5.1
v0.5.0
A lot has happened since the last release. Jelease has pretty much received a full-out rewrite since v0.4.1. Before Jelease was defined by a 300 lines of code long main.go
file, but now it has 5000 lines of code.
Changes (since v0.4.1)
- Open sourced Jelease!
- Jelease can now create GitHub Pull Requests! You configure Jelease on how it should apply patches, and then it creates PRs with these changes, and links this PR into the Jira ticket it creates.
- Jelease now has a HTML web page you can interact with.
- Configure Jelease via
~/.config/jelease.yaml
. You can validate your config file via our config schema as well - Jelease has received a new mascot! The Jelease Gopher :D
- New command line interface with proper flag parsing and sub commands
- Added Helm chart to deploy Jelease
v0.4.1
v0.4.0
v0.3.0
Changes (since v0.2.0)
- Added logo from Flaticon. (113dd5b)
- Added config
JELEASE_ISSUE_TYPE
to allow other task names, e.gTask
,Story
, orBug
. - Changed default ticket type from
Task
toStory
. - Fixed so it doesn't set status on creation, as our internal Jira instance doesn't allow setting status field on creation.
- Fixed some logging not being marked as ERROR.