Skip to content

Commit e5ca4d3

Browse files
committed
Update ChangeLog, AUTHORS and issues_closed_for_0.18.md for an upcoming 0.18 release.
1 parent e3db88d commit e5ca4d3

File tree

4 files changed

+97
-2
lines changed

4 files changed

+97
-2
lines changed

AUTHORS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
Alan Coopersmith <alan.coopersmith@oracle.com>
2+
Alan Urmancheev <108410815+alurm@users.noreply.github.com>
23
Alexander Dahl <post@lespocky.de>
34
Alexandru Ardelean <ardeleanalex@gmail.com>
45
An7ar35 <eadavison@protonmail.com>
56
andy5995 <andy400-dev@yahoo.com>
67
Aram Poghosyan <Aram.Poghosyan@teamviewer.com>
78
Björn Esser <besser82@fedoraproject.org>
89
BonsaY <bonsay@posteo.de>
10+
Bruno Haible <bruno@clisp.org>
911
changyong guo <guo1487@163.com>
1012
chenguoping <chenguopingdota@163.com>
1113
Chris Lamb <lamby@debian.org>
@@ -21,9 +23,12 @@ dota17 <chenguopingdota@163.com>
2123
Eric Haszlakiewicz <erh+git@nimenees.com>
2224
Eric Hawicz <erh+git@nimenees.com>
2325
Even Rouault <even.rouault@spatialys.com>
26+
evo <149657734+evo-i@users.noreply.github.com>
27+
Fabrice Fontaine <fontaine.fabrice@gmail.com>
2428
Federico Francescon <federico.francescon@higeco.com>
2529
Gianluigi Tiesi <sherpya@netfarm.it>
2630
grdowns <grdowns@microsoft.com>
31+
HansolChoe <hansol614@gmail.com>
2732
Hex052 <elijahiff@gmail.com>
2833
hofnarr <hofnarr@hofnarr.fi>
2934
ihsinme <61293369+ihsinme@users.noreply.github.com>
@@ -51,14 +56,17 @@ Micah Snyder <micasnyd@cisco.com>
5156
Michael Clark <michael@metaparadigm.com>
5257
myd7349 <myd7349@gmail.com>
5358
Pascal Cuoq <cuoq@trust-in-soft.com>
59+
Pavel Zwerschke <pavelzw@gmail.com>
5460
Pawday <pawday@mail.ru>
5561
Philosoph228 <philosoph228@gmail.com>
5662
Pierce Lopez <pierce.lopez@gmail.com>
5763
Po-Chuan Hsieh <sunpoet@sunpoet.net>
5864
Ramiro Polla <ramiro.polla@gmail.com>
5965
Rikard Falkeborn <rikard.falkeborn@gmail.com>
6066
Robert Bielik <robert.bielik@dirac.com>
67+
Robert Pang <robertpang@google.com>
6168
Robert <roby_p97@yahoo.com>
69+
Rolf Eike Beer <eb@emlix.com>
6270
Rosen Penev <rosenp@gmail.com>
6371
Rubasri Kalidas <rubasri.kalidas@intel.com>
6472
Sergey Sharshunov <s.sharshunov@gmail.com>

ChangeLog

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,42 @@
1+
0.18 (up to commit 6bfab90, 2023-09-15)
2+
========================================
3+
4+
Deprecated and removed features:
5+
--------------------------------
6+
* Clean up pre-3.9 CMake support in CMakeLists.txt
7+
8+
New features
9+
------------
10+
* Build pkg-config for msvc as well
11+
12+
Significant changes and bug fixes
13+
---------------------------------
14+
* Critical fix for binary compatibility with 0.16: Move the
15+
json_tokener_error_memory entry to the end of enum json_tokener_error.
16+
* Issue #829: attempt to detect clang-cl.exe and pass MSVC-compatile command
17+
line arguments.
18+
* PR #831 - rename WIN32 to _WIN32
19+
* PR #839 - Fix gcc 5 "may be used uninitialized" failure in json_pointer.c
20+
* PR #849 - random_seed.c: add a Coverity Scan suppression
21+
* Issue #854: Set error=json_tokener_error_memory in
22+
json_tokener_parser_verbose() when allocating the tokener fails.
23+
* Issue #857: fix a few places where json_tokener should have been returning
24+
json_tokener_error_memory but wasn't.
25+
* Handle yet another out-of-memory condition in json_tokener, duplocate can
26+
return NULL.
27+
* Various fixes in the fuzzers
28+
* A few minor doc fixes
29+
30+
***
131

232
0.17 (up to commit 077661f, 2023-08-08)
333
========================================
434

35+
Known Bugs
36+
----------
37+
* DO NOT USE THE 0.17 RELEASE: json_tokener_error_memory in misplaced in the
38+
json_tokener_error enum, leading to binary compatibility issues.
39+
540
Deprecated and removed features:
641
--------------------------------
742
* None

abi-check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

3-
prev=0.16
4-
release=0.17
3+
prev=0.17
4+
release=0.18
55

66
# ... clone json-c, abi-compliance-checker, abi-dumper
77

issues_closed_for_0.18.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
This list was created with:
2+
3+
```
4+
PREV=2023-08-12
5+
NOW=2024-09-15
6+
curl "https://api.github.com/search/issues?q=repo%3Ajson-c%2Fjson-c+closed%3A>${PREV}+created%3A<${NOW}&sort=created&order=asc&per_page=100&page=1" > issues1.out
7+
jq -r '.items[] | "[" + .title + "](" + .url + ")" | tostring' issues?.out > issues.md
8+
sed -e's,^\[ *\(.*\)\](https://api.github.com/.*/\([0-9].*\)),* [Issue #\2](https://github.com/json-c/json-c/issues/\2) - \1,' -i issues.md
9+
cat issues.md >> issues_closed_for_0.18.md
10+
```
11+
12+
* [Issue #826](https://github.com/json-c/json-c/issues/826) - CMake: remove needless policy setting
13+
* [Issue #827](https://github.com/json-c/json-c/issues/827) - Resolve build issue in tokener_parse_ex_fuzzer.c
14+
* [Issue #828](https://github.com/json-c/json-c/issues/828) - Put arc4random check under DISABLE_EXTRA_LIBS=OFF in CMakeLists.txt.
15+
* [Issue #829](https://github.com/json-c/json-c/issues/829) - Cannot build with clang-cl
16+
* [Issue #830](https://github.com/json-c/json-c/issues/830) - I am looking whether this CVE - CVE-2021-32292 is impacted by json-c version v0.13.1or not ?
17+
* [Issue #831](https://github.com/json-c/json-c/issues/831) - rename WIN32 to _WIN32
18+
* [Issue #833](https://github.com/json-c/json-c/issues/833) - memory leak issue in 0.13
19+
* [Issue #834](https://github.com/json-c/json-c/issues/834) - fix error des of 'error_memory'
20+
* [Issue #835](https://github.com/json-c/json-c/issues/835) - fix error des of 'error_memory'
21+
* [Issue #836](https://github.com/json-c/json-c/issues/836) - Null pointer dereference in tokener_parse_ex_fuzzer.cc
22+
* [Issue #837](https://github.com/json-c/json-c/issues/837) - Add type checking for parsed objects in tokener_parse_ex_fuzzer
23+
* [Issue #838](https://github.com/json-c/json-c/issues/838) - Cannot link properly using cmake
24+
* [Issue #839](https://github.com/json-c/json-c/issues/839) - json_pointer.c: initialize idx
25+
* [Issue #840](https://github.com/json-c/json-c/issues/840) - Memory leak when enable HAVE_SETLOCALE and HAVE_USELOCALE
26+
* [Issue #841](https://github.com/json-c/json-c/issues/841) - Random crash in json_tokener_parse
27+
* [Issue #842](https://github.com/json-c/json-c/issues/842) - Assignment bug in json_pointer.c
28+
* [Issue #843](https://github.com/json-c/json-c/issues/843) - _WIN32 should be used, not WIN32 in source code ifdefs.
29+
* [Issue #844](https://github.com/json-c/json-c/issues/844) - Doxygen: mis-wording in `json_object_put`
30+
* [Issue #845](https://github.com/json-c/json-c/issues/845) - [CMP0153](https://cmake.org/cmake/help/latest/policy/CMP0153.html)
31+
* [Issue #846](https://github.com/json-c/json-c/issues/846) - CMP0153
32+
* [Issue #848](https://github.com/json-c/json-c/issues/848) - json_object_from_file caused calloc SIGSEGV
33+
* [Issue #849](https://github.com/json-c/json-c/issues/849) - random_seed.c: add a Coverity Scan suppression
34+
* [Issue #850](https://github.com/json-c/json-c/issues/850) - Missing return description
35+
* [Issue #851](https://github.com/json-c/json-c/issues/851) - Allow NULL in json_object_new_string() and json_object_new_string_len()
36+
* [Issue #852](https://github.com/json-c/json-c/issues/852) - docs: micro typo in json_object_put doc
37+
* [Issue #853](https://github.com/json-c/json-c/issues/853) - json_tokener_parse_verbose does not set the error indicator when it fails to allocate the tokener
38+
* [Issue #854](https://github.com/json-c/json-c/issues/854) - json_tokener_parse_verbose sets the error indicator to a wrong value when there is a memory allocation failure
39+
* [Issue #856](https://github.com/json-c/json-c/issues/856) - Using libjson-c.so or compiling from source seg faults on json_tokener_parse_ex in alpine docker container
40+
* [Issue #857](https://github.com/json-c/json-c/issues/857) - json_tokener_parse_verbose sets the error indicator to a wrong value when there is a memory allocation failure
41+
* [Issue #858](https://github.com/json-c/json-c/issues/858) - json_tokener.h: json_tokener_parse_verbose: fix typo
42+
* [Issue #859](https://github.com/json-c/json-c/issues/859) - Develop
43+
* [Issue #860](https://github.com/json-c/json-c/issues/860) - Develop
44+
* [Issue #861](https://github.com/json-c/json-c/issues/861) - Handle yet another out-of-memory condition.
45+
* [Issue #862](https://github.com/json-c/json-c/issues/862) - Missing `json-c-targets.cmake` during build cmake build step
46+
* [Issue #863](https://github.com/json-c/json-c/issues/863) - build ios simulator error
47+
* [Issue #864](https://github.com/json-c/json-c/issues/864) - Build pkg-config for msvc as well
48+
* [Issue #865](https://github.com/json-c/json-c/issues/865) - Assertion usage
49+
* [Issue #866](https://github.com/json-c/json-c/issues/866) - Added github actions
50+
* [Issue #868](https://github.com/json-c/json-c/issues/868) - I meet compile error in harmony
51+
* [Issue #869](https://github.com/json-c/json-c/issues/869) - At a high level how are jsons parses? Are they terminated by the new line?
52+
* [Issue #870](https://github.com/json-c/json-c/issues/870) - Non-Compliant features should be optional (and disabled)

0 commit comments

Comments
 (0)