Skip to content

Update all non-major dependencies #219

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

Merged
merged 1 commit into from
Dec 26, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 19, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
mkdocs-awesome-pages-plugin 2.9.3 -> 2.10.1 age adoption passing confidence
mypy (changelog) 1.13.0 -> 1.14.0 age adoption passing confidence
pymdown-extensions 10.12 -> 10.13 age adoption passing confidence
ruff (source, changelog) 0.8.3 -> 0.8.4 age adoption passing confidence
strawberry-graphql (source, changelog) 0.254.0 -> 0.256.1 age adoption passing confidence

Release Notes

lukasgeiter/mkdocs-awesome-pages-plugin (mkdocs-awesome-pages-plugin)

v2.10.1

Compare Source

Bugfixes
  • Add ignore_case to config_scheme

v2.10.0

Compare Source

Improvements
  • New ignore_case option to make sort case insensitive
python/mypy (mypy)

v1.14.0

Compare Source

facelessuser/pymdown-extensions (pymdown-extensions)

v10.13

Compare Source

10.13

  • NEW: Snippets: Allow multiple line numbers or line number blocks separated by ,.
  • NEW: Snippets: Allow using a negative index for number start indexes and end indexes. Negative indexes are converted to positive indexes based on the number of lines in the snippet.
  • FIX: Snippets: Properly capture empty newline at end of file.
  • FIX: Snippets: Fix issue where when non sections of files are included, section labels are not stripped.
  • FIX: BetterEm: Fixes for complex cases.
  • FIX: Blocks: More consistent handling of empty newlines in block processor extensions.
astral-sh/ruff (ruff)

v0.8.4

Compare Source

Preview features
  • [airflow] Extend AIR302 with additional functions and classes (#​15015)
  • [airflow] Implement moved-to-provider-in-3 for modules that has been moved to Airflow providers (AIR303) (#​14764)
  • [flake8-use-pathlib] Extend check for invalid path suffix to include the case "." (PTH210) (#​14902)
  • [perflint] Fix panic in PERF401 when list variable is after the for loop (#​14971)
  • [perflint] Simplify finding the loop target in PERF401 (#​15025)
  • [pylint] Preserve original value format (PLR6104) (#​14978)
  • [ruff] Avoid false positives for RUF027 for typing context bindings (#​15037)
  • [ruff] Check for ambiguous pattern passed to pytest.raises() (RUF043) (#​14966)
Rule changes
  • [flake8-bandit] Check S105 for annotated assignment (#​15059)
  • [flake8-pyi] More autofixes for redundant-none-literal (PYI061) (#​14872)
  • [pydocstyle] Skip leading whitespace for D403 (#​14963)
  • [ruff] Skip SQLModel base classes for mutable-class-default (RUF012) (#​14949)
Bug
  • [perflint] Parenthesize walrus expressions in autofix for manual-list-comprehension (PERF401) (#​15050)
Server
  • Check diagnostic refresh support from client capability which enables dynamic configuration for various editors (#​15014)
strawberry-graphql/strawberry (strawberry-graphql)

v0.256.1

Compare Source

This release updates Strawberry internally to no longer pass keywords arguments
to pathlib.PurePath. Support for supplying keyword arguments to
pathlib.PurePath is deprecated and scheduled for removal in Python 3.14

Contributed by Jonathan Ehwald via PR #​3738

v0.256.0

Compare Source

This release drops support for Python 3.8, which reached its end-of-life (EOL)
in October 2024. The minimum supported Python version is now 3.9.

We strongly recommend upgrading to Python 3.9 or a newer version, as older
versions are no longer maintained and may contain security vulnerabilities.

Contributed by Thiago Bellini Ribeiro via PR #​3730

v0.255.0

Compare Source

This release adds support for making Relay connection optional, this is useful
when you want to add permission classes to the connection and not fail the whole
query if the user doesn't have permission to access the connection.

Example:

import strawberry
from strawberry import relay
from strawberry.permission import BasePermission

class IsAuthenticated(BasePermission):
    message = "User is not authenticated"

### This method can also be async!
    def has_permission(
        self, source: typing.Any, info: strawberry.Info, **kwargs
    ) -> bool:
        return False

@​strawberry.type
class Fruit(relay.Node):
    code: relay.NodeID[int]
    name: str
    weight: float

    @​classmethod
    def resolve_nodes(
        cls,
        *,
        info: strawberry.Info,
        node_ids: Iterable[str],
    ):
        return []

@​strawberry.type
class Query:
    node: relay.Node = relay.node()

    @​relay.connection(
        relay.ListConnection[Fruit] | None, permission_classes=[IsAuthenticated()]
    )
    def fruits(self) -> Iterable[Fruit]:

### This can be a database query, a generator, an async generator, etc
        return all_fruits.values()

Contributed by Patrick Arminio via PR #​3707

v0.254.1

Compare Source

This release updates the Context and RootValue vars to have
a default value of None, this makes it easier to use the views
without having to pass in a value for these vars.

Contributed by Patrick Arminio via PR #​3732


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 requested a review from febus982 as a code owner December 19, 2024 16:26
@renovate renovate bot changed the title Update dependency ruff to v0.8.4 Update all non-major dependencies Dec 20, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 20ca390 to 18aa86e Compare December 23, 2024 18:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 18aa86e to d99e0fd Compare December 26, 2024 09:26
Copy link

Code Climate has analyzed commit d99e0fd and detected 0 issues on this pull request.

The test coverage on the diff in this pull request is 100.0% (100% is the threshold).

This pull request will bring the total coverage in the repository to 100.0% (0.0% change).

View more on Code Climate.

@febus982 febus982 merged commit 28da60c into main Dec 26, 2024
12 checks passed
@febus982 febus982 deleted the renovate/all-minor-patch branch December 26, 2024 09:28
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.

1 participant