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 non-major dependencies #102

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pydantic (changelog) ==2.9.2 -> ==2.10.5 age adoption passing confidence
pynetbox ==7.4.0 -> ==7.4.1 age adoption passing confidence
rich ==13.9.3 -> ==13.9.4 age adoption passing confidence
typer (changelog) ==0.12.5 -> ==0.15.1 age adoption passing confidence

Release Notes

pydantic/pydantic (pydantic)

v2.10.5

Compare Source

GitHub release

What's Changed

v2.10.4

Compare Source

GitHub release

What's Changed
Packaging
Fixes
New Contributors

v2.10.3

Compare Source

GitHub release

What's Changed
Fixes

v2.10.2

Compare Source

GitHub release

What's Changed
Fixes

v2.10.1

Compare Source

GitHub release

What's Changed
Packaging
Fixes
New Contributors

v2.10.0

Compare Source

The code released in v2.10.0 is practically identical to that of v2.10.0b2.

GitHub release

See the v2.10 release blog post for the highlights!

What's Changed
Packaging
New Features
Changes
Performance
Fixes
New Contributors
netbox-community/pynetbox (pynetbox)

v7.4.1: - 2024-10-25

Compare Source

  • Updated requests and urllib3 python libraries due to security vulnerabilities.
Textualize/rich (rich)

v13.9.4

Compare Source

Changed
fastapi/typer (typer)

v0.15.1

Compare Source

Features
  • 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI parameters. PR #​974 by @​svlandeg.
Docs
Internal

v0.15.0

Compare Source

Features
Internal

v0.14.0

Compare Source

Breaking Changes
  • 🔥 Remove auto naming of groups added via add_typer based on the group's callback function name. PR #​1052 by @​patrick91.

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer

app = typer.Typer()
users_app = typer.Typer()

app.add_typer(users_app)

@​users_app.callback()
def users():  # <-- This was the inferred command group name
    """
    Manage users in the app.
    """

@&#8203;users_app.command()
def create(name: str):
    print(f"Creating user: {name}")

...the command group would be named users, based on the name of the function def users().

Now you need to set it explicitly:

import typer

app = typer.Typer()
users_app = typer.Typer()

app.add_typer(users_app, name="users")  # <-- Explicitly set the command group name

@&#8203;users_app.callback()
def users():
    """
    Manage users in the app.
    """

@&#8203;users_app.command()
def create(name: str):
    print(f"Creating user: {name}")

Updated docs SubCommand Name and Help.

Note: this change will enable important features in the next release. 🤩

Internal

v0.13.1

Compare Source

Features
Refactors
Docs
Internal

v0.13.0

Compare Source

Features
Fixes
Refactors
Internal

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.

👻 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-non-major-updates branch from 183d4d6 to 17d9aab Compare November 1, 2024 17:00
@renovate renovate bot changed the title fix(deps): update dependency pynetbox to v7.4.1 fix(deps): update all non-major dependencies Nov 1, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-updates branch from 17d9aab to 5b198d2 Compare November 8, 2024 02:07
@renovate renovate bot force-pushed the renovate/all-non-major-updates branch 3 times, most recently from 1b5e373 to 2778ae5 Compare November 22, 2024 05:19
@renovate renovate bot force-pushed the renovate/all-non-major-updates branch 3 times, most recently from d69ce33 to 876fa89 Compare December 3, 2024 16:19
@renovate renovate bot force-pushed the renovate/all-non-major-updates branch from 876fa89 to 1ae51bc Compare December 4, 2024 19:55
@renovate renovate bot force-pushed the renovate/all-non-major-updates branch from 1ae51bc to 9d2999c Compare December 18, 2024 17:49
@renovate renovate bot force-pushed the renovate/all-non-major-updates branch from 9d2999c to 29ea60d Compare January 9, 2025 14:43
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