devsoc-unsw / structs.sh

An educational data structures and algorithms platform.
https://structs.sh
MIT License
27 stars 7 forks source link

chore(deps): update weekly minor updates #676

Open renovate[bot] opened 2 months ago

renovate[bot] commented 2 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
bidict (changelog) ==0.22.1 -> ==0.23.1 age adoption passing confidence minor
charset-normalizer ==3.2 -> ==3.3.2 age adoption passing confidence minor
eslint-plugin-react 7.35.2 -> 7.36.1 age adoption passing confidence devDependencies minor
mikefarah/yq v4.35.1 -> v4.44.3 age adoption passing confidence action minor
nginx 1.25.2-alpine -> 1.27.1-alpine age adoption passing confidence final minor
pycparser ==2.21 -> ==2.22 age adoption passing confidence minor
python-engineio ==4.6.0 -> ==4.9.1 age adoption passing confidence minor
python-socketio ==5.8.0 -> ==5.11.4 age adoption passing confidence minor
typescript (source) 5.5.4 -> 5.6.2 age adoption passing confidence devDependencies 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

jab/bidict (bidict) ### [`v0.23.1`](https://redirect.github.com/jab/bidict/blob/HEAD/CHANGELOG.rst#0231-2024-02-18) [Compare Source](https://redirect.github.com/jab/bidict/compare/v0.23.0...v0.23.1) 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`](https://redirect.github.com/jab/bidict/blob/HEAD/CHANGELOG.rst#0230-2024-02-14) [Compare Source](https://redirect.github.com/jab/bidict/compare/v0.22.1...v0.23.0) 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 `) 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 `. - 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 `\__ objects that are not :class:`~collections.abc.Mapping`\s the same way that `MutableMapping.update() `\__ 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 `\__. - 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 `\__ that declare support for specific Python versions in package metadata.
Ousret/charset_normalizer (charset-normalizer) ### [`v3.3.2`](https://redirect.github.com/Ousret/charset_normalizer/blob/HEAD/CHANGELOG.md#332-2023-10-31) [Compare Source](https://redirect.github.com/Ousret/charset_normalizer/compare/3.3.1...3.3.2) ##### Fixed - Unintentional memory usage regression when using large payload that match several encoding ([#​376](https://redirect.github.com/Ousret/charset_normalizer/issues/376)) - Regression on some detection case showcased in the documentation ([#​371](https://redirect.github.com/Ousret/charset_normalizer/issues/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`](https://redirect.github.com/Ousret/charset_normalizer/blob/HEAD/CHANGELOG.md#331-2023-10-22) [Compare Source](https://redirect.github.com/Ousret/charset_normalizer/compare/3.3.0...3.3.1) ##### 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`](https://redirect.github.com/Ousret/charset_normalizer/blob/HEAD/CHANGELOG.md#330-2023-09-30) [Compare Source](https://redirect.github.com/Ousret/charset_normalizer/compare/3.2.0...3.3.0) ##### 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](https://redirect.github.com/Ousret/charset_normalizer/issues/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.7 ##### Fixed - Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in \__lt\_\_ ([#​350](https://redirect.github.com/Ousret/charset_normalizer/issues/350))
jsx-eslint/eslint-plugin-react (eslint-plugin-react) ### [`v7.36.1`](https://redirect.github.com/jsx-eslint/eslint-plugin-react/blob/HEAD/CHANGELOG.md#7361---20240912) [Compare Source](https://redirect.github.com/jsx-eslint/eslint-plugin-react/compare/v7.36.0...v7.36.1) ##### Fixed - \[`no-is-mounted`]: fix logic in method name check ([#​3821][] [@​Mathias-S](https://redirect.github.com/Mathias-S)) - \[`jsx-no-literals`]: Avoid crashing on valueless boolean props ([#​3823][] [@​reosarevok](https://redirect.github.com/reosarevok)) [7.36.1]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/compare/v7.36.0...v7.36.1 [#​3823]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3823 [#​3821]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3821 ### [`v7.36.0`](https://redirect.github.com/jsx-eslint/eslint-plugin-react/blob/HEAD/CHANGELOG.md#7360---20240912) [Compare Source](https://redirect.github.com/jsx-eslint/eslint-plugin-react/compare/v7.35.2...v7.36.0) ##### Added - \[`no-string-refs`]: allow this.refs in > 18.3.0 ([#​3807][] [@​henryqdineen](https://redirect.github.com/henryqdineen)) - \[`jsx-no-literals`] Add `elementOverrides` option and the ability to ignore this rule on specific elements ([#​3812][] [@​Pearce-Ropion](https://redirect.github.com/Pearce-Ropion)) - \[`forward-ref-uses-ref`]: add rule for checking ref parameter is added (\[[#​3667](https://redirect.github.com/jsx-eslint/eslint-plugin-react/issues/3667)]\[] [@​NotWoods](https://redirect.github.com/NotWoods)) ##### Fixed - \[`function-component-definition`], \[`boolean-prop-naming`], \[`jsx-first-prop-new-line`], \[`jsx-props-no-multi-spaces`], `propTypes`: use type args ([#​3629][] [@​HenryBrown0](https://redirect.github.com/HenryBrown0)) - JSX pragma: fail gracefully ([#​3632][] [@​ljharb](https://redirect.github.com/ljharb)) - \[`jsx-props-no-spreading`]: add `explicitSpread` option to schema ([#​3799][] [@​ljharb](https://redirect.github.com/ljharb)) ##### Changed - \[Tests] add [@​typescript-eslint/parser](https://redirect.github.com/typescript-eslint/parser) v6 ([#​3629][] [@​HenryBrown0](https://redirect.github.com/HenryBrown0)) - \[Tests] add [@​typescript-eslint/parser](https://redirect.github.com/typescript-eslint/parser) v7 and v8 ([#​3629][] [@​hampustagerud](https://redirect.github.com/hampustagerud)) - \[Docs] \[`no-danger`]: update broken link ([#​3817][] [@​lucasrmendonca](https://redirect.github.com/lucasrmendonca)) - \[types] add jsdoc type annotations ([#​3731][] [@​y-hsgw](https://redirect.github.com/y-hsgw)) - \[Tests] `button-has-type`: add test case with spread ([#​3731][] [@​y-hsgw](https://redirect.github.com/y-hsgw)) [7.36.0]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/compare/v7.35.2...v7.36.0 [#​3799]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/issues/3799 [#​3632]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/issues/3632 [#​3812]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3812 [#​3731]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3731 [#​3694]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3667 [#​3629]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3629 [#​3817]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3817 [#​3807]: https://redirect.github.com/jsx-eslint/eslint-plugin-react/pull/3807
mikefarah/yq (mikefarah/yq) ### [`v4.44.3`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.44.3) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.44.2...v4.44.3) - Fixed upper-case file extension detection, Thanks [@​ryenus](https://redirect.github.com/ryenus) ([#​2121](https://redirect.github.com/mikefarah/yq/issues/2121)) - Log printing follow no-colors flag [#​2082](https://redirect.github.com/mikefarah/yq/issues/2082) - Skip and warn when interpolating strings and theres a unclosed bracket [#​2083](https://redirect.github.com/mikefarah/yq/issues/2083) - Fixed CSV content starting with # issue [#​2076](https://redirect.github.com/mikefarah/yq/issues/2076) - Bumped dependencies ### [`v4.44.2`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.44.2) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.44.1...v4.44.2) - Handle numbers with underscores [#​2039](https://redirect.github.com/mikefarah/yq/issues/2039) - Unique now works on maps and arrays [#​2068](https://redirect.github.com/mikefarah/yq/issues/2068) - Added support for short hand splat with env\[] expression [#​2071](https://redirect.github.com/mikefarah/yq/issues/2071), as well as many other operators (split,select,eval,pick..) - Bumped dependencies ### [`v4.44.1`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.44.1): - min/max/pivot! [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.43.1...v4.44.1) - Added min/max operators ([#​1992](https://redirect.github.com/mikefarah/yq/issues/1992)) Thanks [@​mbenson](https://redirect.github.com/mbenson) - Added pivot oeprator ([#​1993](https://redirect.github.com/mikefarah/yq/issues/1993)) Thanks [@​mbenson](https://redirect.github.com/mbenson) - Fix: shell-completion ([#​2006](https://redirect.github.com/mikefarah/yq/issues/2006)) Thanks [@​codekow](https://redirect.github.com/codekow) - Handle escaped backslashes ([#​1997](https://redirect.github.com/mikefarah/yq/issues/1997)) Thanks [@​mbenson](https://redirect.github.com/mbenson) - Fix npe when given filename ending with "." ([#​1994](https://redirect.github.com/mikefarah/yq/issues/1994)) - Fix: linux (w/ selinux) build ([#​2004](https://redirect.github.com/mikefarah/yq/issues/2004)) Thanks [@​codekow](https://redirect.github.com/codekow) - Bumped dependencies ### [`v4.43.1`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.43.1) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.42.1...v4.43.1) - Added omit operator [#​1989](https://redirect.github.com/mikefarah/yq/issues/1989) thanks [@​mbenson](https://redirect.github.com/mbenson)! - Can now multiply strings by numbers [#​1988](https://redirect.github.com/mikefarah/yq/issues/1988) thanks [@​mbenson](https://redirect.github.com/mbenson)! - Added tostring [#​72](https://redirect.github.com/mikefarah/yq/issues/72) - Added string interpolation [#​1149](https://redirect.github.com/mikefarah/yq/issues/1149) - Can specify parent(n) levels [#​1970](https://redirect.github.com/mikefarah/yq/issues/1970) - Fixed CSV line break issue [#​1974](https://redirect.github.com/mikefarah/yq/issues/1974) - Adding a EvaluateAll function to StringEvaluator [#​1966](https://redirect.github.com/mikefarah/yq/issues/1966) - yqlib, default to colors off when using yaml library [#​1964](https://redirect.github.com/mikefarah/yq/issues/1964) - Removed JSON output warning - Bumped dependencies ### [`v4.42.1`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.42.1) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.41.1...v4.42.1) - Can execute yq expression files directly with shebang [#​1851](https://redirect.github.com/mikefarah/yq/issues/1851) - Added --csv-separator flag [#​1950](https://redirect.github.com/mikefarah/yq/issues/1950) - Added --properties-separator option - thanks [@​learnitall](https://redirect.github.com/learnitall) [#​1864](https://redirect.github.com/mikefarah/yq/issues/1864) - Added --properties-array-brackets flag for properties encoder [#​1933](https://redirect.github.com/mikefarah/yq/issues/1933) - Shell completion improvements - thanks [@​scop](https://redirect.github.com/scop) [#​1911](https://redirect.github.com/mikefarah/yq/issues/1911) - Bumped dependencies ### [`v4.41.1`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.41.1) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.40.7...v4.41.1) - Can now comment in yq expressions! [#​1919](https://redirect.github.com/mikefarah/yq/issues/1919) - Added new CSV option to turn off auto-parsing [#​1947](https://redirect.github.com/mikefarah/yq/issues/1947) - Can now retrieve the alias names of merge anchors [#​1942](https://redirect.github.com/mikefarah/yq/issues/1942) - Fixed Toml decoding when table array defined before parent [#​1922](https://redirect.github.com/mikefarah/yq/issues/1922) - Fixing with_entries context [#​1925](https://redirect.github.com/mikefarah/yq/issues/1925) ### [`v4.40.7`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.40.7) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.40.6...v4.40.7) - Fix: empty TOML table [#​1924](https://redirect.github.com/mikefarah/yq/issues/1924) - Thanks [@​elibroftw](https://redirect.github.com/elibroftw) - Fixed "all" error message [#​1845](https://redirect.github.com/mikefarah/yq/issues/1845) - Fixed to_entries\[] [#​1246](https://redirect.github.com/mikefarah/yq/issues/1246) - Bumped dependencies ### [`v4.40.6`](https://redirect.github.com/mikefarah/yq/compare/v4.40.5...v4.40.6) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.40.5...v4.40.6) ### [`v4.40.5`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.40.5) [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.40.4...v4.40.5) - Fixing seg fault on bad XML [#​1888](https://redirect.github.com/mikefarah/yq/issues/1888) - Fixed handling of --- [#​1890](https://redirect.github.com/mikefarah/yq/issues/1890), [#​1896](https://redirect.github.com/mikefarah/yq/issues/1896) - Bumped dependencies ### [`v4.40.4`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.40.4): - Fixed bug with creating maps with values based off keys [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.40.3...v4.40.4) - Fixed bug with creating maps with values based off keys [#​1886](https://redirect.github.com/mikefarah/yq/issues/1886), [#​1889](https://redirect.github.com/mikefarah/yq/issues/1889) - Bumped dependencies ### [`v4.40.3`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.40.3): - Fixes JSON empty array bug [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.40.2...v4.40.3) - Fixed JSON output issue with empty arrays [#​1880](https://redirect.github.com/mikefarah/yq/issues/1880) ### [`v4.40.2`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.40.2): - Official [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.40.1...v4.40.2) Thank you for all your support! I've fixed some of the issues that were kindly raised :) Happy to make the release official! - Do not panic when StdIn is closed ([#​1867](https://redirect.github.com/mikefarah/yq/issues/1867)) Thanks [@​aleskandro](https://redirect.github.com/aleskandro)! - Fixed issue when update against self [#​1869](https://redirect.github.com/mikefarah/yq/issues/1869) - Fixed multi doc anchor bug [#​1861](https://redirect.github.com/mikefarah/yq/issues/1861) - Fixes doc line separator issue when reading expression file [#​1860](https://redirect.github.com/mikefarah/yq/issues/1860) - Bumped dependencies ### [`v4.40.1`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.40.1): - Engine refactor [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.35.2...v4.40.1) I've done some overdue work on refactoring the core engine - pulling out the dependency on go-yaml. There are a couple of slight output changes (whitespace / document separators) in some niche scenarios - I think they are improvements, Bit nervous on releasing this, but all the tests are passing and I've added more tests! Love some early feedback :) - Added tonumber support - Added kind operator - Lua output fixes ([#​1811](https://redirect.github.com/mikefarah/yq/issues/1811)) - Thanks [@​Zash](https://redirect.github.com/Zash)! - Add support for Lua input ([#​1810](https://redirect.github.com/mikefarah/yq/issues/1810)) - Thanks [@​Zash](https://redirect.github.com/Zash)! - Bumped dependencies ### [`v4.35.2`](https://redirect.github.com/mikefarah/yq/releases/tag/v4.35.2): - Minor fixes [Compare Source](https://redirect.github.com/mikefarah/yq/compare/v4.35.1...v4.35.2) - Fix various typos [#​1798](https://redirect.github.com/mikefarah/yq/issues/1798) - Fixed number parsing as float bug in JSON [#​1756](https://redirect.github.com/mikefarah/yq/issues/1756) - Fixed string, null concatenation consistency [#​1712](https://redirect.github.com/mikefarah/yq/issues/1712) - Fixed expression parsing issue [#​1711](https://redirect.github.com/mikefarah/yq/issues/1711) - Bumped dependencies
eliben/pycparser (pycparser) ### [`v2.22`](https://redirect.github.com/eliben/pycparser/compare/release_v2.21...release_v2.22) [Compare Source](https://redirect.github.com/eliben/pycparser/compare/release_v2.21...release_v2.22)
miguelgrinberg/python-engineio (python-engineio) ### [`v4.9.1`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.9.1): Release 4.9.1 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.9.0...v4.9.1) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes. ### [`v4.9.0`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.9.0): Release 4.9.0 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.8.2...v4.9.0) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes. ### [`v4.8.2`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.8.2): Release 4.8.2 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.8.1...v4.8.2) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes. ### [`v4.8.1`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.8.1): Release 4.8.1 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.8.0...v4.8.1) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes. ### [`v4.8.0`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.8.0): Release 4.8.0 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.7.1...v4.8.0) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes. ### [`v4.7.1`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.7.1): Release 4.7.1 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.7.0...v4.7.1) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes. ### [`v4.7.0`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.7.0): Release 4.7.0 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.6.1...v4.7.0) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes. ### [`v4.6.1`](https://redirect.github.com/miguelgrinberg/python-engineio/releases/tag/v4.6.1): Release 4.6.1 [Compare Source](https://redirect.github.com/miguelgrinberg/python-engineio/compare/v4.6.0...v4.6.1) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md) for release notes.
miguelgrinberg/python-socketio (python-socketio) ### [`v5.11.4`](https://redirect.github.com/miguelgrinberg/python-socketio/releases/tag/v5.11.4): Release 5.11.4 [Compare Source](https://redirect.github.com/miguelgrinberg/python-socketio/compare/v5.11.3...v5.11.4) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) for release notes. ### [`v5.11.3`](https://redirect.github.com/miguelgrinberg/python-socketio/releases/tag/v5.11.3): Release 5.11.3 [Compare Source](https://redirect.github.com/miguelgrinberg/python-socketio/compare/v5.11.2...v5.11.3) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) for release notes. ### [`v5.11.2`](https://redirect.github.com/miguelgrinberg/python-socketio/releases/tag/v5.11.2): Release 5.11.2 [Compare Source](https://redirect.github.com/miguelgrinberg/python-socketio/compare/v5.11.1...v5.11.2) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) for release notes. ### [`v5.11.1`](https://redirect.github.com/miguelgrinberg/python-socketio/releases/tag/v5.11.1): Release 5.11.1 [Compare Source](https://redirect.github.com/miguelgrinberg/python-socketio/compare/v5.11.0...v5.11.1) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) for release notes. ### [`v5.11.0`](https://redirect.github.com/miguelgrinberg/python-socketio/releases/tag/v5.11.0): Release 5.11.0 [Compare Source](https://redirect.github.com/miguelgrinberg/python-socketio/compare/v5.10.0...v5.11.0) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) for release notes. ### [`v5.10.0`](https://redirect.github.com/miguelgrinberg/python-socketio/releases/tag/v5.10.0): Release 5.10.0 [Compare Source](https://redirect.github.com/miguelgrinberg/python-socketio/compare/v5.9.0...v5.10.0) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) for release notes. ### [`v5.9.0`](https://redirect.github.com/miguelgrinberg/python-socketio/releases/tag/v5.9.0): Release 5.9.0 [Compare Source](https://redirect.github.com/miguelgrinberg/python-socketio/compare/v5.8.0...v5.9.0) See [CHANGES.md](https://redirect.github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md) for release notes.
microsoft/TypeScript (typescript) ### [`v5.6.2`](https://redirect.github.com/microsoft/TypeScript/compare/v5.5.4...a7e3374f13327483fbe94e32806d65785b0b6cda) [Compare Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2)
fi3ework/vite-plugin-checker (vite-plugin-checker) ### [`v0.8.0`](https://redirect.github.com/fi3ework/vite-plugin-checker/releases/tag/vite-plugin-checker%400.8.0) [Compare Source](https://redirect.github.com/fi3ework/vite-plugin-checker/compare/vite-plugin-checker@0.7.2...vite-plugin-checker@0.8.0) #####    🚨 Breaking Changes - **vue-tsc**: Updated createVueLanguagePlugin syntax, version pin  -  by [@​daniluk4000](https://redirect.github.com/daniluk4000) and **drodichkin** in [https://github.com/fi3ework/vite-plugin-checker/issues/398](https://redirect.github.com/fi3ework/vite-plugin-checker/issues/398) [(5f5b9)](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/5f5b92a) Now, vite-plugin-checker requires `"vue-tsc": "~2.1.6"`. #####    🚀 Features - Advance typescript teminal consolelog text color  -  by [@​jaceechan](https://redirect.github.com/jaceechan) in [https://github.com/fi3ework/vite-plugin-checker/issues/393](https://redirect.github.com/fi3ework/vite-plugin-checker/issues/393) [(aa3d4)](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/aa3d413) #####    🐞 Bug Fixes - **ui**: Use a Vue key so file paths update correctly  -  by [@​artursapek](https://redirect.github.com/artursapek) in [https://github.com/fi3ework/vite-plugin-checker/issues/389](https://redirect.github.com/fi3ework/vite-plugin-checker/issues/389) [(fcbb6)](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/fcbb687) #####     [View changes on GitHub](https://redirect.github.com/fi3ework/vite-plugin-checker/compare/vite-plugin-checker@0.7.2...vite-plugin-checker@0.8.0) ### [`v0.7.2`](https://redirect.github.com/fi3ework/vite-plugin-checker/releases/tag/vite-plugin-checker%400.7.2) [Compare Source](https://redirect.github.com/fi3ework/vite-plugin-checker/compare/vite-plugin-checker@0.7.1...vite-plugin-checker@0.7.2) ##### Patch Changes - [`568b782`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/568b782): Added basic support for Biome - [`82972e0`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/82972e0): fix: tweak biome configs ### [`v0.7.1`](https://redirect.github.com/fi3ework/vite-plugin-checker/releases/tag/vite-plugin-checker%400.7.1) [Compare Source](https://redirect.github.com/fi3ework/vite-plugin-checker/compare/vite-plugin-checker@0.7.0...vite-plugin-checker@0.7.1) ##### Patch Changes - [`909182e`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/909182e): Remove extraneous non props attributes warning - [`e881c44`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/e881c44): Bump [@​vitejs/plugin-vue](https://redirect.github.com/vitejs/plugin-vue) to resolve runtime warning, see [#​346](https://redirect.github.com/fi3ework/vite-plugin-checker/issues/346) - [`80ca69c`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/80ca69c): Resolve optionaltor from ESLint path, do not requires to install optionator anymore - [`78fc007`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/78fc007): Throw error and hint user when vue-tsc working with typescript lower than 5.0.0 - [`52423b2`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/52423b2): sync runTsc - [`2a0af74`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/2a0af74): refactor: reuse codeFrame helper in logger and deduplicate code - [`7d985e7`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/7d985e7): refactor: import `@volar/typescript` from `vue-tsc` ### [`v0.7.0`](https://redirect.github.com/fi3ework/vite-plugin-checker/releases/tag/vite-plugin-checker%400.7.0) [Compare Source](https://redirect.github.com/fi3ework/vite-plugin-checker/compare/vite-plugin-checker@0.6.4...vite-plugin-checker@0.7.0) ##### Minor Changes - [`0747729`](https://redirect.github.com/fi3ework/vite-plugin-checker/commit/0747729): fix: compatibility with vue-tsc 2.x
websocket-client/websocket-client (websocket-client) ### [`v1.8.0`](https://redirect.github.com/websocket-client/websocket-client/releases/tag/v1.8.0) [Compare Source](https://redirect.github.com/websocket-client/websocket-client/compare/v1.7.0...v1.8.0) 1.8.0 ### [`v1.7.0`](https://redirect.github.com/websocket-client/websocket-client/releases/tag/v1.7.0) [Compare Source](https://redirect.github.com/websocket-client/websocket-client/compare/v1.6.4...v1.7.0) 1.7.0 ### [`v1.6.4`](https://redirect.github.com/websocket-client/websocket-client/releases/tag/v1.6.4) [Compare Source](https://redirect.github.com/websocket-client/websocket-client/compare/v1.6.3...v1.6.4) 1.6.4 ### [`v1.6.3`](https://redirect.github.com/websocket-client/websocket-client/releases/tag/v1.6.3) [Compare Source](https://redirect.github.com/websocket-client/websocket-client/compare/v1.6.2...v1.6.3) 1.6.3

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.



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