jdbc-mysql 5.1.33 → 5.1.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a8190b53df57017d4c4e6803c40bbf07cd22776
4
- data.tar.gz: 9c6a740572b467962a8508e2d817ce329b98da71
3
+ metadata.gz: 3bda9720c8b22b83279d3537e6d1fb6d3162fe16
4
+ data.tar.gz: 6a433dd820c1afe89b39986c1e72c237ad14cf69
5
5
  SHA512:
6
- metadata.gz: 7befe378f65c4ebd526354bb81eb97622ed967e40f0aa0cb233cbbd9c05f8a7918d895f97971c5229eea58007f67da6b8f6fdd7731b43c82c26260ec44880dd8
7
- data.tar.gz: f6214fab0ec8e743149c46076ad3d83a6f06694baf6bbd4fca5a792b03bd15203c63394fe7a7010f35eeb8a036279e8aa0bc8d4ed28fa45c84d2844d50d2b867
6
+ metadata.gz: e517f210413c3df8958259d214f67fc9f211d71bb1014c5619c78bd880d0ab2d65af0b56941146b86876b2c0638e58465bff1f40207405b2c702771065375890
7
+ data.tar.gz: 22d1c062a54f55796a79d2bab8cf8265bceb2d4b4626f043156baea0fc7fd8b2af228f54e5ea4302e15ae3c6d268604301132194808e69ebc4015685f776eb7b
@@ -0,0 +1,59 @@
1
+ == 5.1.35
2
+
3
+ Suitable for use with MySQL server versions **5.5**, and **5.6**.
4
+
5
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-34.html
6
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-35.html
7
+
8
+ == 5.1.33
9
+
10
+ Suitable for use with MySQL server versions **5.5**, and **5.6**.
11
+
12
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-32.html
13
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-33.html
14
+
15
+ == 5.1.31
16
+
17
+ Probably the last release suitable for use with "old" MySQL server versions,
18
+ including **4.1**, **5.0**, **5.1**, **5.4**, **5.5**, and **5.6**.
19
+
20
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-31.html
21
+
22
+ == 5.1.30
23
+
24
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-29.html
25
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-30.html
26
+
27
+ == 5.1.28
28
+
29
+ * http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-28.html
30
+
31
+ == 5.1.27
32
+
33
+ * upgraded to 5.1.27 JDBC driver, changes since previous release (5.1.24) :
34
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-25.html
35
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-26.html
36
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-27.html
37
+
38
+ == 5.1.24
39
+
40
+ * upgraded to 5.1.24 JDBC driver, changes since previous release (5.1.22) :
41
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-23.html
42
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-24.html
43
+
44
+ == 5.1.22
45
+
46
+ * `require 'jdbc/mysql'` no longer auto-loads use `Jdbc::MySQL.load_driver`
47
+ * upgraded to 5.1.22 JDBC driver, changes since previous release (5.1.13) :
48
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-15.html
49
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-16.html
50
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-17.html
51
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-18.html
52
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-19.html
53
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-20.html
54
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-21.html
55
+ - http://dev.mysql.com/doc/refman/5.1/en/cj-news-5-1-22.html
56
+
57
+ == 5.1.13
58
+
59
+ * using MySQL driver 5.1.13
@@ -0,0 +1 @@
1
+ load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH << File.expand_path('../lib', __FILE__)
3
+ require 'jdbc/mysql/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = %q{jdbc-mysql}
7
+ gem.version = Jdbc::MySQL::VERSION
8
+
9
+ gem.authors = ['Nick Sieger, Ola Bini, Karol Bucek and JRuby contributors']
10
+ gem.email = ['nick@nicksieger.com', 'ola.bini@gmail.com', 'self@kares.org']
11
+ gem.homepage = 'http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mysql'
12
+ gem.licenses = ['GPL-2']
13
+
14
+ Dir.chdir(File.dirname(__FILE__)) { gem.files = `git ls-files`.split("\n") }
15
+
16
+ gem.rdoc_options = ["--main", "README.md"]
17
+ gem.require_paths = ["lib"]
18
+
19
+ gem.summary = %q{JDBC driver for JRuby and MySQL (used by ActiveRecord-JDBC).}
20
+ gem.description = %q{Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.}
21
+ end
@@ -1,6 +1,6 @@
1
1
  module Jdbc
2
2
  module MySQL
3
- DRIVER_VERSION = '5.1.33'
3
+ DRIVER_VERSION = '5.1.35'
4
4
  VERSION = DRIVER_VERSION
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jdbc-mysql
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.33
4
+ version: 5.1.35
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: 2014-10-20 00:00:00.000000000 Z
11
+ date: 2015-04-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Install this gem `require 'jdbc/mysql'` and invoke `Jdbc::MySQL.load_driver` within JRuby to load the driver.
14
14
  email:
@@ -19,11 +19,14 @@ executables: []
19
19
  extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
- - README.md
22
+ - History.txt
23
23
  - LICENSE.txt
24
- - lib/mysql-connector-java-5.1.33-bin.jar
24
+ - README.md
25
+ - Rakefile
26
+ - jdbc-mysql.gemspec
25
27
  - lib/jdbc/mysql.rb
26
28
  - lib/jdbc/mysql/version.rb
29
+ - lib/mysql-connector-java-5.1.35-bin.jar
27
30
  homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mysql
28
31
  licenses:
29
32
  - GPL-2
@@ -46,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
49
  version: '0'
47
50
  requirements: []
48
51
  rubyforge_project:
49
- rubygems_version: 2.1.9
52
+ rubygems_version: 2.4.5
50
53
  signing_key:
51
54
  specification_version: 4
52
55
  summary: JDBC driver for JRuby and MySQL (used by ActiveRecord-JDBC).