Skip to content

fix(deps): update module github.com/go-co-op/gocron to v2#207

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/github.com-go-co-op-gocron-2.x
Open

fix(deps): update module github.com/go-co-op/gocron to v2#207
renovate[bot] wants to merge 1 commit intomainfrom
renovate/github.com-go-co-op-gocron-2.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 11, 2023

This PR contains the following updates:

Package Change Age Confidence
github.com/go-co-op/gocron v1.37.0v2.19.1 age confidence

Release Notes

go-co-op/gocron (github.com/go-co-op/gocron)

v2.19.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.19.0...v2.19.1

v2.19.0

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.18.2...v2.19.0

v2.18.2

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.18.1...v2.18.2

v2.18.1

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.18.0...v2.18.1

v2.18.0

Compare Source

What's Changed

Fixes

Chores

New Contributors

Full Changelog: go-co-op/gocron@v2.17.0...v2.18.0

v2.17.0

Compare Source

What's Changed

Performance Improvements

Fixes

Chores

New Contributors

Full Changelog: go-co-op/gocron@v2.16.6...v2.17.0

v2.16.6

Compare Source

What's Changed

  • a return is missing to stop execution if the job is not found by @​sarff in #​872

Chores

New Contributors

Full Changelog: go-co-op/gocron@v2.16.5...v2.16.6

v2.16.5

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.16.4...v2.16.5

v2.16.4

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.16.3...v2.16.4

v2.16.3

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.16.2...v2.16.3

v2.16.2

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.16.1...v2.16.2

v2.16.1

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.16.0...v2.16.1

v2.16.0

Compare Source

What's Changed

  • feat:custom-cron interface for own custom cron implimentation by @​Dojeto in #​834

Bug fixes

Chores

New Contributors

Full Changelog: go-co-op/gocron@v2.15.0...v2.16.0

v2.15.0

Compare Source

What's New

// WithContext sets the parent context for the job.
// If you set the first argument of your Task func to be a context.Context,
// gocron will pass in the provided context to the job and will cancel the
// context on shutdown. If you cancel the context the job will no longer be
// scheduled as well. This allows you to both control the job via a context
// and listen for and handle cancellation within your job.
// NewTask provides the job's task function and parameters.
// If you set the first argument of your Task func to be a context.Context,
// gocron will pass in a context (either the default Job context, or one
// provided via WithContext) to the job and will cancel the context on shutdown.
// This allows you to listen for and handle cancellation within your job.

Chores

Full Changelog: go-co-op/gocron@v2.14.2...v2.15.0

v2.14.2

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.14.1...v2.14.2

v2.14.1

Compare Source

What's Changed

  • BUG FIX: creating a new slice in several job options because appending modifies original by @​JohnRoesler in #​809

Full Changelog: go-co-op/gocron@v2.14.0...v2.14.1

v2.14.0

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.13.0...v2.14.0

v2.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.12.4...v2.13.0

v2.12.4

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.12.3...v2.12.4

v2.12.3

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.12.2...v2.12.3

v2.12.2

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.12.1...v2.12.2

v2.12.1

Compare Source

What's Changed

  • Fix CPU spike / max-out in One-time job when 2 or more equal times are provided by @​rbroggi in #​779

Full Changelog: go-co-op/gocron@v2.12.0...v2.12.1

v2.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.11.0...v2.12.0

v2.11.0

Compare Source

Features

  • WithStopAt added to JobOption's to allow giving a time for jobs to stop running by @​Higan in #​760

Fixes

Internal

New Contributors

Full Changelog: go-co-op/gocron@v2.10.1...v2.11.0

v2.10.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.10.0...v2.10.1

v2.10.0

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.9.0...v2.10.0

v2.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.8.0...v2.9.0

v2.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.7.1...v2.8.0

v2.7.1

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.7.0...v2.7.1

v2.7.0

Compare Source

Added

Fixed

Full Changelog: go-co-op/gocron@v2.6.0...v2.7.0

v2.6.0

Compare Source

Added

Fixed

Misc

New Contributors

Full Changelog: go-co-op/gocron@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.4.1...v2.5.0

v2.4.1

Compare Source

What's Changed

  • fix memory leak with singleton mode where job is sending duplicate reschedule requests by @​JohnRoesler in #​723

Full Changelog: go-co-op/gocron@v2.4.0...v2.4.1

v2.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.3.0...v2.4.0

v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.2.10...v2.2.11

v2.2.10

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.2.9...v2.2.10

v2.2.9

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.2.8...v2.2.9

v2.2.8

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.2.7...v2.2.8

v2.2.7

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.2.6...v2.2.7

v2.2.6

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.2.5...v2.2.6

v2.2.5

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.2.4...v2.2.5

v2.2.4

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.2.3...v2.2.4

v2.2.3

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.2.2...v2.2.3

v2.2.2

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.2.1...v2.2.2

v2.2.1

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.2.0...v2.2.1

v2.2.0

Compare Source

What's Changed

  • wait for new job to be fully created before returning by @​JohnRoesler in #​658
  • BETA FEATURE: Add job monitor interface to allow for collecting job metrics by @​JohnRoesler in #​659
    • This is the first release of the monitor feature - it may be changed as initial implementations are created and feedback comes in

Full Changelog: go-co-op/gocron@v2.1.2...v2.2.0

v2.1.2

Compare Source

Fixes

Documentation

New Contributors

Full Changelog: go-co-op/gocron@v2.1.1...v2.1.2

v2.1.1

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.1.0...v2.1.1

v2.1.0

Compare Source

What's Changed

Version bumps

Full Changelog: go-co-op/gocron@v2.0.3...v2.1.0

v2.0.3

Compare Source

Fixes

Full Changelog: go-co-op/gocron@v2.0.2...v2.0.3

v2.0.2

Compare Source

Fixes

Full Changelog: go-co-op/gocron@v2.0.1...v2.0.2

v2.0.1

Compare Source

Fixes

Bumps

Full Changelog: go-co-op/gocron@v2.0.0...v2.0.1

v2.0.0

Compare Source

v2.0.0

It's here! 🎉 Take a look at the readme and godoc to see how the new version works!

Please give feedback! (Reach out on slack if you're interested in contributing so we can coordinate work 😄 ) And open issues if you find any bugs or have features you'd like to see supported!

New Contributors

Full Changelog: go-co-op/gocron@v2.0.0-alpha-1...v2.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from mooseburgr as a code owner December 11, 2023 19:15
@vercel
Copy link

vercel bot commented Dec 11, 2023

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
plex-utils Ready Ready Preview, Comment Jan 28, 2026 6:59pm

@ghost
Copy link

ghost commented Dec 11, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from dd3232c to 46c1b79 Compare December 14, 2023 01:11
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 46c1b79 to f74cb05 Compare December 14, 2023 21:49
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from f74cb05 to 027d84e Compare December 17, 2023 15:36
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 027d84e to 4b2592d Compare December 19, 2023 04:27
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 4b2592d to c577f9d Compare December 21, 2023 23:06
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from c577f9d to d861c70 Compare December 30, 2023 05:28
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from d861c70 to 0556c6a Compare January 2, 2024 17:17
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 0556c6a to 5351421 Compare January 18, 2024 03:43
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 5351421 to 39e3d6c Compare January 22, 2024 02:19
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 39e3d6c to f40ac8d Compare January 28, 2024 09:03
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from f40ac8d to a500673 Compare January 31, 2024 17:01
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from a500673 to f39a31d Compare February 2, 2024 18:22
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from f39a31d to d306c28 Compare February 3, 2024 21:23
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from ad0c1db to b7fe4f8 Compare April 20, 2024 14:29
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from b7fe4f8 to da8c079 Compare April 23, 2024 19:11
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from da8c079 to 28d3a8c Compare April 30, 2024 16:49
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 28d3a8c to a54ad94 Compare May 2, 2024 19:43
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from a54ad94 to de29d79 Compare May 5, 2024 01:45
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from de29d79 to 96492e7 Compare May 6, 2024 22:00
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 96492e7 to 12f6072 Compare June 4, 2024 14:01
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 12f6072 to 3296d45 Compare June 20, 2024 20:54
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 3296d45 to 93dc12f Compare June 22, 2024 00:11
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 93dc12f to 463747a Compare June 26, 2024 22:18
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 463747a to 6d4a9c3 Compare June 27, 2024 22:48
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 6d4a9c3 to cad3d27 Compare July 3, 2024 17:12
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from cad3d27 to 74f027c Compare July 10, 2024 17:19
@renovate renovate bot force-pushed the renovate/github.com-go-co-op-gocron-2.x branch from 74f027c to 5d54fb5 Compare July 12, 2024 15:20
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.

0 participants