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

fix(deps): update weekly minor updates #676

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@emotion/react (source) 11.13.3 -> 11.14.0 age adoption passing confidence dependencies minor
@emotion/styled (source) 11.13.0 -> 11.14.0 age adoption passing confidence dependencies minor
@fortawesome/fontawesome-svg-core (source) 6.6.0 -> 6.7.2 age adoption passing confidence dependencies minor
@fortawesome/free-solid-svg-icons (source) 6.6.0 -> 6.7.2 age adoption passing confidence dependencies minor
ace-builds 1.36.2 -> 1.37.5 age adoption passing confidence dependencies minor
bidict (changelog) ==0.22.1 -> ==0.23.1 age adoption passing confidence minor
charset-normalizer (changelog) ==3.2 -> ==3.4.1 age adoption passing confidence minor
eslint-plugin-import 2.30.0 -> 2.31.0 age adoption passing confidence devDependencies minor
eslint-plugin-react 7.35.2 -> 7.37.4 age adoption passing confidence devDependencies minor
mikefarah/yq v4.35.1 -> v4.45.1 age adoption passing confidence action minor
nginx 1.25.2-alpine -> 1.27.3-alpine age adoption passing confidence final minor
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence devDependencies minor
pycparser ==2.21 -> ==2.22 age adoption passing confidence minor
python-engineio ==4.6.0 -> ==4.11.2 age adoption passing confidence minor
python-socketio ==5.8.0 -> ==5.12.1 age adoption passing confidence minor
radix-ui (source) 1.0.1 -> 1.1.2 age adoption passing confidence dependencies minor
react-intersection-observer 9.13.1 -> 9.15.1 age adoption passing confidence dependencies minor
react-router-dom (source) 6.26.1 -> 6.28.2 age adoption passing confidence dependencies minor
react-syntax-highlighter 15.5.0 -> 15.6.1 age adoption passing confidence dependencies minor
react-use 17.5.1 -> 17.6.0 age adoption passing confidence dependencies minor
sass 1.78.0 -> 1.83.4 age adoption passing confidence dependencies minor
six ==1.16.0 -> ==1.17.0 age adoption passing confidence minor
socket.io-client (source) 4.7.5 -> 4.8.1 age adoption passing confidence dependencies minor
typescript (source) 5.6.2 -> 5.7.3 age adoption passing confidence devDependencies minor
typescript (source) 5.5.4 -> 5.7.3 age adoption passing confidence devDependencies minor
urllib3 (changelog) ==2.2.2 -> ==2.3.0 age adoption passing confidence minor
vite-plugin-checker ^0.6.0 -> ^0.8.0 age adoption passing confidence devDependencies minor
websocket-client (source) ==1.6.2 -> ==1.8.0 age adoption passing confidence minor

Release Notes

emotion-js/emotion (@​emotion/react)

v11.14.0

Compare Source

Minor Changes
  • #​3284 a19d019 Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.
Patch Changes

v11.13.5

Compare Source

FortAwesome/Font-Awesome (@​fortawesome/fontawesome-svg-core)

v6.7.2

Compare Source

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

v6.7.1

Compare Source

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

v6.7.0

Compare Source

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

ajaxorg/ace-builds (ace-builds)

v1.37.5

Compare Source

v1.37.4

Compare Source

v1.37.3

Compare Source

v1.37.2

Compare Source

v1.37.1

Compare Source

v1.37.0

Compare Source

v1.36.5

Compare Source

v1.36.4

Compare Source

v1.36.3

Compare Source

jab/bidict (bidict)

v0.23.1

Compare Source

Fix a regression in 0.23.0 that could defeat type inference
of a bidict's key type and value type when running in Python 3.8 or 3.9.
:issue:310

v0.23.0

Compare Source

Primarily, this release simplifies bidict by removing minor features
that are no longer necessary or that have little to no apparent usage,
and it also includes some performance optimizations.

Specifically, initializing or updating a bidict
is now up to 70% faster in microbenchmarks.

The changes in this release will also make it easier
to maintain and improve bidict in the future,
including further potential performance optimizations.

It also contains several other improvements.

  • Drop support for Python 3.7,
    which reached end of life on 2023-06-27,
    and take advantage of features available in Python 3.8+.

  • Remove FrozenOrderedBidict now that Python 3.7 is no longer supported.
    :class:~bidict.frozenbidict now provides everything
    that FrozenOrderedBidict provided
    (including :class:reversibility <collections.abc.Reversible>)
    on all supported Python versions,
    but with less space overhead.

  • Remove namedbidict due to low usage.

  • Remove the kv field of :class:~bidict.OnDup
    which specified the :class:~bidict.OnDupAction to take
    in the case of :ref:basic-usage:key and value duplication.
    The :attr:~bidict.OnDup.val field now specifies the action to take
    in the case of
    :ref:basic-usage:key and value duplication
    as well as
    :ref:just value duplication <basic-usage:values must be unique>.

  • Improve type hints for the
    :attr:~bidict.BidictBase.inv shortcut alias
    for :attr:~bidict.BidictBase.inverse.

  • Fix a bug where calls like
    bidict(None), bi.update(False), etc.
    would fail to raise a :class:TypeError.

  • All :meth:~bidict.BidictBase.__init__,
    :meth:~bidict.MutableBidict.update,
    and related methods
    now handle SupportsKeysAndGetItem <https://github.com/python/typeshed/blob/3eb9ff/stdlib/_typeshed/__init__.pyi#L128-L131>__
    objects that are not :class:~collections.abc.Mapping\s
    the same way that MutableMapping.update() <https://github.com/python/cpython/blob/v3.11.5/Lib/_collections_abc.py#L943>__ does,
    before falling back to handling the provided object as an iterable of pairs.

  • The :func:repr of ordered bidicts now matches that of regular bidicts,
    e.g. OrderedBidict({1: 1}) rather than OrderedBidict([(1, 1)]).

    (Accordingly, the bidict.__repr_delegate__ field has been removed
    now that it's no longer needed.)

    This tracks with the change to :class:collections.OrderedDict's :func:repr
    in Python 3.12 <https://github.com/python/cpython/pull/101661>__.

  • Test with Python 3.12 in CI.

    Note: Older versions of bidict also support Python 3.12,
    even though they don't explicitly declare support for it.

  • Drop use of Trove classifiers <https://github.com/pypa/trove-classifiers>__
    that declare support for specific Python versions in package metadata.

jawah/charset_normalizer (charset-normalizer)

v3.4.1

Compare Source

Changed
  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8
Added
  • pre-commit configuration.
  • noxfile.
Removed
  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.
Fixed
  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#​572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+

v3.4.0

Compare Source

Added
  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#​512)
Fixed
  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#​520) (#​509) (#​498) (#​407) (#​537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#​381)

v3.3.2

Compare Source

Fixed
  • Unintentional memory usage regression when using large payload that match several encoding (#​376)
  • Regression on some detection case showcased in the documentation (#​371)
Added
  • Noise (md) probe that identify malformed arabic representation due to the presence of letters in isolated form (credit to my wife)

v3.3.1

Compare Source

Changed
  • Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
  • Improved the general detection reliability based on reports from the community

v3.3.0

Compare Source

Added
  • Allow to execute the CLI (e.g. normalizer) through python -m charset_normalizer.cli or python -m charset_normalizer
  • Support for 9 forgotten encoding that are supported by Python but unlisted in encoding.aliases as they have no alias (#​323)
Removed
  • (internal) Redundant utils.is_ascii function and unused function is_private_use_only
  • (internal) charset_normalizer.assets is moved inside charset_normalizer.constant
Changed
  • (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
  • Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8
Fixed
  • Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in __lt__ (#​350)
import-js/eslint-plugin-import (eslint-plugin-import)

v2.31.0

Compare Source

Added
Fixed
Changed
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.4

Compare Source

Fixed

v7.37.3

Compare Source

Fixed
  • [no-danger][no-danger]: avoid a crash on a nested component name ([#​3833][] @​ljharb)
  • [Fix] types: correct generated type declaration ([#​3840][] @​ocavue)
  • [no-unknown-property][no-unknown-property]: support precedence prop in react 19 ([#​3829][] @​acusti)
  • [prop-types][prop-types]: props missing in validation when using generic types from a namespace import ([#​3859][] @​rbondoc96)
Changed
  • [Tests] [jsx-no-script-url][jsx-no-script-url]: Improve tests ([#​3849][] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types][default-props-match-prop-types], [jsx-boolean-value][jsx-boolean-value], [jsx-curly-brace-presence][jsx-curly-brace-presence], [jsx-no-bind][jsx-no-bind], [no-array-index-key][no-array-index-key], [no-is-mounted][no-is-mounted], [no-render-return-value][no-render-return-value], [require-default-props][require-default-props] ([#​3841][] @​bastiendmt)

Configuration

📅 Schedule: Branch creation - "before 5am on monday" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added dependencies Pull requests that update a dependency file deps: ci-actions deps: minor labels Jul 15, 2024
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch from 6caad75 to 1c4202c Compare July 15, 2024 04:06
@renovate renovate bot changed the title fix(deps): update weekly minor updates chore(deps): update weekly minor updates Jul 15, 2024
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 2 times, most recently from 6d9e641 to 9f84843 Compare July 16, 2024 18:38
@renovate renovate bot changed the title chore(deps): update weekly minor updates fix(deps): update weekly minor updates Jul 16, 2024
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 6 times, most recently from 8e402c2 to 21bcb48 Compare July 22, 2024 05:13
@renovate renovate bot changed the title fix(deps): update weekly minor updates chore(deps): update weekly minor updates Jul 22, 2024
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch from 21bcb48 to f2d6122 Compare July 23, 2024 23:10
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 3 times, most recently from eb8c350 to 27b1e35 Compare August 5, 2024 08:49
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 2 times, most recently from fc36090 to 235d4bb Compare August 21, 2024 15:46
@renovate renovate bot changed the title chore(deps): update weekly minor updates fix(deps): update weekly minor updates Aug 21, 2024
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch from 235d4bb to b19cb4b Compare August 26, 2024 05:03
@renovate renovate bot changed the title fix(deps): update weekly minor updates chore(deps): update weekly minor updates Aug 26, 2024
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 6 times, most recently from 0752d27 to 4f2583f Compare September 9, 2024 03:48
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 6 times, most recently from 7e98918 to 03b758d Compare December 18, 2024 19:37
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 5 times, most recently from 4f2205f to 6b68b43 Compare December 24, 2024 19:41
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 4 times, most recently from a90b45f to c94198c Compare January 4, 2025 05:14
@renovate renovate bot changed the title Update weekly minor updates fix(deps): update weekly minor updates Jan 5, 2025
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 6 times, most recently from e3497df to 699a8ca Compare January 13, 2025 05:21
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 4 times, most recently from aca1a5e to a2cf01a Compare January 16, 2025 17:16
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch 2 times, most recently from e80afaa to 23bec46 Compare January 22, 2025 21:07
@renovate renovate bot force-pushed the renovate/weekly-minor-updates branch from 23bec46 to 316bb63 Compare January 23, 2025 18:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file deps: ci-actions deps: minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants