jdbc-postgres 42.1.2 → 42.1.4
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 +5 -5
- data/README.md +1 -1
- data/lib/jdbc/postgres.rb +3 -1
- data/lib/jdbc/postgres/version.rb +1 -1
- data/lib/{postgresql-42.1.2.jar → postgresql-42.1.4.jar} +0 -0
- data/lib/{postgresql-42.1.2.jre6.jar → postgresql-42.1.4.jre6.jar} +0 -0
- data/lib/{postgresql-42.1.2.jre7.jar → postgresql-42.1.4.jre7.jar} +0 -0
- metadata +8 -10
- data/History.txt +0 -84
- data/Rakefile +0 -1
- data/jdbc-postgres.gemspec +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e1e4939f15d564e69dbbaffb06aae9a12ece713b2a045d404d3a46dc647f9f9c
|
4
|
+
data.tar.gz: 3a37bac049c3a8460b2fd261eb688d8b8374ddd77a0e301837cc828ec9e78706
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8db499f83888dd5059bd23da9faf6e90bf2c34c077cd291a545c5d3c591d54f9647a0b8f458c5b67636127710677776a0a674abddcb17bf4c5aeb427b124629a
|
7
|
+
data.tar.gz: 9aaac8e412e65ba6bcdafa71d0d937246e7a1b58b6c70f4b92d1ce1dbfa39d95fb4cc1bb16463d53f58bc909739560454619f8c6282b4e5e4dd1158f302b12f6
|
data/README.md
CHANGED
@@ -19,7 +19,7 @@ For backwards compatibility with older (<= **9.1.903**) versions of the gem use
|
|
19
19
|
|
20
20
|
## Copyright
|
21
21
|
|
22
|
-
Copyright (c) 2012-
|
22
|
+
Copyright (c) 2012-2014 [The JRuby Team](https://github.com/jruby).
|
23
23
|
|
24
24
|
The PostgreSQL JDBC driver is distributed under the BSD license,
|
25
25
|
see *LICENSE.txt* and http://jdbc.postgresql.org/license.html for details.
|
data/lib/jdbc/postgres.rb
CHANGED
@@ -15,7 +15,7 @@ module Jdbc
|
|
15
15
|
rescue LoadError => e
|
16
16
|
if (version = jre_version) && version < 6
|
17
17
|
warn "failed to load postgresql (driver) jar, please note that we no longer " <<
|
18
|
-
|
18
|
+
"include JDBC 3.x support, on Java < 6 please use gem 'jdbc-postgres', '~> 9.2'"
|
19
19
|
end
|
20
20
|
raise e
|
21
21
|
end
|
@@ -24,6 +24,8 @@ module Jdbc
|
|
24
24
|
'org.postgresql.Driver'
|
25
25
|
end
|
26
26
|
|
27
|
+
private
|
28
|
+
|
27
29
|
def self.jre_version
|
28
30
|
version = ENV_JAVA[ 'java.specification.version' ]
|
29
31
|
version = version.split('.').last.to_i # '1.7' => 7, '9' => 9
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,16 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jdbc-postgres
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 42.1.
|
4
|
+
version: 42.1.4
|
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: 2017-11-
|
11
|
+
date: 2017-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: Install this gem `require 'jdbc/postgres'` and invoke `Jdbc::Postgres.load_driver`
|
13
|
+
description: Install this gem `require 'jdbc/postgres'` and invoke `Jdbc::Postgres.load_driver`
|
14
|
+
within JRuby to load the driver.
|
14
15
|
email:
|
15
16
|
- nick@nicksieger.com
|
16
17
|
- ola.bini@gmail.com
|
@@ -19,18 +20,15 @@ executables: []
|
|
19
20
|
extensions: []
|
20
21
|
extra_rdoc_files: []
|
21
22
|
files:
|
22
|
-
- History.txt
|
23
23
|
- LICENSE.txt
|
24
24
|
- README.md
|
25
|
-
- Rakefile
|
26
|
-
- jdbc-postgres.gemspec
|
27
25
|
- lib/jdbc/postgres.rb
|
28
26
|
- lib/jdbc/postgres/version.rb
|
29
27
|
- lib/jdbc/postgresql.rb
|
30
28
|
- lib/jdbc/postgresql/version.rb
|
31
|
-
- lib/postgresql-42.1.
|
32
|
-
- lib/postgresql-42.1.
|
33
|
-
- lib/postgresql-42.1.
|
29
|
+
- lib/postgresql-42.1.4.jar
|
30
|
+
- lib/postgresql-42.1.4.jre6.jar
|
31
|
+
- lib/postgresql-42.1.4.jre7.jar
|
34
32
|
homepage: http://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-postgres
|
35
33
|
licenses:
|
36
34
|
- BSD
|
@@ -53,7 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
51
|
version: '0'
|
54
52
|
requirements: []
|
55
53
|
rubyforge_project:
|
56
|
-
rubygems_version: 2.6.
|
54
|
+
rubygems_version: 2.6.13
|
57
55
|
signing_key:
|
58
56
|
specification_version: 4
|
59
57
|
summary: JDBC driver for JRuby and PostgreSQL (used by ActiveRecord-JDBC).
|
data/History.txt
DELETED
@@ -1,84 +0,0 @@
|
|
1
|
-
== 9.4.1200
|
2
|
-
|
3
|
-
* Upgraded to driver version 9.4-1200
|
4
|
-
https://jdbc.postgresql.org/documentation/changelog.html#version_9.4-1200
|
5
|
-
|
6
|
-
== 9.3.1103
|
7
|
-
|
8
|
-
* Upgraded to driver version 9.3-1103
|
9
|
-
https://jdbc.postgresql.org/documentation/changelog.html#version_9.3-1103
|
10
|
-
|
11
|
-
== 9.2.1004
|
12
|
-
Likely the last release where we bundle JDBC 3.x driver version (Java < 6)
|
13
|
-
|
14
|
-
* Upgraded to 9.2-1004 drivers (still compatible with PostgreSQL 7.2+).
|
15
|
-
|
16
|
-
== 9.3.1102
|
17
|
-
|
18
|
-
* Upgraded to driver version 9.3-1102
|
19
|
-
|
20
|
-
http://jdbc.postgresql.org/download.html#supported
|
21
|
-
Changes https://github.com/pgjdbc/pgjdbc/compare/REL9_3_1101...REL9_3_1102
|
22
|
-
|
23
|
-
== 9.3.1101
|
24
|
-
|
25
|
-
* Upgraded to driver version 9.3-1101
|
26
|
-
|
27
|
-
http://jdbc.postgresql.org/download.html#supported
|
28
|
-
Changes https://github.com/pgjdbc/pgjdbc/compare/REL9_3_1100...REL9_3_1101
|
29
|
-
|
30
|
-
== 9.3.1100
|
31
|
-
|
32
|
-
* Using "new" 9.3 driver version 9.3-1100
|
33
|
-
|
34
|
-
== 9.2.1004
|
35
|
-
|
36
|
-
Likely the last release where we bundle JDBC 3.x driver version (Java < 6)
|
37
|
-
|
38
|
-
* Upgraded to 9.2-1004 drivers (still compatible with PostgreSQL 7.2+).
|
39
|
-
|
40
|
-
== 9.2.1002
|
41
|
-
|
42
|
-
* Upgraded to 9.2-1002 drivers (still compatible with PostgreSQL 7.2+).
|
43
|
-
* 9.2 supports hstore among others
|
44
|
-
See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.2-1002].
|
45
|
-
First 9.2 release: {9.2-1000}[http://jdbc.postgresql.org/changes.html#version_9.2-1000].
|
46
|
-
|
47
|
-
== 9.1.903
|
48
|
-
* Upgraded to 9.1-903 drivers (still compatible with PostgreSQL 7.2+).
|
49
|
-
See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.1-903].
|
50
|
-
Though change logging has been a bit spotty of late.
|
51
|
-
|
52
|
-
== 9.1.901
|
53
|
-
|
54
|
-
* Upgraded to 9.1-901 drivers (still compatible with PostgreSQL 7.2+).
|
55
|
-
See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.1-901].
|
56
|
-
|
57
|
-
== 9.0.801
|
58
|
-
|
59
|
-
* Upgraded to 9.0-801 drivers (still compatible with PostgreSQL 7.2+).
|
60
|
-
See PostgreSQL JDBC {Change Log}[http://jdbc.postgresql.org/changes.html#version_9.0-801].
|
61
|
-
|
62
|
-
|
63
|
-
== 8.4.702
|
64
|
-
* Upgraded to 8.4-702 drivers, see PostgreSQL JDBC
|
65
|
-
{Change Log}[http://jdbc.postgresql.org/changes.html#version_8.4-702].
|
66
|
-
|
67
|
-
== 8.4.701
|
68
|
-
|
69
|
-
* Upgraded to 8.4-701 drivers, see PostgreSQL JDBC
|
70
|
-
{Change Log}[http://jdbc.postgresql.org/changes.html#version_8.4-701].
|
71
|
-
|
72
|
-
== 8.3.605
|
73
|
-
|
74
|
-
* Upgraded to 8.3-605 drivers, see PostgreSQL JDBC
|
75
|
-
{Change Log}[http://jdbc.postgresql.org/changes.html#version_8.3-605].
|
76
|
-
|
77
|
-
== 8.3.604
|
78
|
-
|
79
|
-
* Upgraded to 8.3-604 drivers
|
80
|
-
* Added runtime selection of either JDBC 3 or JDBC 4 (j2se 1.6+) driver.
|
81
|
-
|
82
|
-
== 8.2
|
83
|
-
|
84
|
-
* Initial version
|
data/Rakefile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
load File.expand_path('../Rakefile.jdbc', File.dirname(__FILE__))
|
data/jdbc-postgres.gemspec
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
$LOAD_PATH << File.expand_path('../lib', __FILE__)
|
3
|
-
require 'jdbc/postgres/version'
|
4
|
-
|
5
|
-
Gem::Specification.new do |gem|
|
6
|
-
gem.name = %q{jdbc-postgres}
|
7
|
-
gem.version = Jdbc::Postgres::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-postgres'
|
12
|
-
gem.licenses = ['BSD']
|
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 PostgreSQL (used by ActiveRecord-JDBC).}
|
20
|
-
gem.description = %q{Install this gem `require 'jdbc/postgres'` and invoke `Jdbc::Postgres.load_driver` within JRuby to load the driver.}
|
21
|
-
end
|