Skip to content

Commit 0c162bc

Browse files
vlsidavecramer
andcommitted
docs: add release notes for 42.2.15 (#1858)
Co-authored-by: Dave Cramer <[email protected]>
1 parent a0babeb commit 0c162bc

File tree

5 files changed

+131
-49
lines changed

5 files changed

+131
-49
lines changed

CHANGELOG.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1010

1111
## [42.2.15] (2020-08-14)
1212
### Changed
13-
- Rename source distribution archive to `postgresql-$version-jdbc-src.tar.gz`, and add top-level archive folder
14-
- add the ability to connect with a GSSAPI encrypted connection. As of PostgreSQL version 12 GSSAPI encrypted connections
13+
- Rename source distribution archive to `postgresql-$version-jdbc-src.tar.gz`, and add top-level archive folder [ba017507](https://github.com/pgjdbc/pgjdbc/commit/ba0175072ee9c751c1496d2fe170f4af7256f1a5)
14+
- Add the ability to connect with a GSSAPI encrypted connection. As of PostgreSQL version 12 GSSAPI encrypted connections
1515
are possible. Now the driver will attempt to connect to the server with a GSSAPI encrypted connection. If that fails then
1616
attempt an SSL connection, finally falling back to a plain text connection. All of this is controlled using both the gssEncMode
17-
and sslMode parameters which, in concert with pg_hba.conf, determine if a particular mode is allowed and or required.
17+
and sslMode parameters which, in concert with pg_hba.conf, determine if a particular mode is allowed and or required. [PR 1821](https://github.com/pgjdbc/pgjdbc/pull/1821) [ad921b9e](https://github.com/pgjdbc/pgjdbc/commit/ad921b9e3563b28b9a03b1e2dfaad0e34efc02f1)
18+
- Source release archive shades dependencies (scram) by default. It affects only postgresql-version-src.tar.gz release artifact [f0301eb9](https://github.com/pgjdbc/pgjdbc/commit/f0301eb901f880059b00b0fb0a3ee93ef7d749a8)
19+
- Refactor decoding arrays [PR 1194](https://github.com/pgjdbc/pgjdbc/pull/1194)
1820

1921
### Added
20-
- Verify nullness with CheckerFramework
22+
- Verify nullness with CheckerFramework [6e524ae5](https://github.com/pgjdbc/pgjdbc/commit/6e524ae51cee67b25426c09a7083465c820c0a0d)
2123

22-
## [42.2.15] (2020-06-19)
23-
### Changed
24-
- Source release archive shades dependencies (scram) by default. It affects only postgresql-version-src.tar.gz release artifact.
24+
### Fixed
25+
- Avoid preparedStatement leak when using updateable ResultSet via insert/update/refreshRow [PR 1815](https://github.com/pgjdbc/pgjdbc/pull/1815) [9a0d2b18](https://github.com/pgjdbc/pgjdbc/commit/9a0d2b18a81c7ec5974d4caf2ff2d218312da25f)
26+
- Change order of checks for oid vs primary keys. OID's have been deprecated. [PR 1613](https://github.com/pgjdbc/pgjdbc/pull/1613)
27+
- Close certificate file stream. [PR 1837](https://github.com/pgjdbc/pgjdbc/pull/1837)
28+
- Make sure socketTimeout is enforced [PR 1831](https://github.com/pgjdbc/pgjdbc/pull/1831)
29+
- Assume PKCS-8 SSL key format by default [PR 1819](https://github.com/pgjdbc/pgjdbc/pull/1819)
2530

2631
## [42.2.14] (2020-06-10)
2732
### Changed
@@ -381,6 +386,7 @@ thrown to caller to be dealt with so no need to log at this verbosity by pgjdbc
381386
[42.2.10]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.9...REL42.2.10
382387
[42.2.11]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.10...REL42.2.11
383388
[42.2.12]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.11...REL42.2.12
384-
[42.2.14]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.12...HEAD
389+
[42.2.13]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.12...REL42.2.13
390+
[42.2.14]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.13...REL42.2.14
385391
[42.2.15]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.14...REL42.2.15
386392
[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.2.15...HEAD

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,46 +24,46 @@ Most people do not need to compile PgJDBC. You can download the precompiled driv
2424
### Maven Central
2525
You can search on The Central Repository with GroupId and ArtifactId [![Maven Search](https://img.shields.io/badge/org.postgresql-postgresql-yellow.svg)][mvn-search] for:
2626

27-
[![Java 8](https://img.shields.io/badge/Java_8-42.2.14-blue.svg)][mvn-jre8]
27+
[![Java 8](https://img.shields.io/badge/Java_8-42.2.15-blue.svg)][mvn-jre8]
2828
```xml
2929
<dependency>
3030
<groupId>org.postgresql</groupId>
3131
<artifactId>postgresql</artifactId>
32-
<version>42.2.14</version>
32+
<version>42.2.15</version>
3333
</dependency>
3434
```
3535

36-
[![Java 7](https://img.shields.io/badge/Java_7-42.2.14.jre7-blue.svg)][mvn-jre7]
36+
[![Java 7](https://img.shields.io/badge/Java_7-42.2.15.jre7-blue.svg)][mvn-jre7]
3737
```xml
3838
<dependency>
3939
<groupId>org.postgresql</groupId>
4040
<artifactId>postgresql</artifactId>
41-
<version>42.2.14.jre7</version>
41+
<version>42.2.15.jre7</version>
4242
</dependency>
4343
```
4444

45-
[![Java 6](https://img.shields.io/badge/Java_6-42.2.14.jre6-blue.svg)][mvn-jre6]
45+
[![Java 6](https://img.shields.io/badge/Java_6-42.2.15.jre6-blue.svg)][mvn-jre6]
4646
```xml
4747
<dependency>
4848
<groupId>org.postgresql</groupId>
4949
<artifactId>postgresql</artifactId>
50-
<version>42.2.14.jre6</version>
50+
<version>42.2.15.jre6</version>
5151
</dependency>
5252
```
5353
[mvn-search]: http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.postgresql%22%20AND%20a%3A%22postgresql%22 "Search on Maven Central"
54-
[mvn-jre6]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.14.jre6|bundle
55-
[mvn-jre7]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.14.jre7|bundle
56-
[mvn-jre8]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.14|bundle
54+
[mvn-jre6]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.15.jre6|bundle
55+
[mvn-jre7]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.15.jre7|bundle
56+
[mvn-jre8]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.15|bundle
5757

5858
#### Development snapshots
5959
Snapshot builds (builds from `master` branch) are also deployed to Maven Central, so you can test current development version (test some bugfix) using:
6060
```xml
6161
<dependency>
6262
<groupId>org.postgresql</groupId>
6363
<artifactId>postgresql</artifactId>
64-
<version>42.2.15-SNAPSHOT</version> <!-- Java 8 -->
65-
<version>42.2.15.jre7-SNAPSHOT</version> <!-- Java 7 -->
66-
<version>42.2.15.jre6-SNAPSHOT</version> <!-- Java 6 -->
64+
<version>42.2.16-SNAPSHOT</version> <!-- Java 8 -->
65+
<version>42.2.16.jre7-SNAPSHOT</version> <!-- Java 7 -->
66+
<version>42.2.16.jre6-SNAPSHOT</version> <!-- Java 6 -->
6767
</dependency>
6868
```
6969

contributors.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"Dmitriy Tseyler" : "https://github.com/tseylerd",
2424
"Dongming" : "https://github.com/Dongming",
2525
"Doug Mayer" : "https://github.com/doxavore",
26+
"Eduardo Souza" : "https://github.com/emsouza",
2627
"Eric McCormack" : "https://github.com/ericmack",
2728
"Florin Asăvoaie" : "https://github.com/FlorinAsavoaie",
2829
"Frane Roje" : "https://github.com/franetw",
@@ -75,6 +76,7 @@
7576
"Michail Nikolaev" : "https://github.com/michail-nikolaev",
7677
"Michele Mancioppi" : "https://github.com/michele-mancioppi",
7778
"Mike Goodman" : "https://github.com/MSGoodman",
79+
"Mike Noordermeer" : "https://github.com/MikeN123",
7880
"Minglei Tu" : "https://github.com/tminglei",
7981
"Mykola Nikishov" : "https://github.com/manandbytes",
8082
"Myo Wai Thant" : "https://github.com/myowaithant9",
@@ -117,6 +119,7 @@
117119
"Zhenlei Huang" : "https://github.com/gmshake",
118120
"adrklos" : "https://github.com/adrklos",
119121
"aryabukhin" : "https://github.com/aryabukhin",
122+
"azraino" : "https://github.com/azraino",
120123
"bazzargh" : "https://github.com/bazzargh",
121124
"bd-infor" : "https://github.com/bd-infor",
122125
"benbenw" : "https://github.com/benbenw",
@@ -138,6 +141,7 @@
138141
"maltalex" : "https://github.com/maltalex",
139142
"mjanczykowski" : "https://github.com/mjanczykowski",
140143
"pbillen" : "https://github.com/pbillen",
144+
"pip25" : "https://github.com/pip25",
141145
"reibitto" : "https://github.com/reibitto",
142146
"rnveach" : "https://github.com/rnveach",
143147
"slmsbrhgn" : "https://github.com/slmsbrhgn",

docs/_posts/2020-06-19-42.2.15-release.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
---
2+
title: PostgreSQL JDBC Driver 42.2.15 Released
3+
date: 2020-08-14 21:39:56 +0300
4+
categories:
5+
- new_release
6+
version: 42.2.15
7+
---
8+
**Notable changes**
9+
10+
### Changed
11+
- Rename source distribution archive to `postgresql-$version-jdbc-src.tar.gz`, and add top-level archive folder [ba017507](https://github.com/pgjdbc/pgjdbc/commit/ba0175072ee9c751c1496d2fe170f4af7256f1a5)
12+
- Add the ability to connect with a GSSAPI encrypted connection. As of PostgreSQL version 12 GSSAPI encrypted connections
13+
are possible. Now the driver will attempt to connect to the server with a GSSAPI encrypted connection. If that fails then
14+
attempt an SSL connection, finally falling back to a plain text connection. All of this is controlled using both the gssEncMode
15+
and sslMode parameters which, in concert with pg_hba.conf, determine if a particular mode is allowed and or required. [PR 1821](https://github.com/pgjdbc/pgjdbc/pull/1821) [ad921b9e](https://github.com/pgjdbc/pgjdbc/commit/ad921b9e3563b28b9a03b1e2dfaad0e34efc02f1)
16+
- Source release archive shades dependencies (scram) by default. It affects only postgresql-version-src.tar.gz release artifact [f0301eb9](https://github.com/pgjdbc/pgjdbc/commit/f0301eb901f880059b00b0fb0a3ee93ef7d749a8)
17+
- Refactor decoding arrays [PR 1194](https://github.com/pgjdbc/pgjdbc/pull/1194) [0fd09396](https://github.com/pgjdbc/pgjdbc/commit/0fd0939696cc7020a98c8fc67471d6c5ce2b375f)
18+
19+
### Added
20+
- Verify nullness with CheckerFramework [6e524ae5](https://github.com/pgjdbc/pgjdbc/commit/6e524ae51cee67b25426c09a7083465c820c0a0d)
21+
22+
### Fixed
23+
- Avoid preparedStatement leak when using updateable ResultSet via insert/update/refreshRow [PR 1815](https://github.com/pgjdbc/pgjdbc/pull/1815) [9a0d2b18](https://github.com/pgjdbc/pgjdbc/commit/9a0d2b18a81c7ec5974d4caf2ff2d218312da25f)
24+
- Change order of checks for oid vs primary keys. OID's have been deprecated. [PR 1613](https://github.com/pgjdbc/pgjdbc/pull/1613)
25+
- Close certificate file stream. [PR 1837](https://github.com/pgjdbc/pgjdbc/pull/1837) [a40052c9](https://github.com/pgjdbc/pgjdbc/commit/a40052c9176afaf68c7c4637e604dc427c2e7335)
26+
- Make sure socketTimeout is enforced [PR 1831](https://github.com/pgjdbc/pgjdbc/pull/1831) [210b27a6](https://github.com/pgjdbc/pgjdbc/commit/210b27a62f39332d93e0b07b4bdc55b8a2ffebb7)
27+
- Assume PKCS-8 SSL key format by default [PR 1819](https://github.com/pgjdbc/pgjdbc/pull/1819) [80d4ed34](https://github.com/pgjdbc/pgjdbc/commit/80d4ed34c99d51dd8b06df00baad0265fd620fec)
28+
29+
<!--more-->
30+
31+
**Commits by author**
32+
33+
Brett Okken (1):
34+
35+
* Refactor decoding arrays [PR 1194](https://github.com/pgjdbc/pgjdbc/pull/1194) [0fd09396](https://github.com/pgjdbc/pgjdbc/commit/0fd0939696cc7020a98c8fc67471d6c5ce2b375f)
36+
37+
Dave Cramer (12):
38+
39+
* use jdk8 [PR 1806](https://github.com/pgjdbc/pgjdbc/pull/1806) [b86a7c32](https://github.com/pgjdbc/pgjdbc/commit/b86a7c32a79784566a0903a5bef8f4677bed3a15)
40+
* fix: replication test we were not waiting for the view to be updated [PR 1805](https://github.com/pgjdbc/pgjdbc/pull/1805) [ba84ddd3](https://github.com/pgjdbc/pgjdbc/commit/ba84ddd39ac275793c9867096d0b1560d254439a)
41+
* fix up readonlyMode docs [PR 1807](https://github.com/pgjdbc/pgjdbc/pull/1807) [796bd4e2](https://github.com/pgjdbc/pgjdbc/commit/796bd4e21bbf3913967bf51a08ae6142f45cb6c4)
42+
* remove old directories [PR 1809](https://github.com/pgjdbc/pgjdbc/pull/1809) [1a0991c5](https://github.com/pgjdbc/pgjdbc/commit/1a0991c56f768867476c311ad239237f3844d886)
43+
* remove old links [PR 1810](https://github.com/pgjdbc/pgjdbc/pull/1810) [1ed7dd8e](https://github.com/pgjdbc/pgjdbc/commit/1ed7dd8e8162ceb7492c5fe7191b48172b2fc29b)
44+
* fix: New PGStream constructor which copies settings from old pgstream [PR 1811](https://github.com/pgjdbc/pgjdbc/pull/1811) [7b49a694](https://github.com/pgjdbc/pgjdbc/commit/7b49a694339e93acbcddeaa2ecb12bcfa85407ec)
45+
* fix: remove code borrowed from apache cxf project [PR 1813](https://github.com/pgjdbc/pgjdbc/pull/1813) [a1980237](https://github.com/pgjdbc/pgjdbc/commit/a19802371a24303695bd1183cb25eec8d3461998)
46+
* Gssapi encrypted [PR 1821](https://github.com/pgjdbc/pgjdbc/pull/1821) [ad921b9e](https://github.com/pgjdbc/pgjdbc/commit/ad921b9e3563b28b9a03b1e2dfaad0e34efc02f1)
47+
* use connection encoding instead of hard coding ISO-8859-1 [PR 1833](https://github.com/pgjdbc/pgjdbc/pull/1833) [de239cc0](https://github.com/pgjdbc/pgjdbc/commit/de239cc09aee3916daa6cdb77abfa486675efbbd)
48+
* Fix: change order of checks for oid vs primary keys. Fixes [PR 1613](https://github.com/pgjdbc/pgjdbc/pull/1613) (#1839) [08507f8e](https://github.com/pgjdbc/pgjdbc/commit/08507f8e04b0da47c09a296fae095a45c412c7b8)
49+
* try java14 [PR 1844](https://github.com/pgjdbc/pgjdbc/pull/1844) [148ecb58](https://github.com/pgjdbc/pgjdbc/commit/148ecb589b6fc02f66831b382085e73646e312a3)
50+
* update docs into the next century [PR 1770](https://github.com/pgjdbc/pgjdbc/pull/1770) [5801e321](https://github.com/pgjdbc/pgjdbc/commit/5801e321e90e06a66020bd015b9e43550ffdf7cd)
51+
52+
Eduardo Souza (1):
53+
54+
* Closing certificate file stream. [PR 1837](https://github.com/pgjdbc/pgjdbc/pull/1837) [a40052c9](https://github.com/pgjdbc/pgjdbc/commit/a40052c9176afaf68c7c4637e604dc427c2e7335)
55+
56+
Mike Noordermeer (1):
57+
58+
* fix: make sure socketTimeout is enforced [PR 1831](https://github.com/pgjdbc/pgjdbc/pull/1831) [210b27a6](https://github.com/pgjdbc/pgjdbc/commit/210b27a62f39332d93e0b07b4bdc55b8a2ffebb7)
59+
60+
Vladimir Sitnikov (18):
61+
62+
* chore: configure method parameter wrapping in IntelliJ via editorconfig [aa70d2f4](https://github.com/pgjdbc/pgjdbc/commit/aa70d2f43fdb80626e115217e913485bf50d7178)
63+
* fix: avoid NPE when initializing SingleCertValidatingFactory with classpath resource and contextclassloader is null [0b7575a9](https://github.com/pgjdbc/pgjdbc/commit/0b7575a97efac445f1a1a645942f364c9b93aef2)
64+
* fix: avoid preparedStatement leak when using updateable ResultSet via insert/update/refreshRow [PR 1815](https://github.com/pgjdbc/pgjdbc/pull/1815) [9a0d2b18](https://github.com/pgjdbc/pgjdbc/commit/9a0d2b18a81c7ec5974d4caf2ff2d218312da25f)
65+
* chore: rename source distribution archive to `postgresql-$version-jdbc-src.tar.gz`, add top-level archive folder [ba017507](https://github.com/pgjdbc/pgjdbc/commit/ba0175072ee9c751c1496d2fe170f4af7256f1a5)
66+
* chore: fix style in pgjbc/build.gradle.kts [44b12472](https://github.com/pgjdbc/pgjdbc/commit/44b124724a1ad6cad27247233942e93a19d8a7e3)
67+
* chore: move testgss to main.yml to avoid duplicate CI groups in GitHub Actions [PR 1824](https://github.com/pgjdbc/pgjdbc/pull/1824) [6d4dc763](https://github.com/pgjdbc/pgjdbc/commit/6d4dc7637028725cbb3ecda87a38be8599a7c178)
68+
* tests: add gssEncMode to SslTest [PR 1823](https://github.com/pgjdbc/pgjdbc/pull/1823) [08bfc033](https://github.com/pgjdbc/pgjdbc/commit/08bfc033f41f300dbf80e7c5afe1241e77c2e919)
69+
* chore: add checkerframework for nullness verification [6e524ae5](https://github.com/pgjdbc/pgjdbc/commit/6e524ae51cee67b25426c09a7083465c820c0a0d)
70+
* doc: add null safety documentation to CONTRIBUTING.md [2ba3028e](https://github.com/pgjdbc/pgjdbc/commit/2ba3028ee5dbb5596d8981801051fca5c233b8ec)
71+
* refactor: add nullness annotations [529e5dc3](https://github.com/pgjdbc/pgjdbc/commit/529e5dc3a8f071ad4946daf3bde1422c21a99524)
72+
* test: reduce stdout verbosity of CopyLargeFileTest [aa190cce](https://github.com/pgjdbc/pgjdbc/commit/aa190cce2c27ac5f5d4fa33f5d156f8bf04cbe0c)
73+
* chore: add S3 Gradle build cache [67155873](https://github.com/pgjdbc/pgjdbc/commit/67155873114a6199ecbb0e3bbcc0a8e34d53db79)
74+
* chore: collect Gradle Build Scan from CI jobs [8b3bf922](https://github.com/pgjdbc/pgjdbc/commit/8b3bf922af615c2420319796480d49fe0732ae35)
75+
* fix: nullability annotations for LruCache/Gettable/GettableHashMap [34cd4f93](https://github.com/pgjdbc/pgjdbc/commit/34cd4f93e49087c216bb4b516cb5b1fee35968f1)
76+
* chore: enable local build cache, and use burrunan/gradle-cache-action@v1 for GitHub Actions caching [3802b453](https://github.com/pgjdbc/pgjdbc/commit/3802b453608349b11a81585f3dbca9f623687d3d)
77+
* chore: shade dependencies when building from the source archive [f0301eb9](https://github.com/pgjdbc/pgjdbc/commit/f0301eb901f880059b00b0fb0a3ee93ef7d749a8)
78+
* fix: use Assertions#assertThrows instead of Assert#assertThrows to keep the code junit 4.12 compatible [075bd102](https://github.com/pgjdbc/pgjdbc/commit/075bd1020b3eb53897add95f5eccc35ea5dd11c4)
79+
* docs: update the current version in readme.md [e901ff74](https://github.com/pgjdbc/pgjdbc/commit/e901ff74ff01245a8712e832da18558ed5b47b84)
80+
81+
azraino (1):
82+
83+
* docs: change readOnlyMode on connect.md documentation [PR 1784](https://github.com/pgjdbc/pgjdbc/pull/1784) [19a835a4](https://github.com/pgjdbc/pgjdbc/commit/19a835a403d7ab0e4d42988d7586a73550462ed3)
84+
85+
pip25 (2):
86+
87+
* fix: assume PKCS-8 SSL key format by default [PR 1819](https://github.com/pgjdbc/pgjdbc/pull/1819) (#1832) [80d4ed34](https://github.com/pgjdbc/pgjdbc/commit/80d4ed34c99d51dd8b06df00baad0265fd620fec)
88+
* docs: touch up SSL keyfile documentation [PR 1836](https://github.com/pgjdbc/pgjdbc/pull/1836) [2c5517af](https://github.com/pgjdbc/pgjdbc/commit/2c5517afec26f5dd784d1f41276210a2cb1e3370)
89+
90+
<a name="contributors_{{ page.version }}"></a>
91+
### Contributors to this release
92+
93+
We thank the following people for their contributions to this release.
94+
95+
[azraino](https://github.com/azraino)
96+
[Brett Okken](https://github.com/bokken)
97+
[Dave Cramer]([email protected])
98+
[Eduardo Souza](https://github.com/emsouza)
99+
[Mike Noordermeer](https://github.com/MikeN123)
100+
[pip25](https://github.com/pip25)
101+
[Vladimir Sitnikov](https://github.com/vlsi)

0 commit comments

Comments
 (0)