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

[Snyk] Upgrade rails-ujs from 5.2.2 to 5.2.4 #174

Merged

Conversation

snyk-bot
Copy link
Contributor

Snyk has created this PR to upgrade rails-ujs from 5.2.2 to 5.2.4.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
  • The recommended version is 5 versions ahead of your current version.
  • The recommended version was released 3 months ago, on 2019-11-27.
Release notes
Package name: rails-ujs
  • 5.2.4 - 2019-11-27

    Active Support

    • Make ActiveSupport::Logger Fiber-safe. Fixes #36752.

      Use Fiber.current.__id__ in ActiveSupport::Logger#local_level= in order
      to make log level local to Ruby Fibers in addition to Threads.

      Example:

      logger = ActiveSupport::Logger.new(STDOUT)
      logger.level = 1
      p "Main is debug? #{logger.debug?}"
      

      Fiber.new {
      logger.local_level = 0
      p "Thread is debug? #{logger.debug?}"
      }.resume

      p "Main is debug? #{logger.debug?}"

      Before:

      Main is debug? false
      Thread is debug? true
      Main is debug? true
      

      After:

      Main is debug? false
      Thread is debug? true
      Main is debug? false
      

      Alexander Varnin

    Active Model

    • Type cast falsy boolean symbols on boolean attribute as false.

      Fixes #35676.

      Ryuta Kamizono

    Active Record

    • Fix circular autosave: true causes invalid records to be saved.

      Prior to the fix, when there was a circular series of autosave: true
      associations, the callback for a has_many association was run while
      another instance of the same callback on the same association hadn't
      finished running. When control returned to the first instance of the
      callback, the instance variable had changed, and subsequent associated
      records weren't saved correctly. Specifically, the ID field for the
      belongs_to corresponding to the has_many was nil.

      Fixes #28080.

      Larry Reid

    • PostgreSQL: Fix GROUP BY with ORDER BY virtual count attribute.

      Fixes #36022.

      Ryuta Kamizono

    • Fix sqlite3 collation parsing when using decimal columns.

      Martin R. Schuster

    • Make ActiveRecord ConnectionPool.connections method thread-safe.

      Fixes #36465.

      Jeff Doering

    • Assign all attributes before calling build to ensure the child record is visible in
      before_add and after_add callbacks for has_many :through associations.

      Fixes #33249.

      Ryan H. Kerr

    Action View

    • Allow programmatic click events to trigger Rails UJS click handlers.
      Programmatic click events (eg. ones generated by Rails.fire(link, "click")) don't specify a button. These events were being incorrectly stopped by code meant to ignore scroll wheel and right clicks introduced in #34573.

      Sudara Williams

    Action Pack

    • No changes.

    Active Job

    • No changes.

    Action Mailer

    • No changes.

    Action Cable

    • No changes.

    Active Storage

    • No changes.

    Railties

    • Use original bundler environment variables during the process of generating a new rails project.

      Marco Costa

    • Allow loading seeds without ActiveJob.

      Fixes #35782

      Jeremy Weathers

    • Only force :async ActiveJob adapter to :inline during seeding.

      BatedUrGonnaDie

  • 5.2.4-rc1 - 2019-11-23
  • 5.2.4-1 - 2019-12-18
  • 5.2.3 - 2019-03-28
  • 5.2.3-rc1 - 2019-03-22
  • 5.2.2 - 2018-12-04
from rails-ujs GitHub release notes

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@hk-picky
Copy link

Messages
📖

Mutation Testing is a type of software testing where certain statements in the source code are mutated (changed) and checked if the test cases are able to find the errors. It is a type of White Box Testing which is mainly used for Unit Testing. Source

Generated by 🚫 dangerJS against 9ce6f56

@hanneskaeufler hanneskaeufler merged commit f6b8cf6 into master Mar 14, 2020
@hanneskaeufler hanneskaeufler deleted the snyk-upgrade-4c7bd0e6ad059fc234025c8dd5589fd1 branch March 14, 2020 12:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment