-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
125 lines (91 loc) · 3.56 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
oai_fdw 1.10
yyyy-mm-dd
* New Features *
- PostgreSQL 17 support.
oai_fdw 1.9
2024-03-21
* New Features *
- This feature defines a mapping of a PostgreSQL user to an user in the target
triplestore - `user` and `password`, so that the user can be authenticated.
* Bug Fixes *
- This fix a fixed string length limit in the support functions (512 bytes). I
mistakenly assumed that it was defined like that in the OAI-PMH Standard.
oai_fdw 1.8
2023-11-15
* Performance improvements
- This intoduces a new pagination logic to go through the result
sets from OAI requests. It no longer iterates over the xml document
to retrieve the OAI records for building the tuples. Instead, it
now parses all records from a result set into a list right after
loading the xml response, so that they can accessed later on for
building the tuples.
oai_fdw 1.7
2023-09-22
* New Features *
- Adds PostgreSQL 16 support
oai_fdw 1.6
2023-04-11
* New Features *
- Adds `request_redirect` and `request_max_redirect` options (CREATE SERVER).
This allows users to enable or disable URL redirects issued by the server
and also how many times a redirection may occur in a single http request.
* Bug Fixes *
- This bug fix implements a http response validation to avoid a server crash
when a support function receives an invalid OAI document from the repository.
oai_fdw 1.5.1
2023-04-11
* Bug Fixes *
- This bug fix implements a http response validation to avoid a server crash
when a support function receives an invalid OAI document from the repository.
oai_fdw 1.5.0
2022-11-15
* Enhancements *
- add number of inserted and updated records in the harvester log messages
* Bug Fixes *
- clean up parser in support function calls (libxml2)
- fix wrong initial page size in the logs for debug1 sessions
- add missing memory contexts for oai loader and parser.
oai_fdw 1.4.0
2022-10-27
* New Features *
- add update path script for oai_fdw upgrades: 1.1 -> 1.4, 1.2 -> 1.4
and 1.3 -> 1.4
* Bug Fixes *
- fix memory leak in xmldoc for requests with resumption tokens
oai_fdw 1.3.0
2022-10-21
* New Features *
- Connection retry option for HTTP requests (CREATE SERVER).
oai_fdw 1.2.0
2022-10-19
* New Features *
- OAI_HarvestTable: new procedure to harvest data from OAI foreign tables and store them into a
local table.
- Connection retry option for HTTP requests (CREATE SERVER).
* Bug Fixes *
- Fix memory leaks in the libxml2 parser for ListRecords and ListIdentifiers requests
- Fix missing timeout parameter for non-proxy OAI requests
* Enhancements *
- Add regression tests for PostgreSQL 15.
oai_fdw 1.1.0
2022-10-01
* New Features *
- Proxy support for HTTP requests (CREATE SERVER).
- Connection timeout option for HTTP requests (CREATE SERVER).
* Bug Fixes *
- cURL exception handling: Adds missing cURL error message and response code in case of failed http
requests. In previous versions these values were never fetched.
* Enhancements *
- URL validator no longer checks if the URL is reachable. It now only checks the URL's syntax.
- URls with protocols other than HTTP and HTTPS are now rejected before execution, as other
protocols are not supported in the OAI-PMH Standard.
oai_fdw 1.0.0
2022-09-05
* Features *
This release fully enables usage of the following OAI-PMH 2.0 Requests via SQL queries (see README):
- ListRecords
- ListIdentifiers
- GetRecord
- Identify
- ListMetadataFormats
- ListSets