Skip to content

Commit 42f2170

Browse files
committed
chore: Merge branch 'develop' into template-updater/update
2 parents 561673b + e8ee669 commit 42f2170

17 files changed

Lines changed: 3858 additions & 13151 deletions

File tree

.github/workflows/test-release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
cache: 'npm'
2727
- name: 📦 Install dependencies
2828
run: npm ci
29+
- name: 🐳 Pull alpine image (for unit tests)
30+
run: docker pull alpine
2931
- name: ⏳ Run tests
3032
run: npm run test
3133

@@ -43,6 +45,8 @@ jobs:
4345
cache: 'npm'
4446
- name: 📦 Install dependencies
4547
run: npm ci
48+
- name: 🐳 Pull alpine image (for unit tests)
49+
run: docker pull alpine
4650
- name: 🔍 Run linter
4751
run: npm run lint
4852
- name: ⚙️ Build project
@@ -106,6 +110,8 @@ jobs:
106110
run: npm ci
107111
- name: 📂 Create docs folder
108112
run: mkdir ./docs
113+
- name: 🐳 Pull alpine image (for unit tests)
114+
run: docker pull alpine
109115
- name: 🪄 Run semantic-release
110116
run: BRANCH=${GITHUB_REF#refs/heads/} npx semantic-release
111117
env:

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/semantic-release-docker.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.nycrc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"check-coverage": true,
44
"extension": [".ts"],
55
"include": ["src/lib/*.ts"],
6-
"exclude": ["coverage/**", "node_modules/**"],
6+
"exclude": ["coverage/**", "node_modules/**", "src/lib/types.ts"],
77
"report-dir": "./docs/coverage/",
88
"temp-directory": "./.nyc_output",
99
"sourceMap": true,
1010
"reporter": ["text", "text-summary", "cobertura", "html"],
1111
"all": true,
1212
"instrument": true,
13-
"branches": 95,
14-
"lines": 95,
15-
"functions": 95,
16-
"statements": 95,
13+
"branches": 75,
14+
"lines": 50,
15+
"functions": 35,
16+
"statements": 50,
1717
"per-file": true
1818
}

CHANGELOG.md

Lines changed: 250 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,250 @@
1+
## [6.0.1](https://github.com/sebbo2002/semantic-release-docker/compare/v6.0.0...v6.0.1) (2025-06-18)
2+
3+
# [6.0.0](https://github.com/sebbo2002/semantic-release-docker/compare/v5.0.4...v6.0.0) (2025-05-12)
4+
5+
### chore
6+
7+
- Drop node v18 support ([3e18405](https://github.com/sebbo2002/semantic-release-docker/commit/3e18405ac1e1be738a414623f97169c802567f99))
8+
9+
### BREAKING CHANGES
10+
11+
- Drop node.js v18 Support
12+
13+
This node.js version is no longer supported. For more information see https://nodejs.dev/en/about/releases/
14+
15+
## [5.0.4](https://github.com/sebbo2002/semantic-release-docker/compare/v5.0.3...v5.0.4) (2025-01-09)
16+
17+
### Bug Fixes
18+
19+
- **deps:** downgrade eslint to v9.13.0 to resolve typescript-eslint issue ([43aa6ca](https://github.com/sebbo2002/semantic-release-docker/commit/43aa6cacd0201891827c2a6f6e2dcf8cb64b3a86)), closes [#10353](https://github.com/sebbo2002/semantic-release-docker/issues/10353) [typescript-eslint/typescript-eslint#10353](https://github.com/typescript-eslint/typescript-eslint/issues/10353)
20+
21+
## [5.0.3](https://github.com/sebbo2002/semantic-release-docker/compare/v5.0.2...v5.0.3) (2024-11-15)
22+
23+
## [5.0.2](https://github.com/sebbo2002/semantic-release-docker/compare/v5.0.1...v5.0.2) (2024-10-24)
24+
25+
## [5.0.1](https://github.com/sebbo2002/semantic-release-docker/compare/v5.0.0...v5.0.1) (2024-09-11)
26+
27+
### Bug Fixes
28+
29+
- Fix tsup config / bundled modules ([92bfa4c](https://github.com/sebbo2002/semantic-release-docker/commit/92bfa4c97dc3196433f4764ab950d32e93c29e10))
30+
- Try to fix `Dynamic require of "child_process" is not supported` ([94ceb4c](https://github.com/sebbo2002/semantic-release-docker/commit/94ceb4c204b7a2cba0b787bdd0fe6d43947a601f))
31+
- Try to fix `Dynamic require of "child_process" is not supported` II ([96c4a29](https://github.com/sebbo2002/semantic-release-docker/commit/96c4a29a1ad77b4eeb4a13523cb7f5d7e5f5f99a))
32+
33+
# [5.0.0](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.3...v5.0.0) (2024-08-26)
34+
35+
### chore
36+
37+
- Drop support for node.js v19 and v21 ([2fff079](https://github.com/sebbo2002/semantic-release-docker/commit/2fff079040a377fbe9ecc340388f6a29b863cf80))
38+
39+
### BREAKING CHANGES
40+
41+
- Drop node.js v21 Support
42+
43+
These node.js versions are no longer supported. For more information see https://nodejs.dev/en/about/releases/
44+
45+
## [4.0.3](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.2...v4.0.3) (2024-08-03)
46+
47+
## [4.0.2](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.1...v4.0.2) (2023-10-25)
48+
49+
### Reverts
50+
51+
- Revert "ci: Downgrade is-semantic-release till it's fixed" ([91c2ab5](https://github.com/sebbo2002/semantic-release-docker/commit/91c2ab59d0559a060c11d07973382c465dd3345d))
52+
53+
## [4.0.2-develop.3](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.2-develop.2...v4.0.2-develop.3) (2023-09-18)
54+
55+
## [4.0.2-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.2-develop.1...v4.0.2-develop.2) (2023-09-01)
56+
57+
## [4.0.2-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.1...v4.0.2-develop.1) (2023-08-23)
58+
59+
### Reverts
60+
61+
- Revert "ci: Downgrade is-semantic-release till it's fixed" ([91c2ab5](https://github.com/sebbo2002/semantic-release-docker/commit/91c2ab59d0559a060c11d07973382c465dd3345d))
62+
63+
## [4.0.1](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.0...v4.0.1) (2023-08-17)
64+
65+
## [4.0.1-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v4.0.0...v4.0.1-develop.1) (2023-08-03)
66+
67+
# [4.0.0](https://github.com/sebbo2002/semantic-release-docker/compare/v3.0.0...v4.0.0) (2023-06-14)
68+
69+
### Build System
70+
71+
- Deprecate node.js v14 / v17 ([7a2de45](https://github.com/sebbo2002/semantic-release-docker/commit/7a2de45c12f19a1ec441b3a004f4aa935efc197c))
72+
73+
### BREAKING CHANGES
74+
75+
- The node.js versions v14 and v17 are no longer maintained and are therefore no longer supported. See https://nodejs.dev/en/about/releases/ for more details on node.js release cycles.
76+
77+
# [4.0.0-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v3.0.0...v4.0.0-develop.1) (2023-06-14)
78+
79+
### Build System
80+
81+
- Deprecate node.js v14 / v17 ([7a2de45](https://github.com/sebbo2002/semantic-release-docker/commit/7a2de45c12f19a1ec441b3a004f4aa935efc197c))
82+
83+
### BREAKING CHANGES
84+
85+
- The node.js versions v14 and v17 are no longer maintained and are therefore no longer supported. See https://nodejs.dev/en/about/releases/ for more details on node.js release cycles.
86+
87+
# [3.0.0](https://github.com/sebbo2002/semantic-release-docker/compare/v2.1.0...v3.0.0) (2023-03-31)
88+
89+
### Build System
90+
91+
- Deprecate node.js 12 ([426588b](https://github.com/sebbo2002/semantic-release-docker/commit/426588b4bb7bde2924bbc92006ca839e960872e1))
92+
93+
### BREAKING CHANGES
94+
95+
- From now on, only node.js ^14.8.0 || >=16.0.0 are supported
96+
97+
# [3.0.0-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v3.0.0-develop.1...v3.0.0-develop.2) (2023-03-29)
98+
99+
# [3.0.0-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v2.1.1-develop.1...v3.0.0-develop.1) (2023-02-12)
100+
101+
### Build System
102+
103+
- Deprecate node.js 12 ([426588b](https://github.com/sebbo2002/semantic-release-docker/commit/426588b4bb7bde2924bbc92006ca839e960872e1))
104+
105+
### BREAKING CHANGES
106+
107+
- From now on, only node.js ^14.8.0 || >=16.0.0 are supported
108+
109+
## [2.1.1-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v2.1.0...v2.1.1-develop.1) (2022-12-04)
110+
111+
# [2.1.0](https://github.com/sebbo2002/semantic-release-docker/compare/v2.0.1...v2.1.0) (2022-10-18)
112+
113+
### Features
114+
115+
- Add regclient support for multi-OS images ([81d9031](https://github.com/sebbo2002/semantic-release-docker/commit/81d9031d1f686c926453b4ee7f68e0209d1eb35d))
116+
117+
# [2.1.0-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v2.0.2-develop.1...v2.1.0-develop.1) (2022-10-14)
118+
119+
### Features
120+
121+
- Add regclient support for multi-OS images ([81d9031](https://github.com/sebbo2002/semantic-release-docker/commit/81d9031d1f686c926453b4ee7f68e0209d1eb35d))
122+
123+
## [2.0.2-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v2.0.1...v2.0.2-develop.1) (2022-09-12)
124+
125+
## [2.0.1](https://github.com/sebbo2002/semantic-release-docker/compare/v2.0.0...v2.0.1) (2022-08-04)
126+
127+
### Bug Fixes
128+
129+
- Reverse ESM change ([a26ccc1](https://github.com/sebbo2002/semantic-release-docker/commit/a26ccc174dd8cf37ad9f45fd3a707f7ba5ff6401)), closes [#66](https://github.com/sebbo2002/semantic-release-docker/issues/66)
130+
131+
## [2.0.1-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v2.0.1-develop.1...v2.0.1-develop.2) (2022-08-04)
132+
133+
## [2.0.1-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v2.0.0...v2.0.1-develop.1) (2022-08-04)
134+
135+
### Bug Fixes
136+
137+
- Reverse ESM change ([a26ccc1](https://github.com/sebbo2002/semantic-release-docker/commit/a26ccc174dd8cf37ad9f45fd3a707f7ba5ff6401)), closes [#66](https://github.com/sebbo2002/semantic-release-docker/issues/66)
138+
139+
# [2.0.0](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.3...v2.0.0) (2022-07-25)
140+
141+
### Build System
142+
143+
- **deps:** Upgrade to execa 6.0 ([8654327](https://github.com/sebbo2002/semantic-release-docker/commit/8654327029acf5d3abd20c32d67aaca533dcaa44))
144+
- Native ESM support ([7b86a4f](https://github.com/sebbo2002/semantic-release-docker/commit/7b86a4f1187c387a3a5792e1fb72d822b04e3631))
145+
146+
### BREAKING CHANGES
147+
148+
- **deps:** Only Support for node.js ^12.20.0 || >=14.13.1
149+
- Only Support for node.js ^12.20.0 || >=14.13.1
150+
151+
# [2.0.0-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v2.0.0-develop.1...v2.0.0-develop.2) (2022-06-28)
152+
153+
### Build System
154+
155+
- **deps:** Upgrade to execa 6.0 ([8654327](https://github.com/sebbo2002/semantic-release-docker/commit/8654327029acf5d3abd20c32d67aaca533dcaa44))
156+
157+
### BREAKING CHANGES
158+
159+
- **deps:** Only Support for node.js ^12.20.0 || >=14.13.1
160+
161+
# [2.0.0-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.4-develop.1...v2.0.0-develop.1) (2022-06-28)
162+
163+
### Build System
164+
165+
- Native ESM support ([7b86a4f](https://github.com/sebbo2002/semantic-release-docker/commit/7b86a4f1187c387a3a5792e1fb72d822b04e3631))
166+
167+
### BREAKING CHANGES
168+
169+
- Only Support for node.js ^12.20.0 || >=14.13.1
170+
171+
## [1.1.4-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.3...v1.1.4-develop.1) (2022-06-09)
172+
173+
## [1.1.3](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.2...v1.1.3) (2022-05-14)
174+
175+
## [1.1.3-develop.3](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.3-develop.2...v1.1.3-develop.3) (2022-05-13)
176+
177+
## [1.1.3-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.3-develop.1...v1.1.3-develop.2) (2022-05-03)
178+
179+
## [1.1.3-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.2...v1.1.3-develop.1) (2022-05-01)
180+
181+
## [1.1.2](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.1...v1.1.2) (2022-04-25)
182+
183+
## [1.1.2-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.1...v1.1.2-develop.1) (2022-04-25)
184+
185+
## [1.1.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.0...v1.1.1) (2022-03-31)
186+
187+
## [1.1.1-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.1-develop.1...v1.1.1-develop.2) (2022-03-31)
188+
189+
## [1.1.1-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.1.0...v1.1.1-develop.1) (2022-03-31)
190+
191+
# [1.1.0](https://github.com/sebbo2002/semantic-release-docker/compare/v1.0.1...v1.1.0) (2022-01-12)
192+
193+
### Features
194+
195+
- generate meaningful links for the published container ([c4fef0f](https://github.com/sebbo2002/semantic-release-docker/commit/c4fef0f25e3d1df4629370321afcf9c11c1dc787))
196+
197+
# [1.1.0-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.0.1...v1.1.0-develop.1) (2022-01-12)
198+
199+
### Features
200+
201+
- generate meaningful links for the published container ([c4fef0f](https://github.com/sebbo2002/semantic-release-docker/commit/c4fef0f25e3d1df4629370321afcf9c11c1dc787))
202+
203+
## [1.0.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.0.0...v1.0.1) (2021-12-13)
204+
205+
### Bug Fixes
206+
207+
- **CI:** Fix DockerHub container release ([01b7534](https://github.com/sebbo2002/semantic-release-docker/commit/01b753406d1f1ef24a949c7d7b946d99b779d013))
208+
209+
## [1.0.1-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v1.0.1-develop.1...v1.0.1-develop.2) (2021-12-06)
210+
211+
### Bug Fixes
212+
213+
- **CI:** Fix DockerHub container release ([01b7534](https://github.com/sebbo2002/semantic-release-docker/commit/01b753406d1f1ef24a949c7d7b946d99b779d013))
214+
215+
## [1.0.1-develop.1](https://github.com/sebbo2002/semantic-release-docker/compare/v1.0.0...v1.0.1-develop.1) (2021-11-05)
216+
217+
# 1.0.0 (2021-08-03)
218+
219+
### chore
220+
221+
- Remove node.js 10 Support ([2b910c0](https://github.com/sebbo2002/semantic-release-docker/commit/2b910c09bc8a41085fc4472159494d8738d5521e))
222+
223+
### Features
224+
225+
- first commit ([c266619](https://github.com/sebbo2002/semantic-release-docker/commit/c266619159154233be9b24412745bb134564962f))
226+
- Return release info after successful release ([139345d](https://github.com/sebbo2002/semantic-release-docker/commit/139345dfdd08ff258efc97da5fb6ec52d7a2c8b6))
227+
228+
### BREAKING CHANGES
229+
230+
- Removed support for node.js v10
231+
232+
# [1.0.0-develop.2](https://github.com/sebbo2002/semantic-release-docker/compare/v1.0.0-develop.1...v1.0.0-develop.2) (2021-08-03)
233+
234+
### Features
235+
236+
- Return release info after successful release ([139345d](https://github.com/sebbo2002/semantic-release-docker/commit/139345dfdd08ff258efc97da5fb6ec52d7a2c8b6))
237+
238+
# 1.0.0-develop.1 (2021-07-26)
239+
240+
### chore
241+
242+
- Remove node.js 10 Support ([2b910c0](https://github.com/sebbo2002/semantic-release-docker/commit/2b910c09bc8a41085fc4472159494d8738d5521e))
243+
244+
### Features
245+
246+
- first commit ([c266619](https://github.com/sebbo2002/semantic-release-docker/commit/c266619159154233be9b24412745bb134564962f))
247+
248+
### BREAKING CHANGES
249+
250+
- Removed support for node.js v10

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Sebastian Pekarek
3+
Copyright (c) 2026 Sebastian Pekarek
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
66
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the

0 commit comments

Comments
 (0)