35 Commits

Author SHA1 Message Date
Unbound Release bd82148795 chore(release): prepare for v0.0.15 2025-04-04 09:41:32 +02:00
Renovate 2ad1d1921c chore(deps): update node.js to fab5fee 2025-03-18 05:52:33 +00:00
argoyle 0236562cab fix(docker): update base image to amd64 version
Updates the Dockerfile to use the amd64 variant of the Node.js 
base image. This change ensures compatibility with the target 
architecture for improved performance and stability.
2025-02-26 18:34:04 +01:00
Renovate 892aff02b1 chore(deps): update node.js to 2094ac6 2025-02-25 19:52:26 +00:00
Renovate 1726082fef chore(deps): update node.js to a279671 2025-02-25 07:52:27 +00:00
Renovate a1c6c930ae chore(deps): update node.js to cfef443 2025-02-13 19:53:23 +00:00
Renovate 497e895ef6 chore(deps): update node.js to v22.14.0 2025-02-13 16:53:42 +00:00
Renovate 5d4670cdc7 chore(deps): update node.js to 5145c88 2025-02-05 10:52:56 +00:00
Renovate 2dcf29b955 chore(deps): update node.js to 3962f5a 2025-02-05 07:52:40 +00:00
Renovate 14d8f744ac chore(deps): update node.js to 469d57f 2025-02-05 04:53:29 +00:00
Renovate f57c696627 chore(deps): update node.js to debe7ff 2025-02-04 10:52:44 +00:00
Unbound Release 4841e29680 chore(release): prepare for v0.0.14 2025-01-23 06:44:43 +00:00
Renovate eb1ed8b5f4 chore(deps): update node.js to v22.13.1 2025-01-23 01:54:40 +00:00
Renovate fd2b426e6a chore(deps): update node.js to fa54405 2025-01-15 20:37:41 +00:00
Renovate 8724d9ebdd chore(deps): update node.js to d77c645 2025-01-15 02:25:26 +00:00
Renovate 1bc8c99013 chore(deps): update node.js to 4f7fb7f 2025-01-14 08:34:15 +00:00
Unbound Release 1a3a0ca7cf chore(release): prepare for v0.0.13 2025-01-10 10:16:41 +00:00
Renovate e1426020e0 chore(deps): update node.js to v22.13.0 2025-01-08 19:54:16 +00:00
Unbound Release 9afb2ddb63 chore(release): prepare for v0.0.12 2024-12-28 17:52:10 +00:00
Renovate 67a0ec7508 chore(deps): update node.js to 0e910f4 2024-12-25 22:53:48 +00:00
argoyle 128a6f2a6c ci: remove unnecessary docker services and variables
Eliminate unused Docker host variables and services from the CI 
configuration. This simplifies the build process and reduces 
potential complexities in the CI pipeline.
2024-12-05 10:55:26 +01:00
Renovate 6fc12fac2f chore(deps): update node.js to 35a5dd7 2024-12-04 11:55:13 +00:00
Renovate 98e917a2fa chore(deps): update node.js to v22.12.0 2024-12-04 05:53:59 +00:00
Renovate ce49c475dd chore(deps): update node.js to fd453a2 2024-12-03 20:55:29 +00:00
Renovate e20e89e0b2 chore(deps): update node.js to cb24453 2024-12-03 08:53:45 +00:00
Unbound Release df88b2c3d2 chore(release): prepare for v0.0.11 2024-11-14 08:06:28 +00:00
argoyle 109884f4b5 chore: add default configuration for git-cliff
Adds a default configuration file for git-cliff to manage the 
changelog generation process. This configuration includes templates 
for the changelog header, body, and footer, as well as settings for 
parsing commits following the conventional commits specification. 
The change aims to streamline the process of documenting notable 
changes in the project, improving maintainability and consistency.
2024-11-14 09:04:09 +01:00
Renovate 30c4a61730 chore(deps): update node.js to 5c76d05 2024-11-13 23:52:59 +00:00
Renovate b293b1ac17 chore(deps): update node.js to 6eb1af3 2024-11-13 14:53:33 +00:00
Renovate f490b695be chore(deps): update node.js to f1f8564 2024-11-13 11:53:08 +00:00
Renovate 801b557de9 chore(deps): update node.js to db556c2 2024-11-13 05:53:17 +00:00
Renovate 8667d3e03c chore(deps): update node.js to f496dba 2024-11-12 08:52:35 +00:00
Renovate 4c387451f3 chore(deps): pin node.js to de4c8be 2024-11-03 16:32:32 +00:00
Renovate 34ab02e27b chore(deps): update node.js to v22.11.0 2024-10-30 02:53:14 +00:00
Renovate 61e4c7cf79 chore(deps): update node.js to v22.10.0 2024-10-17 22:52:50 +00:00
4 changed files with 158 additions and 6 deletions
-5
View File
@@ -6,15 +6,10 @@ include:
stages: stages:
- build - build
variables:
DOCKER_HOST: tcp://docker:2375/
image: buildtool/build-tools:${BUILDTOOLS_VERSION} image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build: build:
stage: build stage: build
services:
- docker:${DOCKER_DIND_VERSION}
script: script:
- unset BUILDTOOLS_CONTENT - unset BUILDTOOLS_CONTENT
- build - build
+77
View File
@@ -2,6 +2,64 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.0.15] - 2025-03-18
### 🐛 Bug Fixes
- *(docker)* Update base image to amd64 version
### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to debe7ff
- *(deps)* Update node.js to 469d57f
- *(deps)* Update node.js to 3962f5a
- *(deps)* Update node.js to 5145c88
- *(deps)* Update node.js to v22.14.0
- *(deps)* Update node.js to cfef443
- *(deps)* Update node.js to a279671
- *(deps)* Update node.js to 2094ac6
- *(deps)* Update node.js to fab5fee
## [0.0.14] - 2025-01-23
### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to 4f7fb7f
- *(deps)* Update node.js to d77c645
- *(deps)* Update node.js to fa54405
- *(deps)* Update node.js to v22.13.1
## [0.0.13] - 2025-01-10
### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to v22.13.0
## [0.0.12] - 2024-12-28
### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to cb24453
- *(deps)* Update node.js to fd453a2
- *(deps)* Update node.js to v22.12.0
- *(deps)* Update node.js to 35a5dd7
- Remove unnecessary docker services and variables
- *(deps)* Update node.js to 0e910f4
## [0.0.11] - 2024-11-14
### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to v22.10.0
- *(deps)* Update node.js to v22.11.0
- *(deps)* Pin node.js to de4c8be
- *(deps)* Update node.js to f496dba
- *(deps)* Update node.js to db556c2
- *(deps)* Update node.js to f1f8564
- *(deps)* Update node.js to 6eb1af3
- *(deps)* Update node.js to 5c76d05
- Add default configuration for git-cliff
## [0.0.10] - 2024-10-05 ## [0.0.10] - 2024-10-05
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
@@ -12,18 +70,30 @@ All notable changes to this project will be documented in this file.
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to v22.3.0
- *(deps)* Update node.js to v22.4.0
- *(deps)* Update node.js to v22.4.1
- *(deps)* Update node.js to v22.5.0
- *(deps)* Update node.js to v22.5.1
- *(deps)* Update node docker tag to v22.6.0
- *(deps)* Update node.js to v22.7.0
- *(deps)* Update node.js to v22.8.0
- *(deps)* Update node.js to v22.9.0
- Update prepare_release to use git-cliff for CHANGELOG generation - Update prepare_release to use git-cliff for CHANGELOG generation
## [0.0.8] - 2024-05-20 ## [0.0.8] - 2024-05-20
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to v22.1.0
- Add ruby-dev to Dockerfile for pre-commit installation. - Add ruby-dev to Dockerfile for pre-commit installation.
- *(deps)* Update node.js to v22.2.0
## [0.0.7] - 2024-05-02 ## [0.0.7] - 2024-05-02
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to v20.12.2
- Update to Node 22 - Update to Node 22
## [0.0.6] - 2024-04-08 ## [0.0.6] - 2024-04-08
@@ -32,6 +102,12 @@ All notable changes to this project will be documented in this file.
- Add pipx bin-dir to PATH - Add pipx bin-dir to PATH
## [0.0.5] - 2024-04-07
### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to v20.12.1
## [0.0.4] - 2024-04-06 ## [0.0.4] - 2024-04-06
### 🐛 Bug Fixes ### 🐛 Bug Fixes
@@ -40,6 +116,7 @@ All notable changes to this project will be documented in this file.
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
- *(deps)* Update node.js to v20
- Remove Dependabot config - Remove Dependabot config
- Update to node 20.9.0 - Update to node 20.9.0
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:22.9.0 FROM amd64/node:22.14.0@sha256:fab5feecdaa5b3dd169ebce16b46938412b1c3b4def5dca0a92ad5bd55b12b68
ENV PATH=${PATH}:/root/.local/bin ENV PATH=${PATH}:/root/.local/bin
+80
View File
@@ -0,0 +1,80 @@
# git-cliff ~ default configuration file
# https://git-cliff.org/docs/configuration
#
# Lines starting with "#" are comments.
# Configuration options are organized into tables and keys.
# See documentation for more information on available options.
[changelog]
# template for the changelog header
header = """
# Changelog\n
All notable changes to this project will be documented in this file.\n
"""
# template for the changelog body
# https://keats.github.io/tera/docs/#introduction
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | striptags | trim | upper_first }}
{% for commit in commits %}
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
{% if commit.breaking %}[**breaking**] {% endif %}\
{{ commit.message | upper_first }}\
{% endfor %}
{% endfor %}\n
"""
# template for the changelog footer
footer = """
<!-- generated by git-cliff -->
"""
# remove the leading and trailing s
trim = true
# postprocessors
postprocessors = [
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
]
# render body even when there are no releases to process
# render_always = true
# output file path
# output = "test.md"
[git]
# parse the commits based on https://www.conventionalcommits.org
conventional_commits = true
# filter out the commits that are not conventional
filter_unconventional = true
# process each line of a commit as an individual commit
split_commits = false
# regex for preprocessing the commit messages
commit_preprocessors = [
# Replace issue numbers
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
# Check spelling of the commit with https://github.com/crate-ci/typos
# If the spelling is incorrect, it will be automatically fixed.
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
]
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks" },
{ body = ".*security", group = "<!-- 8 -->🛡️ Security" },
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
]
# filter out the commits that are not matched by commit parsers
filter_commits = false
# sort the tags topologically
topo_order = false
# sort the commits inside sections by oldest/newest order
sort_commits = "oldest"