Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump railties, actionview, actionpack, activemodel, azure-storage-blob, fog-azure-rm, spork and vcap-concurrency #220

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 5, 2023

Bumps railties, actionview, actionpack, activemodel, azure-storage-blob, fog-azure-rm, spork and vcap-concurrency. These dependencies needed to be updated together.
Updates railties from 6.1.7.6 to 7.1.0

Release notes

Sourced from railties's releases.

7.1.0

Active Support

  • Fix AS::MessagePack with ENV["RAILS_MAX_THREADS"].

    Jonathan Hefner

  • Add a new public API for broadcasting logs

    This feature existed for a while but was until now a private API. Broadcasting log allows to send log message to difference sinks (STDOUT, a file ...) and is used by default in the development environment to write logs both on STDOUT and in the "development.log" file.

    Basic usage:

    stdout_logger = Logger.new(STDOUT)
    file_logger = Logger.new("development.log")
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger, file_logger)
    broadcast.info("Hello!") # The "Hello!" message is written on STDOUT and in the log file.

    Adding other sink(s) to the broadcast:

    broadcast = ActiveSupport::BroadcastLogger.new
    broadcast.broadcast_to(Logger.new(STDERR))

    Remove a sink from the broadcast:

    stdout_logger = Logger.new(STDOUT)
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger)
    broadcast.stop_broadcasting_to(stdout_logger)

    Edouard Chin

  • Fix Range#overlap? not taking empty ranges into account on Ruby < 3.3

    Nobuyoshi Nakada, Shouichi Kamiya, Hartley McGuire

  • Use Ruby 3.3 Range#overlap? if available

    Yasuo Honda

... (truncated)

Changelog

Sourced from railties's changelog.

Rails 7.1.0 (October 05, 2023)

  • No changes.

Rails 7.1.0.rc2 (October 01, 2023)

  • Always set the Rails logger to be an instance of ActiveSupport::BroadcastLogger.

    Edouard Chin

Rails 7.1.0.rc1 (September 27, 2023)

  • Require concurrent-ruby in config/puma.rb so that Puma can boot in production when WEB_CONCURRENCY is not explicitly specified.

    Fixes #49323.

    Matt Brictson

  • Raise error when generating attribute with dangerous name.

    The following will now raise an error as save and hash are already defined by Active Record.

    $ bin/rails generate model Post save
    $ bin/rails generate model Post hash

    Petrik de Heus

Rails 7.1.0.beta1 (September 13, 2023)

  • Add ability to show slow tests to the test runner

    $ bin/test --profile # additionally prints 10 (default) slowest tests
    # or
    $ bin/test --profile 20 # prints 20 slowest tests

    fatkodima

  • rails new --javascript generator now supports Bun

    $ rails new my_new_app --javascript=bun

... (truncated)

Commits

Updates actionview from 6.1.7.6 to 7.1.0

Release notes

Sourced from actionview's releases.

7.1.0

Active Support

  • Fix AS::MessagePack with ENV["RAILS_MAX_THREADS"].

    Jonathan Hefner

  • Add a new public API for broadcasting logs

    This feature existed for a while but was until now a private API. Broadcasting log allows to send log message to difference sinks (STDOUT, a file ...) and is used by default in the development environment to write logs both on STDOUT and in the "development.log" file.

    Basic usage:

    stdout_logger = Logger.new(STDOUT)
    file_logger = Logger.new("development.log")
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger, file_logger)
    broadcast.info("Hello!") # The "Hello!" message is written on STDOUT and in the log file.

    Adding other sink(s) to the broadcast:

    broadcast = ActiveSupport::BroadcastLogger.new
    broadcast.broadcast_to(Logger.new(STDERR))

    Remove a sink from the broadcast:

    stdout_logger = Logger.new(STDOUT)
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger)
    broadcast.stop_broadcasting_to(stdout_logger)

    Edouard Chin

  • Fix Range#overlap? not taking empty ranges into account on Ruby < 3.3

    Nobuyoshi Nakada, Shouichi Kamiya, Hartley McGuire

  • Use Ruby 3.3 Range#overlap? if available

    Yasuo Honda

... (truncated)

Changelog

Sourced from actionview's changelog.

Rails 7.1.0 (October 05, 2023)

  • No changes.

Rails 7.1.0.rc2 (October 01, 2023)

  • No changes.

Rails 7.1.0.rc1 (September 27, 2023)

  • Introduce ActionView::TestCase.register_parser

    register_parser :rss, -> rendered { RSS::Parser.parse(rendered) }
    test "renders RSS" do
    article = Article.create!(title: "Hello, world")
    render formats: :rss, partial: article
    assert_equal "Hello, world", rendered.rss.items.last.title
    end

    By default, register parsers for :html and :json.

    Sean Doyle

Rails 7.1.0.beta1 (September 13, 2023)

  • Fix simple_format with blank wrapper_tag option returns plain html tag

    By default simple_format method returns the text wrapped with <p>. But if we explicitly specify the wrapper_tag: nil in the options, it returns the text wrapped with <></> tag.

    Before:

    simple_format("Hello World", {},  { wrapper_tag: nil })
    # <>Hello World</>

    After:

    simple_format("Hello World", {},  { wrapper_tag: nil })
    # <p>Hello World</p>

... (truncated)

Commits
  • d39db5d Preparing for 7.1.0 release
  • 8340f8f Preparing for 7.1.0.rc2 release
  • 877e7d8 Merge pull request #49416 from Shopify/fix-render-call-extractor-on-ruby-3.3
  • e5386cb Preparing for 7.1.0.rc1 release
  • 7893e0a Merge pull request #49194 from seanpdoyle/action-view-test-case-encoder
  • 7badc42 Introduce ActionView::TestCase.register_parser
  • acfa045 Revert typography change in user facing errors
  • 72b3fe9 Update doc for include_hidden form form file_field.
  • 8b77436 Add documentation for locals: and local_assigns [ci skip]
  • 32faee0 Action View: docs use application/ instead of shared/
  • Additional commits viewable in compare view

Updates actionpack from 6.1.7.6 to 7.1.0

Release notes

Sourced from actionpack's releases.

7.1.0

Active Support

  • Fix AS::MessagePack with ENV["RAILS_MAX_THREADS"].

    Jonathan Hefner

  • Add a new public API for broadcasting logs

    This feature existed for a while but was until now a private API. Broadcasting log allows to send log message to difference sinks (STDOUT, a file ...) and is used by default in the development environment to write logs both on STDOUT and in the "development.log" file.

    Basic usage:

    stdout_logger = Logger.new(STDOUT)
    file_logger = Logger.new("development.log")
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger, file_logger)
    broadcast.info("Hello!") # The "Hello!" message is written on STDOUT and in the log file.

    Adding other sink(s) to the broadcast:

    broadcast = ActiveSupport::BroadcastLogger.new
    broadcast.broadcast_to(Logger.new(STDERR))

    Remove a sink from the broadcast:

    stdout_logger = Logger.new(STDOUT)
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger)
    broadcast.stop_broadcasting_to(stdout_logger)

    Edouard Chin

  • Fix Range#overlap? not taking empty ranges into account on Ruby < 3.3

    Nobuyoshi Nakada, Shouichi Kamiya, Hartley McGuire

  • Use Ruby 3.3 Range#overlap? if available

    Yasuo Honda

... (truncated)

Changelog

Sourced from actionpack's changelog.

Rails 7.1.0 (October 05, 2023)

  • No changes.

Rails 7.1.0.rc2 (October 01, 2023)

  • No changes.

Rails 7.1.0.rc1 (September 27, 2023)

  • Add support for #deep_merge and #deep_merge! to ActionController::Parameters.

    Sean Doyle

Rails 7.1.0.beta1 (September 13, 2023)

  • AbstractController::Translation.raise_on_missing_translations removed

    This was a private API, and has been removed in favour of a more broadly applicable config.i18n.raise_on_missing_translations. See the upgrading guide for more information.

    Alex Ghiculescu

  • Add ActionController::Parameters#extract_value method to allow extracting serialized values from params

    params = ActionController::Parameters.new(id: "1_123", tags: "ruby,rails")
    params.extract_value(:id) # => ["1", "123"]
    params.extract_value(:tags, delimiter: ",") # => ["ruby", "rails"]

    Nikita Vasilevsky

  • Parse JSON response.parsed_body with ActiveSupport::HashWithIndifferentAccess

    Integrate with Minitest's new assert_pattern by parsing the JSON contents of response.parsed_body with ActiveSupport::HashWithIndifferentAccess, so that it's pattern-matching compatible.

    Sean Doyle

  • Add support for Playwright as a driver for system tests.

    Yuki Nishijima

  • Fix HostAuthorization potentially displaying the value of the

... (truncated)

Commits
  • d39db5d Preparing for 7.1.0 release
  • 60393bb Merge pull request #49493 from skipkayhil/hm-no-backticks
  • 311f639 Merge pull request #49487 from yawboakye/clarify-login-procedure-expectation
  • 7edbcce Merge pull request #49456 from seanpdoyle/strong-parameters-deep-merge-rdoc
  • 8340f8f Preparing for 7.1.0.rc2 release
  • fe87369 Merge pull request #49374 from yykamei/add_doc_for_protect_from_forgery
  • e5386cb Preparing for 7.1.0.rc1 release
  • 1d999e6 Support ActionController::Parameters#deep_merge
  • 35b280f Refactor Router#find_routes to be lazier
  • 51ac8b9 Enable Minitest/LiteralAsActualArgument
  • Additional commits viewable in compare view

Updates activemodel from 6.1.7.6 to 7.1.0

Release notes

Sourced from activemodel's releases.

7.1.0

Active Support

  • Fix AS::MessagePack with ENV["RAILS_MAX_THREADS"].

    Jonathan Hefner

  • Add a new public API for broadcasting logs

    This feature existed for a while but was until now a private API. Broadcasting log allows to send log message to difference sinks (STDOUT, a file ...) and is used by default in the development environment to write logs both on STDOUT and in the "development.log" file.

    Basic usage:

    stdout_logger = Logger.new(STDOUT)
    file_logger = Logger.new("development.log")
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger, file_logger)
    broadcast.info("Hello!") # The "Hello!" message is written on STDOUT and in the log file.

    Adding other sink(s) to the broadcast:

    broadcast = ActiveSupport::BroadcastLogger.new
    broadcast.broadcast_to(Logger.new(STDERR))

    Remove a sink from the broadcast:

    stdout_logger = Logger.new(STDOUT)
    broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger)
    broadcast.stop_broadcasting_to(stdout_logger)

    Edouard Chin

  • Fix Range#overlap? not taking empty ranges into account on Ruby < 3.3

    Nobuyoshi Nakada, Shouichi Kamiya, Hartley McGuire

  • Use Ruby 3.3 Range#overlap? if available

    Yasuo Honda

... (truncated)

Changelog

Sourced from activemodel's changelog.

Rails 7.1.0 (October 05, 2023)

  • No changes.

Rails 7.1.0.rc2 (October 01, 2023)

  • No changes.

Rails 7.1.0.rc1 (September 27, 2023)

  • Remove change in the typography of user facing error messages. For example, “can’t be blank” is again “can't be blank”.

    Rafael Mendonça França

Rails 7.1.0.beta1 (September 13, 2023)

  • Support composite identifiers in to_key

    to_key avoids wrapping #id value into an Array if #id already an array

    Nikita Vasilevsky

  • Add ActiveModel::Conversion.param_delimiter to configure delimiter being used in to_param

    Nikita Vasilevsky

  • undefine_attribute_methods undefines alias attribute methods along with attribute methods.

    Nikita Vasilevsky

  • Error.full_message now strips ":base" from the message.

    zzak

  • Add a load hook for ActiveModel::Model (named active_model) to match the load hook for ActiveRecord::Base and allow for overriding aspects of the ActiveModel::Model class.

    Lewis Buckley

  • Improve password length validation in ActiveModel::SecurePassword to consider byte size for BCrypt compatibility.

    The previous password length validation only considered the character count, which may not accurately reflect the 72-byte size limit imposed by BCrypt. This change updates the validation to consider both character count and byte size while keeping the character length validation in place.

... (truncated)

Commits
  • d39db5d Preparing for 7.1.0 release
  • 8340f8f Preparing for 7.1.0.rc2 release
  • e5386cb Preparing for 7.1.0.rc1 release
  • acfa045 Revert typography change in user facing errors
  • 4fb4af7 [Docs][Tests] Add tests for validates_exclusion_of to 7.1.0beta1 Active Model
  • 51ac8b9 Enable Minitest/LiteralAsActualArgument
  • 699dfdb Preparing for 7.1.0.beta1 release
  • 4a08111 Merge pull request #49172 from akhilgkrishnan/ruby-code-block-intentation-fix
  • 0f5563b Define alias attribute methods in define_attribute_methods
  • 61a9c1a Ruby code block indentation issue fix
  • Additional commits viewable in compare view

Updates azure-storage-blob from d4737cd to 1.1.0

Commits

Updates fog-azure-rm from 379e352 to 0.4.7

Release notes

Sourced from fog-azure-rm's releases.

Release v0.4.7

  • Support added to list resources in a resource group
  • Added OS disk id attribute to the 'Compute' model
Commits

Updates spork from 224df49 to 1.0.0rc4

Commits

Updates vcap-concurrency from 2a5b017 to 0.1.0

Commits

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)

…e-storage-blob, fog-azure-rm, spork and vcap-concurrency

Bumps [railties](https://github.com/rails/rails), [actionview](https://github.com/rails/rails), [actionpack](https://github.com/rails/rails), [activemodel](https://github.com/rails/rails), [azure-storage-blob](https://github.com/sethboyles/azure-storage-ruby), [fog-azure-rm](https://github.com/fog/fog-azure-rm), [spork](https://github.com/sporkrb/spork) and [vcap-concurrency](https://github.com/cloudfoundry/vcap-concurrency). These dependencies needed to be updated together.

Updates `railties` from 6.1.7.6 to 7.1.0
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.0/railties/CHANGELOG.md)
- [Commits](rails/rails@v6.1.7.6...v7.1.0)

Updates `actionview` from 6.1.7.6 to 7.1.0
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.0/actionview/CHANGELOG.md)
- [Commits](rails/rails@v6.1.7.6...v7.1.0)

Updates `actionpack` from 6.1.7.6 to 7.1.0
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.0/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v6.1.7.6...v7.1.0)

Updates `activemodel` from 6.1.7.6 to 7.1.0
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.0/activemodel/CHANGELOG.md)
- [Commits](rails/rails@v6.1.7.6...v7.1.0)

Updates `azure-storage-blob` from `d4737cd` to 1.1.0
- [Commits](https://github.com/sethboyles/azure-storage-ruby/commits)

Updates `fog-azure-rm` from `379e352` to 0.4.7
- [Release notes](https://github.com/fog/fog-azure-rm/releases)
- [Commits](fog/fog-azure-rm@379e352...v0.4.7)

Updates `spork` from `224df49` to 1.0.0rc4
- [Commits](https://github.com/sporkrb/spork/commits)

Updates `vcap-concurrency` from `2a5b017` to 0.1.0
- [Commits](https://github.com/cloudfoundry/vcap-concurrency/commits)

---
updated-dependencies:
- dependency-name: railties
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: actionview
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: actionpack
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: activemodel
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: azure-storage-blob
  dependency-type: direct:production
- dependency-name: fog-azure-rm
  dependency-type: direct:production
- dependency-name: spork
  dependency-type: direct:development
- dependency-name: vcap-concurrency
  dependency-type: direct:production
...

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 5, 2023
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 12, 2023

Superseded by #224.

@dependabot dependabot bot closed this Oct 12, 2023
@dependabot dependabot bot deleted the dependabot/bundler/railties-and-actionview-and-actionpack-and-activemodel-and-azure-storage-blob-and-fog-azure-rm-and-spork-and-vcap-concurrency-7.1.0 branch October 12, 2023 11:21
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.

0 participants