8000 Update changelog for release (#2596) · pgjdbc/pgjdbc@389be0a · GitHub
[go: up one dir, main page]

Skip to content

Commit 389be0a

Browse files
authored
Update changelog for release (#2596)
* Update changelog for release * remove duplicate feat: change release date
1 parent 364662e commit 389be0a

File tree

3 files changed

+55
-6
lines changed

3 files changed

+55
-6
lines changed

CHANGELOG.md

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

1111
### Fixed
1212

13+
[42.4.2] (2022-08-17 10:33:40 -0400)
14+
### Changed
15+
- fix: add alias to the generated getUDT() query for clarity (PR #2553)[https://github.com/pgjdbc/pgjdbc/pull/2553]
16+
17+
### Added
18+
- fix: make setObject accept UUID array [PR #2587](https://github.com/pgjdbc/pgjdbc/pull/2587)
19+
20+
### Fixed
21+
- fix: regression with GSS. Changes introduced to support building with Java 17 caused failures [Issue #2588](https://github.com/pgjdbc/pgjdbc/issues/2588)
22+
- fix: set a timeout to get the return from requesting SSL upgrade. [PR #2572](https://github.com/pgjdbc/pgjdbc/pull/2572)
23+
- feat: synchronize statement executions (e.g. avoid deadlock when Connection.isValid is executed from concurrent threads)
24+
1325
[42.4.1] (2022-08-01 16:24:20 -0400)
1426
### Security
1527
- fix: CVE-2022-31197 Fixes SQL generated in PgResultSet.refresh() to escape column identifiers so as to prevent SQL injection.
@@ -28,10 +40,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
2840
- chore: added Gradle Wrapper Validation for verifying gradle-wrapper.jar
2941
- chore: added "permissions: contents: read" for GitHub Actions to avoid unintentional modifications by the CI
3042
- chore: support building pgjdbc with Java 17
31-
chore: added Gradle Wrapper Validation for verifying gradle-wrapper.jar
32-
chore: added "permissions: contents: read" for GitHub Actions to avoid unintentional modifications by the CI
33-
chore: support building pgjdbc with Java 17
34-
feat: synchronize statement executions (e.g. avoid deadlock when Connection.isValid is executed from concurrent threads)
43+
- feat: synchronize statement executions (e.g. avoid deadlock when Connection.isValid is executed from concurrent threads)
3544

3645
### Fixed
3746

@@ -728,4 +737,5 @@ thrown to caller to be dealt with so no need to log at this verbosity by pgjdbc
728737
[42.3.5]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.5...REL42.3.6
729738
[42.3.6]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.6...REL42.4.0
730739
[42.4.0]: https://github.com/pgjdbc/pgjdbc/compare/REL42.4.0...REL42.4.1
731-
[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.4.1...HEAD
740+
[42.4.1]: https://github.com/pgjdbc/pgjdbc/compare/REL42.4.1...REL42.4.2
741+
[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.4.2...HEAD

contributors.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,6 @@
197197
"Dmitriy Mukhin" : "mitya555@users.noreply.github.com",
198198
"Olivier Bourgain" : "olivierbourgain02@gmail.com",
199199
"Andrei Lurie" : "alurie@users.noreply.github.com",
200-
"Sven Diedrichsen" : "sven.diedrichsen@gmail.com"
200+
"Sven Diedrichsen" : "sven.diedrichsen@gmail.com",
201+
"Sasa Vilic" : "sasavilic@gmail.com"
201202
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: PostgreSQL JDBC Driver 42.4.2 Released
3+
date: 2022-08-17 10:33:37 -0400
4+
categories:
5+
- new_release
6+
version: 42.4.2
7+
---
8+
**Notable changes**
9+
10+
### Changed
11+
- fix: add alias to the generated getUDT() query for clarity (PR #2553)[https://github.com/pgjdbc/pgjdbc/pull/2553]
12+
13+
### Added
14+
- fix: make setObject accept UUID array [PR #2587](https://github.com/pgjdbc/pgjdbc/pull/2587)
15+
16+
### Fixed
17+
- fix: regression with GSS. Changes introduced to support building with Java 17 caused failures [Issue #2588](https://github.com/pgjdbc/pgjdbc/issues/2588)
18+
- fix: set a timeout to get the return from requesting SSL upgrade. [PR #2572](https://github.com/pgjdbc/pgjdbc/pull/2572)
19+
- feat: synchronize statement executions (e.g. avoid deadlock when Connection.isValid is executed from concurrent threads)
20+
21+
22+
<!--more-->
23+
24+
**Commits by author**
25+
26+
Dave Cramer (7):
27+
Revert revert commits made in PR 2580 [PR 2583](https://github.com/pgjdbc/pgjdbc/pull/2583)
28+
fix mismatched types for invokeExact. Have to tell invokeExact what type we are expecting [PR 2589](https://github.com/pgjdbc/pgjdbc/pull/2589)
29+
update last copyright year [PR 2593](https://github.com/pgjdbc/pgjdbc/pull/2593)
30+
fix erroneous method signature and null subjectCallAs [PR 2595](https://github.com/pgjdbc/pgjdbc/pull/2595)
31+
32+
Sasa Vilic (1):
33+
fix: make setObject accept UUID array [PR 2587](https://github.com/pgjdbc/pgjdbc/pull/2587)
34+
35+
36+
Andrei Lurie (1):
37+
fix: add alias to the generated getUDT() query for clarity (PR #2553)[https://github.com/pgjdbc/pgjdbc/pull/2553]
38+

0 commit comments

Comments
 (0)
0