Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps ferrum_pdf from 0.3.0 to 3.0.0.

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

... (truncated)

Commits

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 3.0.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...v3.0.0)

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

dependabot bot commented on behalf of github Oct 13, 2025

Superseded by #175.

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