Skip to content

Commit 870965e

Browse files
committed
Update AUTHORS, add issues_closed_for_0.15.md, tweak the release checklist slightly.
1 parent 616b105 commit 870965e

File tree

3 files changed

+101
-3
lines changed

3 files changed

+101
-3
lines changed

AUTHORS

+11
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ Christopher Head <[email protected]>
77
Chris Wolfe <[email protected]>
88
C. Watford ([email protected])
99
Darjan Krijan <[email protected]>
10+
David McCann <[email protected]>
11+
12+
Eric Haszlakiewicz <[email protected]>
1013
Eric Hawicz <[email protected]>
14+
Gianluigi Tiesi <[email protected]>
1115
16+
1217
Ivan Romanov <[email protected]>
1318
Jaap Keuter <[email protected]>
1419
@@ -18,13 +23,19 @@ Jonathan Wiens <[email protected]>
1823
Jose Bollo <[email protected]>
1924
Keith Holman <[email protected]>
2025
Liang, Gao <[email protected]>
26+
2127
28+
Micah Snyder <[email protected]>
2229
Michael Clark <[email protected]>
2330
31+
Pascal Cuoq <[email protected]>
2432
Pierce Lopez <[email protected]>
2533
Po-Chuan Hsieh <[email protected]>
2634
Ramiro Polla <[email protected]>
2735
Rikard Falkeborn <[email protected]>
2836
2937
Rubasri Kalidas <[email protected]>
38+
Simon McVittie <[email protected]>
39+
Tobias Stoeckmann <[email protected]>
40+
Tudor Brindus <[email protected]>
3041
Unmanned Player <[email protected]>

RELEASE_CHECKLIST.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
* Consider re-adding backwards compatible support, through symbol
2222
aliases and appropriate entries in json-c.sym
2323
* Update the AUTHORS file
24+
25+
git log -r 31ab57ca..HEAD | grep Author: | sed -e's/Author: //' ; cat AUTHORS ) | sort -u > A1
26+
mv A1 AUTHORS
27+
2428
* Exclude mentioning changes that have already been included in a point
2529
release of the previous release branch.
2630

@@ -40,7 +44,7 @@ Start creating the new release:
4044
cd distcheck
4145
# Note, the build directory *must* be entirely separate from
4246
# the source tree for distcheck to work properly.
43-
cmake ../json-c-${release}
47+
cmake -DCMAKE_BUILD_TYPE=Release ../json-c-${release}
4448
make distcheck
4549
cd ..
4650

@@ -55,7 +59,6 @@ Make any fixes/changes *before* branching.
5559
Using ${release}:
5660
Update the version in json_c_version.h
5761
Update the version in CMakeLists.txt (VERSION in the project(...) line)
58-
Update the version in config.h.win32 (several places)
5962

6063
Update the set_target_properties() line in CmakeLists.txt to set the shared
6164
library version. Generally, unless we're doing a major release, change:
@@ -121,7 +124,6 @@ Add new section to ChangeLog for ${release}+1
121124
Use ${release}.99 to indicate a version "newer" than anything on the branch:
122125
Update the version in json_c_version.h
123126
Update the version in CMakeLists.txt
124-
Update the version in config.h.win32
125127

126128
Update RELEASE_CHECKLIST.txt, set release=${release}+1
127129

issues_closed_for_0.15.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
This list was created with:
2+
3+
```
4+
curl "https://api.github.com/search/issues?q=repo%3Ajson-c%2Fjson-c+closed%3A>2020-04-18+created%3A<2020-07-23&sort=created&order=asc&per_page=100&page=1" > issues1.out
5+
jq -r '.items[] | "[" + .title + "](" + .url + ")" | tostring' issues?.out > issues.md
6+
sed -e's,^\[ *\(.*\)\](https://api.github.com/.*/\([0-9].*\)),* [Issue #\2](https://github.com/json-c/json-c/issues/\2) - \1,' -i issues.md
7+
#... manual editing ...
8+
9+
```
10+
11+
----
12+
13+
Issues and Pull Requests closed for the 0.15 release
14+
(since commit 31ab57ca, the 0.14 branch point, 2020-04-19)
15+
16+
* [Issue #428](https://github.com/json-c/json-c/issues/428) - Added new_null() function
17+
* [Issue #429](https://github.com/json-c/json-c/issues/429) - Conflict of interest between JSON_C_TO_STRING_SPACED and JSON_C_TO_STRING_PRETTY
18+
* [Issue #451](https://github.com/json-c/json-c/issues/451) - Add option to disable HAVE___THREAD
19+
* [Issue #471](https://github.com/json-c/json-c/issues/471) - create folders with mode 0755 when building
20+
* [Issue #476](https://github.com/json-c/json-c/issues/476) - Add new function named json_object_new_string_noalloc
21+
* [Issue #484](https://github.com/json-c/json-c/issues/484) - Add support for uint64
22+
* [Issue #487](https://github.com/json-c/json-c/issues/487) - Any plans to make new release? (0.14)
23+
* [Issue #493](https://github.com/json-c/json-c/issues/493) - Kdopen rename library
24+
* [Issue #507](https://github.com/json-c/json-c/issues/507) - Double value -1.0 converts to integer in json_object_to_json_string()
25+
* [Issue #508](https://github.com/json-c/json-c/issues/508) - Recommend enabling the `-fPIC` compiler flag by default
26+
* [Issue #517](https://github.com/json-c/json-c/issues/517) - Lja mods
27+
* [Issue #534](https://github.com/json-c/json-c/issues/534) - Both json-c and json-glib have json_object_get_type()
28+
* [Issue #584](https://github.com/json-c/json-c/issues/584) - CMake: SOVERSION and the major library VERSION need to be in lockstep.
29+
* [Issue #585](https://github.com/json-c/json-c/issues/585) - CMake: Do not install config.h, as it is not a public header file.
30+
* [Issue #586](https://github.com/json-c/json-c/issues/586) - 10796 Segmentation fault
31+
* [Issue #588](https://github.com/json-c/json-c/issues/588) - Broken RDRAND causes infinite looping
32+
* [Issue #589](https://github.com/json-c/json-c/issues/589) - Detect broken RDRAND during initialization
33+
* [Issue #590](https://github.com/json-c/json-c/issues/590) - Fix segmentation fault in CPUID check
34+
* [Issue #591](https://github.com/json-c/json-c/issues/591) - Update README.md
35+
* [Issue #592](https://github.com/json-c/json-c/issues/592) - Prevent out of boundary write on malicious input
36+
* [Issue #593](https://github.com/json-c/json-c/issues/593) - Building both static and shared libraries
37+
* [Issue #594](https://github.com/json-c/json-c/issues/594) - Some subsequent call of lh_get_hash not working
38+
* [Issue #595](https://github.com/json-c/json-c/issues/595) - Support to build both static and shared libraries
39+
* [Issue #596](https://github.com/json-c/json-c/issues/596) - QA Notice: Package triggers severe warnings
40+
* [Issue #597](https://github.com/json-c/json-c/issues/597) - json_parse demo: fix and use usage() function
41+
* [Issue #598](https://github.com/json-c/json-c/issues/598) - Turning off shared libs causes target duplication or build error
42+
* [Issue #599](https://github.com/json-c/json-c/issues/599) - cannot add more than 11 objects. Is this a known issue?
43+
* [Issue #600](https://github.com/json-c/json-c/issues/600) - Library name conflicts on Windows are back again
44+
* [Issue #601](https://github.com/json-c/json-c/issues/601) - json_tokener_parse() in master sets errno=1 "Operation not permitted"
45+
* [Issue #602](https://github.com/json-c/json-c/issues/602) - fix json_parse_uint64() internal error checking with errno
46+
* [Issue #603](https://github.com/json-c/json-c/issues/603) - Backport of fixes from master branch.
47+
* [Issue #604](https://github.com/json-c/json-c/issues/604) - commit f2e991a3419ee4078e8915e840b1a0d9003b349e breaks cross-compilation with mingw
48+
* [Issue #605](https://github.com/json-c/json-c/issues/605) - Update to 0.15 release
49+
* [Issue #606](https://github.com/json-c/json-c/issues/606) - Improved support for IBM operating systems
50+
* [Issue #607](https://github.com/json-c/json-c/issues/607) - json-c-0.13.x: Fix CVE-2020-12762 - json-c through 0.14 has an integer overflow and out-of-bounds write ...
51+
* [Issue #608](https://github.com/json-c/json-c/issues/608) - json-c-0.14: Fix CVE-2020-12762 - json-c through 0.14 has an integer overflow and out-of-bounds write ...
52+
* [Issue #609](https://github.com/json-c/json-c/issues/609) - use unsigned types for sizes in lh_table and entries
53+
* [Issue #610](https://github.com/json-c/json-c/issues/610) - let's not call lh_table_resize with INT_MAX
54+
* [Issue #611](https://github.com/json-c/json-c/issues/611) - json-c-0.12.x: Fix CVE-2020-12762 - json-c through 0.14 has an integer overflow and out-of-bounds write ...
55+
* [Issue #613](https://github.com/json-c/json-c/issues/613) - json-c-0.10: Fix CVE-2020-12762 - json-c through 0.14 has an integer overflow and out-of-bounds write ...
56+
* [Issue #614](https://github.com/json-c/json-c/issues/614) - Prevent truncation on custom double formatters.
57+
* [Issue #615](https://github.com/json-c/json-c/issues/615) - New release with security fix
58+
* [Issue #616](https://github.com/json-c/json-c/issues/616) - Parsing fails if UTF-16 low surrogate pair is not in same chunk is the high pair
59+
* [Issue #617](https://github.com/json-c/json-c/issues/617) - Add an option to disable the use of thread-local storage.
60+
* [Issue #618](https://github.com/json-c/json-c/issues/618) - test_deep_copy: Fix assertion value.
61+
* [Issue #619](https://github.com/json-c/json-c/issues/619) - CMake: Fix out-of-tree build for Doxygen documentation.
62+
* [Issue #621](https://github.com/json-c/json-c/issues/621) - json-c and jansson libraries have symbol conflicts
63+
* [Issue #622](https://github.com/json-c/json-c/issues/622) - doc: Move Doxyfile into doc subdir.
64+
* [Issue #623](https://github.com/json-c/json-c/issues/623) - json_tokener_parse : Segmentation fault
65+
* [Issue #626](https://github.com/json-c/json-c/issues/626) - Fixes for cmake 2.8.12 + link issue on AIX 6.1/cc 11.01
66+
* [Issue #627](https://github.com/json-c/json-c/issues/627) - Compat fixes
67+
* [Issue #628](https://github.com/json-c/json-c/issues/628) - get_cryptgenrandom_seed: compat with old windows + fallback
68+
* [Issue #629](https://github.com/json-c/json-c/issues/629) - [0.12] Remove the Visual Studio project file
69+
* [Issue #630](https://github.com/json-c/json-c/issues/630) - Linking with Windows MINGW not working
70+
* [Issue #632](https://github.com/json-c/json-c/issues/632) - Json object split
71+
* [Issue #633](https://github.com/json-c/json-c/issues/633) - fix issue 616: support the surrogate pair in split file.
72+
* [Issue #634](https://github.com/json-c/json-c/issues/634) - Issue #508: `-fPIC` to link libjson-c.a with libs
73+
* [Issue #635](https://github.com/json-c/json-c/issues/635) - expression has no effect warning in json_tokener.c
74+
* [Issue #636](https://github.com/json-c/json-c/issues/636) - json_object_get_string free str memory
75+
* [Issue #637](https://github.com/json-c/json-c/issues/637) - json_object_put() has 'double free or corruption (out) '
76+
* [Issue #638](https://github.com/json-c/json-c/issues/638) - json-c/json_object.c:50:2: error: #error Unable to determine size of ssize_t
77+
* [Issue #639](https://github.com/json-c/json-c/issues/639) - build: Add a symbol version to all exported symbols
78+
* [Issue #640](https://github.com/json-c/json-c/issues/640) - Fix build issues with SSIZE_MAX on 64bit Linux
79+
* [Issue #641](https://github.com/json-c/json-c/issues/641) - Formal verification of your test suite
80+
* [Issue #642](https://github.com/json-c/json-c/issues/642) - Please provide more precise informations about when to call json_object_put
81+
* [Issue #643](https://github.com/json-c/json-c/issues/643) - not able to compare with string
82+
* [Issue #644](https://github.com/json-c/json-c/issues/644) - Why src->_userdata not checked before calling strdup?
83+
* [Issue #645](https://github.com/json-c/json-c/issues/645) - Misuse of tolower() in json_tokener.c
84+
* [Issue #646](https://github.com/json-c/json-c/issues/646) - Cast to unsigned char instead of int when calling tolower (Fixes #645)
85+

0 commit comments

Comments
 (0)