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

fix(deps): update all minor dependencies #422

Merged
merged 1 commit into from
Mar 14, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 3, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nivo/bar (source) ^0.84.0 -> ^0.85.0 age adoption passing confidence
@nivo/core (source) ^0.84.0 -> ^0.85.0 age adoption passing confidence
@nivo/geo (source) ^0.84.0 -> ^0.85.0 age adoption passing confidence
@nivo/line (source) ^0.84.0 -> ^0.85.0 age adoption passing confidence
@nivo/pie (source) ^0.84.0 -> ^0.85.0 age adoption passing confidence
fastapi ==0.109.2 -> ==0.110.0 age adoption passing confidence
google-api-python-client ==2.119.0 -> ==2.121.0 age adoption passing confidence
yup 1.3.3 -> 1.4.0 age adoption passing confidence

Review

  • Updates have been tested and work
  • If updates are AWS related, versions match the infrastructure (e.g. Lambda runtime, database, etc.)

Release Notes

plouc/nivo (@​nivo/bar)

v0.85.0

Compare Source

What's Changed

New Contributors

Full Changelog: plouc/nivo@v0.84.0...v0.85.0

tiangolo/fastapi (fastapi)

v0.110.0

Compare Source

Breaking Changes
  • 🐛 Fix unhandled growing memory for internal server errors, refactor dependencies with yield and except to require raising again as in regular Python. PR #​11191 by @​tiangolo.
    • This is a breaking change (and only slightly) if you used dependencies with yield, used except in those dependencies, and didn't raise again.
    • This was reported internally by @​rushilsrivastava as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
    • Read the new docs: Dependencies with yield and except.

In short, if you had dependencies that looked like:

def my_dep():
    try:
        yield
    except SomeException:
        pass

Now you need to make sure you raise again after except, just as you would in regular Python:

def my_dep():
    try:
        yield
    except SomeException:
        raise
Docs
Translations
googleapis/google-api-python-client (google-api-python-client)

v2.121.0

Compare Source

Features
Bug Fixes

v2.120.0

Compare Source

Features
Bug Fixes
jquense/yup (yup)

v1.4.0

Compare Source

Bug Fixes
Features

1.3.3 (2023-12-14)

Bug Fixes
  • addMethod: allow Schema without making TypeScript upset (f921fe6)

1.3.2 (2023-09-29)

Bug Fixes

1.3.1 (2023-09-26)

Bug Fixes
  • ValidationError extends Error (bc5121b)

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Montreal, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor branch from ebccefb to 75e4a66 Compare March 7, 2024 17:18
@renovate renovate bot changed the title chore(deps): update dependency fastapi to v0.110.0 chore(deps): update all minor dependencies Mar 7, 2024
@renovate renovate bot force-pushed the renovate/all-minor branch 5 times, most recently from 736ed73 to 047208c Compare March 13, 2024 16:44
@renovate renovate bot force-pushed the renovate/all-minor branch from 047208c to 079cf84 Compare March 14, 2024 01:51
@renovate renovate bot changed the title chore(deps): update all minor dependencies fix(deps): update all minor dependencies Mar 14, 2024
@sylviamclaughlin sylviamclaughlin merged commit c659b2c into main Mar 14, 2024
7 checks passed
@sylviamclaughlin sylviamclaughlin deleted the renovate/all-minor branch March 14, 2024 22:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant