big-meel / gfn-library

Full list of all the games offered by Geforce Now
0 stars 0 forks source link

Bump actionpack, railties, rails and nokogiri #82

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps actionpack, railties, rails and nokogiri. These dependencies needed to be updated together. Updates actionpack from 7.0.2.4 to 7.1.1

Release notes

Sourced from actionpack's releases.

7.1.1

Active Support

  • Add support for keyword arguments when delegating calls to custom loggers from ActiveSupport::BroadcastLogger.

    Jenny Shen

  • NumberHelper: handle objects responding to_d.

    fatkodima

  • Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.

    This bug was only impacting Redis server older than 7.0.

    Thomas Countz

  • Fix MemoryStore to prevent race conditions when incrementing or decrementing.

    Pierre Jambet

Active Model

  • No changes.

Active Record

  • Fix auto populating IDENTITY columns for PostgreSQL.

    fatkodima

  • Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating rename_table in older migrations.

    fatkodima

  • Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.

    Rafael Mendonça França

Action View

... (truncated)

Changelog

Sourced from actionpack's changelog.

Rails 7.1.1 (October 11, 2023)

  • No changes.

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

... (truncated)

Commits
  • 2393805 Preparing for 7.1.1 release
  • 5abcfd4 Merge pull request #49538 from akhilgkrishnan/capitalize-framework-names
  • dec60e5 Fix config name in changelog related to #49517
  • 4be0e37 Merge pull request #49517 from benstein/patch-1
  • 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
  • Additional commits viewable in compare view


Updates railties from 7.0.2.4 to 7.1.1

Release notes

Sourced from railties's releases.

7.1.1

Active Support

  • Add support for keyword arguments when delegating calls to custom loggers from ActiveSupport::BroadcastLogger.

    Jenny Shen

  • NumberHelper: handle objects responding to_d.

    fatkodima

  • Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.

    This bug was only impacting Redis server older than 7.0.

    Thomas Countz

  • Fix MemoryStore to prevent race conditions when incrementing or decrementing.

    Pierre Jambet

Active Model

  • No changes.

Active Record

  • Fix auto populating IDENTITY columns for PostgreSQL.

    fatkodima

  • Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating rename_table in older migrations.

    fatkodima

  • Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.

    Rafael Mendonça França

Action View

... (truncated)

Changelog

Sourced from railties's changelog.

Rails 7.1.1 (October 11, 2023)

  • Ensures the Rails generated Dockerfile uses correct ruby version and matches Gemfile.

    Abhay Nikam

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
    

... (truncated)

Commits
  • 2393805 Preparing for 7.1.1 release
  • b280d7f Sync CHANGELOG
  • 314220e Merge pull request #49525 from abhaynikam/fix-app-generated-dockerfile-to-use...
  • 57d626e Merge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...
  • 5abcfd4 Merge pull request #49538 from akhilgkrishnan/capitalize-framework-names
  • 9ae8060 Clean up docs for Rails::Generators::ActiveModel [ci-skip]
  • b809ac2 Merge pull request #49528 from mohits/patch-3
  • 174bd99 Only check the schema when the table exists on CI
  • 5fa5f81 Merge pull request #49497 from Earlopain/extraneous-whitespace
  • d39db5d Preparing for 7.1.0 release
  • Additional commits viewable in compare view


Updates rails from 7.0.2.4 to 7.1.1

Release notes

Sourced from rails's releases.

7.1.1

Active Support

  • Add support for keyword arguments when delegating calls to custom loggers from ActiveSupport::BroadcastLogger.

    Jenny Shen

  • NumberHelper: handle objects responding to_d.

    fatkodima

  • Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.

    This bug was only impacting Redis server older than 7.0.

    Thomas Countz

  • Fix MemoryStore to prevent race conditions when incrementing or decrementing.

    Pierre Jambet

Active Model

  • No changes.

Active Record

  • Fix auto populating IDENTITY columns for PostgreSQL.

    fatkodima

  • Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating rename_table in older migrations.

    fatkodima

  • Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.

    Rafael Mendonça França

Action View

... (truncated)

Commits
  • 2393805 Preparing for 7.1.1 release
  • b280d7f Sync CHANGELOG
  • 314220e Merge pull request #49525 from abhaynikam/fix-app-generated-dockerfile-to-use...
  • 1f1710d Merge pull request #49589 from fatkodima/fix-flaky-fixtures-test
  • 4921df0 Merge pull request #49565 from hachi8833/add_missing_doc_43487
  • 57d626e Merge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...
  • 63f204d Merge pull request #49553 from tricknotes/update-rails-ujs-build
  • 8a6118a Use released version of Sdoc
  • 3199a45 Merge pull request #49581 from hachi8833/update_doc_npm
  • a5534b9 Merge pull request #49515 from dustinbrownman/main
  • Additional commits viewable in compare view


Updates nokogiri from 1.13.9 to 1.15.4

Release notes

Sourced from nokogiri's releases.

1.15.4 / 2023-08-11

Dependencies

Fixed

  • Fixed a typo in a HTML5 parser error message. [#2927] (Thanks, @​anishathalye!)
  • [CRuby] ObjectSpace.memsize_of is now safe to call on Documents with complex DTDs. In previous versions, this debugging method could result in a segfault. [#2923, #2924]

sha256 checksums:

14091a07e07045a440213f7d5ced732fa7654ae8b6c7d180137f4124c5284ab8  nokogiri-1.15.4-aarch64-linux.gem
572ddc19934d010e98821a946d89462ae66b310fecc3fe12c48b0025c2f76855  nokogiri-1.15.4-arm-linux.gem
707288e293f4fc82a008f90b7ba0180d9f803f6a239a13e424378fedf8cf93e9  nokogiri-1.15.4-arm64-darwin.gem
04745925f63af61144eccef38a703928629cf97c34dbb1c42e3def17ac77ec92  nokogiri-1.15.4-java.gem
a0bfb65461a0453afed1a41b235fe84d5b9c7f4d70afd45f0dc2fdec8909faf1  nokogiri-1.15.4-x64-mingw-ucrt.gem
b9d01b9202e33cc23d19b2c1fc18ff4029cdda9b4f937a4baaefd4124a2158ba  nokogiri-1.15.4-x64-mingw32.gem
f6ae258d7ed5f81715118282aa45486e68fd44b9747d0244a236e9ed5b94c45d  nokogiri-1.15.4-x86-linux.gem
3f65b2426ece8da908bd5df5b6262ce525393f5245f8258a245bb4c3f5759b98  nokogiri-1.15.4-x86-mingw32.gem
d756605c540034debd7f486ae27802e6b1b129013fd6b1bb823783ef6f2bc5d7  nokogiri-1.15.4-x86_64-darwin.gem
872ced3d72d797ed9b5a76c67141c6cee7589711358e11c73e9c53724ffd1842  nokogiri-1.15.4-x86_64-linux.gem
e4a801e5ef643cc0036f0a7e93433d18818b31d48c9c287596b68e92c0173c4d  nokogiri-1.15.4.gem

1.15.3 / 2023-07-05

Fixed

  • Passing an object that is not a kind of XML::Node as the first parameter to CDATA.new now raises a TypeError. Previously this would result in either a segfault (CRuby) or a Java exception (JRuby). [#2920]
  • Passing an object that is not a kind of XML::Node as the first parameter to Schema.from_document now raises a TypeError. Previously this would result in either a segfault (CRuby) or a Java exception (JRuby). [#2920]
  • [CRuby] Passing an object that is not a kind of XML::Node as the second parameter to Text.new now raises a TypeError. Previously this would result in a segfault. [#2920]
  • [CRuby] Replacing a node's children via methods like Node#inner_html=, #children=, and #replace no longer defensively dups the node's next sibling if it is a Text node. This behavior was originally adopted to work around libxml2's memory management (see #283 and #595) but should not have included operations involving xmlAddChild(). [#2916]
  • [JRuby] Fixed NPE when serializing an unparented HTML node. [#2559, #2895] (Thanks, @​cbasguti!)

sha256 checksums:

70dadf636ae026f475f07c16b12c685544d4f8a764777df629abf1f7af0f2fb5  nokogiri-1.15.3-aarch64-linux.gem
83871fa3f544dc601e27abbdef87315a77fe1270fe4904986bd3a7df9ca3d56f  nokogiri-1.15.3-arm-linux.gem
fa4a027478df9004a2ce91389af7b7b5a4fc790c23492dca43b210a0f8770596  nokogiri-1.15.3-arm64-darwin.gem
</tr></table> 

... (truncated)

Changelog

Sourced from nokogiri's changelog.

1.15.4 / 2023-08-11

Dependencies

Fixed

  • Fixed a typo in a HTML5 parser error message. [#2927] (Thanks, @​anishathalye!)
  • [CRuby] ObjectSpace.memsize_of is now safe to call on Documents with complex DTDs. In previous versions, this debugging method could result in a segfault. [#2923, #2924]

1.15.3 / 2023-07-05

Fixed

  • Passing an object that is not a kind of XML::Node as the first parameter to CDATA.new now raises a TypeError. Previously this would result in either a segfault (CRuby) or a Java exception (JRuby). [#2920]
  • Passing an object that is not a kind of XML::Node as the first parameter to Schema.from_document now raises a TypeError. Previously this would result in either a segfault (CRuby) or a Java exception (JRuby). [#2920]
  • [CRuby] Passing an object that is not a kind of XML::Node as the second parameter to Text.new now raises a TypeError. Previously this would result in a segfault. [#2920]
  • [CRuby] Replacing a node's children via methods like Node#inner_html=, #children=, and #replace no longer defensively dups the node's next sibling if it is a Text node. This behavior was originally adopted to work around libxml2's memory management (see #283 and #595) but should not have included operations involving xmlAddChild(). [#2916]
  • [JRuby] Fixed NPE when serializing an unparented HTML node. [#2559, #2895] (Thanks, @​cbasguti!)

1.15.2 / 2023-05-24

Dependencies

  • [JRuby] Vendored org.nokogiri:nekodtd is updated to v0.1.11.noko2. This is functionally equivalent to v0.1.11.noko1 but restores support for Java 8.

Fixed

  • [JRuby] Java 8 support is restored, fixing a regression present in v1.14.0..v1.14.4 and v1.15.0..v1.15.1. [#2887]

1.15.1 / 2023-05-19

Dependencies

Fixed

  • [CRuby] The libxml2 update fixes an encoding regression when push-parsing UTF-8 sequences. [#2882, upstream issue and commit]

1.15.0 / 2023-05-15

... (truncated)

Commits
  • 1aee13d version bump to v1.15.4
  • 769faec backport updates and fixes to v1.15.x (#2953)
  • 8460bfe dep: update libxml2 to v2.11.5
  • 14d1f5a test: add coverage for the memsize_of bug
  • c39ec30 fix memsize_node when called on xmlAttrs
  • 1617d54 Fix typo
  • a6fc29b ci: ruby-saml's downstream test suite needs minitest compat
  • 8d8c728 style: prefer Minitest to MiniTest
  • d1c62de ci: update suppression stack signature
  • 0d545ac version bump to v1.15.3
  • Additional commits viewable in compare view


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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/big-meel/gfn-library/network/alerts).