djangonaut-space / wagtail-indymeet

Djangonaut Space site
MIT License
13 stars 9 forks source link

Bump the dependencies group across 1 directory with 6 updates #401

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the dependencies group with 6 updates in the /requirements directory:

Package From To
django 4.1.13 4.2.13
freezegun 1.4.0 1.5.1
playwright 1.42.0 1.44.0
pytest-playwright 0.4.4 0.5.0
typing-extensions 4.10.0 4.11.0
pre-commit 3.7.0 3.7.1

Updates django from 4.1.13 to 4.2.13

Commits
  • 3bf46e2 [4.2.x] Bumped version for 4.2.13 release.
  • b46b94e [4.2.x] Added release notes for 4.2.13.
  • 1536833 [4.2.x] Post-release version bump.
  • 6193c72 [4.2.x] Bumped version for 4.2.12 release.
  • 3f9c8fc [4.2.x] Added release date for 4.2.12.
  • 256f719 [4.2.x] Reverted "Fixed #34994, Fixed #35386 -- Applied checkbox-row CSS clas...
  • 0fc8326 [4.2.x] Fixed #34994, Fixed #35386 -- Applied checkbox-row CSS class uncondit...
  • 1d85b41 [4.2.x] Refs #35361 -- Clarified release notes for 4.2.12.
  • 27c32cc [4.2.x] Fixed #35361 -- Added release notes for 4.2.12 for backport of b231bc...
  • 0d3ddca [4.2.x] Refs #34900, Refs #35361 -- Fixed SafeMIMEText.set_payload() crash on...
  • Additional commits viewable in compare view


Updates freezegun from 1.4.0 to 1.5.1

Changelog

Sourced from freezegun's changelog.

1.5.1

  • Fix the typing of the tick() method, and improve it's behaviour.

1.5.0

  • The default ignore list now contains the queue-package
  • Added a missing move_to-function when calling freeze_time(tick=True)
  • Fixes a rounding error in time.time_ns()
  • Fixed a bug where the default ignore list could not be empty (configure(default_ignore_list=[]))
  • All tick() methods now return the new datetime (instead of None)
  • Type improvements
Commits
  • 3f9fac4 Increase version number
  • e0f2c3c CHANGELOG for 1.5.1
  • ea054a3 Merge pull request #546 from robsdedude/patch-1
  • df263dc Extend type checking
  • aecc78a Keep numbers for runtime type checks, use float for type hints
  • 023c7a3 Revert runtime type-check to numbers.Real
  • be779f4 Add test for manually ticking StepTickTimeFactory
  • d2872d0 Fix instance checks
  • c963608 Fix tick delta type handling
  • 17ea422 Admin: Release may not need to update version nr
  • Additional commits viewable in compare view


Updates playwright from 1.42.0 to 1.44.0

Release notes

Sourced from playwright's releases.

v1.44.0

New APIs

Accessibility assertions

Locator handler

locator = page.get_by_text("This interstitial covers the button")
page.add_locator_handler(locator, lambda overlay: overlay.locator("#close").click(), times=3, no_wait_after=True)
# Run your tests that can be interrupted by the overlay.
# ...
page.remove_locator_handler(locator)

Miscellaneous options

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124

... (truncated)

Commits
  • 7cc2bc9 chore(roll): roll Playwright to 1.44.0-beta-1715802478000 (#2438)
  • e756233 feat(roll): roll Playwright to v1.44.0 (#2433)
  • 8dc3978 build(deps): bump pytest from 8.1.1 to 8.2.0 (#2422)
  • a053818 test: unflake Firefox tests (#2431)
  • 7bd2c7f build(deps): bump mypy from 1.9.0 to 1.10.0 (#2423)
  • 789a47e build(deps): bump pytest-xdist from 3.5.0 to 3.6.1 (#2421)
  • 5cf07fa build(deps): bump types-pyopenssl from 24.0.0.20240417 to 24.1.0.20240425 (#2...
  • 4ac3b49 build(deps): bump black from 24.4.0 to 24.4.2 (#2419)
  • 27079a1 devops: upgrade EsrpRelease task to v7 (#2429)
  • cb94c25 fix(connect): Future exception was never retrieved on close() (#2427)
  • Additional commits viewable in compare view


Updates pytest-playwright from 0.4.4 to 0.5.0

Release notes

Sourced from pytest-playwright's releases.

v0.5.0

Bugfixes:

Full Changelog: https://github.com/microsoft/playwright-pytest/compare/v0.4.4...v0.5.0

Commits
  • 6d624fc devops: migrate publishing to ESRP (#226)
  • 74ade3e fix: migrate artifacts_folder to session fixture (#223)
  • 40ba0da fix: clean up videos after each test (#221)
  • 2d5a080 feat: support artifact collection with multiple contexts (#216)
  • be0be7c test: enhance test-artifact assertion utility (#218)
  • 3cec62e fix: improve video naming (#217)
  • 1a54e22 devops: delete unused conda_build_config (#214)
  • ac21122 devops: bump GitHub Action workflows (#215)
  • ff4f8e9 chore(deps): bump black from 22.6.0 to 24.3.0 (#212)
  • 6f38e7c chore(deps): bump django from 3.2.24 to 3.2.25 (#211)
  • Additional commits viewable in compare view


Updates typing-extensions from 4.10.0 to 4.11.0

Release notes

Sourced from typing-extensions's releases.

4.11.0

Release 4.11.0 (April 5, 2024)

This feature release provides improvements to various recently added features, most importantly type parameter defaults (PEP 696).

There are no changes since 4.11.0rc1.

Changes since 4.10.0:

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.

4.11.0rc1

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.
Changelog

Sourced from typing-extensions's changelog.

Release 4.11.0 (April 5, 2024)

This feature release provides improvements to various recently added features, most importantly type parameter defaults (PEP 696).

There are no changes since 4.11.0rc1.

Release 4.11.0rc1 (March 24, 2024)

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.
Commits


Updates pre-commit from 3.7.0 to 3.7.1

Release notes

Sourced from pre-commit's releases.

pre-commit v3.7.1

Fixes

Changelog

Sourced from pre-commit's changelog.

3.7.1 - 2024-05-10

Fixes

Commits
  • 9ee0768 v3.7.1
  • eeac061 Merge pull request #3201 from pre-commit/rust-default-language-version
  • 296f592 determine rust default language version independent of rust-toolchain.toml
  • 1602328 Merge pull request #3193 from pre-commit/pre-commit-ci-update-config
  • 0142f45 [pre-commit.ci] pre-commit autoupdate
  • d7e21cd Merge pull request #3194 from pre-commit/handle-readonly-3-12
  • 5c3d006 use a simpler gem for testing additional_dependencies
  • 0d4c6da adjust _handle_readonly for typeshed updates
  • 85fe182 Merge pull request #3176 from pre-commit/pre-commit-ci-update-config
  • 74d05b4 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view


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 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

Superseded by #402.