algorandfoundation / algokit-cli

The Algorand AlgoKit CLI is the one-stop shop tool for developers building on the Algorand network.
MIT License
165 stars 43 forks source link

chore(deps): bump the all group across 1 directory with 6 updates #544

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the all group with 6 updates in the / directory:

Package From To
copier 9.2.0 9.3.1
jsondiff 2.0.0 2.2.0
pyinstaller 6.8.0 6.9.0
ruff 0.4.8 0.5.5
mypy 1.10.0 1.11.0
poethepoet 0.26.1 0.27.0

Updates copier from 9.2.0 to 9.3.1

Release notes

Sourced from copier's releases.

v9.3.1 (2024-07-03)

Fix

  • pass --skip-tasks flag to worker (#1688)

v9.3.0 (2024-07-01)

Feat

  • add simpler migrations configuration syntax (#1510)

Fix

  • tasks: do not consider unsafe if they are being skipped
  • add context information to answer validation error message (#1609)
  • do not overwrite identical files (#1576)
  • updating: unset invalid last answers
  • render default list items for multi-select choice questions
  • updating: yield merge conflict when both template and project add same file
Changelog

Sourced from copier's changelog.

v9.3.1 (2024-07-03)

Fix

  • pass --skip-tasks flag to worker (#1688)

v9.3.0 (2024-07-01)

Feat

  • add simpler migrations configuration syntax (#1510)

Fix

  • tasks: do not consider unsafe if they are being skipped
  • add context information to answer validation error message (#1609)
  • do not overwrite identical files (#1576)
  • updating: unset invalid last answers
  • render default list items for multi-select choice questions
  • updating: yield merge conflict when both template and project add same file
Commits
  • 53f1901 bump: version 9.3.0 → 9.3.1
  • 1035e94 fix: pass --skip-tasks flag to worker (#1688)
  • 3f89b71 build(deps): bump pydantic from 2.7.4 to 2.8.0
  • cc5e3e6 build(deps-dev): bump mkdocs-material from 9.5.27 to 9.5.28
  • 1a444b8 build: recommend pyclean to reduce custom developer tooling (#1673)
  • 448dd4f bump: version 9.2.0 → 9.3.0
  • 98e58d7 style: autoformat with pre-commit
  • ab81b62 ci: enable autofix.ci
  • 798d7aa docs: Fix README callout (#1651)
  • 7bc1548 build(jinja2): update dependency
  • Additional commits viewable in compare view


Updates jsondiff from 2.0.0 to 2.2.0

Release notes

Sourced from jsondiff's releases.

2.2.0

What's Changed

Full Changelog: https://github.com/xlwings/jsondiff/compare/2.1.2...2.2.0

2.1.2

What's Changed

New Contributors

Full Changelog: https://github.com/xlwings/jsondiff/compare/2.1.1...v2.1.2

2.1.1 -- Fix pypi publish

No functional changes since 2.1.0. This fixes the pypi PKG-INFO.

2.1.0

What's Changed

New Contributors

Full Changelog: https://github.com/xlwings/jsondiff/compare/2.0.0...2.1.0

Changelog

Sourced from jsondiff's changelog.

2.2.0 (Jul, 18th 2024)

Exclude a list of paths from diff. by @​payam54 in xlwings/jsondiff#81

2.1.2 (Jul, 14th 2024)

really drop python<=3.7 support by @​kloczek in xlwings/jsondiff#78 Added docstrings by @​payam54 in xlwings/jsondiff#79 remove last bits of python2 support by @​corytodd in xlwings/jsondiff#80

2.1.1 (Jun, 28th 2024)

Fix pypi release readme formatting

2.1.0 (Jun, 28th 2024)

Minimal conversion to pytest+hypothesis by @​mgorny in #52 Added simple equality operator for class Symbol by @​GregoirePelegrin in #55 jsondiff: fix symbol equality by @​corytodd in #61 ci: add pytest workflow by @​corytodd in #63 setup.py: migrate to pyproject.toml by @​corytodd in #65 fix: better diffing of empty containers by @​corytodd in #64 add rightonly jsondiff syntax by @​ramwin in #60 Introduce YAML support by @​corytodd in #67 packaging: revert to requirements files by @​corytodd in #69 cli: handle deserialization errors by @​corytodd in #72 ci: upload to pypi on github release by @​corytodd in #77

Commits


Updates pyinstaller from 6.8.0 to 6.9.0

Release notes

Sourced from pyinstaller's releases.

v6.9.0

Please see the v6.9.0 section of the changelog for a list of the changes since v6.8.0.

Changelog

Sourced from pyinstaller's changelog.

6.9.0 (2024-07-06)

Bugfix


* (Windows) Work around the problem with ``libgcc_s_dw2-1.dll`` and
  ``libwinpthread-1.dll`` DLLs files not being removed from application's
  temporary directory when building splash-screen-enabled onefile
  application with 32-bit msys2/mingw32 environment. (:issue:`8587`)
* (Windows) Work around the problem with ``VCRUNTIME140.dll`` DLL file not
  being removed from application's temporary directory when building
  splash-screen-enabled onefile application with UPX enabled. (:issue:`7106`)
* Re-allow ``hiddenimports`` with hyphenated names during Analysis (was blocked
  in v6.8.0) (:issue:`8601`)

Hooks


* Add work-around for incompatibility between ``scipy`` and ``numpy`` 2.0.0
  (the ``ModuleNotFoundError: No module named 'numpy.f2py'`` error).
  (:issue:`8622`)
* Update ``django`` hook to account for possibility of the deprecated
  ``DEFAULT_FILE_STORAGE`` setting being set to ``None``. (:issue:`8633`)
* Update ``scipy`` hooks for compatibility with ``scipy`` 1.14.0.
  (:issue:`8622`)

Bootloader
</code></pre>
<ul>
<li>(Windows) Implement last-ditch attempt at force-unloading bundled DLLs
from onefile parent process: if onefile application fails to remove its
temporary directory, it now iterates over all DLLs loaded in the process,
identifies the ones that originate from its temporary directory, and
attempts to force-unload them, before trying to remove the temporary
directory again. This should work around for issues with Tcl/Tk DLLs
used by splash screen, which may load additional DLLs, and fail to
automatically unload them when they are unloaded themselves. (:issue:<code>8587</code>)</li>
<li>Fix the order in which Tcl and Tk shared library are unloaded from the
splash-screen enabled frozen application, to prevent the process from
crashing during application cleanup (observed on Windows). (:issue:<code>8587</code>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/c7ee9de026c2ed2bf34fc5857347b903baf284c2"><code>c7ee9de</code></a> Release v6.9.0. [skip ci]</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/952e69660b69be199c4759b1d65ad831de7b7370"><code>952e696</code></a> hooks: django: fix deprecated DEFAULT_FILE_STORAGE can be None (<a href="https://redirect.github.com/pyinstaller/pyinstaller/issues/8633">#8633</a>)</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/06ab88d7090f4fa338e494b8f08eba2b3f3d648a"><code>06ab88d</code></a> Tests: Requirements: Scheduled weekly dependency update for week 26 (<a href="https://redirect.github.com/pyinstaller/pyinstaller/issues/8636">#8636</a>)</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/5ff9bd2c9d3b433d4b8bc98d8ed846217ac42621"><code>5ff9bd2</code></a> ci: lint: use &quot;ruff check &lt;path&gt;&quot;</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/070c6ea5634388a5abadc53fa7e064c56b630897"><code>070c6ea</code></a> tests: bump numpy to 2.0.0 and scipy to 1.14.0</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/5504816f50fe8fa79434e5f6159579ba3e20e7ff"><code>5504816</code></a> hooks: scipy: add work-around for numpy 2.0.0</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/f90362e7b4d35c01f587a91575e507530e2e9331"><code>f90362e</code></a> hooks: update scipy hooks for compatibility with scipy 1.14.0</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/d56719548452cda8f69c2ede5050eaf226f0c185"><code>d567195</code></a> tests: replace existing scipy tests with per-module import tests</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/c2488c989d23595ad21f3ad5fff90bb982dc538c"><code>c2488c9</code></a> tests: xfail scipy tests only with python 3.12.0</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/3b0e533231b5bd0cbc982ec32afef570a8921f92"><code>3b0e533</code></a> hookutils: copy_metadata: proper error message for zipped eggs</li>
<li>Additional commits viewable in <a href="https://github.com/pyinstaller/pyinstaller/compare/v6.8.0...v6.9.0">compare view</a></li>
</ul>
</details>

<br />
Updates `ruff` from 0.4.8 to 0.5.5
Release notes

Sourced from ruff's releases.

0.5.5

Release Notes

Preview features

  • [fastapi] Implement fastapi-redundant-response-model (FAST001) and fastapi-non-annotated-dependency(FAST002) (#11579)
  • [pydoclint] Implement docstring-missing-exception (DOC501) and docstring-extraneous-exception (DOC502) (#11471)

Rule changes

  • [numpy] Fix NumPy 2.0 rule for np.alltrue and np.sometrue (#12473)
  • [numpy] Ignore NPY201 inside except blocks for compatibility with older numpy versions (#12490)
  • [pep8-naming] Avoid applying ignore-names to self and cls function names (N804, N805) (#12497)

Formatter

  • Fix incorrect placement of leading function comment with type params (#12447)

Server

  • Do not bail code action resolution when a quick fix is requested (#12462)

Bug fixes

  • Fix Ord implementation of cmp_fix (#12471)
  • Raise syntax error for unparenthesized generator expression in multi-argument call (#12445)
  • [pydoclint] Fix panic in DOC501 reported in #12428 (#12435)
  • [flake8-bugbear] Allow singleton tuples with starred expressions in B013 (#12484)

Documentation

  • Add Eglot setup guide for Emacs editor (#12426)
  • Add note about the breaking change in nvim-lspconfig (#12507)
  • Add note to include notebook files for native server (#12449)
  • Add setup docs for Zed editor (#12501)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.5.5

Preview features

  • [fastapi] Implement fastapi-redundant-response-model (FAST001) and fastapi-non-annotated-dependency(FAST002) (#11579)
  • [pydoclint] Implement docstring-missing-exception (DOC501) and docstring-extraneous-exception (DOC502) (#11471)

Rule changes

  • [numpy] Fix NumPy 2.0 rule for np.alltrue and np.sometrue (#12473)
  • [numpy] Ignore NPY201 inside except blocks for compatibility with older numpy versions (#12490)
  • [pep8-naming] Avoid applying ignore-names to self and cls function names (N804, N805) (#12497)

Formatter

  • Fix incorrect placement of leading function comment with type params (#12447)

Server

  • Do not bail code action resolution when a quick fix is requested (#12462)

Bug fixes

  • Fix Ord implementation of cmp_fix (#12471)
  • Raise syntax error for unparenthesized generator expression in multi-argument call (#12445)
  • [pydoclint] Fix panic in DOC501 reported in #12428 (#12435)
  • [flake8-bugbear] Allow singleton tuples with starred expressions in B013 (#12484)

Documentation

  • Add Eglot setup guide for Emacs editor (#12426)
  • Add note about the breaking change in nvim-lspconfig (#12507)
  • Add note to include notebook files for native server (#12449)
  • Add setup docs for Zed editor (#12501)

0.5.4

Rule changes

  • [ruff] Rename RUF007 to zip-instead-of-pairwise (#12399)

Bug fixes

  • [flake8-builtins] Avoid shadowing diagnostics for @override methods (#12415)
  • [flake8-comprehensions] Insert parentheses for multi-argument generators (#12422)
  • [pydocstyle] Handle escaped docstrings within docstring (D301) (#12192)

Documentation

  • Fix GitHub link to Neovim setup (#12410)

... (truncated)

Commits
  • fc16d8d Bump version to 0.5.5 (#12510)
  • 175e5d7 Add missing traceback line in f-string-in-exception docstring. (#12508)
  • c03f257 Add note about the breaking change in nvim-lspconfig (#12507)
  • 6bbb4a2 Add setup docs for Zed editor (#12501)
  • 2ce3e3a Fix the search path tests on MacOS (#12503)
  • 2a64ccc Avoid applying ignore-names to self and cls function names (#12497)
  • 928ffd6 Ignore NPY201 inside except blocks for compatibility with older numpy ver...
  • e52be09 [red-knot] Improve validation for search paths (#12376)
  • 8890735 [flake8-bugbear] Allow singleton tuples with starred expressions in B013 (#12...
  • eac965e [red-knot] Watch search paths (#12407)
  • Additional commits viewable in compare view

Updates `mypy` from 1.10.0 to 1.11.0
Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.11

We’ve just uploaded mypy 1.11 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Support Python 3.12 Syntax for Generics (PEP 695)

Mypy now supports the new type parameter syntax introduced in Python 3.12 (PEP 695). This feature is still experimental and must be enabled with the --enable-incomplete-feature=NewGenericSyntax flag, or with enable_incomplete_feature = NewGenericSyntax in the mypy configuration file. We plan to enable this by default in the next mypy feature release.

This example demonstrates the new syntax:

# Generic function
def f[T](https://github.com/python/mypy/blob/master/x: T) -> T: ...

reveal_type(f(1)) # Revealed type is 'int'

Generic class

class C[T]: def init(self, x: T) -> None: self.x = x

c = C('a') reveal_type(c.x) # Revealed type is 'str'

Type alias

type A[T] = C[list[T]]

This feature was contributed by Jukka Lehtosalo.

Support for functools.partial

Mypy now type checks uses of functools.partial. Previously mypy would accept arbitrary arguments.

This example will now produce an error:

from functools import partial
</tr></table> 

... (truncated)

Commits

Updates `poethepoet` from 0.26.1 to 0.27.0
Release notes

Sourced from poethepoet's releases.

0.27.0

Enhancements

Fixes

New Contributors

Full Changelog: https://github.com/nat-n/poethepoet/compare/v0.26.1...v0.27.0

Commits

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-automerge-start) [//]: # (dependabot-automerge-end) ---
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 1 month ago

Looks like these dependencies are updatable in another way, so this is no longer needed.