dependabot[bot] opened a new pull request, #2374: URL: https://github.com/apache/apisix-ingress-controller/pull/2374
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.17.1 to 2.23.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.23.3</h2> <h2>2.23.3</h2> <h3>Fixes</h3> <ul> <li>allow <code>-</code> as a standalone argument [cfcc1a5]</li> <li>Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]</li> <li>ignore exit code for symbol test on linux [88e2282]</li> </ul> <h2>v2.23.2</h2> <h2>2.23.2</h2> <p>🎉🎉🎉</p> <p>At long last, some long-standing performance gaps between <code>ginkgo</code> and <code>go test</code> have been resolved!</p> <p>Ginkgo operates by running <code>go test -c</code> to generate test binaries, and then running those binaries. It turns out that the compilation step of <code>go test -c</code> is slower than <code>go test</code>'s compilation step because <code>go test</code> strips out debug symbols (<code>ldflags=-w</code>) whereas <code>go test -c</code> does not.</p> <p>Ginkgo now passes the appropriate <code>ldflags</code> to <code>go test -c</code> when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and when <code>ginkgo build</code> is called explicitly.</p> <p>This, coupled, with the <a href="https://onsi.github.io/ginkgo/#if-you-are-running-on-macos">instructions for disabling XProtect on MacOS</a> yields a much better performance experience with Ginkgo.</p> <h2>v2.23.1</h2> <h2>2.23.1</h2> <h2>🚨 For users on MacOS 🚨</h2> <p>A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions <a href="https://onsi.github.io/ginkgo/#if-you-are-running-on-macos">here</a> to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.</p> <h3>Fixes</h3> <p>Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:</p> <ul> <li>make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]</li> <li>emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]</li> </ul> <p>This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.</p> <h2>v2.23.0</h2> <h2>2.23.0</h2> <p>Ginkgo 2.23.0 adds a handful of methods to <code>GinkgoT()</code> to make it compatible with the <code>testing.TB</code> interface in Go 1.24. <code>GinkgoT().Context()</code>, in particular, is a useful shorthand for generating a new context that will clean itself up in a <code>DeferCleanup()</code>. This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.</p> <h3>Features</h3> <ul> <li>bump to go 1.24.0 - support new testing.TB methods and add a test to cover testing.TB regressions [37a511b]</li> </ul> <h3>Fixes</h3> <ul> <li>fix edge case where build -o is pointing at an explicit file, not a directory [7556a86]</li> <li>Fix binary paths when precompiling multiple suites. [4df06c6]</li> </ul> <!-- 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.23.3</h2> <h3>Fixes</h3> <ul> <li>allow <code>-</code> as a standalone argument [cfcc1a5]</li> <li>Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]</li> <li>ignore exit code for symbol test on linux [88e2282]</li> </ul> <h2>2.23.2</h2> <p>🎉🎉🎉</p> <p>At long last, some long-standing performance gaps between <code>ginkgo</code> and <code>go test</code> have been resolved!</p> <p>Ginkgo operates by running <code>go test -c</code> to generate test binaries, and then running those binaries. It turns out that the compilation step of <code>go test -c</code> is slower than <code>go test</code>'s compilation step because <code>go test</code> strips out debug symbols (<code>ldflags=-w</code>) whereas <code>go test -c</code> does not.</p> <p>Ginkgo now passes the appropriate <code>ldflags</code> to <code>go test -c</code> when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and when <code>ginkgo build</code> is called explicitly.</p> <p>This, coupled, with the <a href="https://onsi.github.io/ginkgo/#if-you-are-running-on-macos">instructions for disabling XProtect on MacOS</a> yields a much better performance experience with Ginkgo.</p> <h2>2.23.1</h2> <h2>🚨 For users on MacOS 🚨</h2> <p>A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions <a href="https://onsi.github.io/ginkgo/#if-you-are-running-on-macos">here</a> to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.</p> <h3>Fixes</h3> <p>Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:</p> <ul> <li>make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]</li> <li>emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]</li> </ul> <p>This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.</p> <h2>2.23.0</h2> <p>Ginkgo 2.23.0 adds a handful of methods to <code>GinkgoT()</code> to make it compatible with the <code>testing.TB</code> interface in Go 1.24. <code>GinkgoT().Context()</code>, in particular, is a useful shorthand for generating a new context that will clean itself up in a <code>DeferCleanup()</code>. This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.</p> <h3>Features</h3> <ul> <li>bump to go 1.24.0 - support new testing.TB methods and add a test to cover testing.TB regressions [37a511b]</li> </ul> <h3>Fixes</h3> <ul> <li>fix edge case where build -o is pointing at an explicit file, not a directory [7556a86]</li> <li>Fix binary paths when precompiling multiple suites. [4df06c6]</li> </ul> <h3>Maintenance</h3> <ul> <li>Fix: Correct Markdown list rendering in MIGRATING_TO_V2.md [cbcf39a]</li> <li>docs: fix test workflow badge (<a href="https://redirect.github.com/onsi/ginkgo/issues/1512">#1512</a>) [9b261ff]</li> <li>Bump golang.org/x/net in /integration/_fixtures/version_mismatch_fixture (<a href="https://redirect.github.com/onsi/ginkgo/issues/1516">#1516</a>) [00f19c8]</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/onsi/ginkgo/commit/04a9a74a903f8346aec01c54818c617ad02197ab"><code>04a9a74</code></a> v2.23.3</li> <li><a href="https://github.com/onsi/ginkgo/commit/cfcc1a54014b8e077d9ee285038b73ff9763562c"><code>cfcc1a5</code></a> allow <code>-</code> as a standalone argument</li> <li><a href="https://github.com/onsi/ginkgo/commit/feaf292383aefea4a95ff7038a99764130127505"><code>feaf292</code></a> Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context()</li> <li><a href="https://github.com/onsi/ginkgo/commit/88e22820c3bf7593627a538e001d6a587e31c8b1"><code>88e2282</code></a> ignore exit code for symbol test on linux</li> <li><a href="https://github.com/onsi/ginkgo/commit/979c969fff919e8363a2ce7925465e028ebcab2f"><code>979c969</code></a> v2.23.2</li> <li><a href="https://github.com/onsi/ginkgo/commit/976a5c0dfc4a6770b899bfbe62174a07c32c8ad8"><code>976a5c0</code></a> strip out symbols when running ginkgo</li> <li><a href="https://github.com/onsi/ginkgo/commit/99e2fe223df0227f53ca0bc2afe1189fb3a5d654"><code>99e2fe2</code></a> v2.23.1</li> <li><a href="https://github.com/onsi/ginkgo/commit/a0e52ff9178d4290a29accfb36b4108b02997946"><code>a0e52ff</code></a> make it clearer that you need to pass a filename to the various profile flags...</li> <li><a href="https://github.com/onsi/ginkgo/commit/b799d8d4c255f60f4678e2087c33582609366156"><code>b799d8d</code></a> emit an error and exit if the ginkgo invocation includes flags after position...</li> <li><a href="https://github.com/onsi/ginkgo/commit/a565d1f8ba417c363b8b429bd6c97da2219a7a7a"><code>a565d1f</code></a> Fix typo in documentation: DescribeHandleSubtree -> DescribeTableSubtree</li> <li>Additional commits viewable in <a href="https://github.com/onsi/ginkgo/compare/v2.17.1...v2.23.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> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
