Skip to content

Commit

Permalink
🚀 releasing version 3.2.4 @ 2025-01-10 12:47
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
monty-bot committed Jan 10, 2025
1 parent a5ecba4 commit fbd07c8
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ This project was forked from version 1.7.4 of [mbed-tools-ci-scripts](https://gi

[//]: # (begin_release_notes)

"3.2.4" (2025-01-10)
====================

Bugfixes
--------

- :gear: `[Golang]` Install [`syft`](https://github.com/anchore/syft) since it is a dependency to `goreleaser` (#20250110123102)
- :bug: `[Golang]` fix `goreleaser` [command deprecation](https://goreleaser.com/deprecations/#-rm-dist) (#20250110123255)


"3.2.3" (2025-01-10)
====================

Expand Down
6 changes: 3 additions & 3 deletions continuous_delivery_scripts/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
This file is autogenerated, do not modify by hand.
"""
__version__ = "3.2.3"
COMMIT = "f8310aa5a059d28a4b6912462e56bd1f951142a4"
__version__ = "3.2.4"
COMMIT = "a5ecba48736d2554746e986b9c94cce9fb6041a3"
MAJOR = 3
MINOR = 2
PATCH = 3
PATCH = 4
9 changes: 8 additions & 1 deletion docs/plugins/golang.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
return [
&#34;goreleaser&#34;,
&#34;release&#34;,
&#34;--rm-dist&#34;,
&#34;--clean&#34;,
&#34;--release-notes&#34;,
f&#34;{str(changelog)}&#34;,
]
Expand All @@ -95,6 +95,10 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
] # FIXME change version to latest when https://github.com/go101/golds/issues/26 is fixed


def _install_syft_command_list() -&gt; List[str]:
return [&#34;go&#34;, &#34;install&#34;, &#34;github.com/anchore/syft/cmd/syft@latest&#34;]


def _install_goreleaser_command_list() -&gt; List[str]:
return [&#34;go&#34;, &#34;install&#34;, &#34;github.com/goreleaser/goreleaser@latest&#34;]

Expand All @@ -120,6 +124,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
logger.info(&#34;Installing GoReleaser if missing.&#34;)
env = os.environ
env[ENVVAR_GO_MOD] = GO_MOD_ON_VALUE
check_call(_install_syft_command_list(), env=env)
check_call(_install_goreleaser_command_list(), env=env)
logger.info(&#34;Checking GoReleaser configuration.&#34;)
env[ENVVAR_GORELEASER_CUSTOMISED_TAG] = version
Expand Down Expand Up @@ -208,6 +213,7 @@ <h1 class="title">Module <code>continuous_delivery_scripts.plugins.golang</code>
logger.info(&#34;Installing GoReleaser if missing.&#34;)
env = os.environ
env[ENVVAR_GO_MOD] = GO_MOD_ON_VALUE
check_call(_install_syft_command_list(), env=env)
check_call(_install_goreleaser_command_list(), env=env)
tag = self.get_version_tag(version)
# The tag of the release must be retrieved
Expand Down Expand Up @@ -303,6 +309,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
logger.info(&#34;Installing GoReleaser if missing.&#34;)
env = os.environ
env[ENVVAR_GO_MOD] = GO_MOD_ON_VALUE
check_call(_install_syft_command_list(), env=env)
check_call(_install_goreleaser_command_list(), env=env)
tag = self.get_version_tag(version)
# The tag of the release must be retrieved
Expand Down
2 changes: 1 addition & 1 deletion docs/third_party_IP_report.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</head>
<body>
<h1>Project's 3rd party IP report</h1>
<p><i>2025-01-10 08:32:14.770122</i></p>
<p><i>2025-01-10 12:46:58.739812</i></p>
<h2>Summary</h2>
<table>
<thead>
Expand Down
2 changes: 1 addition & 1 deletion docs/third_party_IP_report.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
3rd party IP report for continuous-delivery-scripts

2025-01-10 08:32:14.770122
2025-01-10 12:46:58.739812

# Summary:
Licence compliance: Not compliant
Expand Down
1 change: 0 additions & 1 deletion news/20250110123102.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/20250110123255.bugfix

This file was deleted.

0 comments on commit fbd07c8

Please sign in to comment.