Commit 2369544
authored
deps: bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.25.3 (#1879)
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from
2.23.4 to 2.25.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/onsi/ginkgo/releases">github.com/onsi/ginkgo/v2's
releases</a>.</em></p>
<blockquote>
<h2>v2.25.3</h2>
<h2>2.25.3</h2>
<h3>Fixes</h3>
<ul>
<li>emit --github-output group only for progress report itself
[f01aed1]</li>
</ul>
<h2>v2.25.2</h2>
<h2>2.25.2</h2>
<h3>Fixes</h3>
<p>Add github output group for progress report content</p>
<h3>Maintenance</h3>
<p>Bump Gomega</p>
<h2>v2.25.1</h2>
<h2>2.25.1</h2>
<h3>Fixes</h3>
<ul>
<li>fix(types): ignore nameless nodes on FullText() [10866d3]</li>
<li>chore: fix some CodeQL warnings [2e42cff]</li>
</ul>
<h2>v2.25.0</h2>
<h2>2.25.0</h2>
<h3><code>AroundNode</code></h3>
<p>This release introduces a new decorator to support more complex spec
setup usecases.</p>
<p><code>AroundNode</code> registers a function that runs before each
individual node. This is considered a more advanced decorator.</p>
<p>Please read the <a
href="https://onsi.github.io/ginkgo/#advanced-around-node">docs</a> for
more information and some examples.</p>
<p>Allowed signatures:</p>
<ul>
<li><code>AroundNode(func())</code> - <code>func</code> will be called
before the node is run.</li>
<li><code>AroundNode(func(ctx context.Context) context.Context)</code> -
<code>func</code> can wrap the passed in context and return a new one
which will be passed on to the node.</li>
<li><code>AroundNode(func(ctx context.Context, body func(ctx
context.Context)))</code> - <code>ctx</code> is the context for the node
and <code>body</code> is a function that must be called to run the node.
This gives you complete control over what runs before and after the
node.</li>
</ul>
<p>Multiple <code>AroundNode</code> decorators can be applied to a
single node and they will run in the order they are applied.</p>
<p>Unlike setup nodes like <code>BeforeEach</code> and
<code>DeferCleanup</code>, <code>AroundNode</code> is guaranteed to run
in the same goroutine as the decorated node. This is necessary when
working with lower-level libraries that must run on a single thread (you
can call <code>runtime.LockOSThread()</code> in the
<code>AroundNode</code> to ensure that the node runs on a single
thread).</p>
<p>Since <code>AroundNode</code> allows you to modify the context you
can also use <code>AroundNode</code> to implement shared setup that
attaches values to the context.</p>
<p>If applied to a container, <code>AroundNode</code> will run before
every node in the container. Including setup nodes like
<code>BeforeEach</code> and <code>DeferCleanup</code>.</p>
<p><code>AroundNode</code> can also be applied to <code>RunSpecs</code>
to run before every node in the suite. This opens up new mechanisms for
instrumenting individual nodes across an entire suite.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md">github.com/onsi/ginkgo/v2's
changelog</a>.</em></p>
<blockquote>
<h2>2.25.3</h2>
<h3>Fixes</h3>
<ul>
<li>emit --github-output group only for progress report itself
[f01aed1]</li>
</ul>
<h2>2.25.2</h2>
<h3>Fixes</h3>
<p>Add github output group for progress report content</p>
<h3>Maintenance</h3>
<p>Bump Gomega</p>
<h2>2.25.1</h2>
<h3>Fixes</h3>
<ul>
<li>fix(types): ignore nameless nodes on FullText() [10866d3]</li>
<li>chore: fix some CodeQL warnings [2e42cff]</li>
</ul>
<h2>2.25.0</h2>
<h3><code>AroundNode</code></h3>
<p>This release introduces a new decorator to support more complex spec
setup usecases.</p>
<p><code>AroundNode</code> registers a function that runs before each
individual node. This is considered a more advanced decorator.</p>
<p>Please read the <a
href="https://onsi.github.io/ginkgo/#advanced-around-node">docs</a> for
more information and some examples.</p>
<p>Allowed signatures:</p>
<ul>
<li><code>AroundNode(func())</code> - <code>func</code> will be called
before the node is run.</li>
<li><code>AroundNode(func(ctx context.Context) context.Context)</code> -
<code>func</code> can wrap the passed in context and return a new one
which will be passed on to the node.</li>
<li><code>AroundNode(func(ctx context.Context, body func(ctx
context.Context)))</code> - <code>ctx</code> is the context for the node
and <code>body</code> is a function that must be called to run the node.
This gives you complete control over what runs before and after the
node.</li>
</ul>
<p>Multiple <code>AroundNode</code> decorators can be applied to a
single node and they will run in the order they are applied.</p>
<p>Unlike setup nodes like <code>BeforeEach</code> and
<code>DeferCleanup</code>, <code>AroundNode</code> is guaranteed to run
in the same goroutine as the decorated node. This is necessary when
working with lower-level libraries that must run on a single thread (you
can call <code>runtime.LockOSThread()</code> in the
<code>AroundNode</code> to ensure that the node runs on a single
thread).</p>
<p>Since <code>AroundNode</code> allows you to modify the context you
can also use <code>AroundNode</code> to implement shared setup that
attaches values to the context.</p>
<p>If applied to a container, <code>AroundNode</code> will run before
every node in the container. Including setup nodes like
<code>BeforeEach</code> and <code>DeferCleanup</code>.</p>
<p><code>AroundNode</code> can also be applied to <code>RunSpecs</code>
to run before every node in the suite. This opens up new mechanisms for
instrumenting individual nodes across an entire suite.</p>
<h2>2.24.0</h2>
<h3>Features</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/onsi/ginkgo/commit/ee2c0cd1b8580c45c33f0f7c7a848b75e8056ebe"><code>ee2c0cd</code></a>
v2.25.3</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/f01aed18626198447da5a63a5989e2d26c7a3746"><code>f01aed1</code></a>
emit --github-output group only for progress report itself</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/df6d7552b350099017fbf486a24200fd44853c52"><code>df6d755</code></a>
v2.25.2</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/0ad3c4f51aedca5eb2d91b309bafe41c33ad24a2"><code>0ad3c4f</code></a>
bump gomega</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/83e2d4a0c8a91dc2008f26e37b108f0cd89cfb99"><code>83e2d4a</code></a>
add --github-output group for progress report content</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/1ec91144e3ba4dec32f0aa8b6c50888908a1697b"><code>1ec9114</code></a>
v2.25.1</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/2e42cff58e53535fe3a0904941393089f7ad9ff2"><code>2e42cff</code></a>
chore: fix some CodeQL warnings</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/10866d3ce04a0283d7d9484366f082a07e46b311"><code>10866d3</code></a>
fix(types): ignore nameless nodes on FullText()</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/fcc0e74deeb1be682ffa7b56e6567183643798dd"><code>fcc0e74</code></a>
v2.25.0</li>
<li><a
href="https://github.com/onsi/ginkgo/commit/79e35c958f43978a5ef16d3ab029dbdaade8c14c"><code>79e35c9</code></a>
tidy up docs</li>
<li>Additional commits viewable in <a
href="https://github.com/onsi/ginkgo/compare/v2.23.4...v2.25.3">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 1a39123 commit 2369544
2 files changed
+36
-30
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
209 | 209 | | |
210 | 210 | | |
211 | 211 | | |
212 | | - | |
213 | | - | |
214 | | - | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
215 | 215 | | |
216 | | - | |
| 216 | + | |
217 | 217 | | |
218 | 218 | | |
219 | 219 | | |
| |||
240 | 240 | | |
241 | 241 | | |
242 | 242 | | |
243 | | - | |
| 243 | + | |
244 | 244 | | |
245 | 245 | | |
246 | 246 | | |
247 | | - | |
| 247 | + | |
248 | 248 | | |
249 | 249 | | |
250 | 250 | | |
| |||
292 | 292 | | |
293 | 293 | | |
294 | 294 | | |
295 | | - | |
296 | | - | |
| 295 | + | |
| 296 | + | |
297 | 297 | | |
298 | 298 | | |
299 | 299 | | |
| |||
641 | 641 | | |
642 | 642 | | |
643 | 643 | | |
644 | | - | |
| 644 | + | |
645 | 645 | | |
646 | 646 | | |
| 647 | + | |
| 648 | + | |
647 | 649 | | |
648 | 650 | | |
649 | 651 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
178 | | - | |
179 | | - | |
| 178 | + | |
| 179 | + | |
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
| |||
1185 | 1185 | | |
1186 | 1186 | | |
1187 | 1187 | | |
1188 | | - | |
1189 | | - | |
| 1188 | + | |
| 1189 | + | |
1190 | 1190 | | |
1191 | 1191 | | |
1192 | 1192 | | |
1193 | 1193 | | |
1194 | | - | |
1195 | | - | |
| 1194 | + | |
| 1195 | + | |
1196 | 1196 | | |
1197 | 1197 | | |
1198 | 1198 | | |
| |||
1604 | 1604 | | |
1605 | 1605 | | |
1606 | 1606 | | |
1607 | | - | |
1608 | | - | |
| 1607 | + | |
| 1608 | + | |
1609 | 1609 | | |
1610 | 1610 | | |
1611 | 1611 | | |
| |||
1627 | 1627 | | |
1628 | 1628 | | |
1629 | 1629 | | |
1630 | | - | |
1631 | | - | |
| 1630 | + | |
| 1631 | + | |
1632 | 1632 | | |
1633 | 1633 | | |
1634 | 1634 | | |
| |||
1655 | 1655 | | |
1656 | 1656 | | |
1657 | 1657 | | |
1658 | | - | |
1659 | | - | |
| 1658 | + | |
| 1659 | + | |
1660 | 1660 | | |
1661 | 1661 | | |
1662 | 1662 | | |
| |||
1696 | 1696 | | |
1697 | 1697 | | |
1698 | 1698 | | |
1699 | | - | |
1700 | | - | |
| 1699 | + | |
| 1700 | + | |
1701 | 1701 | | |
1702 | 1702 | | |
1703 | 1703 | | |
| |||
1792 | 1792 | | |
1793 | 1793 | | |
1794 | 1794 | | |
1795 | | - | |
1796 | | - | |
| 1795 | + | |
| 1796 | + | |
1797 | 1797 | | |
1798 | 1798 | | |
1799 | 1799 | | |
| |||
1805 | 1805 | | |
1806 | 1806 | | |
1807 | 1807 | | |
1808 | | - | |
1809 | | - | |
| 1808 | + | |
| 1809 | + | |
1810 | 1810 | | |
1811 | 1811 | | |
1812 | 1812 | | |
| |||
1841 | 1841 | | |
1842 | 1842 | | |
1843 | 1843 | | |
1844 | | - | |
1845 | | - | |
| 1844 | + | |
| 1845 | + | |
| 1846 | + | |
| 1847 | + | |
| 1848 | + | |
| 1849 | + | |
1846 | 1850 | | |
1847 | 1851 | | |
1848 | 1852 | | |
| |||
0 commit comments