Python: Asynchronous client for the Tailscale API

Overview

Python: Asynchronous client for the Tailscale API

GitHub Release Python Versions Project Stage Project Maintenance License

Build Status Code Coverage Code Quality

Sponsor Frenck via GitHub Sponsors

Support Frenck on Patreon

Asynchronous client for the Tailscale API.

About

This package allows you to control and monitor Tailscale clients programmatically. It is mainly created to allow third-party programs to integrate with Tailscale.

Installation

pip install tailscale

Usage

import asyncio

from tailscale import Tailscale


async def main():
    """Show example on using the Tailscale API client."""
    async with Tailscale(
        tailnet="frenck",
        api_key="tskey-somethingsomething",
    ) as tailscale:

        devices = await tailscale.devices()
        print(devices)


if __name__ == "__main__":
    asyncio.run(main())

Changelog & Releases

This repository keeps a change log using GitHub's releases functionality. The format of the log is based on Keep a Changelog.

Releases are based on Semantic Versioning, and use the format of MAJOR.MINOR.PATCH. In a nutshell, the version will be incremented based on the following:

  • MAJOR: Incompatible or major changes.
  • MINOR: Backwards-compatible new features and enhancements.
  • PATCH: Backwards-compatible bugfixes and package updates.

Contributing

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We've set up a separate document for our contribution guidelines.

Thank you for being involved! 😍

Setting up development environment

This Python project is fully managed using the Poetry dependency manager. But also relies on the use of NodeJS for certain checks during development.

You need at least:

  • Python 3.8+
  • Poetry
  • NodeJS 14+ (including NPM)

To install all packages, including all development requirements:

npm install
poetry install

As this repository uses the pre-commit framework, all changes are linted and tested with each commit. You can run all checks and tests manually, using the following command:

poetry run pre-commit run --all-files

To run just the Python tests:

poetry run pytest

Authors & contributors

The original setup of this repository is by Franck Nijhof.

For a full list of all authors and contributors, check the contributor's page.

License

MIT License

Copyright (c) 2021 Franck Nijhof

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Comments
  • Bump safety from 2.2.0 to 2.2.1

    Bump safety from 2.2.0 to 2.2.1

    Bumps safety from 2.2.0 to 2.2.1.

    Release notes

    Sourced from safety's releases.

    2.2.1

    What's Changed

    Full Changelog: https://github.com/pyupio/safety/compare/2.2.0...2.2.1

    Changelog

    Sourced from safety's changelog.

    [2.2.1] - 2022-10-04

    • Fixed the use of the SAFETY_COLOR environment variable
    • Fixed bug in the case of vulnerabilities without a CVE linked
    • Fixed GitHub version in the README
    Commits

    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 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)
    dependencies python 
    opened by dependabot[bot] 2
  • Bump pydantic from 1.9.2 to 1.10.1

    Bump pydantic from 1.9.2 to 1.10.1

    Bumps pydantic from 1.9.2 to 1.10.1.

    Release notes

    Sourced from pydantic's releases.

    v1.10.1 (2022-08-31)

    • Add __hash__ method to pydancic.color.Color class, #4454 by @​czaki

    Full Changelog: https://github.com/pydantic/pydantic/compare/v1.10.0...v1.10.1

    v1.10.0 (2022-08-30)

    See #4419 for feedback and discussion, docs are live at pydantic-docs.helpmanual.io.

    • Refactor the whole pydantic dataclass decorator to really act like its standard lib equivalent. It hence keeps __eq__, __hash__, ... and makes comparison with its non-validated version possible. It also fixes usage of frozen dataclasses in fields and usage of default_factory in nested dataclasses. The support of Config.extra has been added. Finally, config customization directly via a dict is now possible, #2557 by @​PrettyWood BREAKING CHANGES:
      • The compiled boolean (whether pydantic is compiled with cython) has been moved from main.py to version.py
      • Now that Config.extra is supported, dataclass ignores by default extra arguments (like BaseModel)
    • Fix PEP487 __set_name__ protocol in BaseModel for PrivateAttrs, #4407 by @​tlambert03
    • Allow for custom parsing of environment variables via parse_env_var in Config, #4406 by @​acmiyaguchi
    • Rename master to main, #4405 by @​hramezani
    • Fix StrictStr does not raise ValidationError when max_length is present in Field, #4388 by @​hramezani
    • Make SecretStr and SecretBytes hashable, #4387 by @​chbndrhnns
    • Fix StrictBytes does not raise ValidationError when max_length is present in Field, #4380 by @​JeanArhancet
    • Add support for bare type, #4375 by @​hramezani
    • Support Python 3.11, including binaries for 3.11 in PyPI, #4374 by @​samuelcolvin
    • Add support for re.Pattern, #4366 by @​hramezani
    • Fix __post_init_post_parse__ is incorrectly passed keyword arguments when no __post_init__ is defined, #4361 by @​hramezani
    • Fix implicitly importing ForwardRef and Callable from pydantic.typing instead of typing and also expose MappingIntStrAny, #4358 by @​aminalaee
    • remove Any types from the dataclass decorator so it can be used with the disallow_any_expr mypy option, #4356 by @​DetachHead
    • moved repo to pydantic/pydantic, #4348 by @​yezz123
    • fix "extra fields not permitted" error when dataclass with Extra.forbid is validated multiple times, #4343 by @​detachhead
    • Add Python 3.9 and 3.10 examples to docs, #4339 by @​Bobronium
    • Discriminated union models now use oneOf instead of anyOf when generating OpenAPI schema definitions, #4335 by @​MaxwellPayne
    • Allow type checkers to infer inner type of Json type. Json[list[str]] will be now inferred as list[str], Json[Any] should be used instead of plain Json. Runtime behaviour is not changed, #4332 by @​Bobronium
    • Allow empty string aliases by using a alias is not None check, rather than bool(alias), #4253 by @​sergeytsaplin
    • Update ForwardRefs in Field.outer_type_, #4249 by @​JacobHayes
    • The use of __dataclass_transform__ has been replaced by typing_extensions.dataclass_transform, which is the preferred way to mark pydantic models as a dataclass under PEP 681, #4241 by @​multimeric
    • Use parent model's Config when validating nested NamedTuple fields, #4219 by @​synek
    • Update BaseModel.construct to work with aliased Fields, #4192 by @​kylebamos
    • Catch certain raised errors in smart_deepcopy and revert to deepcopy if so, #4184 by @​coneybeare
    • Add Config.anystr_upper and to_upper kwarg to constr and conbytes, #4165 by @​satheler
    • Fix JSON schema for set and frozenset when they include default values, #4155 by @​aminalaee
    • Teach the mypy plugin that methods decorated by @validator are classmethods, #4102 by @​DMRobertson
    • Improve mypy plugin's ability to detect required fields, #4086 by @​richardxia
    • Support fields of type Type[] in schema, #4051 by @​aminalaee
    • Add default value in JSON Schema when const=True, #4031 by @​aminalaee
    • Adds reserved word check to signature generation logic, #4011 by @​strue36
    • Fix Json strategy failure for the complex nested field, #4005 by @​sergiosim

    ... (truncated)

    Changelog

    Sourced from pydantic's changelog.

    v1.10.1 (2022-08-31)

    • Add __hash__ method to pydancic.color.Color class, #4454 by @​czaki

    v1.10.0 (2022-08-30)

    • Refactor the whole pydantic dataclass decorator to really act like its standard lib equivalent. It hence keeps __eq__, __hash__, ... and makes comparison with its non-validated version possible. It also fixes usage of frozen dataclasses in fields and usage of default_factory in nested dataclasses. The support of Config.extra has been added. Finally, config customization directly via a dict is now possible, #2557 by @​PrettyWood BREAKING CHANGES:
      • The compiled boolean (whether pydantic is compiled with cython) has been moved from main.py to version.py
      • Now that Config.extra is supported, dataclass ignores by default extra arguments (like BaseModel)
    • Fix PEP487 __set_name__ protocol in BaseModel for PrivateAttrs, #4407 by @​tlambert03
    • Allow for custom parsing of environment variables via parse_env_var in Config, #4406 by @​acmiyaguchi
    • Rename master to main, #4405 by @​hramezani
    • Fix StrictStr does not raise ValidationError when max_length is present in Field, #4388 by @​hramezani
    • Make SecretStr and SecretBytes hashable, #4387 by @​chbndrhnns
    • Fix StrictBytes does not raise ValidationError when max_length is present in Field, #4380 by @​JeanArhancet
    • Add support for bare type, #4375 by @​hramezani
    • Support Python 3.11, including binaries for 3.11 in PyPI, #4374 by @​samuelcolvin
    • Add support for re.Pattern, #4366 by @​hramezani
    • Fix __post_init_post_parse__ is incorrectly passed keyword arguments when no __post_init__ is defined, #4361 by @​hramezani
    • Fix implicitly importing ForwardRef and Callable from pydantic.typing instead of typing and also expose MappingIntStrAny, #4358 by @​aminalaee
    • remove Any types from the dataclass decorator so it can be used with the disallow_any_expr mypy option, #4356 by @​DetachHead
    • moved repo to pydantic/pydantic, #4348 by @​yezz123
    • fix "extra fields not permitted" error when dataclass with Extra.forbid is validated multiple times, #4343 by @​detachhead
    • Add Python 3.9 and 3.10 examples to docs, #4339 by @​Bobronium
    • Discriminated union models now use oneOf instead of anyOf when generating OpenAPI schema definitions, #4335 by @​MaxwellPayne
    • Allow type checkers to infer inner type of Json type. Json[list[str]] will be now inferred as list[str], Json[Any] should be used instead of plain Json. Runtime behaviour is not changed, #4332 by @​Bobronium
    • Allow empty string aliases by using a alias is not None check, rather than bool(alias), #4253 by @​sergeytsaplin
    • Update ForwardRefs in Field.outer_type_, #4249 by @​JacobHayes
    • The use of __dataclass_transform__ has been replaced by typing_extensions.dataclass_transform, which is the preferred way to mark pydantic models as a dataclass under PEP 681, #4241 by @​multimeric
    • Use parent model's Config when validating nested NamedTuple fields, #4219 by @​synek
    • Update BaseModel.construct to work with aliased Fields, #4192 by @​kylebamos
    • Catch certain raised errors in smart_deepcopy and revert to deepcopy if so, #4184 by @​coneybeare
    • Add Config.anystr_upper and to_upper kwarg to constr and conbytes, #4165 by @​satheler
    • Fix JSON schema for set and frozenset when they include default values, #4155 by @​aminalaee
    • Teach the mypy plugin that methods decorated by @validator are classmethods, #4102 by @​DMRobertson
    • Improve mypy plugin's ability to detect required fields, #4086 by @​richardxia
    • Support fields of type Type[] in schema, #4051 by @​aminalaee
    • Add default value in JSON Schema when const=True, #4031 by @​aminalaee
    • Adds reserved word check to signature generation logic, #4011 by @​strue36
    • Fix Json strategy failure for the complex nested field, #4005 by @​sergiosim
    • Add JSON-compatible float constraint allow_inf_nan, #3994 by @​tiangolo
    • Remove undefined behaviour when env_prefix had characters in common with env_nested_delimiter, #3975 by @​arsenron

    ... (truncated)

    Commits

    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 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)
    dependencies python 
    opened by dependabot[bot] 2
  • Bump pydantic from 1.9.2 to 1.10.0

    Bump pydantic from 1.9.2 to 1.10.0

    Bumps pydantic from 1.9.2 to 1.10.0.

    Release notes

    Sourced from pydantic's releases.

    v1.10.0 (2022-08-30)

    See #4419 for feedback and discussion, docs are live at pydantic-docs.helpmanual.io.

    • Refactor the whole pydantic dataclass decorator to really act like its standard lib equivalent. It hence keeps __eq__, __hash__, ... and makes comparison with its non-validated version possible. It also fixes usage of frozen dataclasses in fields and usage of default_factory in nested dataclasses. The support of Config.extra has been added. Finally, config customization directly via a dict is now possible, #2557 by @​PrettyWood BREAKING CHANGES:
      • The compiled boolean (whether pydantic is compiled with cython) has been moved from main.py to version.py
      • Now that Config.extra is supported, dataclass ignores by default extra arguments (like BaseModel)
    • Fix PEP487 __set_name__ protocol in BaseModel for PrivateAttrs, #4407 by @​tlambert03
    • Allow for custom parsing of environment variables via parse_env_var in Config, #4406 by @​acmiyaguchi
    • Rename master to main, #4405 by @​hramezani
    • Fix StrictStr does not raise ValidationError when max_length is present in Field, #4388 by @​hramezani
    • Make SecretStr and SecretBytes hashable, #4387 by @​chbndrhnns
    • Fix StrictBytes does not raise ValidationError when max_length is present in Field, #4380 by @​JeanArhancet
    • Add support for bare type, #4375 by @​hramezani
    • Support Python 3.11, including binaries for 3.11 in PyPI, #4374 by @​samuelcolvin
    • Add support for re.Pattern, #4366 by @​hramezani
    • Fix __post_init_post_parse__ is incorrectly passed keyword arguments when no __post_init__ is defined, #4361 by @​hramezani
    • Fix implicitly importing ForwardRef and Callable from pydantic.typing instead of typing and also expose MappingIntStrAny, #4358 by @​aminalaee
    • remove Any types from the dataclass decorator so it can be used with the disallow_any_expr mypy option, #4356 by @​DetachHead
    • moved repo to pydantic/pydantic, #4348 by @​yezz123
    • fix "extra fields not permitted" error when dataclass with Extra.forbid is validated multiple times, #4343 by @​detachhead
    • Add Python 3.9 and 3.10 examples to docs, #4339 by @​Bobronium
    • Discriminated union models now use oneOf instead of anyOf when generating OpenAPI schema definitions, #4335 by @​MaxwellPayne
    • Allow type checkers to infer inner type of Json type. Json[list[str]] will be now inferred as list[str], Json[Any] should be used instead of plain Json. Runtime behaviour is not changed, #4332 by @​Bobronium
    • Allow empty string aliases by using a alias is not None check, rather than bool(alias), #4253 by @​sergeytsaplin
    • Update ForwardRefs in Field.outer_type_, #4249 by @​JacobHayes
    • The use of __dataclass_transform__ has been replaced by typing_extensions.dataclass_transform, which is the preferred way to mark pydantic models as a dataclass under PEP 681, #4241 by @​multimeric
    • Use parent model's Config when validating nested NamedTuple fields, #4219 by @​synek
    • Update BaseModel.construct to work with aliased Fields, #4192 by @​kylebamos
    • Catch certain raised errors in smart_deepcopy and revert to deepcopy if so, #4184 by @​coneybeare
    • Add Config.anystr_upper and to_upper kwarg to constr and conbytes, #4165 by @​satheler
    • Fix JSON schema for set and frozenset when they include default values, #4155 by @​aminalaee
    • Teach the mypy plugin that methods decorated by @validator are classmethods, #4102 by @​DMRobertson
    • Improve mypy plugin's ability to detect required fields, #4086 by @​richardxia
    • Support fields of type Type[] in schema, #4051 by @​aminalaee
    • Add default value in JSON Schema when const=True, #4031 by @​aminalaee
    • Adds reserved word check to signature generation logic, #4011 by @​strue36
    • Fix Json strategy failure for the complex nested field, #4005 by @​sergiosim
    • Add JSON-compatible float constraint allow_inf_nan, #3994 by @​tiangolo
    • Remove undefined behaviour when env_prefix had characters in common with env_nested_delimiter, #3975 by @​arsenron
    • Support generics model with create_model, #3945 by @​hot123s
    • allow submodels to overwrite extra field info, #3934 by @​PrettyWood
    • Document and test structural pattern matching (PEP 636) on BaseModel, #3920 by @​irgolic

    ... (truncated)

    Changelog

    Sourced from pydantic's changelog.

    v1.10.0 (2022-08-30)

    • Refactor the whole pydantic dataclass decorator to really act like its standard lib equivalent. It hence keeps __eq__, __hash__, ... and makes comparison with its non-validated version possible. It also fixes usage of frozen dataclasses in fields and usage of default_factory in nested dataclasses. The support of Config.extra has been added. Finally, config customization directly via a dict is now possible, #2557 by @​PrettyWood BREAKING CHANGES:
      • The compiled boolean (whether pydantic is compiled with cython) has been moved from main.py to version.py
      • Now that Config.extra is supported, dataclass ignores by default extra arguments (like BaseModel)
    • Fix PEP487 __set_name__ protocol in BaseModel for PrivateAttrs, #4407 by @​tlambert03
    • Allow for custom parsing of environment variables via parse_env_var in Config, #4406 by @​acmiyaguchi
    • Rename master to main, #4405 by @​hramezani
    • Fix StrictStr does not raise ValidationError when max_length is present in Field, #4388 by @​hramezani
    • Make SecretStr and SecretBytes hashable, #4387 by @​chbndrhnns
    • Fix StrictBytes does not raise ValidationError when max_length is present in Field, #4380 by @​JeanArhancet
    • Add support for bare type, #4375 by @​hramezani
    • Support Python 3.11, including binaries for 3.11 in PyPI, #4374 by @​samuelcolvin
    • Add support for re.Pattern, #4366 by @​hramezani
    • Fix __post_init_post_parse__ is incorrectly passed keyword arguments when no __post_init__ is defined, #4361 by @​hramezani
    • Fix implicitly importing ForwardRef and Callable from pydantic.typing instead of typing and also expose MappingIntStrAny, #4358 by @​aminalaee
    • remove Any types from the dataclass decorator so it can be used with the disallow_any_expr mypy option, #4356 by @​DetachHead
    • moved repo to pydantic/pydantic, #4348 by @​yezz123
    • fix "extra fields not permitted" error when dataclass with Extra.forbid is validated multiple times, #4343 by @​detachhead
    • Add Python 3.9 and 3.10 examples to docs, #4339 by @​Bobronium
    • Discriminated union models now use oneOf instead of anyOf when generating OpenAPI schema definitions, #4335 by @​MaxwellPayne
    • Allow type checkers to infer inner type of Json type. Json[list[str]] will be now inferred as list[str], Json[Any] should be used instead of plain Json. Runtime behaviour is not changed, #4332 by @​Bobronium
    • Allow empty string aliases by using a alias is not None check, rather than bool(alias), #4253 by @​sergeytsaplin
    • Update ForwardRefs in Field.outer_type_, #4249 by @​JacobHayes
    • The use of __dataclass_transform__ has been replaced by typing_extensions.dataclass_transform, which is the preferred way to mark pydantic models as a dataclass under PEP 681, #4241 by @​multimeric
    • Use parent model's Config when validating nested NamedTuple fields, #4219 by @​synek
    • Update BaseModel.construct to work with aliased Fields, #4192 by @​kylebamos
    • Catch certain raised errors in smart_deepcopy and revert to deepcopy if so, #4184 by @​coneybeare
    • Add Config.anystr_upper and to_upper kwarg to constr and conbytes, #4165 by @​satheler
    • Fix JSON schema for set and frozenset when they include default values, #4155 by @​aminalaee
    • Teach the mypy plugin that methods decorated by @validator are classmethods, #4102 by @​DMRobertson
    • Improve mypy plugin's ability to detect required fields, #4086 by @​richardxia
    • Support fields of type Type[] in schema, #4051 by @​aminalaee
    • Add default value in JSON Schema when const=True, #4031 by @​aminalaee
    • Adds reserved word check to signature generation logic, #4011 by @​strue36
    • Fix Json strategy failure for the complex nested field, #4005 by @​sergiosim
    • Add JSON-compatible float constraint allow_inf_nan, #3994 by @​tiangolo
    • Remove undefined behaviour when env_prefix had characters in common with env_nested_delimiter, #3975 by @​arsenron
    • Support generics model with create_model, #3945 by @​hot123s
    • allow submodels to overwrite extra field info, #3934 by @​PrettyWood
    • Document and test structural pattern matching (PEP 636) on BaseModel, #3920 by @​irgolic
    • Fix incorrect deserialization of python timedelta object to ISO 8601 for negative time deltas.

    ... (truncated)

    Commits

    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 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)
    dependencies python 
    opened by dependabot[bot] 2
  • Bump flake8-bugbear from 22.7.1 to 22.8.22

    Bump flake8-bugbear from 22.7.1 to 22.8.22

    Bumps flake8-bugbear from 22.7.1 to 22.8.22.

    Release notes

    Sourced from flake8-bugbear's releases.

    22.8.22

    • Add B024: abstract base class with no abstract methods (#273)
    Commits
    • 1007f5c Update version + Change Log for 22.8.22 release
    • 881f054 Merge pull request #274 from jakkdl/abstract_class_no_abstract_methods
    • 4036ee1 Add b024: abstract class with no abstract methods
    • 13e2882 [pre-commit.ci] pre-commit autoupdate (#270)
    • See full diff 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 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)
    dependencies python 
    opened by dependabot[bot] 2
  • Bump flake8-simplify from 0.18.2 to 0.19.1

    Bump flake8-simplify from 0.18.2 to 0.19.1

    Bumps flake8-simplify from 0.18.2 to 0.19.1.

    Changelog

    Sourced from flake8-simplify's changelog.

    0.19.1

    Released on 29.03.2022

    Removed rules due to false-positives:

    • SIM902: Positional-only parameters cannot be identified in the AST
    • SIM908: Ensure that the assigned name is equal to the name in the if.test

    0.19.0

    Released on 28.03.2022

    New rules:

    • SIM902: Use keyword-argument instead of magic boolean
    • SIM903: Use keyword-argument instead of magic number
    • SIM907: Use Optional[Type] instead of Union[Type, None]
    • SIM908: Use ".get" instead of "if X in dict: dict[X]"
    • SIM909: Avoid reflexive assignments

    Removed rules due to false-positives:

    • SIM119: Hinting to dataclasses in a proper way is hard

    Fixed false-positives:

    • SIM108: Encourage the use of a terniary operator only when it is actually possible
    • SIM111: Recommending to use all/any only if there is no side-effect after the for-loop
    • SIM116: When a function is called, we cannot simply convert the if-else block to a dictionary
    Commits

    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 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)
    dependencies python 
    opened by dependabot[bot] 2
  • Bump pydantic from 1.10.3 to 1.10.4

    Bump pydantic from 1.10.3 to 1.10.4

    Bumps pydantic from 1.10.3 to 1.10.4.

    Release notes

    Sourced from pydantic's releases.

    v1.10.4 (2022-12-30)

    Full Changelog: https://github.com/pydantic/pydantic/compare/v1.10.3...v1.10.4

    Changelog

    Sourced from pydantic's changelog.

    v1.10.4 (2022-12-30)

    Commits

    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 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)
    dependencies python 
    opened by dependabot[bot] 1
  • Bump pydantic from 1.10.2 to 1.10.3

    Bump pydantic from 1.10.2 to 1.10.3

    Bumps pydantic from 1.10.2 to 1.10.3.

    Release notes

    Sourced from pydantic's releases.

    v1.10.3 (2022-12-29)

    Full Changelog: https://github.com/pydantic/pydantic/compare/v1.10.2...v1.10.3

    Changelog

    Sourced from pydantic's changelog.

    v1.10.3 (2022-12-29)

    Commits

    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 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)
    dependencies python 
    opened by dependabot[bot] 1
  • Bump pre-commit from 2.20.0 to 2.21.0

    Bump pre-commit from 2.20.0 to 2.21.0

    Bumps pre-commit from 2.20.0 to 2.21.0.

    Release notes

    Sourced from pre-commit's releases.

    pre-commit v2.21.0

    Features

    Fixes

    Changelog

    Sourced from pre-commit's changelog.

    2.21.0 - 2022-12-25

    Features

    Fixes

    Commits
    • 40c5bda v2.21.0
    • bb27ea3 Merge pull request #2642 from rkm/fix/dotnet-nuget-config
    • c38e0c7 dotnet: ignore nuget source during tool install
    • bce513f Merge pull request #2641 from rkm/fix/dotnet-tool-prefix
    • e904628 fix dotnet hooks with prefixes
    • d7b8b12 Merge pull request #2646 from pre-commit/pre-commit-ci-update-config
    • 94b6178 [pre-commit.ci] pre-commit autoupdate
    • b474a83 Merge pull request #2643 from pre-commit/pre-commit-ci-update-config
    • a179808 [pre-commit.ci] pre-commit autoupdate
    • 3aa6206 Merge pull request #2605 from lorenzwalthert/r/fix-exe
    • 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 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)
    dependencies python 
    opened by dependabot[bot] 1
  • Bump coverage from 7.0.0 to 7.0.1

    Bump coverage from 7.0.0 to 7.0.1

    Bumps coverage from 7.0.0 to 7.0.1.

    Changelog

    Sourced from coverage's changelog.

    Version 7.0.1 — 2022-12-23

    • When checking if a file mapping resolved to a file that exists, we weren't considering files in .whl files. This is now fixed, closing issue 1511_.

    • File pattern rules were too strict, forbidding plus signs and curly braces in directory and file names. This is now fixed, closing issue 1513_.

    • Unusual Unicode or control characters in source files could prevent reporting. This is now fixed, closing issue 1512_.

    • The PyPy wheel now installs on PyPy 3.7, 3.8, and 3.9, closing issue 1510_.

    .. _issue 1510: nedbat/coveragepy#1510 .. _issue 1511: nedbat/coveragepy#1511 .. _issue 1512: nedbat/coveragepy#1512 .. _issue 1513: nedbat/coveragepy#1513

    .. _changes_7-0-0:

    Commits
    • c5cda3a docs: releases take a little bit longer now
    • 9d4226e docs: latest sample HTML report
    • 8c77758 docs: prep for 7.0.1
    • da1b282 fix: also look into .whl files for source
    • d327a70 fix: more information when mapping rules aren't working right.
    • 35e249f fix: certain strange characters caused reporting to fail. #1512
    • 152cdc7 fix: don't forbid plus signs in file names. #1513
    • 31513b4 chore: make upgrade
    • 873b059 test: don't run tests on Windows PyPy-3.9
    • 5c5caa2 build: PyPy wheel now installs on 3.7, 3.8, and 3.9. #1510
    • 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 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)
    dependencies python 
    opened by dependabot[bot] 1
  • Bump flake8-builtins from 2.0.1 to 2.1.0

    Bump flake8-builtins from 2.0.1 to 2.1.0

    Bumps flake8-builtins from 2.0.1 to 2.1.0.

    Changelog

    Sourced from flake8-builtins's changelog.

    2.1.0 (2022-12-23)

    • Honor --builtins option from flake8 #73. [gforcada]
    Commits
    • 54c68ee Preparing release 2.1.0
    • a7be720 Merge pull request #99 from gforcada/use-flake8-builtins
    • e4c87b5 Update CHANGES
    • f192d99 feat: take into account --builtins option
    • 1fe5f6e Merge pull request #98 from gforcada/drop-mypy
    • 795672d chore: drop mypy dependencies
    • a7f7f40 chore(ci): drop mypy
    • 09354a2 Merge pull request #97 from gforcada/test-workflows
    • 238dda5 chore(ci): check ubuntu images on GHA
    • cdae7d0 Merge pull request #96 from gforcada/bump-certifi
    • 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 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)
    dependencies python 
    opened by dependabot[bot] 1
  • Bump isort from 5.11.3 to 5.11.4

    Bump isort from 5.11.3 to 5.11.4

    Bumps isort from 5.11.3 to 5.11.4.

    Release notes

    Sourced from isort's releases.

    5.11.4

    Changes

    :package: Dependencies

    Changelog

    Sourced from isort's changelog.

    5.11.4 December 21 2022

    Commits
    • 98390f5 Merge pull request #2059 from PyCQA/version/5.11.4
    • df69a05 Bump version 5.11.4
    • f9add58 Merge pull request #2058 from PyCQA/deps/poetry-1.3.1
    • 36caa91 Bump Poetry 1.3.1
    • 3c2e2d0 Merge pull request #1978 from mgorny/toml-test
    • 45d6abd Remove obsolete toml import from the test suite
    • 3020e0b Merge pull request #2057 from mgorny/poetry-install
    • a6fdbfd Stop installing documentation files to top-level site-packages
    • ff306f8 Fix tag template to match old standard
    • 227c4ae Merge pull request #2052 from hugovk/main
    • 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 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)
    dependencies python 
    opened by dependabot[bot] 1
  • Bump coverage from 7.0.2 to 7.0.3

    Bump coverage from 7.0.2 to 7.0.3

    Bumps coverage from 7.0.2 to 7.0.3.

    Changelog

    Sourced from coverage's changelog.

    Version 7.0.3 — 2023-01-03

    • Fix: when using pytest-cov or pytest-xdist, or perhaps both, the combining step could fail with assert row is not None using 7.0.2. This was due to a race condition that has always been possible and is still possible. In 7.0.1 and before, the error was silently swallowed by the combining code. Now it will produce a message "Couldn't combine data file" and ignore the data file as it used to do before 7.0.2. Closes issue 1522_.

    .. _issue 1522: nedbat/coveragepy#1522

    .. _changes_7-0-2:

    Commits
    • 2ff9098 docs: prep for 7.0.3
    • 1f34d8b fix: race condition on data file shouldn't break combining. #1522
    • 85170bf build: two-step combines for speed
    • 1605f07 mypy: misc.py, test_misc.py
    • 4f3ccf2 refactor: a better way to have maybe-importable third-party modules
    • 98301ed mypy: test_config.py, test_context.py
    • 9d2e1b0 mypy: test_concurrency.py, test_python.py
    • c3ee30c refactor(test): use tmp_path instead of tmpdir
    • 0b05b45 mypy: test_annotate.py test_arcs.py test_collector.py
    • 2090f79 style: better
    • 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 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)
    dependencies python 
    opened by dependabot[bot] 1
Releases(v0.3.0)
  • v0.3.0(Aug 25, 2022)

    What’s changed

    ✨ New features

    • Add tags field in Device model @Maffsie (#178)

    ⬆️ Dependency updates

    Details
    • Bump coverage from 6.3 to 6.3.1 @dependabot (#58)
    • Bump pip from 22.0.2 to 22.0.3 in /.github/workflows @dependabot (#60)
    • Bump release-drafter/release-drafter from 5.17.6 to 5.18.0 @dependabot (#59)
    • Bump actions/setup-python from 2.3.1 to 2.3.2 @dependabot (#62)
    • Bump release-drafter/release-drafter from 5.18.0 to 5.18.1 @dependabot (#61)
    • Bump pytest from 6.2.5 to 7.0.0 @dependabot (#63)
    • Bump pytest-asyncio from 0.17.2 to 0.18.0 @dependabot (#64)
    • Bump poetry from 1.1.12 to 1.1.13 in /.github/workflows @dependabot (#65)
    • Bump flake8-simplify from 0.15.1 to 0.15.2 @dependabot (#67)
    • Bump pytest-asyncio from 0.18.0 to 0.18.1 @dependabot (#66)
    • Bump flake8-simplify from 0.15.2 to 0.17.0 @dependabot (#68)
    • Bump pytest from 7.0.0 to 7.0.1 @dependabot (#69)
    • Bump flake8-simplify from 0.17.0 to 0.17.1 @dependabot (#70)
    • Bump flake8-simplify from 0.17.1 to 0.18.0 @dependabot (#72)
    • Bump coverage from 6.3.1 to 6.3.2 @dependabot (#71)
    • Bump actions/setup-node from 2.5.1 to 3.0.0 @dependabot (#73)
    • Bump flake8-simplify from 0.18.0 to 0.18.1 @dependabot (#74)
    • Bump bandit from 1.7.2 to 1.7.3 @dependabot (#75)
    • Bump actions/setup-python from 2.3.2 to 3 @dependabot (#76)
    • Bump actions/checkout from 2.4.0 to 3 @dependabot (#77)
    • Bump actions/download-artifact from 2.1.0 to 3 @dependabot (#78)
    • Bump pytest-asyncio from 0.18.1 to 0.18.2 @dependabot (#80)
    • Bump actions/upload-artifact from 2.3.1 to 3 @dependabot (#79)
    • Bump bandit from 1.7.3 to 1.7.4 @dependabot (#81)
    • Bump pip from 22.0.3 to 22.0.4 in /.github/workflows @dependabot (#83)
    • Bump release-drafter/release-drafter from 5.18.1 to 5.19.0 @dependabot (#82)
    • Bump flake8-bandit from 2.1.2 to 3.0.0 @dependabot (#84)
    • Bump pyupgrade from 2.31.0 to 2.31.1 @dependabot (#87)
    • Bump pytest from 7.0.1 to 7.1.0 @dependabot (#86)
    • Bump mypy from 0.931 to 0.940 @dependabot (#85)
    • Bump mypy from 0.940 to 0.941 @dependabot (#88)
    • Bump pytest from 7.1.0 to 7.1.1 @dependabot (#89)
    • Bump flake8-bugbear from 22.1.11 to 22.3.20 @dependabot (#90)
    • Bump actions/cache from 2.1.7 to 3 @dependabot (#91)
    • Bump flake8-bugbear from 22.3.20 to 22.3.23 @dependabot (#92)
    • Bump mypy from 0.941 to 0.942 @dependabot (#94)
    • Bump pylint from 2.12.2 to 2.13.0 @dependabot (#93)
    • Bump flake8-simplify from 0.18.1 to 0.18.2 @dependabot (#95)
    • Bump pylint from 2.13.0 to 2.13.2 @dependabot (#96)
    • Bump pytest-asyncio from 0.18.2 to 0.18.3 @dependabot (#97)
    • Bump black from 22.1.0 to 22.3.0 @dependabot (#99)
    • Bump flake8-simplify from 0.18.2 to 0.19.2 @dependabot (#101)
    • Bump pylint from 2.13.2 to 2.13.3 @dependabot (#100)
    • Bump pylint from 2.13.3 to 2.13.4 @dependabot (#102)
    • Bump actions/setup-node from 3.0.0 to 3.1.0 @dependabot (#103)
    • Bump pre-commit from 2.17.0 to 2.18.1 @dependabot (#104)
    • Bump codecov/codecov-action from 2.1.0 to 3 @dependabot (#105)
    • Bump pylint from 2.13.4 to 2.13.5 @dependabot (#106)
    • Bump pre-commit-hooks from 4.1.0 to 4.2.0 @dependabot (#107)
    • Bump actions/stale from 4 to 5 @dependabot (#108)
    • Bump pyupgrade from 2.31.1 to 2.32.0 @dependabot (#109)
    • Bump actions/setup-node from 3.1.0 to 3.1.1 @dependabot (#110)
    • Bump pylint from 2.13.5 to 2.13.7 @dependabot (#111)
    • Bump flake8-bugbear from 22.3.23 to 22.4.25 @dependabot (#114)
    • Bump pytest from 7.1.1 to 7.1.2 @dependabot (#112)
    • Bump github/codeql-action from 1 to 2 @dependabot (#113)
    • Bump flake8-eradicate from 1.2.0 to 1.2.1 @dependabot (#115)
    • Bump mypy from 0.942 to 0.950 @dependabot (#116)
    • Bump pylint from 2.13.7 to 2.13.8 @dependabot (#117)
    • Bump pyupgrade from 2.32.0 to 2.32.1 @dependabot (#118)
    • Bump pre-commit from 2.18.1 to 2.19.0 @dependabot (#119)
    • Bump release-drafter/release-drafter from 5.19.0 to 5.20.0 @dependabot (#120)
    • Bump pip from 22.0.4 to 22.1 in /.github/workflows @dependabot (#121)
    • Bump flake8-comprehensions from 3.8.0 to 3.9.0 @dependabot (#122)
    • Bump coverage from 6.3.2 to 6.3.3 @dependabot (#123)
    • Bump pylint from 2.13.8 to 2.13.9 @dependabot (#124)
    • Bump actions/setup-node from 3.1.1 to 3.2.0 @dependabot (#125)
    • Bump pydantic from 1.9.0 to 1.9.1 @dependabot (#128)
    • Bump flake8-comprehensions from 3.9.0 to 3.10.0 @dependabot (#126)
    • Bump vulture from 2.3 to 2.4 @dependabot (#127)
    • Bump pip from 22.1 to 22.1.1 in /.github/workflows @dependabot (#129)
    • Bump coverage from 6.3.3 to 6.4 @dependabot (#130)
    • Bump mypy from 0.950 to 0.960 @dependabot (#131)
    • Bump pip from 22.1.1 to 22.1.2 in /.github/workflows @dependabot (#132)
    • Bump pylint from 2.13.9 to 2.14.0 @dependabot (#133)
    • Bump pyupgrade from 2.32.1 to 2.34.0 @dependabot (#138)
    • Bump actions/setup-node from 3.2.0 to 3.3.0 @dependabot (#135)
    • Bump mypy from 0.960 to 0.961 @dependabot (#136)
    • Bump pylint from 2.14.0 to 2.14.1 @dependabot (#137)
    • Bump coverage from 6.4 to 6.4.1 @dependabot (#134)
    • Bump pre-commit-hooks from 4.2.0 to 4.3.0 @dependabot (#139)
    • Bump actions/setup-python from 3 to 4 @dependabot (#140)
    • Bump pylint from 2.14.1 to 2.14.2 @dependabot (#141)
    • Bump pylint from 2.14.2 to 2.14.3 @dependabot (#142)
    • Bump flake8-bugbear from 22.4.25 to 22.6.22 @dependabot (#143)
    • Bump black from 22.3.0 to 22.6.0 @dependabot (#144)
    • Bump safety from 1.10.3 to 2.0.0 @dependabot (#145)
    • Bump pylint from 2.14.3 to 2.14.4 @dependabot (#146)
    • Bump aresponses from 2.1.5 to 2.1.6 @dependabot (#147)
    • Bump flake8-bugbear from 22.6.22 to 22.7.1 @dependabot (#149)
    • Bump vulture from 2.4 to 2.5 @dependabot (#148)
    • Bump poetry from 1.1.13 to 1.1.14 in /.github/workflows @dependabot (#150)
    • Bump pyupgrade from 2.34.0 to 2.37.0 @dependabot (#151)
    • Bump pre-commit from 2.19.0 to 2.20.0 @dependabot (#152)
    • Bump yamllint from 1.26.3 to 1.27.1 @dependabot (#153)
    • Bump actions/setup-node from 3.3.0 to 3.4.0 @dependabot (#154)
    • Bump pyupgrade from 2.37.0 to 2.37.1 @dependabot (#155)
    • Bump coverage from 6.4.1 to 6.4.2 @dependabot (#156)
    • Bump actions/setup-node from 3.4.0 to 3.4.1 @dependabot (#157)
    • Bump safety from 2.0.0 to 2.1.0 @dependabot (#158)
    • Bump pylint from 2.14.4 to 2.14.5 @dependabot (#160)
    • Bump pytest-asyncio from 0.18.3 to 0.19.0 @dependabot (#159)
    • Bump safety from 2.1.0 to 2.1.1 @dependabot (#161)
    • Bump pyupgrade from 2.37.1 to 2.37.2 @dependabot (#162)
    • Bump mypy from 0.961 to 0.971 @dependabot (#163)
    • Bump pip from 22.1.2 to 22.2 in /.github/workflows @dependabot (#164)
    • Bump pip from 22.2 to 22.2.1 in /.github/workflows @dependabot (#165)
    • Bump pyupgrade from 2.37.2 to 2.37.3 @dependabot (#166)
    • Bump flake8-simplify from 0.19.2 to 0.19.3 @dependabot (#167)
    • Bump pip from 22.2.1 to 22.2.2 in /.github/workflows @dependabot (#168)
    • Bump coverage from 6.4.2 to 6.4.3 @dependabot (#169)
    • Bump pydantic from 1.9.1 to 1.9.2 @dependabot (#171)
    • Bump flake8-eradicate from 1.2.1 to 1.3.0 @dependabot (#170)
    • Bump release-drafter/release-drafter from 5.20.0 to 5.20.1 @dependabot (#172)
    • Bump coverage from 6.4.3 to 6.4.4 @dependabot (#173)
    • Bump codespell from 2.1.0 to 2.2.1 @dependabot (#174)
    • Bump poetry from 1.1.14 to 1.1.15 in /.github/workflows @dependabot (#175)
    • Bump flake8-bugbear from 22.7.1 to 22.8.23 @dependabot (#177)
    Source code(tar.gz)
    Source code(zip)
  • v0.2.0(Jan 31, 2022)

    What’s changed

    🚨 Breaking changes

    • Stricter typing, Drop Python 3.8 @frenck (#56)

    🐛 Bug fixes

    • Allow client supports to be none values @frenck (#57)

    🚀 Enhancements

    • Stricter typing, Drop Python 3.8 @frenck (#56)

    ⬆️ Dependency updates

    • Bump mypy from 0.920 to 0.921 @dependabot (#30)
    • Bump mypy from 0.921 to 0.930 @dependabot (#31)
    • Bump pre-commit-hooks from 4.0.1 to 4.1.0 @dependabot (#32)
    • Bump pyupgrade from 2.29.1 to 2.30.0 @dependabot (#33)
    • Bump actions/setup-node from 2.5.0 to 2.5.1 @dependabot (#34)
    • Bump pyupgrade from 2.30.0 to 2.30.1 @dependabot (#35)
    • Bump pyupgrade from 2.30.1 to 2.31.0 @dependabot (#36)
    • Bump pydantic from 1.8.2 to 1.9.0 @dependabot (#37)
    • Bump flake8-simplify from 0.14.2 to 0.14.5 @dependabot (#38)
    • Bump mypy from 0.930 to 0.931 @dependabot (#39)
    • Bump flake8-comprehensions from 3.7.0 to 3.8.0 @dependabot (#40)
    • Bump flake8-bugbear from 21.11.29 to 22.1.11 @dependabot (#41)
    • Bump release-drafter/release-drafter from 5.15.0 to 5.16.1 @dependabot (#42)
    • Bump pytest-asyncio from 0.16.0 to 0.17.0 @dependabot (#43)
    • Bump release-drafter/release-drafter from 5.16.1 to 5.17.5 @dependabot (#44)
    • Bump pytest-asyncio from 0.17.0 to 0.17.1 @dependabot (#45)
    • Bump pytest-asyncio from 0.17.1 to 0.17.2 @dependabot (#46)
    • Bump pre-commit from 2.16.0 to 2.17.0 @dependabot (#47)
    • Bump release-drafter/release-drafter from 5.17.5 to 5.17.6 @dependabot (#48)
    • Bump flake8-simplify from 0.14.5 to 0.15.1 @dependabot (#49)
    • Bump bandit from 1.7.1 to 1.7.2 @dependabot (#50)
    • Bump coverage from 6.2 to 6.3 @dependabot (#51)
    • Bump aresponses from 2.1.4 to 2.1.5 @dependabot (#53)
    • Bump pip from 21.3.1 to 22.0.2 in /.github/workflows @dependabot (#52)
    • Bump black from 21.12b0 to 22.1.0 @dependabot (#55)
    • Bump blacken-docs from 1.12.0 to 1.12.1 @dependabot (#54)
    Source code(tar.gz)
    Source code(zip)
  • v0.1.6(Dec 18, 2021)

    What’s changed

    🐛 Bug fixes

    • Fix device created empty string @frenck (#29)

    ⬆️ Dependency updates

    • Bump mypy from 0.910 to 0.920 @dependabot (#28)
    • Bump actions/upload-artifact from 2.3.0 to 2.3.1 @dependabot (#27)
    Source code(tar.gz)
    Source code(zip)
  • v0.1.5(Dec 14, 2021)

  • v0.1.4(Dec 9, 2021)

    What’s changed

    🐛 Bug fixes

    • Make devices -> clientConnectity -> mappingVariesByDestIP optional @frenck (#25)

    ⬆️ Dependency updates

    • Bump black from 21.11b1 to 21.12b0 @dependabot (#22)
    • Bump pylint from 2.12.1 to 2.12.2 @dependabot (#21)
    • Bump actions/download-artifact from 2.0.10 to 2.1.0 @dependabot (#24)
    • Bump actions/upload-artifact from 2.2.4 to 2.3.0 @dependabot (#23)
    Source code(tar.gz)
    Source code(zip)
  • v0.1.3(Dec 1, 2021)

    What’s changed

    🐛 Bug fixes

    • Fix querying all fields @frenck (#18)
    • Fix hair pinning information to be optional @frenck (#19)
    • Fix incorrect default factory on ClientConnectivity model @frenck (#20)

    ⬆️ Dependency updates

    • Bump black from 21.10b0 to 21.11b0 @dependabot (#5)
    • Bump actions/setup-python from 2.2.2 to 2.3.0 @dependabot (#6)
    • Bump black from 21.11b0 to 21.11b1 @dependabot (#7)
    • Bump blacken-docs from 1.11.0 to 1.12.0 @dependabot (#8)
    • Bump actions/cache from 2.1.6 to 2.1.7 @dependabot (#9)
    • Bump pylint from 2.11.1 to 2.12.1 @dependabot (#10)
    • Bump poetry from 1.1.11 to 1.1.12 in /.github/workflows @dependabot (#11)
    • Bump coverage from 6.1.2 to 6.2 @dependabot (#13)
    • Bump flake8-bugbear from 21.9.2 to 21.11.28 @dependabot (#12)
    • Bump flake8-bugbear from 21.11.28 to 21.11.29 @dependabot (#16)
    • Bump actions/setup-node from 2.4.1 to 2.5.0 @dependabot (#15)
    • Bump actions/setup-python from 2.3.0 to 2.3.1 @dependabot (#14)
    • Bump pre-commit from 2.15.0 to 2.16.0 @dependabot (#17)
    Source code(tar.gz)
    Source code(zip)
  • v0.1.2(Nov 16, 2021)

    What’s changed

    🐛 Bug fixes

    • Gracefully handle empty client endpoints @frenck (#4)

    ⬆️ Dependency updates

    • Bump pyupgrade from 2.29.0 to 2.29.1 @dependabot (#3)
    Source code(tar.gz)
    Source code(zip)
  • v0.1.1(Nov 16, 2021)

    What’s changed

    🐛 Bug fixes

    • Fix incorrect mappingVariesByDestIP key @frenck (#1)

    🚀 Enhancements

    • Convert devices list into a dictionary keyed by device ID @frenck (#2)
    Source code(tar.gz)
    Source code(zip)
  • v0.1.0(Nov 15, 2021)

Owner
Franck Nijhof
Slightly assholic at first sight 🤒 Actually a nice guy that just likes to get stuff done. @home-assistant Herder 🏠 @hassio-addons Creator 🚀
Franck Nijhof
Simple library for logging to Loggly

#Hoover A python wrapper used to hit the Loggly. API For more information on Hoover see http://wiki.loggly.com/hooverguide ##Install With this git rep

Hoover Loggly 34 May 19, 2021
Unofficial Meteor Client wiki

Welcome to the Unofficial Meteor Client wiki! Meteor FAQs | A rewritten and better FAQ page. Installation Guide | A guide on how to install Meteor Cli

Anti Cope 0 Feb 21, 2022
PokemonGo-Bot - The Pokemon Go Bot, baking with community.

PokemonGo-Bot PokemonGo-Bot is a project created by the PokemonGoF team. Since no public API available for now, a patch to use HASH-Server was applied

3.8k Jan 08, 2023
Easy & powerful bot to check if your all Telegram bots are working or not. This bot status bot updates every 45 minutes & runs for 24x7 hours.

PowerfulBotStatus-IDN-C-X Easy & powerful bot to check if your all Telegram bots are working or not. This bot status bot updates every 45 minutes & ru

IDNCoderX 5 Oct 06, 2022
Singer Tap for dbt Artifacts built with the Meltano SDK

tap-dbt-artifacts tap-dbt-artifacts is a Singer tap for dbtArtifacts. Built with the Meltano SDK for Singer Taps.

Prratek Ramchandani 9 Nov 25, 2022
Discord Token Finder - Find half of your target's token with just their ID.

Discord Token Finder - Find half of your target's token with just their ID.

Ttawi 2 Apr 07, 2022
Automate TikTok follower bot, like bot, share bot, view bot and more using selenium

Zefoy TikTok Automator Automate TikTok follower bot, like bot, share bot, view bot and more using selenium. Click here to report bugs. Usage Download

555 Dec 30, 2022
A python package for AxisVM

PyAxisVM The package is under development. Follow us on social media, where we'll announce the first release! Overview The PyAxisVM project offers a h

AxisVM - InterCAD 8 Nov 19, 2022
A Bot Upload file|video To Telegram using given Links.

A Bot Upload file|video To Telegram using given Links.

Hash Minner 19 Jan 02, 2023
Unirest in Python: Simplified, lightweight HTTP client library.

Unirest for Python Unirest is a set of lightweight HTTP libraries available in multiple languages, built and maintained by Mashape, who also maintain

Kong 432 Dec 21, 2022
Trading strategy for the Freqtrade crypto bot

NostalgiaForInfinity Trading strategy for the Freqtrade crypto bot Change strategy Add strategies to the user_data/strategies folder and also in the d

iterativ 1.5k Jan 01, 2023
Discord py bot that plays magic the gathering.

Klunker Discord py bot that can play magic the gathering Bug Hunter Hello Bug Hunters. To help out with production of this bot, we need help catching

Aiden Castillo 0 Apr 25, 2022
Change the discord status throught websocket every 5 seconds with an insult

Discord status insult changer Change the discord status throught websocket every 5 seconds with an insult! - pip install httpx - put your tokens in "t

Ѵιcнч 10 Oct 27, 2022
A minimal caching proxy to GitHub's REST & GraphQL APIs

github-proxy A caching forward proxy to GitHub's REST and GraphQL APIs. GitHub-Proxy is a thin, highly extensible, highly configurable python framewor

Babylon Health 26 Oct 05, 2022
Its The Basic Commands Of Termux

Its The Basic Commands Of Termux

ANKIT KUMAR 1 Dec 27, 2021
a script to bulk check usernames on multiple site. includes proxy & threading support.

linked-bulk-checker bulk checks username availability on multiple sites info people have been selling these so i just made one to release dm my discor

krul 9 Sep 20, 2021
A multi-password‌ cracking tool that can help you hack facebook accounts very quickly

FbCracker This is a multi-password‌ cracking tool that can help you hack facebook accounts very quickly. Facebook Hacking Tool Installation On Termux

ReD H4CkeR 9 Nov 16, 2022
A python based all-in-one tool for Google Drive

gdrive-tools A python based all-in-one tool for Google Drive Uses For Gdrive-Tools ✓ generate SA ✓ Add the SA and Add them to TD automatically ✓ Gener

XcodersHub 32 Feb 09, 2022
Jika ada pertanyaan lebih lanjut, hubungi kontak dibawah ini. Terimakasih...

⚡ Lynx Userbot ⚡ Userbot Used for Fun on Telegram, and for Maintianing Your Group. This is a Repo Lynx-Userbot. This is Repo was Created by Axel From

29 Aug 30, 2021
Spotify Top Lists - get the current top lists of a user from the Spotify API and display them in a Flask app

Spotify Top Lists This is a simple script that will get the current top lists of a user from the Spotify API and display them in a Flask app. Requirem

Yasin 0 Oct 16, 2022