Skip to content
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

Bump prefect from 2.16.6 to 2.16.8 #1961

Merged
merged 1 commit into from
Mar 31, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 31, 2024

Bumps prefect from 2.16.6 to 2.16.8.

Release notes

Sourced from prefect's releases.

Release 2.16.8

Fixes

Release 2.16.7

πŸ’» Introducing prefect shell for observing CLI commands

You can now observe CLI commands as a Prefect flow. For example:

Β» prefect shell watch "curl http://wttr.in/Chicago?format=3"
17:32:39.562 | INFO | prefect.engine - Created flow run 'powerful-mushroom' for flow 'Shell Command'
17:32:40.171 | INFO | Flow run 'powerful-mushroom' - Chicago: ⛅️ +50Β°F
17:32:40.315 | INFO | Flow run 'powerful-mushroom' - Finished in state Completed()

See these docs to learn how to:

  • run a shell command as a Prefect flow on-demand with watch
  • schedule a shell command as a recurring Prefect flow using serve

See the PR for implementation details: PrefectHQ/prefect#11998

Other Enhancements 🌟

... and numerous πŸ› fixes!

Full Changelog: PrefectHQ/prefect@2.16.6...2.16.7

See the release notes for more!

Changelog

Sourced from prefect's changelog.

Release 2.16.8

Fixes

Release 2.16.7

Introducing prefect shell πŸ’» for observing CLI commands

You can now observe CLI commands as a Prefect flow. For example, take the command:

Β» curl http://wttr.in/Chicago\?format\=3
Chicago: ⛅️  +50Β°F

To run this as a Prefect flow, you can use the following CLI command:

Β» prefect shell watch "curl http://wttr.in/Chicago?format=3"
17:32:39.562 | INFO    | prefect.engine - Created flow run 'powerful-mushroom' for flow 'Shell Command'
17:32:40.171 | INFO    | Flow run 'powerful-mushroom' - Chicago: ⛅️  +50Β°F
17:32:40.315 | INFO    | Flow run 'powerful-mushroom' - Finished in state Completed()

See these docs to learn how to:

  • run a shell command as a Prefect flow on-demand with watch
  • schedule a shell command as a recurring Prefect flow using serve

See the PR for implementation details: PrefectHQ/prefect#11998

Enhancements

Fixes

Experimental

... (truncated)

Commits
  • 11cb641 Release notes for 2.16.8 (#12484)
  • 5756b8d revert dockerfile change (#12481)
  • ab1ab24 Turn off csrf by default (#12479)
  • d563696 Revert "Update uvicorn requirement from <0.29.0,>=0.14.0 to >=0.14.0,<0.30.0"...
  • 8a5410e Update uvicorn requirement from <0.29.0,>=0.14.0 to >=0.14.0,<0.30.0 (#12477)
  • adbdc84 release notes for 2.16.7 (#12476)
  • 3a45e84 fix(cli): prompt user confirmation for pausing work queue in default work poo...
  • 139881f Shell docs (#12474)
  • 34d2e0a Move filesystem and serializer validation to internal validators module (#12464)
  • 3dd982b Update @​prefecthq/prefect-ui-library to version 2.7.3 (#12472)
  • Additional commits viewable in compare view

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

Bumps [prefect](https://github.com/PrefectHQ/prefect) from 2.16.6 to 2.16.8.
- [Release notes](https://github.com/PrefectHQ/prefect/releases)
- [Changelog](https://github.com/PrefectHQ/prefect/blob/main/RELEASE-NOTES.md)
- [Commits](PrefectHQ/prefect@2.16.6...2.16.8)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Dependency update or issue python Pull requests that update Python code labels Mar 31, 2024
@buildbot-princeton
Copy link
Collaborator

Can one of the admins verify this patch?

@Andrew-S-Rosen Andrew-S-Rosen enabled auto-merge (squash) March 31, 2024 04:07
Copy link

codecov bot commented Mar 31, 2024

Codecov Report

All modified and coverable lines are covered by tests βœ…

Project coverage is 99.29%. Comparing base (ee3d9e7) to head (859f282).
Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1961   +/-   ##
=======================================
  Coverage   99.29%   99.29%           
=======================================
  Files          81       81           
  Lines        3270     3270           
=======================================
  Hits         3247     3247           
  Misses         23       23           

β˜” View full report in Codecov by Sentry.
πŸ“’ Have feedback on the report? Share it here.

@Andrew-S-Rosen Andrew-S-Rosen merged commit ed6a79f into main Mar 31, 2024
20 checks passed
@Andrew-S-Rosen Andrew-S-Rosen deleted the dependabot/pip/prefect-2.16.8 branch March 31, 2024 04:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependency update or issue python Pull requests that update Python code
Development

Successfully merging this pull request may close these issues.

None yet

2 participants