Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 8, 2025

Bumps ferrum_pdf from 0.3.0 to 2.1.0.

Release notes

Sourced from ferrum_pdf's releases.

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

What's Changed

New Contributors

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

v0.4.0

What's Changed

... (truncated)

Changelog

Sourced from ferrum_pdf's changelog.

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
    end
  • [Breaking] Remove assets helper config option. This will always be included by default.

1.0.0

  • No changes

0.5.0

... (truncated)

Commits
  • b243d94 Version bump
  • 7cc76b2 Merge pull request #75 from jmschneider/configure_default_options
  • 923065f Merge branch 'main' into configure_default_options
  • adec7e7 Merge pull request #74 from jmschneider/wait_for_idle
  • d300c7a Remove extra line
  • 1ece902 Remove extra line
  • fa12952 Revert formatting changes
  • 0ac4ad2 Allow setting config defaults
  • 4640206 Fix bug with try counter resetting
  • d4448c3 Raise Ferrum::TimeoutError if network not idle
  • 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 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)

Bumps [ferrum_pdf](https://github.com/excid3/ferrum_pdf) from 0.3.0 to 2.1.0.
- [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...v2.1.0)

---
updated-dependencies:
- dependency-name: ferrum_pdf
  dependency-version: 2.1.0
  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 Aug 8, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 7, 2025

Superseded by #173.

@dependabot dependabot bot closed this Oct 7, 2025
@dependabot dependabot bot deleted the dependabot/bundler/ferrum_pdf-2.1.0 branch October 7, 2025 06:18
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