Skip to content

Commit fbd07c8

Browse files
committed
🚀 releasing version 3.2.4 @ 2025-01-10 12:47
[skip ci]
1 parent a5ecba4 commit fbd07c8

File tree

7 files changed

+23
-8
lines changed

7 files changed

+23
-8
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ This project was forked from version 1.7.4 of [mbed-tools-ci-scripts](https://gi
1717

1818
[//]: # (begin_release_notes)
1919

20+
"3.2.4" (2025-01-10)
21+
====================
22+
23+
Bugfixes
24+
--------
25+
26+
- :gear: `[Golang]` Install [`syft`](https://github.com/anchore/syft) since it is a dependency to `goreleaser` (#20250110123102)
27+
- :bug: `[Golang]` fix `goreleaser` [command deprecation](https://goreleaser.com/deprecations/#-rm-dist) (#20250110123255)
28+
29+
2030
"3.2.3" (2025-01-10)
2131
====================
2232

continuous_delivery_scripts/_version.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
1111
This file is autogenerated, do not modify by hand.
1212
"""
13-
__version__ = "3.2.3"
14-
COMMIT = "f8310aa5a059d28a4b6912462e56bd1f951142a4"
13+
__version__ = "3.2.4"
14+
COMMIT = "a5ecba48736d2554746e986b9c94cce9fb6041a3"
1515
MAJOR = 3
1616
MINOR = 2
17-
PATCH = 3
17+
PATCH = 4

docs/plugins/golang.html

+8-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
7474
return [
7575
&#34;goreleaser&#34;,
7676
&#34;release&#34;,
77-
&#34;--rm-dist&#34;,
77+
&#34;--clean&#34;,
7878
&#34;--release-notes&#34;,
7979
f&#34;{str(changelog)}&#34;,
8080
]
@@ -95,6 +95,10 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
9595
] # FIXME change version to latest when https://github.com/go101/golds/issues/26 is fixed
9696

9797

98+
def _install_syft_command_list() -&gt; List[str]:
99+
return [&#34;go&#34;, &#34;install&#34;, &#34;github.com/anchore/syft/cmd/syft@latest&#34;]
100+
101+
98102
def _install_goreleaser_command_list() -&gt; List[str]:
99103
return [&#34;go&#34;, &#34;install&#34;, &#34;github.com/goreleaser/goreleaser@latest&#34;]
100104

@@ -120,6 +124,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
120124
logger.info(&#34;Installing GoReleaser if missing.&#34;)
121125
env = os.environ
122126
env[ENVVAR_GO_MOD] = GO_MOD_ON_VALUE
127+
check_call(_install_syft_command_list(), env=env)
123128
check_call(_install_goreleaser_command_list(), env=env)
124129
logger.info(&#34;Checking GoReleaser configuration.&#34;)
125130
env[ENVVAR_GORELEASER_CUSTOMISED_TAG] = version
@@ -208,6 +213,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
208213
logger.info(&#34;Installing GoReleaser if missing.&#34;)
209214
env = os.environ
210215
env[ENVVAR_GO_MOD] = GO_MOD_ON_VALUE
216+
check_call(_install_syft_command_list(), env=env)
211217
check_call(_install_goreleaser_command_list(), env=env)
212218
tag = self.get_version_tag(version)
213219
# The tag of the release must be retrieved
@@ -303,6 +309,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
303309
logger.info(&#34;Installing GoReleaser if missing.&#34;)
304310
env = os.environ
305311
env[ENVVAR_GO_MOD] = GO_MOD_ON_VALUE
312+
check_call(_install_syft_command_list(), env=env)
306313
check_call(_install_goreleaser_command_list(), env=env)
307314
tag = self.get_version_tag(version)
308315
# The tag of the release must be retrieved

docs/third_party_IP_report.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</head>
6666
<body>
6767
<h1>Project's 3rd party IP report</h1>
68-
<p><i>2025-01-10 08:32:14.770122</i></p>
68+
<p><i>2025-01-10 12:46:58.739812</i></p>
6969
<h2>Summary</h2>
7070
<table>
7171
<thead>

docs/third_party_IP_report.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
3rd party IP report for continuous-delivery-scripts
22

3-
2025-01-10 08:32:14.770122
3+
2025-01-10 12:46:58.739812
44

55
# Summary:
66
Licence compliance: Not compliant

news/20250110123102.bugfix

-1
This file was deleted.

news/20250110123255.bugfix

-1
This file was deleted.

0 commit comments

Comments
 (0)