jdbc-mysql 5.1.47 → 8.0.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f25344c712822e6c5a8e1c01cda9601094265515
4
- data.tar.gz: 6be0b6d39efcffcc928a1b0a9865aa6c2c27a5cd
2
+ SHA256:
3
+ metadata.gz: f39118a7b2f0b6860682fa9ac6ba4619fe86bc06aafd5aeb013947629fbad9c4
4
+ data.tar.gz: 20b490c4ce18665d9ced8a91960bca08ed696db5ffc342fc352e26bc7fbec7d6
5
5
  SHA512:
6
- metadata.gz: 507909b3c0973e07038d5650bdb667e7dd5466e895873608ce21a228d115035e9725f364c1feb37dc64550b60b2b8c20b60f0c59fa0c6511e691dc1d23beebe6
7
- data.tar.gz: f43fd21db815ead102b52df25da9eac72e6b0d1d5921f2205c9ca6c2441b951203f82dbd7ad2349038f3ab3e2638cb139bce2a7482758c7e8bf3952000fcad8c
6
+ metadata.gz: 29c4fb64d5b7301d05342c7a4c67e0ab187b165dc4dc9e34d17ff9133f295baec16f90565aa690b88fa99ad56d5c385a61cfd88a79e5f57dc1ac3a327a393e70
7
+ data.tar.gz: 9d6169090eb820245b7ed7c0d5def83c66e62c73fe9441f8ae6b9db6a291b3c2af2103287213ce0b312a63c3680314c67055a46c435b1cdfba6111e56df10aa6
@@ -5,7 +5,7 @@ module Jdbc
5
5
  module MySQL
6
6
 
7
7
  def self.driver_jar
8
- "mysql-connector-java-#{DRIVER_VERSION}-bin.jar"
8
+ "mysql-connector-java-#{DRIVER_VERSION}.jar"
9
9
  end
10
10
 
11
11
  def self.load_driver(method = :load)
@@ -13,7 +13,7 @@ module Jdbc
13
13
  end
14
14
 
15
15
  def self.driver_name
16
- 'com.mysql.jdbc.Driver'
16
+ 'com.mysql.cj.jdbc.Driver'
17
17
  end
18
18
 
19
19
  if defined?(JRUBY_VERSION) && # enable backwards-compat behavior :
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module MySQL
3
- DRIVER_VERSION = '5.1.47'
3
+ DRIVER_VERSION = '8.0.17'
4
4
  VERSION = DRIVER_VERSION
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-mysql
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.47
4
+ version: 8.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-28 00:00:00.000000000 Z
11
+ date: 2020-02-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.
13
+ description: Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver`
14
+ within JRuby to load the driver.
14
15
  email:
15
16
  - nick@nicksieger.com
16
17
  - ola.bini@gmail.com
@@ -23,8 +24,8 @@ files:
23
24
  - README.md
24
25
  - lib/jdbc/mysql.rb
25
26
  - lib/jdbc/mysql/version.rb
26
- - lib/mysql-connector-java-5.1.47-bin.jar
27
27
  - lib/mysql-connector-java-8.0.11.jar
28
+ - lib/mysql-connector-java-8.0.17.jar
28
29
  homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mysql
29
30
  licenses:
30
31
  - GPL-2
@@ -47,7 +48,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
47
48
  version: '0'
48
49
  requirements: []
49
50
  rubyforge_project:
50
- rubygems_version: 2.6.12
51
+ rubygems_version: 2.7.9
51
52
  signing_key:
52
53
  specification_version: 4
53
54
  summary: JDBC driver for JRuby and MySQL (used by ActiveRecord-JDBC).