Skip to content

chore(deps): bump scrapling from 0.4.9 to 0.4.10#71

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/scrapling-0.4.10
Open

chore(deps): bump scrapling from 0.4.9 to 0.4.10#71
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/scrapling-0.4.10

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 5, 2026

Copy link
Copy Markdown
Contributor

Bumps scrapling from 0.4.9 to 0.4.10.

Release notes

Sourced from scrapling's releases.

Release v0.4.10

A new update with a brand-new Scrapy integration and a batch of community fixes 🎉

[!NOTE] Follow us on X for daily tips and tricks

🚀 New Stuff and quality of life changes

  • Added a Scrapy integration so you can use Scrapling's parsing API inside your existing Scrapy projects without rewriting them. Put the scrapling_response decorator on any spider callback, and the response it receives becomes a Scrapling Response while Scrapy keeps handling the crawling (Check the docs):

    import scrapy
    from scrapling.integrations.scrapy import scrapling_response
    class QuotesSpider(scrapy.Spider):
    name = "quotes"
    start_urls = ["https://quotes.toscrape.com"]
    @scrapling_response
    def parse(self, response):  # `response` is now a Scrapling Response
        first_quote = response.find_by_text("The world as we have created it", partial=True)
        for quote in [first_quote, *first_quote.find_similar()]:
            yield {"text": quote.get_all_text(strip=True)}

  • The MCP server can now use a custom Chromium-compatible browser for all browser-based tools. Set it once with scrapling mcp --executable-path "/path/to/chromium" or the SCRAPLING_EXECUTABLE_PATH environment variable, or per request with the executable_path argument, by @​samrusani in #360 (Solves #347)

  • Updated all browsers and fingerprints. Run scrapling install --force after updating to refresh them.

🐛 Bug Fixes

  • Fixed garbled text (mojibake) from browser fetchers on non-UTF-8 websites by @​yehudalevy-collab in #365 (Fixes #364).
  • Fixed LinkExtractor not filtering compound file extensions like .tar.gz by @​renbkna in #359 (Fixes #349).
  • Fixed paused crawls losing their in-flight requests from checkpoints, so resuming no longer skips them by @​yetval in #358.
  • Fixed spiders calculating wrong crawl delays from robots.txt Request-rate directives through the Protego upgrade, with tests aligned by @​Disaster-Terminator in #355.

Docs

  • Clarified how init_script interacts with Patchright's isolated execution context in stealth mode by @​mturac in #353 (Solves #350).
  • Added the skills.sh install method for the agent skill by @​ob-aion in #363.

🙏 Special thanks to the community for all the continuous testing and feedback


Big shoutout to our Platinum Sponsors

... (truncated)

Commits
  • db31cac v0.4.10 (#367)
  • b029f9b agent: Update skill with the latest changes
  • b2681c2 feat(parser): Add the option to integrate with Scrapy
  • e0e721b ops: update docs deps
  • bcf2d18 build: pump up version, deps, and browsers
  • 6f04243 feat: add MCP executable path support (#360)
  • 94ed7c8 Merge branch 'dev' into fix/mcp-executable-path
  • 2e0c7b0 fix: Proper encoding for page content retrieved via Playwright (#365)
  • f81a8dc Merge branch 'dev' into fix-playwright-page-content-encoding
  • c148446 docs(agent): add skills.sh install method (#363)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [scrapling](https://github.com/D4Vinci/Scrapling) from 0.4.9 to 0.4.10.
- [Release notes](https://github.com/D4Vinci/Scrapling/releases)
- [Commits](D4Vinci/Scrapling@v0.4.9...v0.4.10)

---
updated-dependencies:
- dependency-name: scrapling
  dependency-version: 0.4.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 5, 2026
@dependabot
dependabot Bot requested a review from Sam-Aitech as a code owner July 5, 2026 03:16
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 5, 2026
@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedpypi/​scrapling@​0.4.9 ⏵ 0.4.1098100100100100

View full report

@sonarqubecloud

sonarqubecloud Bot commented Jul 5, 2026

Copy link
Copy Markdown

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 python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants