Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all minor dependencies #1657

Merged
merged 3 commits into from
Mar 6, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@babel/preset-react (source) 7.22.5 -> 7.23.3 age adoption passing confidence devDependencies minor
@fortawesome/fontawesome-svg-core (source) 6.4.2 -> 6.5.1 age adoption passing confidence dependencies minor
@fortawesome/free-solid-svg-icons (source) 6.4.2 -> 6.5.1 age adoption passing confidence dependencies minor
@testing-library/jest-dom 6.1.5 -> 6.4.2 age adoption passing confidence devDependencies minor
Babel (source) 2.12.1 -> 2.14.0 age adoption passing confidence dependencies minor
Flask-WTF (changelog) 1.1.1 -> 1.2.1 age adoption passing confidence dependencies minor
WTForms (changelog) 3.0.1 -> 3.1.2 age adoption passing confidence dependencies minor
axe-core (source) 4.7.2 -> 4.8.4 age adoption passing confidence devDependencies minor
black (changelog) 23.7.0 -> 23.12.1 age adoption passing confidence test minor
blinker 1.6.2 -> 1.7.0 age adoption passing confidence dependencies minor
certifi 2023.7.22 -> 2023.11.17 age adoption passing confidence dependencies minor
cypress-axe 1.4.0 -> 1.5.0 age adoption passing confidence dependencies minor
freezegun (changelog) 1.2.2 -> 1.4.0 age adoption passing confidence test minor
html-validate (source) 8.7.1 -> 8.11.1 age adoption passing confidence dependencies minor 8.12.0
isort (source, changelog) 5.12.0 -> 5.13.2 age adoption passing confidence test minor
jest (source) 29.6.4 -> 29.7.0 age adoption passing confidence devDependencies minor
jest-environment-jsdom (source) 29.6.4 -> 29.7.0 age adoption passing confidence devDependencies minor
jsrsasign (source) 11.0.0 -> 11.1.0 age adoption passing confidence dependencies minor
moment (source) 2.29.4 -> 2.30.1 age adoption passing confidence dependencies minor
mypy (source, changelog) 1.5.1 -> 1.8.0 age adoption passing confidence test minor
newrelic (source) 8.10.0 -> 8.11.0 age adoption passing confidence dependencies minor
pytest-mock (changelog) 3.11.1 -> 3.12.0 age adoption passing confidence test minor
python ~3.10.8 -> ~3.12.0 age adoption passing confidence dependencies minor
rsa (source) 4.7.2 -> 4.9 age adoption passing confidence dependencies minor
translate-toolkit (source) 3.10.0 -> 3.12.2 age adoption passing confidence dependencies minor
webpack 5.88.2 -> 5.90.3 age adoption passing confidence devDependencies minor

Review

  • Updates have been tested and work
  • If updates are AWS related, versions match the infrastructure (e.g. Lambda runtime, database, etc.)

Release Notes

babel/babel (@​babel/preset-react)

v7.23.3

Compare Source

🐛 Bug Fix
📝 Documentation
🏠 Internal
🏃‍♀️ Performance
🔬 Output optimization
  • babel-plugin-transform-computed-properties

v7.22.15

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-cli, babel-core, babel-generator, babel-helper-builder-binary-assignment-operator-visitor, babel-helper-compilation-targets, babel-helper-create-class-features-plugin, babel-helper-create-regexp-features-plugin, babel-helper-member-expression-to-functions, babel-helper-module-imports, babel-helper-module-transforms, babel-helper-transform-fixture-test-runner, babel-helper-validator-identifier, babel-helper-validator-option, babel-helpers, babel-node, babel-parser, babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression, babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-async-generator-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-classes, babel-plugin-transform-destructuring, babel-plugin-transform-for-of, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-plugin-transform-property-mutators, babel-plugin-transform-react-jsx, babel-plugin-transform-runtime, babel-plugin-transform-typescript, babel-preset-env, babel-preset-flow, babel-preset-react, babel-preset-typescript, babel-register, babel-standalone, babel-template, babel-traverse, babel-types
FortAwesome/Font-Awesome (@​fortawesome/fontawesome-svg-core)

v6.5.1

Compare Source

Change log available at https://fontawesome.com/docs/changelog/

v6.5.0

Compare Source

Change log available at https://fontawesome.com/docs/changelog/

testing-library/jest-dom (@​testing-library/jest-dom)

v6.4.2

Compare Source

Bug Fixes
  • Remove errant export of GetByRoleMatcher, fixing type checking in some TS configurations (#​575) (a93c0c4)

v6.4.1

Compare Source

Bug Fixes
  • Export type TestingLibraryMatchers from "./matchers" (#​576) (dd1c4dd)

v6.4.0

Compare Source

Features

v6.3.0

Compare Source

Features

v6.2.1

Compare Source

Bug Fixes
  • Standalone types for "./matchers" export and add Bun support (#​566) (5675b86)

v6.2.0

Compare Source

Features
  • toHaveAccessibleDescription supports aria-description (#​565) (1fb156c)

v6.1.6

Compare Source

Bug Fixes
python-babel/babel (Babel)

v2.14.0

Compare Source

Upcoming deprecation


* This version, Babel 2.14, is the last version of Babel to support Python 3.7.
  Babel 2.15 will require Python 3.8 or newer.
* We had previously announced Babel 2.13 to have been the last version to support
  Python 3.7, but being able to use CLDR 43 with Python 3.7 was deemed important
  enough to keep supporting the EOL Python version for one more release.

Possibly backwards incompatible changes
  • Locale.number_symbols will now have first-level keys for each numbering system.
    Since the implicit default numbering system still is "latn", what had previously
    been e.g. Locale.number_symbols['decimal'] is now Locale.number_symbols['latn']['decimal'].
  • Babel no longer directly depends on either distutils or setuptools; if you had been
    using the Babel setuptools command extensions, you would need to explicitly depend on setuptools
    though given you're running setup.py you probably already do.

Features


* CLDR/Numbers: Add support of local numbering systems for number symbols by @​kajte in :gh:`1036`
* CLDR: Upgrade to CLDR 43 by @​rix0rrr in :gh:`1043`
* Frontend: Allow last_translator to be passed as an option to extract_message by @​AivGitHub in :gh:`1044`
* Frontend: Decouple `pybabel` CLI frontend from distutils/setuptools by @​akx in :gh:`1041`
* Numbers: Improve parsing of malformed decimals by @​Olunusib and @​akx in :gh:`1042`

Infrastructure
  • Enforce trailing commas (enable Ruff COM rule and autofix) by @​akx in :gh:1045
  • CI: use GitHub output formats by @​akx in :gh:1046

v2.13.1

Compare Source

This is a patch release to fix a few bugs.

Fixes


* Fix a typo in ``_locales_to_names`` by @​Dl84 in :gh:`1038` (issue :gh:`1037`)
* Fix ``setuptools`` dependency for Python 3.12 by @​opryprin in :gh:`1033`

v2.13.0

Compare Source

Upcoming deprecation (reverted)


* It was previously announced that this version, Babel 2.13, would be the last version of
  Babel to support Python 3.7. Babel 2.14 will still support Python 3.7.

Features
~~~~~~~~

* Add flag to ignore POT-Creation-Date for updates by @​joeportela in :gh:`999`
* Support 't' specifier in keywords by @​jeanas in :gh:`1015`
* Add f-string parsing for Python 3.12 (PEP 701) by @​encukou in :gh:`1027`

Fixes
~~~~~

* Various typing-related fixes by @​akx in :gh:`979`, in :gh:`978`, :gh:`981`,  :gh:`983`
* babel.messages.catalog: deduplicate _to_fuzzy_match_key logic by @​akx in :gh:`980`
* Freeze format_time() tests to a specific date to fix test failures by @​mgorny in :gh:`998`
* Spelling and grammar fixes by @​scop in :gh:`1008`
* Renovate lint tools by @​akx in :gh:`1017`, :gh:`1028`
* Use SPDX license identifier by @​vargenau in :gh:`994`
* Use aware UTC datetimes internally by @​scop in :gh:`1009`

New Contributors
~~~~~~~~~~~~~~~~

* @​mgorny made their first contribution in :gh:`998`
* @​vargenau made their first contribution in :gh:`994`
* @​joeportela made their first contribution in :gh:`999`
* @​encukou made their first contribution in :gh:`1027`
dequelabs/axe-core (axe-core)

v4.8.4: Release 4.8.4

Compare Source

This release should not result in different issue numbers. For TypeScript users, an error in type definitions has been corrected. This release could require a correction to how axe-core types are used. This release may change selectors on elements with the xmlns attribute, as the selectors axe-core prosed with those was invalid. Deduplication based on selectors between this and and prior versions of axe-core can fail because of this change.

Bug Fixes

v4.8.3

Compare Source

v4.8.2

Compare Source

v4.8.1

Compare Source

v4.8.0

Compare Source

Consistent Rule Impact

This release changes it so that a rule never changes what impact it reports. To facilitate this while without changing the impact on certain issues, some rules have been split. The following changes were involved:

Other Features
  • deprecate & disable duplicate-id / duplicate-id-active (#​4071) (733c45e)
  • duplicate-id-aria: set to review on fail and tag as wcag412 (#​4075) (9f1a3e3)
  • add EN.301.549 tags to rules (#​4063) (de3da89)
  • checks: enable help-same-as-label, but remove from rules (#​4096) (034038a)
  • new-rule: aria-braille-equivalent finds incorrect uses of aria-braille attributes (#​4107) (6260a2f)
  • page-no-duplicate-banner/contentinfo: deprecate options.nativeScopeFilter, take into ancestors with sectioning roles (#​4105) (c6e07be)
Type Fixes & Improvements

Various improvements were made to the types. Potentially the most impactful of which is that the target and ancestry property now return as UnlabelledFrameSelector instead of as string[], which is incorrect for selectors involving shadow DOM. This may create some issues during migration for any code that has been incorrectly assuming these two properties have the string[] type. For more details and other type changes, see the commit itself:

Bug Fixes
4.7.2 (2023-05-25)
Bug Fixes
4.7.1 (2023-05-15)
Bug Fixes
  • aria-allowed-attr: no inconsistent aria-checked on HTML checkboxes (#​3895) (704043e)
  • aria-allowed-attrs: add aria-expanded to allowed attrs for menuitemcheckbox and menuitemradio (#​3994) (0f405c6)
  • aria-required-children: trigger reviewEmpty with hidden children (#​4012) (a19b6cb)
  • color-contrast: support CSS 4 color spaces (#​4020) (65621c3)
  • link-in-text-block: set links with pseudo-content for review (#​4005) (949f4f8)
psf/black (black)

v23.12.1

Compare Source

Packaging
  • Fixed a bug that included dependencies from the d extra by default (#​4108)

v23.12.0

Compare Source

Highlights

It's almost 2024, which means it's time for a new edition of Black's stable style!
Together with this release, we'll put out an alpha release 24.1a1 showcasing the draft
2024 stable style, which we'll finalize in the January release. Please try it out and
share your feedback.

This release (23.12.0) will still produce the 2023 style. Most but not all of the
changes in --preview mode will be in the 2024 stable style.

Stable style
  • Fix bug where # fmt: off automatically dedents when used with the --line-ranges
    option, even when it is not within the specified line range. (#​4084)
  • Fix feature detection for parenthesized context managers (#​4104)
Preview style
  • Prefer more equal signs before a break when splitting chained assignments (#​4010)
  • Standalone form feed characters at the module level are no longer removed (#​4021)
  • Additional cases of immediately nested tuples, lists, and dictionaries are now
    indented less (#​4012)
  • Allow empty lines at the beginning of all blocks, except immediately before a
    docstring (#​4060)
  • Fix crash in preview mode when using a short --line-length (#​4086)
  • Keep suites consisting of only an ellipsis on their own lines if they are not
    functions or class definitions (#​4066) (#​4103)
Configuration
  • --line-ranges now skips Black's internal stability check in --safe mode. This
    avoids a crash on rare inputs that have many unformatted same-content lines. (#​4034)
Packaging
Integrations

v23.11.0

Compare Source

Highlights
  • Support formatting ranges of lines with the new --line-ranges command-line option
    (#​4020)
Stable style
  • Fix crash on formatting bytes strings that look like docstrings (#​4003)
  • Fix crash when whitespace followed a backslash before newline in a docstring (#​4008)
  • Fix standalone comments inside complex blocks crashing Black (#​4016)
  • Fix crash on formatting code like await (a ** b) (#​3994)
  • No longer treat leading f-strings as docstrings. This matches Python's behaviour and
    fixes a crash (#​4019)
Preview style
  • Multiline dicts and lists that are the sole argument to a function are now indented
    less (#​3964)
  • Multiline unpacked dicts and lists as the sole argument to a function are now also
    indented less (#​3992)
  • In f-string debug expressions, quote types that are visible in the final string are
    now preserved (#​4005)
  • Fix a bug where long case blocks were not split into multiple lines. Also enable
    general trailing comma rules on case blocks (#​4024)
  • Keep requiring two empty lines between module-level docstring and first function or
    class definition (#​4028)
  • Add support for single-line format skip with other comments on the same line (#​3959)
Configuration
  • Consistently apply force exclusion logic before resolving symlinks (#​4015)
  • Fix a bug in the matching of absolute path names in --include (#​3976)
Performance
  • Fix mypyc builds on arm64 on macOS (#​4017)
Integrations
  • Black's pre-commit integration will now run only on git hooks appropriate for a code
    formatter (#​3940)

v23.10.1

Compare Source

Highlights
  • Maintenance release to get a fix out for GitHub Action edge case (#​3957)
Preview style
  • Fix merging implicit multiline strings that have inline comments (#​3956)
  • Allow empty first line after block open before a comment or compound statement (#​3967)
Packaging
  • Change Dockerfile to hatch + compile black (#​3965)
Integrations
  • The summary output for GitHub workflows is now suppressible using the summary
    parameter. (#​3958)
  • Fix the action failing when Black check doesn't pass (#​3957)
Documentation

v23.10.0

Compare Source

Stable style
  • Fix comments getting removed from inside parenthesized strings (#​3909)
Preview style
  • Fix long lines with power operators getting split before the line length (#​3942)
  • Long type hints are now wrapped in parentheses and properly indented when split across
    multiple lines (#​3899)
  • Magic trailing commas are now respected in return types. (#​3916)
  • Require one empty line after module-level docstrings. (#​3932)
  • Treat raw triple-quoted strings as docstrings (#​3947)
Configuration
  • Fix cache versioning logic when BLACK_CACHE_DIR is set (#​3937)
Parser
  • Fix bug where attributes named type were not acccepted inside match statements
    (#​3950)
  • Add support for PEP 695 type aliases containing lambdas and other unusual expressions
    (#​3949)
Output
  • Black no longer attempts to provide special errors for attempting to format Python 2
    code (#​3933)
  • Black will more consistently print stacktraces on internal errors in verbose mode
    (#​3938)
Integrations
  • The action output displayed in the job summary is now wrapped in Markdown (#​3914)

v23.9.1

Compare Source

Due to various issues, the previous release (23.9.0) did not include compiled mypyc
wheels, which make Black significantly faster. These issues have now been fixed, and
this release should come with compiled wheels once again.

There will be no wheels for Python 3.12 due to a bug in mypyc. We will provide 3.12
wheels in a future release as soon as the mypyc bug is fixed.

Packaging
Performance
  • Store raw tuples instead of NamedTuples in Black's cache, improving performance and
    decreasing the size of the cache (#​3877)

v23.9.0

Compare Source

Preview style
  • More concise formatting for dummy implementations (#​3796)
  • In stub files, add a blank line between a statement with a body (e.g an
    if sys.version_info > (3, x):) and a function definition on the same level (#​3862)
  • Fix a bug whereby spaces were removed from walrus operators within subscript(#​3823)
Configuration
  • Black now applies exclusion and ignore logic before resolving symlinks (#​3846)
Performance
  • Avoid importing IPython if notebook cells do not contain magics (#​3782)
  • Improve caching by comparing file hashes as fallback for mtime and size (#​3821)
Blackd
  • Fix an issue in blackd with single character input (#​3558)
Integrations
  • Black now has an
    official pre-commit mirror. Swapping
    https://github.com/psf/black to https://github.com/psf/black-pre-commit-mirror in
    your `.pre-commit-config

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Montreal, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

@github-actions
Copy link

github-actions bot commented Sep 2, 2023

@renovate renovate bot force-pushed the renovate/all-minor branch 5 times, most recently from ed1d008 to 9bcc052 Compare September 12, 2023 13:27
@renovate renovate bot force-pushed the renovate/all-minor branch 4 times, most recently from 7f0ec4b to 9116323 Compare September 13, 2023 18:30
@renovate renovate bot changed the title fix(deps): update all minor dependencies chore(deps): update all minor dependencies Sep 13, 2023
@renovate renovate bot force-pushed the renovate/all-minor branch 7 times, most recently from d8d0070 to c87b2e6 Compare September 19, 2023 07:19
@renovate
Copy link
Contributor Author

renovate bot commented Sep 19, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: poetry.lock
Updating dependencies
Resolving dependencies...

Creating virtualenv notification-admin-3EIkLYcy-py3.12 in /home/ubuntu/.cache/pypoetry/virtualenvs

The current project's supported Python range (>=3.12.0,<3.13.0) is not compatible with some of the required packages Python requirement:
  - notifications-utils requires Python ~3.10, so it will not be satisfied for Python >=3.12.0,<3.13.0
  - notifications-utils requires Python ~3.10, so it will not be satisfied for Python >=3.12.0,<3.13.0

Because notifications-utils (52.1.3) @ git+https://github.com/cds-snc/[email protected] requires Python ~3.10
 and notifications-utils (52.1.3) @ git+https://github.com/cds-snc/[email protected] requires Python ~3.10, version solving failed.

  • Check your dependencies Python requirement: The Python requirement can be specified via the `python` or `markers` properties
    
    For notifications-utils, a possible solution would be to set the `python` property to "<empty>"
    For notifications-utils, a possible solution would be to set the `python` property to "<empty>"

    https://python-poetry.org/docs/dependency-specification/#python-restricted-dependencies,
    https://python-poetry.org/docs/dependency-specification/#using-environment-markers

@renovate renovate bot force-pushed the renovate/all-minor branch 8 times, most recently from 3ef8e0a to 5829957 Compare September 25, 2023 14:48
@renovate renovate bot force-pushed the renovate/all-minor branch 6 times, most recently from f2ea5a3 to be7fe9a Compare February 14, 2024 19:56
@renovate renovate bot force-pushed the renovate/all-minor branch 9 times, most recently from 271230f to 599cb3f Compare February 26, 2024 13:19
@renovate renovate bot force-pushed the renovate/all-minor branch 4 times, most recently from 06ca6d6 to adbbef3 Compare March 4, 2024 20:05
Copy link
Contributor Author

renovate bot commented Mar 5, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@whabanks whabanks merged commit cce6ef1 into main Mar 6, 2024
9 checks passed
@whabanks whabanks deleted the renovate/all-minor branch March 6, 2024 14:52
sastels added a commit that referenced this pull request Mar 6, 2024
sastels added a commit that referenced this pull request Mar 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant