bucky-core
bucky-core copied to clipboard
Update ruby-mysql requirement from ~> 2.9 to >= 2.9, < 4.0
Updates the requirements on ruby-mysql to permit the latest version.
Changelog
Sourced from ruby-mysql's changelog.
[3.0.1] - 2022-06-18
- LICENSE: correct author
- FIX: correct LOAD DATA LOCAL INFILE result information.
- FIX: reset SERVER_MORE_RESULTS_EXISTS when error packet is received.
- FIX: close the socket when the connection is disconnected.
- FIX: allow multiple results by default.
[3.0.0] - 2021-11-16
Mysql.newno longer connect. useMysql.connectorMysql#connect.
Mysql.initis removed. useMysql.newinstead.
Mysql.new,Mysql.conncetandMysql#connecttakes URI object or URI string or Hash object. example: Mysql.connect('mysql://user:password@hostname:port/dbname?charset=ascii') Mysql.connect('mysql://user:password@%2Ftmp%2Fmysql.sock/dbname?charset=ascii') # for UNIX socket Mysql.connect('hostname', 'user', 'password', 'dbname') Mysql.connect(host: 'hostname', username: 'user', password: 'password', database: 'dbname')
Mysql.optionsis removed. useMysql#param = valueinstead. For example: m = Mysql.init m.options(Mysql::OPT_LOCAL_INFILE, true) m.connect(host, user, passwd) change to m = Mysql.new m.local_infile = true m.connect(host, user, passwd) or m = Mysql.connect(host, user, passwd, local_infile: true)
Mysql::Timeis removed. Instead,Timeobject is returned for the DATE, DATETIME, TIMESTAMP data, andIntegerobject is returned for the TIME data. If DATE, DATETIME, TIMESTAMP are invalid values for Time, nil is returned.meaningless methods are removed:
bind_resultclient_infoclient_versionget_proto_infoget_server_infoget_server_versionproto_infoquery_with_resultalias method are removed:
get_host_info: usehost_info
... (truncated)
Commits
d52f7ca3.0.1accc8e7bundle update2ee8979omit local infile test if local_infile is false.7cfe372allow multiple results by default.68c0710close the socket when the connection is disconnected.95160b3reset SERVER_MORE_RESULTS_EXISTS when error packet is received.841c2e9correct LOAD DATA LOCAL INFILE result information.01f1830change document uri612834ecorrect author321d253gemspec 3.0.0- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Code Climate has analyzed commit 759c1457 and detected 0 issues on this pull request.
The test coverage on the diff in this pull request is 100.0% (50% is the threshold).
This pull request will bring the total coverage in the repository to 90.5% (0.0% change).
View more on Code Climate.