Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Bumps ferrum_pdf from 0.3.0 to 3.0.1.

Release notes

Sourced from ferrum_pdf's releases.

v3.0.0

What's Changed

New Contributors

Full Changelog: excid3/ferrum_pdf@v2.1.0...v3.0.0

v2.1.0

What's Changed

New Contributors

Full Changelog: excid3/ferrum_pdf@v2.0.0...v2.1.0

v2.0.0

What's Changed

  • Add renderer by @​excid3 in excid3/ferrum_pdf#64
  • [Breaking] Remove render_pdf and render_screenshot controller methods in favor of using the renderer.

Full Changelog: excid3/ferrum_pdf@v1.0.0...v2.0.0

v1.0.0

Full Changelog: excid3/ferrum_pdf@v0.5.0...v1.0.0

v0.5.0

What's Changed

New Contributors

Full Changelog: excid3/ferrum_pdf@v0.4.2...v0.5.0

v0.4.2

Full Changelog: excid3/ferrum_pdf@v0.4.1...v0.4.2

v0.4.1

... (truncated)

Changelog

Sourced from ferrum_pdf's changelog.

3.0.1

  • Fix timeout_if_open_connections when false
  • Depend only on actionpack

3.0.0

  • BREAKING CHANGE: :base_url has been removed in favour of :display_url. These aren't the same. The :display_url is intended to be the address of the page as a browser would normally see it. Relative paths in the :html are interpreted in light of this.
  • BREAKING CHANGE: ferrum_pdf_inline_stylesheet, ferrum_pdf_inline_javascript, and ferrum_pdf_base64_asset have been removed in favour of :display_url.

2.1.0

  • Add page_options, pdf_options, and screenshot_options configuration #75
  • Retry on Ferrum::TimeoutError when loading a page and raise if retries fail #74

2.0.0

  • Replace controller methods with a Rails renderer

    This provides a much cleaner and better named Rails integration. You can pass options directly into the render method which will render the PDF or screenshot and pass it along to send_data for you.

    Before:

    class PdfsController < ApplicationController
      def show
        respond_to do |format|
          format.pdf {
            pdf = render_pdf()
            send_data pdf, disposition: :inline, filename: "example.pdf"
          }
          format.png {
            screenshot = render_screenshot()
            send_data screenshot, disposition: :inline, filename: "example.png"
          }
        end
      end
    end

    After:

    class PdfsController < ApplicationController
      def show
        respond_to do |format|
          format.pdf { render ferrum_pdf: {}, disposition: :inline, filename: "example.pdf" }
          format.png { render ferrum_screenshot: {}, disposition: :inline, filename: "example.png" }
        end
      end

... (truncated)

Commits
  • ac0b006 Version bump
  • 104d8e0 Merge pull request #109 from excid3/dependabot/bundler/rack-3.2.3
  • 6a2afa2 Merge pull request #108 from fatkodima/fix-timeout_if_open_connections
  • 332c91d Merge pull request #107 from fatkodima/depend-on-actionpack
  • eefd5b5 Bump rack from 3.2.2 to 3.2.3
  • 3390bee Fix when timeout_if_open_connections is false
  • a51a46b Depend only on actionpack
  • b14bdc4 Merge pull request #105 from excid3/dependabot/bundler/rack-3.2.2
  • 5d2a319 Bump rack from 3.2.1 to 3.2.2
  • ef8bbd0 Version bump
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [ferrum_pdf](https://github.com/excid3/ferrum_pdf) from 0.3.0 to 3.0.1.
- [Release notes](https://github.com/excid3/ferrum_pdf/releases)
- [Changelog](https://github.com/excid3/ferrum_pdf/blob/main/CHANGELOG.md)
- [Commits](excid3/ferrum_pdf@v0.3.0...v3.0.1)

---
updated-dependencies:
- dependency-name: ferrum_pdf
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code labels Oct 13, 2025
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 ruby Pull requests that update ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant