assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
Do not ignore the scoping with query methods in the scope block.
Ryuta Kamizono
Allow aliased attributes to be used in #update_columns and #update.
Gannon McGibbon
Allow spaces in postgres table names.
Fixes issue where "user post" is misinterpreted as ""user"."post"" when quoting table names with the postgres
adapter.
Gannon McGibbon
Cached columns_hash fields should be excluded from ResultSet#column_types
PR #34528 addresses the inconsistent behaviour when attribute is defined for an ignored column. The following test
was passing for SQLite and MySQL, but failed for PostgreSQL:
classDeveloperName < ActiveRecord::Type::Stringdefdeserialize(value)
"Developer: #{value}"endendclassAttributedDeveloper < ActiveRecord::Baseself.table_name ="developers"
attribute :name, DeveloperName.newself.ignored_columns += ["name"]
end
developer =AttributedDeveloper.create
developer.update_column :name, "name"
loaded_developer =AttributedDeveloper.where(id: developer.id).select("*").first
puts loaded_developer.name # should be "Developer: name" but it's just "name"
Dmitry Tsepelev
Values of enum are frozen, raising an error when attempting to modify them.
Emmanuel Byrd
update_columns now correctly raises ActiveModel::MissingAttributeError
if the attribute does not exist.
Sean Griffin
Do not use prepared statement in queries that have a large number of binds.
Ryuta Kamizono
Fix query cache to load before first request.
Eileen M. Uchitelle
Fix collection cache key with limit and custom select to avoid ambiguous timestamp column error.
Fix duplicated record creation when using nested attributes with create_with.
Darwin Wu
Fix regression setting children record in parent before_save callback.
Guo Xiang Tan
Prevent leaking of user's DB credentials on rails db:create failure.
bogdanvlviv
Clear mutation tracker before continuing the around callbacks.
Yuya Tanaka
Prevent deadlocks when waiting for connection from pool.
Brent Wheeldon
Avoid extra scoping when using Relation#update that was causing this method to change the current scope.
Ryuta Kamizono
Fix numericality validator not to be affected by custom getter.
Ryuta Kamizono
Fix bulk change table ignores comment option on PostgreSQL.
Yoshiyuki Kinjo
Action View
No changes.
Action Pack
Reset Capybara sessions if failed system test screenshot raising an exception.
Reset Capybara sessions if take_failed_screenshot raise exception
in system test after_teardown.
Maxim Perepelitsa
Use request object for context if there's no controller
There is no controller instance when using a redirect route or a
mounted rack application so pass the request object as the context
when resolving dynamic CSP sources in this scenario.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
assoc can now be called with either a string or a symbol.
Stefan Schüßler
Fix String#safe_constantize throwing a LoadError for incorrectly cased constant references.
Keenan Brock
Allow Range#=== and Range#cover? on Range
Range#cover? can now accept a range argument like Range#include? and Range#===. Range#=== works correctly on Ruby 2.6. Range#include? is moved
into a new file, with these two methods.
utilum
If the same block is included multiple times for a Concern, an exception is no longer raised.
Mark J. Titorenko, Vlad Bokov
Active Model
Fix date value when casting a multiparameter date hash to not convert
from Gregorian date to Julian date.
Ensure that delete_all on collection proxy returns affected count.
Ryuta Kamizono
Reset scope after delete on collection association to clear stale offsets of removed records.
Gannon McGibbon
Action View
Prevent non-primary mouse keys from triggering Rails UJS click handlers.
Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.
Allow using combine the Cache Control public and no-cache headers.
Before this change, even if public was specified for Cache Control header,
it was excluded when no-cache was included. This fixed to keep public
header as is.
button_to was throwing exception when invoked with params hash that
contains symbol and string keys. The reason for the exception was that to_form_params was comparing the given symbol and string keys.
The issue is fixed by turning all keys to strings inside to_form_params before comparing them.
Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.
All Depfu comment commands
@depfu rebase
Rebases against your default branch and redoes this update
@depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@depfu reopen
Restores the branch and reopens this PR (if it's closed)
@depfu pause
Ignores all future updates for this dependency and closes this PR
@depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)
Here is everything you need to know about this upgrade. Please take a good look at what changed and the test results before merging this pull request.
What changed?
✳️ nokogiri (1.10.1 → 1.10.2) · Repo · Changelog
Release Notes
1.10.2
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by 72 commits:
version bump to v1.10.2
ci: ensure gem-test will work for java
refining valgrind suppressions for ruby 2.6
Merge pull request #1880 from larskanis/adjust-test-class-name
update README with Appveyor badge
Merge pull request #1881 from larskanis/fix-appveyor
update CHANGELOG
Appveyor: Build some versions with system libraries
Update Appveyor-CI to more recent Rubies
Fix Appveyor-CI which is broken since commit 609cddedb
Fix test class name to match the filename
Merge pull request #1877 from ksolo/revert-libxml2-server-side-include-support
Update handling of server side includes
Merge pull request #1874 from sparklemotion/remove-runtime-helpers-usage
update CHANGELOG
README: update CI link
Merge pull request #1872 from adjam/issue-1847-jruby-swallows-sax-exceptions
rename exception vars
refactor to make codeclimate happy
Rethrow exceptions caught by Java SAX handler
concourse: docker images need the latest gems
Merge pull request #1871 from ksolo/revert-libxml2-patch
Remove support for future script macros
README cleanup
Replace deprecated usage of RuntimeHelpers with Helpers
concourse: pr pipeline uses ruby-2.6-system as a gate
concourse: avoid failing because simplecov isn't turned on
actually, remove code climate config
code climate: omit test files
concourse: add README to ignored_paths
README: add code climate test coverage badge
Merge branch 'flavorjones-2019-01-15-code-climate-coverage-reporting'
concourse: report test coverage to code climate
concourse: docker: clean removes generated dockerfiles
concourse: try `bundle install --local` before hitting rubygems.org
Merge branch '1864-restructure-pipelines'
concourse: restructure pipeline topology
concourse: extract some common pipeline chunks into shared files
bump concourse gem dependency version
Remove "allow fail" group and the paused windows tasks
Remove PR group, jobs, and resources from master pipeline
Extract a separate pipeline for PRs
concourse: fix gem-install-and-test to work with jruby
Merge branch '1845-automate-jruby-gem-building-and-testing'
concourse: build, install, and test the java platform gem
concourse: remove cruft from java task definitions
concourse: do not retry jruby
Merge branch '1863-use-custom-docker-image-xenial-and-concourse-cleanup'
concourse: remove cruft from `rake-test/run.sh`
concourse: use custom xenial docker image
concourse: docker: added a `clean` task
concourse: docker: add xenial image
concourse: docker: extract bundler update and don't use Gemfile.lock
concourse: make valgrind tests unverbose again
concourse: remove rubinius coverage
Merge branch '1863-use-custom-docker-images-jruby'
concourse: build and use custom docker images for jruby
Merge branch '1863-use-custom-docker-images-mri'
concourse: use the custom docker images for MRI test tasks
concourse: tasks and templates to generate docker images
Re-use XmlNode resetCache
Fix nodes ownership after cloning a Xml/HtmlDocument
README: update with `rake compile test`
make sure we invoke the `compile` rake task where necessary
Merge branch '1845-automate-gem-building-and-testing'
concourse: job to build a gem, and test installing it
Rakefile: remove `compile` as a prereq for `test`
omit CODE_OF_CONDUCT.md from Hoe manifest
concourse: commit generated pipeline file
dependency: update concourse gem
concourse: remove concourse generate file
fix CHANGELOG typo
✳️ rails (5.1.6.2 → 5.2.3) · Repo
Release Notes
5.2.3
5.2.2
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ actioncable (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ actionmailer (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ actionpack (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ actionview (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ activejob (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ activemodel (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ activerecord (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ activesupport (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ arel (indirect, 8.0.0 → 9.0.0) · Repo · Changelog
Commits
See the full diff on Github. The new version differs by 52 commits:
Prepare for 9.0.0
Merge pull request #501 from abelards/patch-1
Merge pull request #502 from kddeisz/count-math
Allow count nodes to have math functions
Update README.md
Merge pull request #500 from jcoleman/fix_incorrect_typecasting_of_raw_sql_strings
Type-castable attributes should not try to cast SqlLiteral nodes
Merge pull request #496 from amatsuda/froms_to_nowhere
Merge pull request #499 from jgraichen/jg/cte-bindparams
Support BindParams in subqueries
Merge pull request #498 from yhirano55/update_travis
Update .travis.yml
Unused variables
Merge pull request #495 from koic/add_required_ruby_version_to_gemspec
Update travis.yml
Add required_ruby_version to gemspec
Merge pull request #494 from koic/remove_encoding_utf8_magic_comment
Remove encoding utf-8 magic comment
Merge pull request #493 from gaurish/patch-1
Remove Unused variable - offset_bind
Merge pull request #492 from mikaji/ci_against_2.4.1
Merge pull request #491 from yahonda/follow_up_add_bind_for_oracle_visitor
CI against 2.4.1
Address `undefined method `value_for_database'` in Oracle visitor
Change the verison to 9.0.0.alpha
Merge pull request #490 from MaxLap/fix_nodes_hash_eql_eqeq
Add missing hash, eql?, == to various node classes
Merge pull request #489 from kamipo/remove_unused_bind_values
Remove unused `bind_values`
Fix test failures
Adjust `BindParam` as needed for AR
Add a collector to grab the bind values off the AST
Ensure `ToSql` collector returns a UTF-8 string
Refactor `substitute_binds` to perform substitution immediately
Add a value field `Nodes::BindParam`
Rename `Collectors::Bind`
Merge pull request #484 from kirs/multiple-insert-v2
Merge pull request #472 from film42/master
Test concurrency of visitor superclass fallback
Support INSERT with multiple values
Merge pull request #483 from kamipo/remove_unused_engine
Add regression test
Revert "Merge pull request #482 from kirs/multiple-insert"
Merge pull request #482 from kirs/multiple-insert
Remove unused `engine`
Support multiple inserts
Merge pull request #475 from PedroSena/chainable-insert
Made InsertManager#insert chainable
Merge pull request #474 from JaKXz/patch-1
docs(distinct): tweaks [skip ci]
docs(distinct): fix distinct example [skip ci]
docs: add distinct to README
↗️ railties (indirect, 5.1.6.2 → 5.2.3) · Repo · Changelog
Release Notes
5.2.3
5.1.7
Does any of this look wrong? Please let us know.
Commits
See the full diff on Github. The new version differs by more commits than we can show here.
↗️ websocket-driver (indirect, 0.6.5 → 0.7.0) · Repo · Changelog
Commits
See the full diff on Github. The new version differs by 17 commits:
Fix the version of Rubygems that Travis is using on Ruby 1.9.
Bump version to 0.7.0.
Refactor the client examples, and get the TCPSocket one into a runnable state so it can be run from the command line with a URI.
Don't require rubygems, this has not been necessary since Ruby 1.8.
Merge pull request #53 from izwick-schachter/master
Added TCPSocket client example
Rename tcp_server.rb to em_server.rb.
Add an example EventMachine client.
Flesh out the docs for the new ping/pong events.
Make the ping/pong tests check the content of the events.
Emit ping and pong events after all other effects of those frames have been carried out.
Merge pull request #51 from ably-forks/support-ping-in-event-emitter
Update Ruby versions in Travis config.
Update docs to reflect ping & pong events
Emit :ping and :pong events in the driver
Merge pull request #50 from junaruga/feature/travis-ruby-head
Update Ruby 2.3, 2.4 to latest version on Travis.
🆕 activestorage (added, 5.2.3)
🆕 marcel (added, 0.3.3)
🆕 mimemagic (added, 0.3.3)
Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with
@depfu rebase
.All Depfu comment commands