Commit 5ddc77d
authored
chore(deps): bump github.com/netresearch/go-cron from 0.12.0 to 0.13.0 (#504)
Bumps
[github.com/netresearch/go-cron](https://github.com/netresearch/go-cron)
from 0.12.0 to 0.13.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/netresearch/go-cron/releases">github.com/netresearch/go-cron's
releases</a>.</em></p>
<blockquote>
<h2>v0.13.0</h2>
<h2>Highlights</h2>
<h3>Quoted timezone values (<a
href="https://redirect.github.com/netresearch/go-cron/pull/337">#337</a>,
<a
href="https://redirect.github.com/netresearch/go-cron/issues/335">#335</a>)</h3>
<p>Shell users who habitually quote environment variable values can now
write <code>TZ="America/New_York"</code> or
<code>TZ='UTC'</code> in cron spec strings. Matching single or double
quotes are stripped before validation. Mismatched or partial quotes are
rejected with clear errors.</p>
<pre lang="go"><code>// All of these now work
c.AddFunc(`TZ="America/New_York" 0 9 * * *`, job)
c.AddFunc(`CRON_TZ='Asia/Tokyo' 30 4 * * *`, job)
c.AddFunc("TZ=UTC * * * * *", job) // unquoted still works
</code></pre>
<p>See <a
href="https://github.com/netresearch/go-cron/blob/main/docs/adr/ADR-021-quoted-timezone-values.md">ADR-021</a>
for design rationale and scope.</p>
<h2>Changes</h2>
<h3>Features</h3>
<ul>
<li><strong>feat:</strong> allow quoted <code>TZ</code> and
<code>CRON_TZ</code> values in spec strings (<a
href="https://redirect.github.com/netresearch/go-cron/pull/337">#337</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li><strong>docs:</strong> ADR-021 — Quoted Timezone Values in Spec
Strings</li>
<li><strong>docs:</strong> updated README, DST_HANDLING,
TROUBLESHOOTING, COOKBOOK with quoted timezone examples</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/netresearch/go-cron/compare/v0.12.0...v0.13.0">https://github.com/netresearch/go-cron/compare/v0.12.0...v0.13.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/netresearch/go-cron/commit/80da74e7cab9b3bb9ed8d8516de56cff906737d5"><code>80da74e</code></a>
feat: allow quoted TZ and CRON_TZ values in spec strings (<a
href="https://redirect.github.com/netresearch/go-cron/issues/337">#337</a>)</li>
<li><a
href="https://github.com/netresearch/go-cron/commit/4da5c1c5a313a3cae97a1a3f042d1e1c01ce7e49"><code>4da5c1c</code></a>
feat: allow quoted TZ and CRON_TZ values in spec strings (<a
href="https://redirect.github.com/netresearch/go-cron/issues/335">#335</a>)</li>
<li>See full diff in <a
href="https://github.com/netresearch/go-cron/compare/v0.12.0...v0.13.0">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 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>2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
96 | | - | |
97 | | - | |
| 96 | + | |
| 97 | + | |
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
| |||
0 commit comments