Skip to content

Commit 55bdab5

Browse files
authored
Merge pull request #25 from bastelfreak/rel740
Release 7.4.0
2 parents dab3aa0 + 439d2ec commit 55bdab5

File tree

10 files changed

+1446
-5
lines changed

10 files changed

+1446
-5
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
version: 2
22
updates:
3+
# raise PRs for gem updates
4+
- package-ecosystem: bundler
5+
directory: "/"
6+
schedule:
7+
interval: daily
8+
time: "13:00"
9+
open-pull-requests-limit: 10
10+
311
# Maintain dependencies for GitHub Actions
412
- package-ecosystem: github-actions
513
directory: "/"

.github/pull_request_template.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/release.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
3+
4+
changelog:
5+
exclude:
6+
labels:
7+
- duplicate
8+
- invalid
9+
- modulesync
10+
- question
11+
- skip-changelog
12+
- wont-fix
13+
- wontfix
14+
15+
categories:
16+
- title: Breaking Changes 🛠
17+
labels:
18+
- backwards-incompatible
19+
20+
- title: New Features 🎉
21+
labels:
22+
- enhancement
23+
24+
- title: Bug Fixes 🐛
25+
labels:
26+
- bug
27+
28+
- title: Documentation Updates 📚
29+
labels:
30+
- documentation
31+
- docs
32+
33+
- title: Dependency Updates ⬆️
34+
labels:
35+
- dependencies
36+
37+
- title: Other Changes
38+
labels:
39+
- "*"

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
shell: bash
3737
env:
3838
GH_TOKEN: ${{ github.token }}
39-
run: gh release create ${{ github.ref_name }} --generate-notes
39+
run: gh release create --repo ${{ github.repository }} ${{ github.ref_name }} --generate-notes

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ pom.xml
33
/.clj-kondo/
44
/.idea/
55
/.lsp
6+
/.vendor
7+
/vendor
8+
/.bundle
9+
/Gemfile.lock

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
1-
## Unreleased
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [7.4.0](https://github.com/OpenVoxProject/clj-parent/tree/7.4.0) (2025-08-05)
6+
7+
[Full Changelog](https://github.com/OpenVoxProject/clj-parent/compare/7.3.38...7.4.0)
8+
9+
**Implemented enhancements:**
10+
11+
- Update dependency clj-commons:fs to v1.6.311 [\#12](https://github.com/OpenVoxProject/clj-parent/pull/12) ([renovate[bot]](https://github.com/apps/renovate))
12+
- Update dependency bidi:bidi to v2.1.6 [\#11](https://github.com/OpenVoxProject/clj-parent/pull/11) ([renovate[bot]](https://github.com/apps/renovate))
13+
14+
**Fixed bugs:**
15+
16+
- Remove unused puppetlabs/host-action-collector-client [\#19](https://github.com/OpenVoxProject/clj-parent/pull/19) ([bastelfreak](https://github.com/bastelfreak))
17+
18+
**Merged pull requests:**
19+
20+
- Add proper check to verify if all jobs passed [\#14](https://github.com/OpenVoxProject/clj-parent/pull/14) ([bastelfreak](https://github.com/bastelfreak))
21+
- Configure Renovate [\#10](https://github.com/OpenVoxProject/clj-parent/pull/10) ([renovate[bot]](https://github.com/apps/renovate))
222

323
## [7.3.38]
424

@@ -1336,3 +1356,6 @@ Adds the following new dependencies:
13361356

13371357
## [0.1.0] - 2016-09-29
13381358
- initial release
1359+
1360+
1361+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
2+
3+
group :release, optional: true do
4+
gem 'faraday-retry', '~> 2.1', require: false
5+
gem 'github_changelog_generator', '~> 1.16.4', require: false
6+
#gem 'github_changelog_generator', github: 'smortex/github-changelog-generator', branch: 'avoid-processing-a-single-commit-multiple-time', require: false
7+
end

0 commit comments

Comments
 (0)