Skip to content

Commit 5ddc77d

Browse files
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=&quot;America/New_York&quot;</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=&quot;America/New_York&quot; 0 9 * * *`, job) c.AddFunc(`CRON_TZ='Asia/Tokyo' 30 4 * * *`, job) c.AddFunc(&quot;TZ=UTC * * * * *&quot;, 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 /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/netresearch/go-cron&package-manager=go_modules&previous-version=0.12.0&new-version=0.13.0)](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 parents f25a0d1 + 91e2e55 commit 5ddc77d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/jessevdk/go-flags v1.6.1
1818
github.com/manifoldco/promptui v0.9.0
1919
github.com/mitchellh/mapstructure v1.5.0
20-
github.com/netresearch/go-cron v0.12.0
20+
github.com/netresearch/go-cron v0.13.0
2121
github.com/opencontainers/image-spec v1.1.1
2222
github.com/stretchr/testify v1.11.1
2323
golang.org/x/crypto v0.48.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ github.com/moby/term v0.5.2 h1:6qk3FJAFDs6i/q3W/pQ97SX192qKfZgGjCQqfCJkgzQ=
9393
github.com/moby/term v0.5.2/go.mod h1:d3djjFCrjnB+fl8NJux+EJzu0msscUP+f8it8hPkFLc=
9494
github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=
9595
github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc=
96-
github.com/netresearch/go-cron v0.12.0 h1:v8mejCPqE2iY6Z55ACPgPrI4Hn/pFBU27Vb9hhOANLU=
97-
github.com/netresearch/go-cron v0.12.0/go.mod h1:oRPUA7fHC/ul86n+d3SdUD54cEuHIuCLiFJCua5a5/E=
96+
github.com/netresearch/go-cron v0.13.0 h1:rWDtkLPykLWm9Zny612io1N4HzoVsDJCuDLziND37sQ=
97+
github.com/netresearch/go-cron v0.13.0/go.mod h1:oRPUA7fHC/ul86n+d3SdUD54cEuHIuCLiFJCua5a5/E=
9898
github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
9999
github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
100100
github.com/opencontainers/image-spec v1.1.1 h1:y0fUlFfIZhPF1W537XOLg0/fcx6zcHCJwooC2xJA040=

0 commit comments

Comments
 (0)