ngshiheng / burplist

Web crawler for Burplist, a search engine for craft beers in Singapore
https://burplist.com
MIT License
11 stars 5 forks source link

fix(deps): update all non-major dependencies #165

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 4 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Scrapy (source) ==2.11.0 -> ==2.11.1 age adoption passing confidence
ipython ==8.21.0 -> ==8.22.1 age adoption passing confidence
pre-commit ==3.6.0 -> ==3.6.2 age adoption passing confidence
pylint (changelog) ==3.0.3 -> ==3.1.0 age adoption passing confidence
sentry-sdk (changelog) ==1.40.0 -> ==1.40.6 age adoption passing confidence

Release Notes

scrapy/scrapy (Scrapy) ### [`v2.11.1`](https://togithub.com/scrapy/scrapy/releases/tag/2.11.1) [Compare Source](https://togithub.com/scrapy/scrapy/compare/2.11.0...2.11.1) - Security bug fixes. - Support for Twisted >= 23.8.0. - Documentation improvements. [See the full changelog.](https://docs.scrapy.org/en/latest/news.html#scrapy-2-11-1-2024-02-14)
ipython/ipython (ipython) ### [`v8.22.1`](https://togithub.com/ipython/ipython/compare/8.22.0...8.22.1) [Compare Source](https://togithub.com/ipython/ipython/compare/8.22.0...8.22.1) ### [`v8.22.0`](https://togithub.com/ipython/ipython/compare/8.21.0...8.22.0) [Compare Source](https://togithub.com/ipython/ipython/compare/8.21.0...8.22.0)
pre-commit/pre-commit (pre-commit) ### [`v3.6.2`](https://togithub.com/pre-commit/pre-commit/blob/HEAD/CHANGELOG.md#362---2024-02-18) [Compare Source](https://togithub.com/pre-commit/pre-commit/compare/v3.6.1...v3.6.2) \================== ##### Fixes - Fix building golang hooks during `git commit --all`. - [#​3130](https://togithub.com/pre-commit/pre-commit/issues/3130) PR by [@​asottile](https://togithub.com/asottile). - [#​2722](https://togithub.com/pre-commit/pre-commit/issues/2722) issue by [@​pestanko](https://togithub.com/pestanko) and [@​matthewhughes934](https://togithub.com/matthewhughes934). ### [`v3.6.1`](https://togithub.com/pre-commit/pre-commit/blob/HEAD/CHANGELOG.md#361---2024-02-10) [Compare Source](https://togithub.com/pre-commit/pre-commit/compare/v3.6.0...v3.6.1) \================== ##### Fixes - Remove `PYTHONEXECUTABLE` from environment when running. - [#​3110](https://togithub.com/pre-commit/pre-commit/issues/3110) PR by [@​untitaker](https://togithub.com/untitaker). - Handle staged-files-only with only a crlf diff. - [#​3126](https://togithub.com/pre-commit/pre-commit/issues/3126) PR by [@​asottile](https://togithub.com/asottile). - issue by [@​tyyrok](https://togithub.com/tyyrok).
pylint-dev/pylint (pylint) ### [`v3.1.0`](https://togithub.com/pylint-dev/pylint/releases/tag/v3.1.0) [Compare Source](https://togithub.com/pylint-dev/pylint/compare/v3.0.4...v3.1.0) Two new checks--`use-yield-from`, `deprecated-attribute`-- and a smattering of bug fixes. ## New Features - Skip `consider-using-join` check for non-empty separators if an `suggest-join-with-non-empty-separator` option is set to `no`. Closes [#​8701](https://togithub.com/pylint-dev/pylint/issues/8701) - Discover `.pyi` files when linting. These can be ignored with the `ignore-patterns` setting. Closes [#​9097](https://togithub.com/pylint-dev/pylint/issues/9097) - Check `TypeAlias` and `TypeVar` (PEP 695) nodes for `invalid-name`. Refs [#​9196](https://togithub.com/pylint-dev/pylint/issues/9196) - Support for resolving external toml files named pylintrc.toml and .pylintrc.toml. Closes [#​9228](https://togithub.com/pylint-dev/pylint/issues/9228) - Check for `.clear`, `.discard`, `.pop` and `remove` methods being called on a set while it is being iterated over. Closes [#​9334](https://togithub.com/pylint-dev/pylint/issues/9334) ## New Checks - New message `use-yield-from` added to the refactoring checker. This message is emitted when yielding from a loop can be replaced by `yield from`. Closes [#​9229](https://togithub.com/pylint-dev/pylint/issues/9229). - Added a `deprecated-attribute` message to check deprecated attributes in the stdlib. Closes [#​8855](https://togithub.com/pylint-dev/pylint/issues/8855) ## False Positives Fixed - Fixed false positive for `inherit-non-class` for generic Protocols. Closes [#​9106](https://togithub.com/pylint-dev/pylint/issues/9106) - Exempt `TypedDict` from `typing_extensions` from `too-many-ancestor` checks. Refs [#​9167](https://togithub.com/pylint-dev/pylint/issues/9167) ## False Negatives Fixed - Extend broad-exception-raised and broad-exception-caught to except\*. Closes [#​8827](https://togithub.com/pylint-dev/pylint/issues/8827) - Fix a false-negative for unnecessary if blocks using a different than expected ordering of arguments. Closes [#​8947](https://togithub.com/pylint-dev/pylint/issues/8947). ## Other Bug Fixes - Improve the message provided for wrong-import-order check. Instead of the import statement ("import x"), the message now specifies the import that is out of order and which imports should come after it. As reported in the issue, this is particularly helpful if there are multiple imports on a single line that do not follow the PEP8 convention. The message will report imports as follows: For "import X", it will report "(standard/third party/first party/local) import X" For "import X.Y" and "from X import Y", it will report "(standard/third party/first party/local) import X.Y" The import category is specified to provide explanation as to why pylint has issued the message and guidence to the developer on how to fix the problem. Closes [#​8808](https://togithub.com/pylint-dev/pylint/issues/8808) ## Other Changes - Print how many files were checked in verbose mode. Closes [#​8935](https://togithub.com/pylint-dev/pylint/issues/8935) - Fix a crash when an enum class which is also decorated with a `dataclasses.dataclass` decorator is defined. Closes [#​9100](https://togithub.com/pylint-dev/pylint/issues/9100) ## Internal Changes - Update astroid version to 3.1.0. Refs [#​9457](https://togithub.com/pylint-dev/pylint/issues/9457) ### [`v3.0.4`](https://togithub.com/pylint-dev/pylint/releases/tag/v3.0.4) [Compare Source](https://togithub.com/pylint-dev/pylint/compare/v3.0.3...v3.0.4) ## False Positives Fixed - `used-before-assignment` is no longer emitted when using a name in a loop and depending on an earlier name assignment in an `except` block paired with `else: continue`. Closes [#​6804](https://togithub.com/pylint-dev/pylint/issues/6804) - Avoid false positives for `no-member` involving function attributes supplied by decorators. Closes [#​9246](https://togithub.com/pylint-dev/pylint/issues/9246) - Fixed false positive nested-min-max for nested lists. Closes [#​9307](https://togithub.com/pylint-dev/pylint/issues/9307) - Fix false positive for `used-before-assignment` in a `finally` block when assignments took place in both the `try` block and each exception handler. Closes [#​9451](https://togithub.com/pylint-dev/pylint/issues/9451) ## Other Bug Fixes - Catch incorrect ValueError `"generator already executing"` for Python 3.12.0 - 3.12.2. This is fixed upstream in Python 3.12.3. Closes [#​9138](https://togithub.com/pylint-dev/pylint/issues/9138)
getsentry/sentry-python (sentry-sdk) ### [`v1.40.6`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1406) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.5...1.40.6) ##### Various fixes & improvements - Fix compatibility with `greenlet`/`gevent` ([#​2756](https://togithub.com/getsentry/sentry-python/issues/2756)) by [@​sentrivana](https://togithub.com/sentrivana) - Fix query source relative filepath ([#​2717](https://togithub.com/getsentry/sentry-python/issues/2717)) by [@​gggritso](https://togithub.com/gggritso) - Support `clickhouse-driver==0.2.7` ([#​2752](https://togithub.com/getsentry/sentry-python/issues/2752)) by [@​sentrivana](https://togithub.com/sentrivana) - Bump `checkouts/data-schemas` from `6121fd3` to `eb941c2` ([#​2747](https://togithub.com/getsentry/sentry-python/issues/2747)) by [@​dependabot](https://togithub.com/dependabot) ### [`v1.40.5`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1405) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.4...1.40.5) ##### Various fixes & improvements - Deprecate `last_event_id()`. ([#​2749](https://togithub.com/getsentry/sentry-python/issues/2749)) by [@​antonpirker](https://togithub.com/antonpirker) - Warn if uWSGI is set up without proper thread support ([#​2738](https://togithub.com/getsentry/sentry-python/issues/2738)) by [@​sentrivana](https://togithub.com/sentrivana) uWSGI has to be run in threaded mode for the SDK to run properly. If this is not the case, the consequences could range from features not working unexpectedly to uWSGI workers crashing. Please make sure to run uWSGI with both `--enable-threads` and `--py-call-uwsgi-fork-hooks`. - `parsed_url` can be `None` ([#​2734](https://togithub.com/getsentry/sentry-python/issues/2734)) by [@​sentrivana](https://togithub.com/sentrivana) - Python 3.7 is not supported anymore by Lambda, so removed it and added 3.12 ([#​2729](https://togithub.com/getsentry/sentry-python/issues/2729)) by [@​antonpirker](https://togithub.com/antonpirker) ### [`v1.40.4`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1404) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.3...1.40.4) ##### Various fixes & improvements - Only start metrics flusher thread on demand ([#​2727](https://togithub.com/getsentry/sentry-python/issues/2727)) by [@​sentrivana](https://togithub.com/sentrivana) - Bump checkouts/data-schemas from `aa7058c` to `6121fd3` ([#​2724](https://togithub.com/getsentry/sentry-python/issues/2724)) by [@​dependabot](https://togithub.com/dependabot) ### [`v1.40.3`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1403) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.2...1.40.3) ##### Various fixes & improvements - Turn off metrics for uWSGI ([#​2720](https://togithub.com/getsentry/sentry-python/issues/2720)) by [@​sentrivana](https://togithub.com/sentrivana) - Minor improvements ([#​2714](https://togithub.com/getsentry/sentry-python/issues/2714)) by [@​antonpirker](https://togithub.com/antonpirker) ### [`v1.40.2`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1402) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.1...1.40.2) ##### Various fixes & improvements - test: Fix `pytest` error ([#​2712](https://togithub.com/getsentry/sentry-python/issues/2712)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - build(deps): bump types-protobuf from 4.24.0.4 to 4.24.0.20240129 ([#​2691](https://togithub.com/getsentry/sentry-python/issues/2691)) by [@​dependabot](https://togithub.com/dependabot) ### [`v1.40.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1401) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.0...1.40.1) ##### Various fixes & improvements - Fix uWSGI workers hanging ([#​2694](https://togithub.com/getsentry/sentry-python/issues/2694)) by [@​sentrivana](https://togithub.com/sentrivana) - Make metrics work with `gevent` ([#​2694](https://togithub.com/getsentry/sentry-python/issues/2694)) by [@​sentrivana](https://togithub.com/sentrivana) - Guard against `engine.url` being `None` ([#​2708](https://togithub.com/getsentry/sentry-python/issues/2708)) by [@​sentrivana](https://togithub.com/sentrivana) - Fix performance regression in `sentry_sdk.utils._generate_installed_modules` ([#​2703](https://togithub.com/getsentry/sentry-python/issues/2703)) by [@​GlenWalker](https://togithub.com/GlenWalker) - Guard against Sentry initialization mid SQLAlchemy cursor ([#​2702](https://togithub.com/getsentry/sentry-python/issues/2702)) by [@​apmorton](https://togithub.com/apmorton) - Fix yaml generation script ([#​2695](https://togithub.com/getsentry/sentry-python/issues/2695)) by [@​sentrivana](https://togithub.com/sentrivana) - Fix AWS Lambda workflow ([#​2710](https://togithub.com/getsentry/sentry-python/issues/2710)) by [@​sentrivana](https://togithub.com/sentrivana) - Bump `codecov/codecov-action` from 3 to 4 ([#​2706](https://togithub.com/getsentry/sentry-python/issues/2706)) by [@​dependabot](https://togithub.com/dependabot) - Bump `actions/cache` from 3 to 4 ([#​2661](https://togithub.com/getsentry/sentry-python/issues/2661)) by [@​dependabot](https://togithub.com/dependabot) - Bump `actions/checkout` from 3.1.0 to 4.1.1 ([#​2561](https://togithub.com/getsentry/sentry-python/issues/2561)) by [@​dependabot](https://togithub.com/dependabot) - Bump `github/codeql-action` from 2 to 3 ([#​2603](https://togithub.com/getsentry/sentry-python/issues/2603)) by [@​dependabot](https://togithub.com/dependabot) - Bump `actions/setup-python` from 4 to 5 ([#​2577](https://togithub.com/getsentry/sentry-python/issues/2577)) by [@​dependabot](https://togithub.com/dependabot)

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" in timezone Asia/Singapore, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.