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.1 to 2.16.3 #1870

Merged
merged 1 commit into from
Mar 11, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps prefect from 2.16.1 to 2.16.3.

Release notes

Sourced from prefect's releases.

Release 2.16.3

This release includes enhanced deployment parameters in the Prefect UI. We’ve refined the deployment parameters UI to significantly enhance default value handling and list management. 🛠️ This release introduces support for tuple-type parameters and a revamped list UI, freeing users from the constraints of JSON for list inputs. 🔄 You now have the flexibility to utilize JSON or Prefect variables for any parameter value, enhancing the versatility of deployment configurations. 💪 Moreover, we’ve synchronized validation across the UI and deployment schemas, ensuring that user inputs are consistently checked against the defined parameter requirements, which simplifies the deployment process and minimizes configuration errors. ✅ These improvements are aimed at providing a more efficient and user-friendly interface for managing deployment parameters. 🌟

This release also includes many other enhancements and fixes, including a new on_running state change hook 🎣, two memory leak fixes 🔧, and much more.

See the release notes for details! 📜🚀

Release 2.16.2

⛑️ Fixing a logging bug introduced by 2.16.1

In 2.16.1, a regression related to logging non-str objects (when a PREFECT_API_KEY was set) was introduced. The fix is included in 2.16.2.

See PrefectHQ/prefect#12151 for implementation details.

🎯 Use a module path entrypoint when using .serve or .deploy

from prefect_dbt.cloud.jobs import trigger_dbt_cloud_job_run_and_wait_for_completion
from prefect.deployments import EntrypointType
if name == "main":
trigger_dbt_cloud_job_run_and_wait_for_completion.deploy(
name="demo-deploy-from-module",
work_pool_name="olympic",
entrypoint_type=EntrypointType.MODULE_PATH,
job_variables={"env": { "EXTRA_PIP_PACKAGES": "prefect-dbt" } }
)

See PrefectHQ/prefect#12134 for implementation details.

Full Changelog: PrefectHQ/prefect@2.16.1...2.16.2

See the release notes for more!

Changelog

Sourced from prefect's changelog.

Release 2.16.3

Enhanced deployment parameters in the Prefect UI

We’ve refined the deployment parameters UI to significantly enhance default value handling and list management. This release introduces support for tuple-type parameters and a revamped list UI, freeing users from the constraints of JSON for list inputs. You now have the flexibility to utilize JSON or Prefect variables for any parameter value, enhancing the versatility of deployment configurations. Moreover, we’ve synchronized validation across the UI and deployment schemas, ensuring that user inputs are consistently checked against the defined parameter requirements, which simplifies the deployment process and minimizes configuration errors.

These improvements are aimed at providing a more efficient and user-friendly interface for managing deployment parameters. Check it out for yourself!

See the following PRs for implementation details:

Enhancements

Fixes

Experimental

Integrations

Documentation

Contributors

... (truncated)

Commits
  • e3f02c0 Release notes 2.16.3 (#12217)
  • 5cd3dea prioritize validation errors (#12219)
  • fb2d715 Better parity between Prefect and Prefect Cloud for task scheduling protocol ...
  • e358d3d Update @​prefecthq/prefect-ui-library to version 2.6.29 (#12218)
  • 5fb07c0 Send flow run and task run retry logs to API (#12211)
  • df0c418 Update @​prefecthq/prefect-ui-library to version 2.6.28 (#12216)
  • 2e49edf Simplify already authenticated logic for prefect cloud login (#12209)
  • 4d8ca3f Updating client-side schemas for Triggers to reflect updates in Prefect Cloud...
  • 9087b04 Adds an on_running state change hook (#12153)
  • 986a2b4 Added prefect-soda-cloud integration (#12208)
  • 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.1 to 2.16.3.
- [Release notes](https://github.com/PrefectHQ/prefect/releases)
- [Changelog](https://github.com/PrefectHQ/prefect/blob/main/RELEASE-NOTES.md)
- [Commits](PrefectHQ/prefect@2.16.1...2.16.3)

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

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

Can one of the admins verify this patch?

Copy link

codecov bot commented Mar 11, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.40%. Comparing base (552207f) to head (20478bd).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1870   +/-   ##
=======================================
  Coverage   99.40%   99.40%           
=======================================
  Files          81       81           
  Lines        3174     3174           
=======================================
  Hits         3155     3155           
  Misses         19       19           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@Andrew-S-Rosen Andrew-S-Rosen merged commit 467536d into main Mar 11, 2024
20 checks passed
@Andrew-S-Rosen Andrew-S-Rosen deleted the dependabot/pip/prefect-2.16.3 branch March 11, 2024 21:36
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.

2 participants