Skip to content

Add workflow to update Helm #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 5, 2024
Merged

Add workflow to update Helm #123

merged 1 commit into from
Aug 5, 2024

Conversation

mkjpryor
Copy link
Contributor

@mkjpryor mkjpryor commented Aug 5, 2024

No description provided.

@mkjpryor mkjpryor requested a review from a team as a code owner August 5, 2024 15:20
@mkjpryor mkjpryor merged commit 0c4872b into main Aug 5, 2024
1 of 3 checks passed
JohnGarbutt pushed a commit that referenced this pull request May 13, 2025
Bumps the pip-updates group with 2 updates in the / directory:
[exceptiongroup](https://github.com/agronholm/exceptiongroup) and
[kopf](https://github.com/nolar/kopf).

Updates `exceptiongroup` from 1.2.2 to 1.3.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/agronholm/exceptiongroup/releases">exceptiongroup's
releases</a>.</em></p>
<blockquote>
<h2>1.3.0</h2>
<ul>
<li>Added <code>**kwargs</code> to function and method signatures as
appropriate to match the signatures in the standard library</li>
<li>In line with the stdlib typings in typeshed, updated
<code>(Base)ExceptionGroup</code> generic types to define defaults for
their generic arguments (defaulting to
<code>BaseExceptionGroup[BaseException]</code> and
<code>ExceptionGroup[Exception]</code>) (PR by <a
href="https://github.com/mikenerone"><code>@​mikenerone</code></a>)</li>
<li>Changed <code>BaseExceptionGroup.__init__()</code> to directly call
<code>BaseException.__init__()</code> instead of the superclass
<code>__init__()</code> in order to emulate the CPython behavior (broken
or not) (PR by <a
href="https://github.com/cfbolz"><code>@​cfbolz</code></a>)</li>
<li>Changed the <code>exceptions</code> attribute to always return the
same tuple of exceptions, created from the original exceptions sequence
passed to <code>BaseExceptionGroup</code> to match CPython behavior (<a
href="https://redirect.github.com/agronholm/exceptiongroup/issues/143">#143</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst">exceptiongroup's
changelog</a>.</em></p>
<blockquote>
<h1>Version history</h1>
<p>This library adheres to <code>Semantic Versioning 2.0
&lt;http://semver.org/&gt;</code>_.</p>
<p><strong>1.3.0</strong></p>
<ul>
<li>Added <code>**kwargs</code> to function and method signatures as
appropriate to match the
signatures in the standard library</li>
<li>In line with the stdlib typings in typeshed, updated
<code>(Base)ExceptionGroup</code> generic
types to define defaults for their generic arguments (defaulting to
<code>BaseExceptionGroup[BaseException]</code> and
<code>ExceptionGroup[Exception]</code>)
(PR by <a
href="https://github.com/mikenerone"><code>@​mikenerone</code></a>)</li>
<li>Changed <code>BaseExceptionGroup.__init__()</code> to directly call
<code>BaseException.__init__()</code> instead of the superclass
<code>__init__()</code> in order to
emulate the CPython behavior (broken or not) (PR by <a
href="https://github.com/cfbolz"><code>@​cfbolz</code></a>)</li>
<li>Changed the <code>exceptions</code> attribute to always return the
same tuple of exceptions,
created from the original exceptions sequence passed to
<code>BaseExceptionGroup</code> to
match CPython behavior
(<code>[#143](agronholm/exceptiongroup#143)
&lt;https://github.com/agronholm/exceptiongroup/issues/143&gt;</code>_)</li>
</ul>
<p><strong>1.2.2</strong></p>
<ul>
<li>Removed an <code>assert</code> in
<code>exceptiongroup._formatting</code> that caused compatibility
issues with Sentry
(<code>[#123](agronholm/exceptiongroup#123)
&lt;https://github.com/agronholm/exceptiongroup/issues/123&gt;</code>_)</li>
</ul>
<p><strong>1.2.1</strong></p>
<ul>
<li>Updated the copying of <code>__notes__</code> to match CPython
behavior (PR by CF Bolz-Tereick)</li>
<li>Corrected the type annotation of the exception handler callback to
accept a
<code>BaseExceptionGroup</code> instead of
<code>BaseException</code></li>
<li>Fixed type errors on Python &lt; 3.10 and the type annotation of
<code>suppress()</code>
(PR by John Litborn)</li>
</ul>
<p><strong>1.2.0</strong></p>
<ul>
<li>Added special monkeypatching if <code>Apport
&lt;https://github.com/canonical/apport&gt;</code>_ has
overridden <code>sys.excepthook</code> so it will format exception
groups correctly
(PR by John Litborn)</li>
<li>Added a backport of <code>contextlib.suppress()</code> from Python
3.12.1 which also handles
suppressing exceptions inside exception groups</li>
<li>Fixed bare <code>raise</code> in a handler reraising the original
naked exception rather than
an exception group which is what is raised when you do a
<code>raise</code> in an <code>except*</code>
handler</li>
</ul>
<p><strong>1.1.3</strong></p>
<ul>
<li><code>catch()</code> now raises a <code>TypeError</code> if passed
an async exception handler instead of
just giving a <code>RuntimeWarning</code> about the coroutine never
being awaited. (<a
href="https://redirect.github.com/agronholm/exceptiongroup/issues/66">#66</a>,
PR by
John Litborn)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/77fba8a871408ff2c48f536e5e73b1918239ba5f"><code>77fba8a</code></a>
Added the release version</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/5e153aa379ac53af79cc7f5e287f77929cb4d0dc"><code>5e153aa</code></a>
Revert &quot;Migrated test dependencies to dependency groups&quot;</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/5000bfea208ad59e3a20e2fb91a513ad559711b1"><code>5000bfe</code></a>
Migrated tox configuration to native TOML</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/427220d67a52585e98575103b090b5fdaf87a899"><code>427220d</code></a>
Updated pytest options</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/4ca264fa3605d52067c20b351a0d3b947fa1f363"><code>4ca264f</code></a>
Migrated test dependencies to dependency groups</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/163c3a8cb27f8a5325258b5a83e7cf8fc002c3b7"><code>163c3a8</code></a>
Marked test_exceptions_mutate_original_sequence as xfail on
pypy3.11</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/a1765740db2d55d1eb91d67a8fbbb355caf7881b"><code>a176574</code></a>
Always create the exceptions tuple at init and return it from the
exceptions ...</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/550b79621cc35892413fa91903a1d6c7951d0449"><code>550b796</code></a>
Added BaseExceptionGroup.<strong>init</strong>, following CPython (<a
href="https://redirect.github.com/agronholm/exceptiongroup/issues/142">#142</a>)</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/2a84dfd5599bca0c653143f0f4252d38afac9867"><code>2a84dfd</code></a>
Added typevar defaults to (Base)ExceptionGroup (<a
href="https://redirect.github.com/agronholm/exceptiongroup/issues/147">#147</a>)</li>
<li><a
href="https://github.com/agronholm/exceptiongroup/commit/fb9133b495fc82bc2907e8cfbdff6c6dc3087e2f"><code>fb9133b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/agronholm/exceptiongroup/issues/145">#145</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/agronholm/exceptiongroup/compare/1.2.2...1.3.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `kopf` from 1.37.5 to 1.38.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/nolar/kopf/releases">kopf's
releases</a>.</em></p>
<blockquote>
<h2>1.38.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Deprecate Python 3.8 &amp; upgrade to Python 3.13 in CI by <a
href="https://github.com/nolar"><code>@​nolar</code></a> in <a
href="https://redirect.github.com/nolar/kopf/pull/1164">nolar/kopf#1164</a></li>
<li>Upgrade MyPy to 1.15.0 by <a
href="https://github.com/nolar"><code>@​nolar</code></a> in <a
href="https://redirect.github.com/nolar/kopf/pull/1163">nolar/kopf#1163</a></li>
<li>Convert to Python 3.9: all the basic syntax as per pyuprade by <a
href="https://github.com/nolar"><code>@​nolar</code></a> in <a
href="https://redirect.github.com/nolar/kopf/pull/1165">nolar/kopf#1165</a></li>
<li>Fix the test failures in Python 3.13 due to not accepting name=… in
tests by <a href="https://github.com/nolar"><code>@​nolar</code></a> in
<a
href="https://redirect.github.com/nolar/kopf/pull/1173">nolar/kopf#1173</a></li>
<li>Work around changes in Click 8.2.0 by <a
href="https://github.com/nolar"><code>@​nolar</code></a> in <a
href="https://redirect.github.com/nolar/kopf/pull/1174">nolar/kopf#1174</a></li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Re-authenticate if the session is closed by a concurrent request by
<a href="https://github.com/nolar"><code>@​nolar</code></a> in <a
href="https://redirect.github.com/nolar/kopf/pull/1031">nolar/kopf#1031</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/nolar/kopf/compare/1.37.5...1.38.0">https://github.com/nolar/kopf/compare/1.37.5...1.38.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nolar/kopf/commit/ca3e0d0e2d3147c6728f3f01c4c7d2524f654b36"><code>ca3e0d0</code></a>
Merge pull request <a
href="https://redirect.github.com/nolar/kopf/issues/1175">#1175</a> from
nolar/ubuntu-20.04-deprecated</li>
<li><a
href="https://github.com/nolar/kopf/commit/10ae70f2c813c9641dd0b38b4e44f10d8713a297"><code>10ae70f</code></a>
Upgrade to Ubuntu 24.04, since 20.04 is blocked in CI</li>
<li><a
href="https://github.com/nolar/kopf/commit/3a95e2fcc595229b2d178fa95d805ed71f1a9acb"><code>3a95e2f</code></a>
Merge pull request <a
href="https://redirect.github.com/nolar/kopf/issues/1031">#1031</a> from
nolar/session-closed-in-reauth</li>
<li><a
href="https://github.com/nolar/kopf/commit/5b9cd719c33453e13850b5704a96698fd257732c"><code>5b9cd71</code></a>
Detach the vault from toggles, use conditions for more concurrency
safety</li>
<li><a
href="https://github.com/nolar/kopf/commit/cbdd3e258a06c5c329923ea18fcf88bc55cdedd7"><code>cbdd3e2</code></a>
Invalidate the very specific failed credentials, not just any current
one by ...</li>
<li><a
href="https://github.com/nolar/kopf/commit/cfa1218c5def407e01c758eb86d697bb4e498b9c"><code>cfa1218</code></a>
Re-authenticate on SSL stream closed the same as on TCP/HTTP session
closed</li>
<li><a
href="https://github.com/nolar/kopf/commit/9e11f7c5a1a76a9674cfe2711b0f5b96785ecfed"><code>9e11f7c</code></a>
Re-authenticate if the session is closed by a concurrent request</li>
<li><a
href="https://github.com/nolar/kopf/commit/0c90af18ccf2fb23da90370fc3f4b456909f766d"><code>0c90af1</code></a>
Merge pull request <a
href="https://redirect.github.com/nolar/kopf/issues/1174">#1174</a> from
nolar/click-8.2.0</li>
<li><a
href="https://github.com/nolar/kopf/commit/2fc3738d126aae28cb8cdfe2f64b9b4b51d0cfc2"><code>2fc3738</code></a>
Use the proper output stream of Click&gt;=8.2.0</li>
<li><a
href="https://github.com/nolar/kopf/commit/8093937c409e7f106a92dcecec52076010f3fca2"><code>8093937</code></a>
Suppress the type warnings for Click&gt;=8.2.0 for CLI choices</li>
<li>Additional commits viewable in <a
href="https://github.com/nolar/kopf/compare/1.37.5...1.38.0">compare
view</a></li>
</ul>
</details>
<br />


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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant