Skip to content

Bump celery from 0.4.0-rc4 to 0.4.0-rc8 #47

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 6, 2021

Bumps celery from 0.4.0-rc4 to 0.4.0-rc8.

Release notes

Sourced from celery's releases.

v0.4.0-rc8

What's new

Changed ⚠️

  • ⚠️ BREAKING CHANGE ⚠️

    The RegularSchedule in the beat module has been renamed to DeltaSchedule to be more coherent with Python Celery terminology, where it is sometimes called timedelta.

  • Tokio updated to 1.0.0.

  • The Broker::configure_task_routes produces BrokerError instead of CeleryError.

  • The beat macro now expects a list of tasks that is used to initialize the scheduler.

  • Errors have been refactored:

    • The BadRoutingPattern variant has been moved from CeleryError to BrokerError;
    • The CronScheduleError has been replaced by a ScheduleError enum with a CronScheduleError variant;
    • A ScheduleError variant has been added to BeatError
    • A BadRoutingPattern error has been added.

Added 🎉

  • 🚀🚀 Redis broker support 🚀🚀
  • Added the max_sleep_duration property on the Beat which can be used to ensure that the scheduler backend is called regularly (which may be necessary for custom backends).
  • Added a method Beat::schedule_named_task to add a scheduled task with a custom name.
  • Added a method Broker::cancel to cancel an existing consumer.
  • Changed Ok variant type of the the return type of Broker::consume. This is now a tuple that includes a unique consumer tag that can then be passed to Broker::cancel to cancel the corresponding consumer.
  • Added a "coverage" job to GitHub Actions.
  • Completed MessageBuilder struct

Fixed ✅

  • Fixed a bug with AMQPBroker::close() that would result in an error with lapin.
  • Fixed a bug with the celery::app! macro that caused it to fail to compile when the broker connection string was passed as a variable instead of an expression.

Commits

7ab2443 (cargo-release) v0.4.0-rc7 5f28972 fix release job 10a269b Merge pull request #261 from rusty-celery/ci-matrix-builds 63a0a2c final touches b0f6117 remove build step (redundant) 66f4ecb more updates 41cb7c4 updates 790e5d9 add prerelease indicator 876a138 release process 8c2c2a7 Fix 5d24730 fixes, remove Windows builds 3369d59 fix again a2197e4 try fix

... (truncated)

Changelog

Sourced from celery's changelog.

v0.4.0-rc8 - 2020-08-05

Changed

  • ⚠️ BREAKING CHANGE ⚠️

    The RegularSchedule in the beat module has been renamed to DeltaSchedule to be more coherent with Python Celery terminology, where it is sometimes called timedelta.

  • Tokio updated to 1.0.0.

  • The Broker::configure_task_routes produces BrokerError instead of CeleryError.

  • The beat macro now expects a list of tasks that is used to initialize the scheduler.

  • Errors have been refactored:

    • The BadRoutingPattern variant has been moved from CeleryError to BrokerError;
    • The CronScheduleError has been replaced by a ScheduleError enum with a CronScheduleError variant;
    • A ScheduleError variant has been added to BeatError
    • A BadRoutingPattern error has been added.

Added

  • 🚀🚀 Redis broker support 🚀🚀
  • Added the max_sleep_duration property on the Beat which can be used to ensure that the scheduler backend is called regularly (which may be necessary for custom backends).
  • Added a method Beat::schedule_named_task to add a scheduled task with a custom name.
  • Added a method Broker::cancel to cancel an existing consumer.
  • Changed Ok variant type of the the return type of Broker::consume. This is now a tuple that includes a unique consumer tag that can then be passed to Broker::cancel to cancel the corresponding consumer.
  • Added a "coverage" job to GitHub Actions.
  • Completed MessageBuilder struct

Fixed

  • Fixed a bug with AMQPBroker::close() that would result in an error with lapin.
  • Fixed a bug with the celery::app! macro that caused it to fail to compile when the broker connection string was passed as a variable instead of an expression.

v0.4.0-rc5 - 2020-11-19

Added

  • Added the CronSchedule struct to support Celery's crontab schedules.

Changed

  • ⚠️ BREAKING CHANGE ⚠️

    To improve the app! and beat! macros and accomodate custom Brokers and SchedulerBackends, we've had to make breaking changes to the way these macros are invoked.

    The biggest change is that the macros now return a future of Result<Celery> or Result<Beat>.

... (truncated)

Commits

Dependabot compatibility score

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 commands and options

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 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)

Bumps [celery](https://github.com/rusty-celery/rusty-celery) from 0.4.0-rc4 to 0.4.0-rc8.
- [Release notes](https://github.com/rusty-celery/rusty-celery/releases)
- [Changelog](https://github.com/rusty-celery/rusty-celery/blob/main/CHANGELOG.md)
- [Commits](rusty-celery/rusty-celery@v0.4.0-rc4...v0.4.0-rc8)

---
updated-dependencies:
- dependency-name: celery
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 6, 2021
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 8, 2021

Superseded by #51.

@dependabot dependabot bot closed this Oct 8, 2021
@dependabot dependabot bot deleted the dependabot/cargo/celery-0.4.0-rc8 branch October 8, 2021 18:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants