Imported Upstream version 2.58.0
[platform/upstream/glib.git] / NEWS
1 Overview of changes in GLib 2.58.0
2 ==================================
3
4 * Tarball built with `ninja dist`, so if you want to build this release with
5   autotools (which is supported), you will need to re-run autogen.sh. This
6   release, and all micro releases in the 2.58.x series, support being built
7   with Meson or autotools. See:
8   https://mail.gnome.org/archives/gtk-devel-list/2018-June/msg00012.html
9
10 * Fix cancellation of g_subprocess_communicate_async() calls. See !266.
11
12 * Drop support for the __int64 type, which further breaks compilation on old
13   MSVC versions (before VS2013). See #1313.
14
15 * Expose GSettings schema directory in gio-2.0.pc as `schemasdir`. See !274.
16
17 * Support v3 of the xdg-desktop-portal network monitor API. See !265, !279.
18
19 * Fix G_MODULE_SUFFIX on macOS when GLib is built with Meson — it should be `so`
20   rather than `dylib`. Projects that use Meson and the `g_module_build_path()`
21   API such as glib-networking should pass `name_suffix:` to `shared_module()` to
22   ensure that plugins continue to be called libfoo.so on macOS. See !280.
23
24 Bugs fixed:
25  !280 meson: Always set G_MODULE_SUFFIX to `so` on macOS
26  !266 subprocess: Fix communicate_cancelled signature
27  !279 Revert "Add a gnet utility" (see !265)
28  !265 Network monitor again
29  !274 gio: Provide schemas directory information in pkg-config file
30  !239 gvariant: Fix more bounds checking in GVariant text format parser
31  !195 garray: add overflow checks before expanding array
32  #1497 g_strdup_printf warns on invalid format specifier with G_GUINT64_FORMAT on Win32
33  !270 autotools: remove support for the __int64 type. See #1313
34  !267 ci: Add an autotools job
35
36 * Translation updates:
37  Czech
38  Galician
39  Indonesian
40  Italian
41  Kazakh
42  Korean
43  Turkish
44
45
46 Overview of changes in GLib 2.57.3
47 ==================================
48
49 * G_GNUC_MALLOC’s definition has been tightened up to match an updated
50   definition from GCC. Many uses of G_GNUC_MALLOC which were previously
51   appropriate may cause miscompilation with newer GCC versions. Check your uses
52   of it against the updated documentation. See #1465.
53
54 * Many minor documentation fixes.
55
56 * Fix for gint64 and int64_t compatibility on macOS and BSD. See #972.
57
58 * Fix free space metadata on some file systems (notably FAT). See #328.
59
60 * Support installed-tests with our Meson build system. See #1444.
61
62 * Forbid @filename@/@basename@ in glib-mkenums templates, which is a change to
63   its long-standing behaviour (which was long-standing nonsensical). See !241.
64
65 * Various stat() fixes on Windows. See #1452, #1476.
66
67 * MinGW-w64 ABI warning: In case you build 64 bit glib without LFS support by
68   passing --disable-largefile (not the default) and use GStatBuf, you need to
69   rebuild your application as the size of GStatBuf has changed for this case.
70   See #1476.
71
72 * Improve TAP compatibility of g_test_incomplete(). See #1474.
73
74 * Change fallback preferences when loading icons. See !72.
75
76 Bugs fixed:
77  !263 build: Clean files left behind after gio/tests/gresource.c test
78  !262 gmem: Only evaluate pointer argument to g_clear_pointer() once
79  #1465 Many uses of G_GNUC_MALLOC are incorrect
80  #1448 g_error does not abort() as documented
81  #1494 g_clear_pointer may not use the correct calling convention with its callback
82  #972 Mismatch between gint64 and int64_t on 64-bit macOS/BSD
83  !251 gtestdbus: Fix watcher crash on FreeBSD
84  #1492 gcc-8: -Wcast-function-type: new warnings for g_list_copy_deep()
85  !252 tests: fix gnotification tests broken due to the recent icon name fallback changes
86  #328 filesystem::{free,size,used} not set for full FAT fs
87  !248 network monitor portal: update properties initially
88  #1373 Incorrect transfer annotation for g_binding_unbind.
89  #1444 the meson build doesn't support installed tests
90  #1027 Fix trashing on overlayfs
91  #1454 gvdb does not treat corrupt files as empty as promised; dconf suffers
92  !243 tests: Explicitly set TZ=UTC for g_time_val_from_iso8601() testing
93  #1488 ‘O_CLOEXEC’ undeclared (first use in this function)
94  !241 glib-mkenums: forbid @filename@/@basename@ in fhead and ftail
95  !240 gtimer: Ensure arithmetic is correctly signed for ISO 8601 parsing
96  #1452 GFileInfo: unable to retrieve correct modification time of links and mounted volumes on Windows
97  !234 DOC: Documentation fix in GTask description
98  #1363 Meson: Review cross compilation properties
99  !225 gtimer: Add overflow checks to g_time_val_from_iso8601()
100  !230 gbookmarkfile: Fix some more minor leaks when metadata elements are repeated
101  !229 Fix up g_bytes_compare() documentation
102  #1476 g_stat - possbile memory corruption causing SEGFAULT
103  !199 Update TLS documentation
104  #1474 g_test_incomplete() makes test_case_run() return FALSE
105  #1475 glib/tests/atomic.c test_types() trips -Werror=bad-function-cast on Debian armel
106  #1472 Test for BROKEN_IP_MREQ_SOURCE_STRUCT is broken on Windows / Mingw
107  !220 date test: Use g_test_skip(), not g_test_incomplete()
108  #1467 malloc difference causes refstring test to fail on FreeBSD
109  !230 gbookmarkfile: Fix some more minor leaks when metadata elements are repeated
110  #1466 Not Able to Build glib 2.57.2 in Mingw-w64 x64 bits
111  #1433 test_posix_parse: assertion failed (g_time_zone_get_abbreviation (tz, 0) == "UTC"): ("LMT" == "UTC")
112  #1446 Follow-up from "Document difference between g_assert() and g_assert_*() wrt G_DISABLE_ASSERT"
113  !206 grefstring: Avoid an unnecessary NUL assignment
114  #1458 g_volume_get_mount returns NULL value after g_volume_mount_finish is called with no error
115  !72 gio: icons should fallback to non-preferred style appropriately.
116
117 * Translation updates:
118  Brazilian
119  Chinese (Taiwan)
120  French
121  German
122  Lithuanian
123  Polish
124  Romanian
125  Turkish
126
127
128 Overview of changes in GLib 2.57.2
129 ==================================
130
131 * Require pcre 8.31
132 * Require meson 0.47.0
133
134 * Bugs fixed:
135  742456 Add g_steal_pointer() convenience function to mark ownership...
136  795569 MinGW CI: fix tests
137  796341 gmem.h: Use typeof() in g_steal_pointer() macro
138  #1013 Support for per-session overrides
139  #1360 glib-mkenums breaks if option specified but no nick
140  #1175 Add names and tags to various GSources and GTasks constructed in GLib
141  #903 g_main_context_wait() not deprecated in API, but emits a g_critical()...
142  #786 Fix memory leaks in libgio tests
143  #927 gio/gresource.c:do_lookup check for terminating "/"
144  #976 Document difference between g_assert() and g_assert_*()...
145  #1447 glib 2.57.1: test_month_names: assertion failed...
146  #1407 Update to Unicode Character Database 11
147  #1455 glib python tools have full python path in shebang, limits to 128 characters
148  #1459 Missing g_return_val_if_fail in g_async_queue_timeout_pop
149
150 * Translation updates:
151  Friulian
152  German
153  Romanian
154  Spanish
155
156
157 Overview of changes in GLib 2.57.1
158 ==================================
159
160 * New api:
161  - g_hash_table_steal_extended
162  - G_GNUC_NO_INLINE 
163
164 * Bug fixes:
165  668132 Use libmount and expose mount options on GUnixMountEntry type
166  736741 Update private copy of valgrind.h
167  748620 g_regex_* utf-8 validity requirements are not stated clearly
168  784995 meson: some Windows improvements
169  788771 NODELETE missing when built with meson
170  788773 meson does not install correct pc files
171  789968 Add g_autoptr() support for GTypeClass
172  794325 Various fixes to compile on OSX
173  795152 gdesktopappinfo: Mark GDesktopAppInfo constructors as nullable.
174  795165 Add g_date_time_get_timezone() and g_time_zone_get_identifier()
175  795180 Investigate performance impacts of recent compiler features on hot functions
176  795302 Add g_hash_table_steal_extended() API
177  795376 Add g_ptr_array_steal()
178  795544 Add binary/textfile/zero size detection
179  795569 MinGW CI: fix tests
180  795636 gitlab-ci: generate test coverage reports
181  795735 Fix comparison for GVariant property values
182  795802 gdbus-codegen doesn't accept --output-directory with --output for --body and --header
183  795849 gwin32: Fix detection of MinGW32 vs MinGW-w64
184  795876 meson: Fix checks for posix_memalign and stpcpy
185  795960 g_format_size_for_display() is deprecated since 2.30
186  796085 Meson: Many apps breaks on non-glibc because of missing libintl
187  796138 Fix typo in g_file_info_set_attribute docs
188  796139 Add g_autoptr() support for GParamSpec
189  796164 Fix atomic ops check in meson.build
190  796186 Typo: "instead off" in gsignal.c
191  796213 Meson: Fail to build on macosx
192  796220 meson: do not run atomic test with msvc
193  796264 Add android CI
194  796325 meson: Add exception for atomic ops test for Android
195  796328 gengiotypefuncs.py: Read and parse files in binary mode 
196
197 * Translation updates:
198  Czech
199  Indonesian
200
201
202 Overview of changes in GLib 2.57.0
203 ==================================
204
205 * Bug fixes:
206  739424 Rewrite kqueue GFileMonitor backend to drop threading
207  751826 Use g_get_language_names() for other locale categories
208  788773 meson does not install correct pc files
209  793400 g_application_id_is_valid() not strict enough
210  793578 gdatetime tests depend on Japanese translation of month names
211  793645 test_month_names: Updated translations needed for el_GR, hr_HR, ru_RU
212  793729 gitlab-ci: Add Windows MinGW support
213  793994 GUnixVolumeMonitor doesn’t show user mounts when run as root
214  794170 gdbus: hexdecode() and hexencode() do not return/use decoded/encoded s...
215  794194 gobject_gdb.py: 'address' is a property of gdb.Value not a function
216  794207 leak: g_socket_listener_add_inet_port increases ref-count on socket-li...
217  794284 Support whitespace stripping for JSON resources
218  794285 glib-compile-resources should not noisily g_printerr() when xmllint is...
219  794473 Remove duplicated option in gio.xml
220  794506 glib-mkenums: Enters infinite loop if using typedef enum SomeIdentifier
221  794528 Fix segfault caused by use-after-free in GPollFileMonitor
222  794555 glib meson build fails on MinGW due to misdetected functions
223  794557 gtkdoc-scangobj fails on gio in meson builds
224  794606 glib-2.56.0 fails to compile when res_nquery is not available
225  794635 gmacros: Don't define bogus __has_* macros
226  794636 G_HAVE_GNUC_VISIBILITY is defined in meson MinGW builds
227  794686 Date (except weekday) displayed in English
228  794732 Fix various compiler warnings 
229
230 * Translation updates
231  Hungarian
232  Slowak
233  Slovenian
234  Spanish
235
236
237 Overview of changes in GLib 2.56.0
238 ==================================
239
240 * Bugs fixed:
241  672777 Error in gdummyfile.c
242  732184 GObject: warn on use of deprecated properties
243  733338 Don't segfault in GNetworkMonitor when IPv6 support is unavailable
244  742124 g_data_input_stream_read_upto()'s documentation should say that the...
245  749206 GDateTime: month names in the genitive case
246  768507 simplify qguark functions
247  791457 Slow transfer rate when writing to smb/cifs
248  793272 fix GCC 8.0's -Wcast-function-type warnings
249  793300 g_hash_table_add() return value change in 2.40 not mentioned in docs
250  793399 Fix some cases of -Wduplicated-branches
251  793555 -Wimplicit-function-declaration when using g_abort()
252  793565 GLib does not compile on macOS 10.13 due to .m file naming
253  793597 gdbus-tool: Make --dest optional for emit again
254  793635 Enable CI for GLib
255  793880 gnetworkmonitor: Minor fixes based on code review 
256  793578 gdatetime tests depend on Japanese translation of month names 
257  794180 test_month_names fails unless installed
258
259 * Translation updates:
260  Brazilian Portuguese
261  British English
262  Catalan
263  Czech
264  Danish
265  Dutch
266  Finnish
267  French
268  Friulian
269  Galician
270  German
271  Hungarian
272  Indonesian
273  Italian
274  Kazakh
275  Korean
276  Lithuanian
277  Polish
278  Scottish Gaelic
279  Serbian
280  Serbian Latin
281  Spanish
282  Swedish
283  Turkish
284
285
286 Overview of changes in GLib 2.55.2
287 ==================================
288
289 * GFile now has API to get the path without copying
290
291 * A network monitor implementation for Windows has been added
292
293 * Bugs fixed:
294  520116 g_utf8_strlcpy()
295  584284 g_data_input_stream_read_until_async behaves confusingly different f...
296  605700 request for g_key_file_get_locale()
297  658713 ngettext (plural forms) needed for "Message has %d file descriptors ...
298  685442 windows GNetworkMonitor implementation
299  723003 gsettings list-recursively reports some keys multiple times
300  749583 GSequence performance improvements
301  757284 Move G_DIR_SEPARATOR* and G_SEARCHPATH_SEPARATOR* into glibconfig.h
302  760324 [PATCH] gkeyfile.c: find_file_in_data_dirs fails to return the path ...
303  761102 Increase performance for main loop
304  767976 GFile: Add g_file_peek_path()
305  770335 gdbus-codegen: generated getter for 'ao' property is actually (trans...
306  772989 Totem allows invalid urls that might cause segfault that's irrecover...
307  790698 convert: test failure on NetBSD
308  791015 gdbus-codegen: Split generation of header and source
309  791622 Disable strict-aliasing in GLib
310  792050 GResolver is not thread-safe
311  792217 Deprecate GTlsClientConnection:use-ssl3
312  792338 meson, autotools: figure out if mem barrier is needed for arm64 host...
313  792351 gbookmarkfile: check length before dereferencing groups
314  792364 gdbus-threading test method-calls-in-thread: assertion failed (elaps...
315  792370 GNetworkMonitor: Rename "network-changed" signal argument
316  792410 GDateTime new_from_iso8601 test broken in 2.55 on i386
317  792432 flush stdout after logging (debug) messages
318  792455 Improve docs of GSequence
319  792499 deadlock on startup with TCP session bus
320  792516 gconvert: More consistent handling of embedded NUL bytes
321  792777 g_notification_set_urgent() unconditionally sets G_NOTIFICATION_PRIO...
322  792780 gbytes should reference toplevel bytes when slicing with g_bytes_new...
323  792856 off64_t isn't a part of C standard
324  792862 gpollableoutputstream: document side effects of WOULD_BLOCK on D/TLS
325  792903 Clarification between g_try_.. functions and their counterparts
326  793006 High CPU load for GUnixMountsMonitor consumers
327  793026 possible mem leak in g_mutex_impl_new
328  793074 g_message() does not get -Wformat warnings when compiling with G_LOG...
329
330 * Translation updates:
331  Hungarian
332  Indonesian
333  Polish
334
335
336 Overview of changes in GLib 2.55.1
337 ==================================
338
339 * Build:
340  - The --enable-rebuilds configure option has been removed
341  - The --with-charsetalias-dir configure option has been added
342
343 * GList and GSList now have autoptr support
344
345 * The gsettings list-schemas command has gained a --print-paths option
346
347 * Bugs fixed:
348  346816 Refactor LIBDIR in libcharset Makefile
349  508976 Does g_slist_sort preserve the order of equal elements?
350  562334 2.18.2 break libglade on Solaris
351  662802 systemtap multiarch issue
352  684282 Add support static link of GIO modules
353  692034 Install an invalidation notifier for GClosure in g_source_set_closure()
354  694723 Get rid of REBUILD stuff in configure.ac
355  697715 floating point precision problem in check test gst/gstvalue
356  701156 testgobject assumes that the priv data follows the instance data
357  720380 Segfault when using GDBusMenuModel on a peer-to-peer connection
358  724383 glib: document restrictions on various foreach() functions
359  724412 GLib mappedfile.c test uses g_get_user_runtime_dir instead of a tempo...
360  724794 Fix "on on" typo in tap-driver.sh comment
361  732003 gnode: Eliminate implicit signed-to-unsigned integer conversion
362  734479 G_VALUE_HOLDS etc. cause -Wcast-qual warnings for a const GValue *
363  737677 gmain: Make GSourceCallback thread-safe
364  741167 gdbus-codegen fix for boxed out parameters
365  748534 gtest: if a subprocess assertion fails, print its stdout and stderr
366  749527 add weak pointer helpers similar to g_set_object
367  749652 compilation errors with gcc 4.8
368  754634 Update the list of Linux filesystem magic numbers used in get_fs_type
369  756011 Fix up annotations for GBookmarkFile
370  761102 Increase performance for main loop
371  773980 GIR scanner doesn't interpret array type properly
372  776147 gio/glocalfilemonitor.c doesn't handle case G_FILE_MONITOR_EVENT_MOVE...
373  776195 -z nodelete configure check does not work on Solaris
374  777075 Potential leak of memory pointed to by 'list'
375  779413 Translated X-Geoclue-Reason string not used in a dialog window
376  780309 gio/tests/appinfo build fails: gdesktopappinfo.c skipped on OS X
377  780893 Reword licensing header for gdbus-codegen
378  782057 Unit tests fail in run-assert-msg-test.sh
379  784995 meson: some Windows improvements
380  786796 gtk-doc build fails with meson
381  788806 Impossible to build static glib via meson
382  788936 Show mime type icons on OS X
383  790416 g_date_time_format returns empty string on %r with German locale
384  790588 Generated file missing from .gitignore
385  790697 g_object_ref API should propagate parameter type
386  790785 glib-tap: Add missing mkdir for .test generation rule
387  790829 glib-genmarshal --body must not generate alias implementations
388  790830 Mismatch between number of interface methods in text and example code
389  790837 Meson: missing many configure options
390  790839 GApplication command line: lacks parameter_string, summary and descri...
391  790877 fix non-portable check in G_GNUC_CHECK_VERSION
392  790894 Do not connect to the session bus when trying GProxyResolverPortal io...
393  790896 docs/reference/README has broken link to http://www.gtk.org/rdp/
394  790914 gdesktopappinfo: Downgrade a warning to a debug message
395  790934 gtester doesn't handle skipped tests
396  790948 GSourceFuncs documentation is confusing: when will dispatch be called?
397  791036 Guard for g_output_stream_vprintf makes no sense
398  791128 C runtime complains about bad arguments on each g_log() call
399  791221 po/README.translators has no useful information in 2017
400  791235 Fix gschema.dtd regarding flags.
401  791267 Make gschema.dtd usable.
402  791296 gtester-report: fix range usage when running as python3 app
403  791318 GBytes: Improve documentation
404  791325 Gio handling of thumbnail:: attribute namespace causes inconsistent b...
405  791334 gbinding.c:898: The target object of type GNetworkAddress has no prop...
406  791337 Crash opening URIs with g_desktop_app_info_launch_uris_with_spawn()
407  791342 Add autoptr support for lists
408  791460 meson: fixes for OSX
409  791532 Implicit declaration of function ‘memcmp’ in gtestutils.h
410  791622 Disable strict-aliasing in GLib
411  791720 Criticals in gio/xdp-dbus.h leading to crash under flatpak
412  791744 gmenumodel test sometimes fails: assertion failed (items_changed_coun...
413  791745 not immediately clear whether g_test_slow() is in effect by default
414  791906 GSocketListenerClass.event has wrong signature
415  792064 gsettings list-schemas --print-paths
416  792098 Binding: bind_property’s @notify func is nullable
417  792099 gdbus-test-codegen: Cast to void* to printf "%p"
418  792129 meson: skip optional linux/unix deps that default to true when buildi...
419  792322 GLib-GIO:ERROR:gschema-compile.c:51:test_schema: child process (/gsch...
420  792324 gkeyfile: Document need for KEEP_TRANSLATIONS with get_locale_string()
421
422 * Translation updates
423  Hebrew
424  Indonesian
425
426
427 Overview of changes in GLib 2.55.0
428 ==================================
429
430 * New API:
431   - g_clear_handle_id, to simplify removing sources from the default mainloop
432   - g_file_load_bytes, to make it more convenient to load files into GBytes
433
434 * Bugs fixed:
435  330458 Sample code for the GLib Key-value parser
436  483341 g_error and friends create warnings when not used in MSVC
437  569375 g[u]intptr undocumented
438  573251 documentation for g_seekable_truncate() needs some love
439  629347 Missing annotations in GFile (was: Perf throws an exception in cur...
440  630983 [PATCH] Type accuracy for result of strlen() in string utilities.
441  632953 Clarify documentation of GValueTransform.
442  636210 Document that pre-unmount is not guaranteed and backend-dependant
443  656502 type information for GSettings::backend missing from .gir
444  661442 Nautilus crashes when refreshing home folder after modifying ~/.co...
445  668035 gtester-report broken with python 2.7.2 and glib 2.30.1
446  670139 gbytes.c:try_steal_and_unref nit
447  677233 (transfer full) annotation not correct for g_closure_new_simple re...
448  679347 glocalfile seems to leak 'fstype'
449  679467 Mention translation in g_warning() documentation
450  689323 Variable scoping in gunixmounts.c
451  691436 glib-mkenums output arch dependent
452  695681 gsettings bash completion put error messages
453  705331 AM_PATH_GLIB_2_0 macro fails with -Wstrict-prototypes -Werror
454  706667 Fix permission denied error when installing from an nfs directory
455  711809 gdbus-proxy: Fix erroneous timeout during following tests
456  722256 gslist: Simplified node removal and got rid of some code duplication
457  723655 Socket source is left in the poll after the socket is closed
458  723743 g_child_watch_add() doesn't check for non-pids
459  725014 g_settings_schema_source_ref should check for NULL pointer
460  727346 docs: Escape some backslashes for markdown
461  730296 gsignal: Fix a potential NULL pointer dereference
462  731625 Improve test for darwin printf format-strings
463  731705 gio/tests/desktop-app-info assumes /bin/true
464  737278 Clarify relationship of g_application_quit() to hold count
465  738176 Skip GSpawnChildSetupFunc closures in introspection
466  740223 source_object for GAsyncResult should be nullable
467  740791 gio: cannot specify the source when joining a multicast group (IGM...
468  740826 glib doesn't know fuse filesystems
469  742548 configure.ac: stay out of autoconf's namespace
470  742997 Don't skip invalid enum values in schemas
471  745723 -Wunused-but-set-variable work-around no longer sufficient
472  749371 Use a GHashTable as a set when possible
473  751738 Unused-variable warnings in glib/tests/autoptr.c
474  752239 Missing dependency for python files in build file
475  752240 Add DTLS support to GIO
476  753459 GDateTime: Add conversion functions from/to ISO 8601 strings
477  753521 g_subprocess_launcher_set_environ misses argument annotations
478  754026 gfileutils: add some sanity checks
479  756009 'const gchar* const *' gets incorrectly defaulted to utf8
480  756103 Skip g_base64_decode_step() in introspection
481  756128 Fix up annotations in gconvert
482  756430 g_rw_lock_reader_lock() can return without locking, or error
483  756470 Fix up annotations in gdataset.c
484  756588 Fix up annotations on data/qdata API of GObject
485  760022 Memory leak in gvariant-parser.c
486  760109 [PATCH] Invalid GDate can't be g_boxed_copy()'d
487  760716 Fix documentation regarding <glib/gprintf.h>
488  765063 Update annotations for gio
489  765552 Please set serial in .m4 files to prevent autoreconf failure on up...
490  767215 GCC version number is interpreted as start of a list in docs for g...
491  767239 Tautological comparisons in convert tests
492  769674 some GIO tests' arbitrary timeouts are too short
493  769846 gmessages: Add timestamp to g_log_writer_format_fields()
494  770459 Tutorial article is slightly wrong
495  773355 Incorrect documentation about stopping a signal emission from a hook
496  774083 spelling mistakes in glib: charater
497  776562 Add Intel C Compiler support for G_GNUC_BEGIN/END_IGNORE_DEPRECATI...
498  777308 GModule win32: disable error dialog popup
499  777310 gio/gasynchelper.c: fix cast from pointer to smaller int type on w...
500  777956 gmessages: Update advice for G_LOG_DOMAIN
501  779182 xdg-open fails with gio open for some uris
502  779501 Type of GIConv given wrongly on web
503  780202 introspection: Don't expose GValueArray.free
504  780296 xdg-open/gnome-open doesn't work if service isn't started
505  781598 gstdio.h should #include what it needs to work
506  781867 various gvfsd-* wants to look in /boot/efi, causes unnecessary/ina...
507  783210 build: Switch to sassc for generating style
508  783270 Improve Visual Studio support for Meson builds
509  783825 Suggest that asynchronous operations should invoke the callback in...
510  786737 No g_variant_get() example for dicts
511  786785 Commit #fe2a9887a8 breaks gdbus-codegen, cannot find its module so...
512  787271 Make GListModel usable from G-I bindings
513  787485 g_tls_backend_supports_dtls () returns true when the backend doesn't
514  787551 Factor out some duplicated code in GParamSpec validation
515  787581 tests: Add tests for g_slist_copy() and g_slist_copy_deep()
516  787671 meson: Fix permissions of installed scripts
517  787731 g_file_query_filesystem_info() wrongly reports "filesystem::readon...
518  788138 glib-compile-resources: Fix leak of a GHashTable
519  788180 G_FILE_ATTRIBUTE_ID_FILE is useless on W32
520  788270 gmodule - failed to load symbol on Android 64bit
521  788368 Race condition in GDbusObjectManagerClient
522  788384 gtypes: Fix signedness of __builtin_bswap() usage
523  788385 gtestutils: Explicitly cast args to g_assertion_message_cmpnum()
524  788401 PATCH: MacOS build cannot detect content type from content - xdgmi...
525  788467 Fatal errors and warnings should be reported as TAP
526  788488 GFile-based API for g_build_filename()
527  788489 gmain: add g_clear_source API
528  788561 Document how to integrate GTest into your project
529  788594 gdbus-tool doesn’t handle non-message-bus connections correctly
530  788705 Allow building GLib on older Linux platforms
531  788766 fixed a doc-typo in socket_get_remote_address
532  788772 meson installs gdb scripts incorrectly
533  788863 Add more filename type annotations for strings which can contain f...
534  788880 gunixmounts: Update list of virtual file systems to ignore
535  788927 Expose better API for detecting ‘system’ mounts
536  788936 Show mime type icons on OS X
537  788948 Document Autotools best practices for genmarshal/mkenums
538  788975 Meson + Visual Studio: Can't find zlib.h with subprojects/zlib
539  788978 Document XML has a syntax error
540  788989 Use subdir-objects with Autotools
541  788990 Include licensing information in output from glib-mkenums, glib-ge...
542  789087 gint and guint misrepresented as functions
543  789170 GFormatSizeFlags should have a value for bits
544  789245 g_settings_bind() not conforming to lifecycle specification
545  789444 Fix handling of length in g_utf8_make_valid
546  789637 glib-mkenums: Fails when --ouput file does not exist
547  789681 meson: Libmount support not built
548  789723 [PATCH] gdbus-codegen: Call abspath() earlier
549  789755 g_get_host_name: ensure return value is always UTF8 encoded
550  789820 GPollFileMonitor is not cleaning up correctly
551  790015 docs: Various linking and syntax fixes
552  790030 GResource/GVariant fails to load from non-pointer aligned memory
553  790093 gio-tool: fix inverted logic in monitor tool
554  790126 gengiotypefuncs.py is missing from tarballs
555  790147 build: Drop data-to-c.pl in favour of data-to-c.py
556  790157 gmessages: Give examples of G_DEBUG with gdb in the documentation
557  790272 file: add g_file_load_bytes()
558  790275 avoid temporary string allocations in g_resources_enumerate_children
559  790310 speedup path canonicalization in GResourceFile
560
561 * Translation updates:
562  Catalan (Valencian)
563  Czech
564  German
565  Nepali
566  Norwegian bokmål
567  Slovak
568  Slovenian
569  Spanish
570
571
572 Overview of changes in GLib 2.54.0
573 ==================================
574
575 * Bugs fixed:
576  780861 Crash in GnomeWallClock
577  786983 Please make the output of gio-querymodules deterministic
578  787109 Valgrind false positive in ioctl() in btrfs file copy
579  787123 glib: Slighty update GIOChannel documentation
580  787146 GMainLoop: match of parameter pair of LOCK_CONTEXT/UNLOCK_CONTEXT
581
582 * Translation updates:
583  Basque
584  Catalan
585  Romanian
586  Swedish
587
588
589 Overview of changes in GLib 2.53.7
590 ==================================
591
592 * Bugs fixed:
593  736710 remove unnecessary executions of libtool from configure
594  785260 gio/tests/appmonitor fails if local dir not writeable
595  786456 g_subprocess_wait[_check]_async() breaks when cancelled...
596  786555 g_array_free() is not thread safe w.r.t. g_array_unref()
597  786580 gdesktopappinfo.c: Add Tilix as a fallback terminal
598  786807 g_uuid_string_random undefined when built with meson
599
600 * Translation updates:
601  Brazilian Portuguese
602  Catalan
603  Czech
604  Danish
605  Finnish
606  French
607  Friulian
608  German
609  Italian
610  Kazakh
611  Korean
612  Latvian
613  Nepali
614  Polish
615  Spanish
616  Turkish
617
618
619 Overview of changes in GLib 2.53.6
620 ==================================
621
622 * Bugs fixed:
623  766358 glib doesn't respect XDG_* envvars on W32, ever
624  783270 Improve Visual Studio support for Meson builds
625  785955 pthread_setname_np misdetected with meson
626  786060 Sequences documentation does not make it clear...
627  786360 gobject: add autoptr support for GClosure
628  786452 crash on Linux without stderr stream
629  786460 gio-tool: Unify buffer sizes
630  786462 Use g_output_stream_write_all instead of while
631  786463 gio-tool-save: Prevent overwriting error
632
633 * Translation updates:
634  Catalan
635  Galician
636  Hungarian
637  Indonesian
638  Lithuanian
639  Nepali
640  Serbian
641
642
643 Overview of changes in GLib 2.53.5
644 ==================================
645
646 * Bugs fixed:
647  695573 Untranslatable strings in glib-compile-schemas
648  725950 GApplication: call dbus_unregister only once, and before destruction
649  731703 giomodule test misbuilds its test modules as libraries
650  769135 External control for g_test_add/g_test_run
651  779332 Rewrite mkenums in Python
652  779607 Race between mounts-changed signal and g_unix_mounts_get() function
653  784000 Improve strerror_r() detection
654  784815 Map G_NOTIFICATION_PRIORITY_HIGH to NOTIFY_URGENCY_NORMAL
655  784965 Use the glib preset for i18n in Meson
656  784995 meson: some Windows improvements
657  785113 glib-mkenums Python port fixes
658  785130 G_LOG_DOMAIN shouldn't be left undefined for applications
659  785438 Spurious -Wmaybe-uninitialized in gdatetime.c
660  785468 glib/gpoll: Unnecessary if conditional included in the poll_rest() function
661  785520 Replace advice to use removed gdk_spawn functions
662  785577 clobbers errno while setting GError
663
664 * Translation updates:
665  Slovenian
666  Spanish
667
668
669 Overview of changes in GLib 2.53.4
670 ==================================
671
672 * Unicode support has been updated to Unicode 10.0.0
673
674 * glib-genmarshal and glib-mkenums have been rewritten in python.
675   Every effort has been made to keep compatibility. Please report
676   problems related to these tools
677
678 * GLib can now be built with meson. autotools are still supported
679
680 * Bugs fixed:
681  722047 drop makefile.msc?
682  733821 g_strerror() uses strerror(3) instead of strerror_r(3)
683  773842 g_utf8_find_next_char() won't signal the end of a NUL-terminated string
684  779332 Rewrite mkenums in Python
685  780095 g_utf8_get_char_validated() stopping at nul byte even for length specified...
686  780634 Remove remaining old codepage ABI comapt code
687  783841 test_GDateTime_new_from_timeval_overflow fails on 32 bit systems
688  784000 Improve strerror_r() detection
689  784020 GKeyFile – Add array length annotations to to_data(), get_keys() and get_g...
690  784037 gio: Mention the ALL_METADATA flag in g_file_copy()
691  784433 gdbus-codegen with variant type parameters result in nested variant
692  784456 Update to Unicode 10.0.0
693  784528 Rewrite glib-genmarshal in Python
694  784579 Calling g_dir_open on Missing Directory When Executable File Path Contains...
695  784581 docs: Fix cut'n'paste error in g_resources_get_info() doc
696  784739 Minor typo in configure error message
697  784792 Just fixing a little typo in comments
698
699 * Translation updates:
700  Hebrew
701
702
703 Overview of changes in GLib 2.53.3
704 ==================================
705
706 * Bugs fixed:
707  658446 Add translation comment for wrong password notice string
708  661926 Improve the default logging setup in GLib
709  674885 type initialisation deadlock in GObject
710  775593 GIO cannot write symlinks on FreeBSD and NetBSD
711  776169 Various gio-tool fixes
712  776333 Fix annotation on g_file_copy_async()
713  776504 Upgrade license from LGPLv2+ to LGPLv2.1+
714  777307 race condition between gdbus signal callback and g_bus_unwatch_name...
715  778422 gsubprocesslauncher: Clarify the behavior of set_environ()
716  781301 Stack pointer corrupted by incorrect call of NtNotifyChangeMultipleKeys
717  782336 Add additional documentation of the GResource XML format
718  782996 build: Use AM_TESTS_ENVIRONMENT rather than TESTS_ENVIRONMENT
719  783061 GApplication: Remove some unused members
720  783130 Make dbus activation sandbox-aware
721  783193 Adapt to OpenURI api change
722  783201 gdbus-codegen: Apply --output-directory to generated docs as well
723  783340 win32: port monotonic times to use QPC
724  783350 length parameter can be NULL g_data_input_stream_read_line
725  783392 incorrect (out) annotation for g_dbus_interface_info_generate_xml
726  783593 GGtkNotificationBackend should use /org/freedesktop/DBus to call Ge...
727
728 * Translation updates:
729  Esperanto
730  German
731  Indonesian
732  Kazakh
733  Spanish
734
735
736 Overview of changes in GLib 2.53.2
737 ==================================
738
739 * A few new number parsing functions have been added:
740   - g_ascii_string_to_signed
741   - g_ascii_string_to_unsigned
742   These have better error handling than the existing ones.
743
744 * glib-mkenums now supports /*< private >*/ and /*< public >*/
745
746 * GSettings now consider XDG_DATA_HOME in addition to XDG_DATA_DIRS.
747
748 * Bugs fixed:
749  674885 type initialisation deadlock in GObject
750  698064 Add g_ptr_array_contains()
751  732000 gdatetime: Remove an unnecessary NULL pointer check
752  734946 Implement GContentType on OSX
753  741335 Possible differences in use of XDG_DATA_DIRS versus XDG base directory specification
754  748263 Use-after-free in g_dbus_connection_call_internal()
755  776876 gmodule – Various Android bug-fixes
756  777030 build error where minor() and major() cant be resolved in gio/gdbusmessage.c
757  780300 gio/gosxappinfo.c uses deprecated LSFindApplicationForInfo
758  780309 gio/tests/appinfo build fails: gdesktopappinfo.c skipped on OS X
759  781755 Avoid compiler warnings in generated marshallers code
760  781826 portal support: Read /.flatpak-info
761  781830 Fix some typos and errors in GVariant documentation
762  781847 Use-after-free under send_message_with_reply_cleanup():gdbusconnection.c:1792
763  781867 various gvfsd-* wants to look in /boot/efi, causes unnecessary/inappropriate auto...
764  782068 doc: Trivial typo fixes
765  782075 gtimer: Handle gmtime() failure in g_time_val_to_iso8601()
766  782089 gdatetime: Fix overflow checks when constructing from timestamps
767  782162 Support public/private trigraph in glib-mkenums
768  782237 make check error
769  782311 inode/directory is treated as a subclass of application/octet-stream
770  782628 libmount build dependency check not requiring the right version?
771
772 * Translation updates:
773  Hungarian
774  Indonesian
775  Spanish
776
777
778 Overview of changes in GLib 2.53.1
779 ==================================
780
781 * The gdbus tool gained a wait command
782
783 * g_unix_signal_source_new support SIGWINCH now
784
785 * There are now g_enum_to_string and g_flags_to_string functions
786
787 * A new function to instantiate objects: g_objet_new_with_properties
788
789 * GParameter and related APIs have been deprecated
790
791 * Bug fixes
792  447907 enum/flags from string + type transform + tests
793  668962 GUnixMountPoint/GUnixMountEntry not usable through gobject-introspection
794  669355 gdbus-codegen output contains stray semicolons at file scope (forbidden in C99)
795  674885 type initialisation deadlock in GObject
796  698064 Add g_ptr_array_contains()
797  709865 Add boxing to GParameter
798  725894 build: Include gettext libraries for static compilation on Mac OS X
799  734946 Implement GContentType on OSX
800  741229 gio: Handle NULL cached properties in NetworkManager monitor
801  745971 gdbus-tool: Add a command to wait for a well-known name on the bus
802  755046 gfileutils: Add precondition checks to g_file_test()
803  761102 Increase performance for main loop
804  761889 GDateTime: %p does not always print AM/PM string
805  766660 Please clarify the extent to which GInitable, GAsyncInitable must be idempotent
806  769534 g_unix_signal_source_new does not support SIGWINCH
807  772221 Take advantage of Unicode
808  775879 g_log_default_handler should not check G_MESSAGES_DEBUG
809  776169 various gio-tool fixes
810  777961 Documentation for g_app_info_equals() could be clearer
811  778049 race in gsource detected by TSan
812  778207 gio-querymodules: fix memory leak
813  778287 G_MODULE_EXPORT and -fvisibility=hidden
814  779409 Fix false positive g_warning() in remove_filter()
815  780066 g_base64_encode_close() in glib/gbase64.c produces invalid base64 encoding
816  780095 g_utf8_get_char_validated() stopping at nul byte even for length specified buffers
817  780306 Unused function in gunicollate.c for CARBON
818  780310 g_tls_database_verify_chain doesn't set the GError for failures other than cancell...
819  780384 gio/tests/contenttype fails on OS X: "public.directory" != "public.folder"
820  780441 Make the portal implementation of g_app_info_launch() synchronous
821  780634 Remove remaining old codepage ABI comapt code
822  780908 gobject: remove duplicate GType sanity check
823  780924 Memory leak in gdbusmethodinvocation.c
824  781125 gio-tool: Fix errors format string
825  781234 the buffer written to by g_input_stream_read is not marked as an out parameter
826  781298 gfileutils.c:330:3: error: ISO C90 forbids mixed declarations and code
827
828 * Translation updates
829  Catalan
830  Friulian
831  German
832  Hebrew
833  Indonesian
834  Polish
835  Russian
836
837
838 Overview of changes in GLib 2.52.0
839 ==================================
840
841 * Bug fixes:
842  779799 gdatetime test fails with tzdata 2017a
843  780032 Add missing attributes to two functions
844  780144 gio/fam: Remove leftover debug print
845
846 * Translation updates:
847  French
848  Friulian
849  Latvian
850
851
852 Overview of changes in GLib 2.51.5
853 ==================================
854
855 * OS X implementations of GContentType and GAppInfo
856   have been added
857
858 * Bugs fixed:
859  673047 gunicollate is broken on OS X (patch included!)
860  734946 Implement GContentType on OSX
861  747146 Implement GNotification on OSX
862  769983 glib-mkenums generates non-reproducible Makefile snippets
863  777203 gnulib license information is not correct in glib2.0
864  778515 Crash in the gio kqueue backend
865  779456 Make g_utf8_make_valid optionally take a length
866
867 * Translation updates:
868  Danish
869  Friulian
870  German
871  Hungarian
872  Korean
873  Lithuanian
874
875
876 Overview of changes in GLib 2.51.4
877 ==================================
878
879 * Memory leak fixes
880 * Fix the released tarball
881
882
883 Overview of changes in GLib 2.51.3
884 ==================================
885
886 * Bugs fixed:
887  771997 gchecksum: Add SHA-384 support
888  778422 gsubprocesslauncher: Clarify the behavior of set_environ()
889  778581 gdbus-codegen: Fix -Wconversion warning
890  778801 gdbus-codegen: Add --outdir flag
891  778991 Plug a mem leak in gdbusauth
892  779183 g_io_extension_point_get_extensions should check for NULL pointer
893
894 * Translation updates:
895  Basque
896  Chinese (Taiwan)
897  Danish
898  Indonesian
899  Italian
900  Serbian
901
902
903 Overview of changes in GLib 2.51.2
904 ==================================
905
906 * Minimal support for UUIDs has been added
907
908 * A new file attribute, G_FILE_ATTRIBUTE_RECENT_MODIFIED has been added
909   to improve sorting of recent files
910
911 * Bugs fixed:
912  639078 UUID support feature request
913  777135 gkeyfile: Be more specific about error codes in documentation
914  777307 race condition between gdbus signal callback and g_bus_unwatch_name...
915  777481 goutputstream: docs: fix typos
916  777493 g_mkdtemp() not introspectable
917  777507 Recent view sorting incorrectly
918  777592 Add minor examples to GDBus and GVariant documentation
919  778002 race in gdbusprivate.c detected by the ThreadSanitizer
920  778096 race in gdbusconnection reported by TSan
921
922 * Translation updates:
923  Norwegian bokmål
924  Polish
925  Simplified Chinese
926  Slovak
927  Spanish
928  Swedish
929
930
931 Overview of changes in GLib 2.51.1
932 ==================================
933
934 * glib-compile-resources grew a --generate-phony-targets flag
935
936 * GLib now installs a valgrind suppressions file for GLib and GIO
937
938 * Bugs fixed:
939  666114 should have infrastructure to run its tests under valgrind
940  729730 GDBusMessage: Fix segfault if DEBUG_SERIALIZER is enabled
941  730932 statically assert that reasonable assumptions about enums are true
942  735731 gobject: Document behaviour of GType checking macros on NULL
943  736810 gdbus: Fix leak in g_dbus_message_print()
944  762283 GSocket – Fix race conditions on Win32 if multiple threads are waiting on cond...
945  767609 Test suite problems
946  767952 g_dbus_method_invocation_return_*, g_dbus_method_invocation_take_error: They d...
947  769672 Assert threads for testcase 642026 are sucessfully created
948  769745 gtask: Add guards for public functions
949  770175 Add command line argument to mkenums and genmarshal to write output to a file
950  770646 glib: Namespace global tapset variables by soname
951  772160 Add g_unix_mount_for() support
952  772989 Totem allows invalid urls that might cause segfault that's irrecoverable
953  773823 gio: Bump copy buffer size to 256k by default
954  774086 fix g_main_context_check declaration
955  774368 Dependency file output of resource scanner breaks Ninja
956  774421 Two minor patches
957  774520 GSocket allocates and processes control messages even if not requested
958  775309 Crash in gdbusauth
959  775468 Improve log write supports color method on windows
960  775510 testing with -fsanitize=undefined reports various undefined behaviour
961  775517 Password input is echoed in the terminal
962  775621 gmessages: Fix compilation on Android
963  775765 FDO notification withdrawal backend sends wrong ID to the server
964  775913 subprocesslauncher: potential infinite loop in verify_disposition()
965  776198 Stray semicolon after g_variant_print() function in gvariant.c
966  776586 License headers cleanup
967  777077 Use of memory after it is freed
968
969 * Translation updates:
970  Brazilian Portuguese
971  Czech
972  Galician
973  German
974  Hebrew
975  Kazakh
976  Lithuanian
977  Spanish
978  Swedish
979
980
981 Overview of changes in GLib 2.51.0
982 ==================================
983
984 * glib-genmarshal and glib-mkenums have gained --output options
985   for better build system integration
986
987 * New API: g_utf8_make_valid
988
989 * Bugs fixed:
990  591603 Make _g_utf8_make_valid public
991  610969 Nice to have g_utf8_make_valid as public
992  767882 Bit shift overflow (-Wshift-overflow) warning in gparam.h
993  769135 External control for g_test_add/g_test_run
994  769630 gfile: G_FILE_MONITOR_WATCH_MOVES was actually introduced in 2.46
995  772160 Add g_unix_mount_for() support
996  772221 Take advantage of Unicode
997  773303 GApplication leaks option_strings 
998
999 * Translation updates:
1000  French
1001  Galician
1002  German
1003  Hungarian
1004  Lithuanian
1005  Norwegian bokmål
1006  Occitan
1007  Polish
1008  Slovak
1009  Turkish
1010
1011
1012 Overview of changes in GLib 2.50.1
1013 ==================================
1014
1015 * Update Unicode support to Unicode 9.0.0
1016
1017 * Bugs fixed:
1018  662946 gunixmounts monitoring doesn't work correctly with libmount
1019  771591 Update to Unicode 9.0.0
1020  772054 glib/gspawn-win32-helper.c: unexpected behavior re CommandLineToArgvW()
1021  772255 gresolver: Mark GResolver as an abstract class
1022  772269 Add --version options to glib-compile-resources and glib-compile-schemas
1023  772297 completion: Complete gsettings describe
1024  772511 g_log_default_handler crashes windows apps with "Unspecified fatal err...
1025
1026 * Translation updates:
1027  Brazilian Portuguese
1028  Catalan
1029  Croatian
1030  Czech
1031  Danish
1032  Hungarian
1033  Italian
1034  Latvian
1035  Polish
1036  Swedish
1037
1038
1039 Overview of changes in GLib 2.50.0
1040 ==================================
1041
1042 * Bugs fixed:
1043  771438 Turn on libmount by default on linux
1044         Fix the annotation for g_log_variant
1045
1046 * Translation updates:
1047  British English
1048  French
1049
1050
1051 Overview of changes in GLib 2.49.7
1052 ==================================
1053
1054 * Add g_log_variant, binding-friendly api for structured logging
1055
1056 Bugs fixed:
1057  646926 arg_data invalid after g_option_context_parse() fails
1058
1059 * Translation updates:
1060  Danish
1061  Finnish
1062  Galician
1063  German
1064  Hebrew
1065  Kazakh
1066  Korean
1067  Latvian
1068  Lithuanian
1069  Polish
1070  Portuguese
1071  Serbian
1072  Slovak
1073  Spanish
1074  Swedish
1075  Thai
1076
1077
1078 Overview of changes in GLib 2.49.6
1079 ==================================
1080
1081 * The gsettings commandline tool now has a describe command
1082
1083 Bugs fixed:
1084  745754 Add gcc-style dependency output to glib-compile-resources
1085  769076 Fix warning: attempt to override closure->va_marshal with new marshal
1086  770372 gdbus-codegen: Strip @since parameters before comparison
1087
1088 Translation updates:
1089  Brazilian Portuguese
1090  Czech
1091  German
1092  Hungarian
1093  Polish
1094  Portuguese
1095  Spanish
1096
1097
1098 Overview of changes in GLib 2.49.5
1099 ==================================
1100
1101 * Structured logging:
1102  - drop libsystemd dependency
1103  - document that g_test_expect_message does not work with structured logs
1104
1105 * Use libmount for unix mount support
1106
1107 * Add an async variant of g_app_info_launch_default_for_uri
1108
1109 Bugs fixed:
1110  522053 GUnixMountMonitor needs to use /proc/self/mountinfo on recent Linux
1111  682794 Add usage guidance to logging documentation
1112  744456 Structured logging API
1113  766370 Add a macro for initializing g_auto(GVariantBuilder)
1114  767240 Regex failures with pcre 8.38
1115  768198 Can't build glib with systemtap enabled
1116  768453 Gdbus test: compilation fails due to -Werror=format-y2k errors
1117  768752 Add async variant of g_app_info_launch_default_for_uri
1118  769027 Docs misleadingly imply G_CHECKSUM_SHA512 is available since 2.16
1119  769029 gmessage: compiler complains about -Wformat-nonliteral
1120  769042 'O_CLOEXEC' undeclared (first use in this function)
1121  769087 gmessages: support NULL log domain
1122  769089 Fix gsettings uint64 testcase
1123  769104 Build failure when using _GLIB_CHECKED_ADD_U32 with the Intel compiler
1124  769139 g_log_writer_journald uses non-standard 'htole64' function
1125  769238 memory increases every time I umount and mount my secondary hard disk.
1126  769245 is_valid_heap_iter define misses NULL pointer check
1127  769507 gmessages: Don’t require is_journald() call before writer_journald()
1128  769785 gmessages: Expand documentation further for structured logging
1129  769995 gdbus-codegen: Allow '@since: UNRELEASED' in documentation comments
1130
1131 Translation updates:
1132  Catalan
1133  Hebrew
1134  Lithuanian
1135  Slovak
1136  Spanish
1137
1138
1139 Overview of changes in GLib 2.49.4
1140 ==================================
1141
1142 * Change the just-introduced structured logging API. The arguments
1143   of g_log_structured() had to be reordered to enable an implementation
1144   within the limits of what the standards guarantee about var args.
1145
1146 Bugs fixed:
1147  744456 Structured logging API
1148  768936 gio doc build fails because of missing gio.xml in the tarballs
1149  768963 improper va_list use in g_log_structured()
1150  768968 gio/tests/socket-listener hangs since e4ee307
1151
1152 Translation updates:
1153  Spanish
1154
1155
1156 Overview of changes in GLib 2.49.3
1157 ==================================
1158
1159 * GLib has a structured logging API, g_log_structured, with support
1160   for writing to the systemd journal. It also supports colored output
1161   in terminals
1162
1163 * Some new GBytes API has been added:
1164  - g_key_file_load_from_bytes
1165  - g_compute_hmac_for_bytes
1166
1167 * Stack-allocated GVariantBuilder and GVariantDict objects can now be
1168   initialized with G_VARIANT_BUILDER_INIT and G_VARIANT_DICT_INIT
1169
1170 * gio:
1171  - Add a way to register handlers for custom uri schemes
1172  - Add a G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE attribute to
1173    have these heuristics in a single place
1174  - Include a gio tool that makes the functionality of the
1175    various gvfs commandline tools available in a single place
1176  - Add portal support to g_app_info_launch_default_for_uri
1177  - Add portal support to GNetworkMonitor
1178  - Add portal support to GProxyResolver
1179  - Add portal support to g_application_send_notification
1180
1181 Bugs fixed:
1182  547200 g_utf8_find_next_char() issues
1183  662802 systemtap multiarch issue
1184  723506 fork/exec from non-main thread when autolaunching could be avoided...
1185  725902 build: simplify dtrace configuration
1186  728207 gsocketservice: Documentation does not mention that is already act...
1187  729914 instead of DEBUG_CODE and IF_DEBUG, provide a common macro to supp...
1188  744456 Structured logging API
1189  744678 Unable to delete relocatable schemas
1190  746685 clarify that g_variant_get_data() can be used instead of g_variant...
1191  747134 glib-compile-resources --generate should detect common C++ file ex...
1192  750257 GSettings changed signal should clearly state the order required
1193  753231 Memory is potentially used after free
1194  754012 missing filename in "Error loading css: Failed to import: Error op...
1195  760115 gtestutils: add missing dash in seed argument's --help documentation
1196  760423 gio-querymodules prints error messages as question marks on some l...
1197  761102 Increase performance for main loop
1198  765338 GLib.compute_hmac_for_data throws every time
1199  766370 Add a macro for initializing g_auto(GVariantBuilder)
1200  766899 Superflous HTML/XML comments in GDBusProxyTypeFunc documentation s...
1201  766933 GSocketAddress leaks in gnetworkmonitornetlink.c:read_netlink_mess...
1202  767765 Add names and tags to various GSources and GTasks constructed in GLib
1203  767880 gkeyfile: add g_key_file_load_from_bytes() API
1204  767887 vfs: add g_vfs_register_uri_scheme()
1205  767949 [patch] Typos in glib docs
1206  768029 infinite loop in parse_name_internal()
1207  768119 Fix fallout from get_supported_schemes() changes
1208  768357 Build the gio tool on Windows/MSVC
1209  768498 portal support for glib
1210  768504 keyfile: g_key_file_get_double behavior doesn't follow documentation
1211  768549 Test failure: test_ip_sync_dgram
1212  768551 Test failure: test_socket_address_to_string
1213  768560 gio/tests/gsettings: fix GSettings reference leaks in some tests
1214  768780 O_PATH is a non-standard flag which may be unavailable on non-Lin...
1215  768806 gdbus tool must swallow -- argument
1216
1217 Translation updates:
1218  Chinese (Taiwan)
1219  French
1220  Hebrew
1221  Indonesian
1222  Lithuanian
1223  Portuguese
1224  Spanish
1225
1226
1227 Overview of changes in GLib 2.49.2
1228 ==================================
1229
1230  * GMainContext and GTask have gained more systemtap probes
1231
1232 Bugs fixed:
1233  673101 resource compiler dependency generation not working for gen...
1234  700756 GFile.new_for_path arguments misses (type filename) annotation
1235  730187 glocalfileoutputstream: Fix an FD leak in an error path
1236  755439 Memory leak in gdbusproxy.c
1237  759813 Add more SystemTap/DTrace probes for main context and GTask
1238  761810 gio: Support using GDBusObjectManagerServer at path ‘/’
1239  767172 docs: Move GIO_USE_VFS to "okay for production" section
1240  767218 Remove a UTF-8 ellipsis from gsignal.h
1241  767245 Add filename type annotations
1242  767824 Some UTC timezones incorrectly recognized on Windows 7
1243
1244 Translation updates:
1245  Occitan
1246
1247
1248 Overview of changes in GLib 2.49.1
1249 ==================================
1250
1251  * GDesktopAppInfo now allows bus activation with dashes. This is
1252    not technically allowed per the Desktop Entry specification, but
1253    it happens in the wild. Rather than forcing people to go through
1254    another traumatic desktop file rename, accept it and translate - to _.
1255
1256  * The support for giving names to threads has been improved. Thread names
1257    are now supported on Solaris as well, and the Linux support no longer
1258    uses prctl() but the pthread api.
1259
1260  * GIO resources can now be overridden at runtime, using the G_RESOURCE_OVERLAYS
1261    environment variable.
1262
1263  * gdbus-codegen can now generate autocleanup definitions for the types
1264    it generates. Use the --c-generate-autocleanup option to control this
1265
1266 Bugs fixed:
1267  665446 Use g_abort() instead of abort()
1268  731988 glocalfile: Avoid a potential NULL pointer dereference
1269  742898 g_value_type_transformable() description differs from the code
1270  747107 GVariant varargs documentation: g_variant_get() example
1271  747478 g_system_thread_set_name() is not implemented for gthread-win32
1272  748474 g_get_language_names() is not thread-safe
1273  748530 gthread: W32 implementation of g_get_num_processors() has lame fallback
1274  748806 GVariant: Better introduction to the concepts and its uses
1275  749583 GSequence performance improvements
1276  749606 tests: always remove app.desktop
1277  755898 [PATCH] settings: add get/set uint64
1278  758174 Fix documentation typos
1279  758738 Usage of GType properties causes crashes due to gulong/gpointer mismatch
1280  760186 namespace clash with gdb pretty-printing code
1281  762994 Race condition in GIO/AppFileChooser crashes Firefox/Gtk3
1282  763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
1283  763821 build: Also dist Systemtap files always for gobject/
1284  764092 gstrfuncs: Document the behaviour of g_strjoinv()
1285  764163 g_task_had_error doesn't remember the error after g_task_propagate_*
1286  764415 Very High CPU usage in g_poll() Windows implementation
1287  764574 build: Fix all statfs() tests failing
1288  764575 tests: Fix compilation errors due to Y2K format problems
1289  764685 GApplication documentation about handling command-line options is confusing
1290  764754 '-' in application id: unbreak bus activation and notifications
1291  765173 documentation of g_main_context_push_thread_default() regarding GIO...
1292  765668 GResources: add support for resource overlays
1293  765710 gdbus-tool: only print note about expected argument types if that...
1294  765712 tests: Fix compilation
1295  765861 task: avoid context lock when setting source name
1296  765900 Add g_drive_is_removable() support
1297  765924 Improve external drives detection
1298  765959 socket: set fd field to -1 after closing socket
1299  765990 Visual Studio: Define inline only when necessary
1300  765991 Compilation of gresource.c is broken due to S_ISDIR
1301  766092 Incorrect locale handling in g_date_time_format_locale()
1302  766211 Fix the upper bound in g_unichar_iswide_bsearch
1303  766407 Some build-related defects in glib testsuite
1304  766570 build: Fix a misnamed variable in glib-tap.mk
1305
1306 Translation updates:
1307  Basque
1308  Catalan
1309  Chinese
1310  Occitan
1311  Portuguese
1312  Turkish
1313  Vietnamese
1314
1315
1316 Overview of changes in GLib 2.48.0
1317 ==================================
1318
1319  * a minor build fix in the name of determinism
1320
1321  * a few coverity fixes
1322
1323 Bugs fixed:
1324  763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
1325
1326 Translations updated:
1327  Danish
1328  Italian
1329
1330 Overview of changes in GLib 2.47.92
1331 ===================================
1332
1333  * gdbus-codegen now supports g_autoptr()
1334
1335  * g_get_user_runtime_dir() now reliably returns an existing directory
1336
1337  * g_array_remove_range() can now remove 0 items from the end of an array
1338
1339  * Many fixes for Windows
1340    * build fixes
1341    * file monitoring
1342    * gsettings backend
1343    * streams
1344    * random numbers
1345    * wide character support
1346
1347  * documentation improvements
1348
1349  * other small bugfixes
1350
1351 Bugs fixed:
1352  724847 Segmentation fault on "gsettings list-recursively"
1353  743933 gapplication: add --app-id command line option
1354  756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
1355  757506 gsettings: schema_list should use the passed schema's source
1356  760694 W32: Apps linked with -mwindows make cursor busy sometimes
1357  762202 g_win32_error_message improvements
1358  762637 build: Unconditionally dist tapset files
1359  762748 Undefined behavior
1360  762937 Mention that g_clear_error can be used with an "empty" GError
1361  763339 array: Support clearing an empty array with g_array_remove_range()
1362  763344 g_get_user_runtime_dir(): ensure directory exists
1363  763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
1364
1365 Translations updated:
1366  Brazilian Portuguese
1367  Czech
1368  Finnish
1369  French
1370  Galician s
1371  German
1372  Greek
1373  Hebrew
1374  Hungarian
1375  Italian
1376  Kazakh
1377  Korean
1378  Latvian
1379  Lithuanian
1380  Occitan
1381  Polish
1382  Russian
1383  Serbian
1384  Slovak
1385  Slovenian
1386  Spanish
1387  Swedish
1388
1389 Overview of changes in GLib 2.47.6
1390 ==================================
1391
1392 * Windows usupport:
1393  - Fixes and improvements to the GSettings registry backend
1394  - Handle readability and writability of registry keys
1395  - Use Unicode registry APIs
1396
1397 * Bugs fixed:
1398 760852 744772 761126 747927 761337 744570 761504 761550 761843
1399  744570 GString is missing (transfer none) annotations on many of its methods
1400  744772 systemtap and gdb scripts install in wrong place
1401  747927 Documentation: various small improvements
1402  760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
1403  761126 winiconv: update to upstream version
1404  761337 Fix some annotations
1405  761504 W32 registry GSettings backend does not use Unicode
1406  761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
1407  761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
1408
1409 * Translation updates:
1410  Brazilian Portuguese
1411  Bulagarian
1412  Chinese (Taiwan)
1413  Hungarian
1414  Polish
1415  Slovak
1416  Slovenian
1417  Spanish
1418  Swedish
1419
1420
1421 Overview of changes in GLib 2.47.5
1422 ==================================
1423
1424 * the system copy of PCRE is now used by default to implement GRegex.
1425   Configure with --with-pcre=internal if a system PCRE version
1426   is unavailable or undesired.
1427
1428 * interfaces for DTLS support have been added.  A new version of
1429   glib-networking will also be required.
1430
1431 * GDBusMethodInvocation now drops replies if the sender set the
1432   NO_REPLY_EXPECTED flag
1433
1434 * several GApplication fixes, including fixes for commandline arguments
1435   in interpreted languages on Windows
1436
1437 Bugs fixed:
1438  624186 Deprecate glib-gettext macros
1439  734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
1440  735754 Implement close on TLS GOutputStream
1441  748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
1442  752240 Add DTLS support to GIO
1443  755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
1444  756875 Include ntdef.h for NTSTATUS
1445  759554 g_application_run() calls g_main_context_default() repeatidly
1446  760199 gsettings: Install gettext ITS rules
1447  760215 G_LIKELY/_UNLIKELY macros need more parentheses
1448  760683 regex test: Check the expected PCRE exceptions at runtime
1449
1450 Translations updated:
1451  Brazilian Portuguese
1452  Czech
1453  German
1454  Lithuanian
1455  Swedish
1456
1457 Overview of changes in GLib 2.47.4
1458 ==================================
1459
1460 * The GApplication documentation has been improved in several areas.
1461
1462 * Bugs fixed:
1463  749092 gdb pretty-printers fail on Python 3 with a TypeError...
1464  757374 macros: clean up "inline" mess
1465  758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
1466  759134 Add missing checks for gnulib vasnprintf()
1467  759408 Do not use uninitialized var 
1468  756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
1469  757372 GApplication: destroy the impl on shutdown
1470  728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
1471  757299 glib-compile-resources: do not leak c_name
1472  758553 Fix gettext use
1473  758823 file monitors: reorder some code to avoid segfault
1474  756214 gsettings: Don't translate ""
1475  710243 Add GParamSpec object ref management annotations
1476  735696 xdgmime: Finer handling for cases where mmap() is not available
1477  752983 gapplication: Acquire the main context before running
1478
1479 * Translation updates:
1480  Swedish
1481
1482
1483 Overview of changes in GLib 2.47.3
1484 ==================================
1485
1486 The inline cleanup in the last release accidentally removed three
1487 symbols from libglib-2.0.so.  It is unlikely that this will have caused
1488 any problems because these symbols were only backup symbols for
1489 definitions exported as inlines in the header files, but ABI is ABI.
1490
1491 This release corrects only this problem.
1492
1493 Overview of changes in GLib 2.47.2
1494 ==================================
1495
1496 * We have formalised the assumption that all compilers that are
1497   interested in support 'static inline' and simplified the macros around
1498   this considerably.  Please watch for and report unintentional fallout.
1499
1500 * New API: hardware-assisted helpers for overflow-checked integer math.
1501
1502 * other fixes
1503
1504 Bugs fixed:
1505  696324 gtester-report doesn't work with Python 3.x
1506  719966 glib: Add missing (nullable) and (optional) annotations
1507  752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
1508  755364 make gtkdoc-check happy again
1509  756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
1510  756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
1511  756988 GSequence should document each function's complexity
1512  757294 Move G_POLLFD_FORMAT to glibconfig.h
1513  757374 macros: clean up "inline" mess
1514  757451 doc: fix g_task_attach_source() example
1515  757628 gio tests fail to build when cross compiling 2.46.1
1516  757693 Invalid free in g_local_file_trash()
1517  757742 Fix up annotations in ghash.c
1518  758181 GTask: fix wrong example code
1519
1520 Translations updated:
1521  Greek
1522  Hebrew
1523  Hungarian
1524  Norwegian bokmål
1525  Portuguese
1526  Scottish Gaelic
1527  Simplified Chinese
1528  Spanish
1529
1530 Overview of changes in GLib 2.47.1
1531 ==================================
1532
1533 * The Unicode support has been updated to version 8.0 of the Unicode standard
1534
1535 * GDesktopAppInfo no longer sets the DISPLAY environment variable when
1536   launching apps. This is now done in the GAppLaunchContext implementations
1537   when appropriate
1538
1539 * Bug fixes:
1540  664740 Key-value file parser, space after integer
1541  687223 cleverer GThreadPool management
1542  692085 stderr and stdout are not always file descriptors 1 and 2
1543  697907 Add interface for socket-like things (GSocket, DTLS, etc)
1544  735754 Implement close on TLS GOutputStream
1545  737116 Add functions to print GSocketConnectables and addresses as strings
1546  743011 Minor additions to GError documentation
1547  749161 undefined reference to `__imp__stat32i64'
1548  749314 Cannot restore a just-trashed file
1549  751924 Add recvmmsg()-like API on GSocket
1550  752240 Add DTLS support to GIO
1551  752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
1552  753310 Remove `#pragma GCC system_header` from gmessages.h
1553  753935 Update example namespace and class names in GObject tutorial
1554  754855 Object instantiation documentation refers to example that no longer ex...
1555  754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
1556  754994 g_date_time_get_second () sometimes returns an off-by-one result
1557  755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
1558  755351 Example still contains g_autoptr(gchar)
1559  755355 Move GStrv to glib.h so it can be used with g_auto()
1560  755374 g_variant_get_child(): flatten-first logic on '&'
1561  755496 glib 2.46 fails GStreamer test suite
1562  755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
1563  755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
1564  755795 2.46 considers empty files as octet-stream rather than text (leads to...
1565  755961 Fix up annotations in gbytes.c
1566  756053 MSVC doesn't understand the symbol 'msghdr'
1567  756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
1568  756077 testutils: remove internal ABI comment
1569  756099 g_main_context_query(): Annotate @n_fds as (in) parameter
1570  756139 musl: ctors called in the wrong order
1571  756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
1572  756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
1573  756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
1574  756316 GSequence should provide fast api to check if empty
1575  756382 snprintf used on Windows with VS2015 doesn't support %n
1576  756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
1577  756550 gtypes.h: Make G_MININTn literals negative
1578  756875 Include ntdef.h for NTSTATUS
1579  756952 giomodule: return a copy of module name
1580
1581 * Translation updates:
1582  Basque
1583  Czech
1584  Serbian
1585  Serbian Latin
1586  Vietnamese
1587
1588
1589 Overview of changes in GLib 2.46.0
1590 ==================================
1591
1592 * Disable runtime-deprecation warnings
1593
1594 * Fix marshalling of flags on bigendian 64bit architectures
1595
1596 * Translation updates
1597  Brazilian Portuguese
1598  Danish
1599  German
1600  Latvian
1601  Russian
1602  Turkish
1603
1604
1605 Overview of changes in GLib 2.45.8
1606 ==================================
1607
1608 * utf8 validation and utf8-to-ucs4 conversion are faster
1609
1610 * Small speedups to property change notification
1611
1612 * Various other small optimizations for GQuark, GData
1613
1614 * Bugs fixed:
1615  696426 GParamSpecTypeInfo do not need to be static
1616  735429 Cleanup MSVC Project Files Generation
1617  738504 Optimize UTF-8 decoding by unrolling branches and expressions
1618  742903 Add missing (transfer) annotation to GString
1619  748633 g_set_object order of operations
1620  754431 Fix build of glib/gstrfuncs.c on Windows
1621  754560 gioerror: Add more mappings for WinSock error codes
1622  754582 Glib cannot compile
1623  754601 Make g_strerror work with non-glibc POSIX systems
1624  754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
1625  754788 more g_strerror stuff
1626  754831 autocleanups: Add GString type
1627  754924 Improve test coverage of g_utf8_validate() by added known-...
1628  754986 Avoid unnecessary signal emission during draw
1629
1630 * Translation updates:
1631  Italian
1632  Kazakh
1633  Korean
1634  Lithuanian
1635  Slovenian
1636  Swedish
1637
1638
1639 Overview of changes in GLib 2.45.7
1640 ==================================
1641
1642 * Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
1643   backends (e.g. cloud storage).
1644
1645 * GFileMonitor: Make the inotify backend work with atomic renames again
1646
1647 * GSettings: change notification is again working unconditionally
1648
1649 * GListStore has a sort function now
1650
1651 * Test infrastructure:
1652  - Tests are now required to have unique names
1653  - TAP support has been improved
1654  - A macro for asserting that two memory regions have identical content
1655    has been added
1656
1657 * Bugs fixed:
1658  708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
1659  742849 inotify: send paired events to both sides
1660  744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
1661  747364 Fix GError leak in g_file_query_writable_namespaces()
1662  749492 Support file creation time on FreeBSD and NetBSD
1663  752769 (g_socket_receive_message | g_socket_send_message) performance
1664  753745 glib-genmarshal still needed for cross-compilation
1665  754152 Add g_list_store_sort
1666  754211 Memory leak in g_file_enumerator_iterate ()
1667  754264 GLib 2.44 certificate chain construction fails if the PEM incl...
1668  754283 gtestutils: add g_assert_cmpmem()
1669  754284 gtestutils: print the TAP test plan first, not last
1670  754286 misc gtestutils fixes
1671  754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
1672
1673
1674 * Translation updates:
1675  Chinese (Taiwan)
1676  French
1677  Galician
1678  Greek
1679  Hebrew
1680  Hungarian
1681  Indonesian
1682  Polish
1683  Portuguese
1684
1685
1686 Overview of changes in GLib 2.45.6
1687 ==================================
1688
1689 * Fix a test failure and a build failure
1690
1691 Overview of changes in GLib 2.45.5
1692 ==================================
1693
1694 * GNetworkMonitor now provides information about metered networks
1695
1696 * g_mem_set_vtable has been deprecated; it has not been working for
1697   quite a while. The recommendation is to use valgrind, or replace
1698   malloc itself.
1699
1700 * Bugs fixed:
1701  656325 Make GDBusInterfaceVTable binding friendly
1702  741779 Documentation tweaks addressing real-world API misuses
1703  741822 Fails to build with VS 2015
1704  742386 gdbusconnection: Don't g_printerr() when exiting
1705  743018 gobject: Add more cross-links between documentation pages
1706  750282 Add g_network_monitor_get_network_metered() to get if the connection...
1707  751358 GFileMonitor doesn't react to "mv some-file watched-file"
1708  751592 Stop using GMemVtable
1709  751598 Stop 'handle-local-options' propagation when callback reports an err...
1710  751610 g_str_hash produces collisions with strings of length 2
1711  751751 Wrong docs of g_async_queue_remove
1712  752210 gdbus command crashes with SIGSEGV
1713  752656 gdbusconnection: Fix signal subscription documentation
1714  752767 Fix typo in g_hash_table_replace() documentation
1715  753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
1716  753285 g_menu_item_set_icon fails if called with NULL icon
1717
1718 * Translation updates:
1719  Catalan
1720  Czech
1721  French
1722  Indonesian
1723  Lithuanian
1724  Norwegian bokmål
1725  Slovak
1726  Spanish
1727  Thai
1728  Turkish
1729
1730
1731 Overview of changes in GLib 2.45.4
1732 ==================================
1733
1734 * Bugs fixed:
1735  727829 win32: glibconfig.h.win32 updates
1736  741901 Clang cannot know that g_error don't return
1737  746339 GSocket kills process when fd is not a socket
1738  747676 gio/tests/socket fails: test_fd_roundtrip
1739  748610 Some tests fail with non-English locales
1740  749911 g_inet_address_to_string broken on XP/2003
1741  749912 g_inet_address_new_from_string broken on XP/2003
1742  750625 Should dismiss Software Updates Available notification after...
1743  750807 G_BREAKPOINT doesn't work as intended on Darwin
1744  751160 gtask does unnecessary work
1745  751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
1746  751731 GFile/DirectoryMonitor emit move events with other_file=NULL
1747  751737 gio/tests/appmonitor test fails in 2.45.3
1748  751798 Wrong enum type used in some test-cases
1749  752089 make gsocketservice::active a property
1750  752293 small cleanup: use list_free_full
1751
1752 * Translation updates:
1753  Greek
1754  Hebrew
1755  Portuguese
1756
1757
1758 Overview of changes in GLib 2.45.3
1759 ==================================
1760
1761 * Improve performance of g_signal_handler_disconnect for signals
1762   with many handlers
1763
1764 * GDBus has gained a new call flag to allow interactive authorization
1765
1766 * GSettings:
1767  - New API: g_settings_schema_list_keys
1768  - Deprecated: g_settings_list_keys
1769
1770 * OS X:
1771  - Implement GNotification
1772  - Bump the OS X requirement to 10.9
1773
1774 * Windows:
1775  - Add registry reading API
1776  - Reimplement GAppInfo using registry information
1777
1778 * Bugs fixed:
1779  666831 Support URI opening on W32
1780  728489 property action with inverted boolean state
1781  730168 Incorrect annotation on g_action_group_get_action_state_type return...
1782  733325 Several regex tests fail with pcre3 8.35
1783  734888 GLib has no helper functions to work with W32 Registry
1784  737009 signal handler lookup doesn't scale
1785  738185 Misleading language about "file name encoding" in the docs on g_env...
1786  738504 Optimize UTF-8 decoding by unrolling branches and expressions
1787  739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
1788  739424 gnome-shell crashes when files are added, deleted, or modified in $...
1789  739616 DBus; Add new call flag to allow interactive authorization
1790  740308 Add g_settings_schema_list_keys() method
1791  740516 RFE: please provide an introspectible version of g_log_set_handler
1792  741788 Document GSettings build system integration
1793  745013 GBinding not thread safe
1794  747146 Implement GNotification on OSX
1795  747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
1796  748727 Filechooser dialog shows no icons for directories on W32
1797  749693 GActionGroupExporter: flush queue on requests
1798  750203 GNetworkMonitorNetlink hangs in user namespace
1799  750322 gapplication: Make sure --help output is translated
1800  750344 GTlsInteractionClass is missing from doc
1801  750369 Various GBinding cleanups
1802  750386 Race condition in g_io_condition_get_type
1803  750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
1804  750573 GTlsDatabaseClass is not documented
1805  750918 genmarshal: silence register storage class warnings
1806  751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
1807  479730 The "g_key_file_set_comment" interface prepends '#' character to...
1808
1809 * Translation updates:
1810  Hungarian
1811  Spanish
1812
1813
1814 Overview of changes in GLib 2.45.2
1815 ==================================
1816
1817 * Improve error reporting in glib-compile-schemas.
1818
1819 * Add introspection annotations to GListStore.
1820
1821 * Bugs fixed:
1822  696749 win32 : failed to compile because of careless mistake in the code
1823  723394 const parameter to GtkPopover gtk_popover_set_pointing_to
1824  724113 gdbus-connection-loss test can fail on slow machines
1825  725981 tap-driver.sh: internal error getting exit status
1826  733325 Several regex tests fail with pcre3 8.35
1827  744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
1828  747882 gtype: Bump allowed number of children
1829  748534 gtest: if a subprocess assertion fails, print its stdout and stderr
1830  748612 de_DE locale used in option-context test is not supported by FreeBSD
1831  748614 Double unref in g_socket_listener_add_inet_port
1832  748834 glocalfilemonitor: Emit notification on rate limit change
1833  749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
1834  749080 gdatetime test: fails if close to rollover between seconds
1835  749180 gnetworkaddress: add return type annotation to parse methods
1836  749352 g_binding_unbind() fails when source is also the target
1837  749353 GBinding does not connect to the detailed notify signal
1838
1839 * Translation updates:
1840  Catalan
1841  French
1842  Slovak
1843  Thai
1844
1845
1846 Overview of changes in GLib 2.45.1
1847 ==================================
1848
1849 * The GSettings schema compiler, glib-compile-schemas has been changed
1850   to reject schema xml that has duplicate <summary> or <description>
1851   elements. Such elements typically occur when translations are merged
1852   into the schema, with xml:lang attributes. This is not the correct
1853   way to translate schemas. Instead keep the translations in the .mo
1854   file and set the gettext-domain attribute on the <schemalist> element.
1855
1856 * The file monitoring infrastructure has been rewritten, and all backends
1857   have seen major improvements.
1858
1859   The inotify backend is reporting events with less delay (no event will
1860   be delayed more than 10ms) and wakeups due to file monitoring have been
1861   significantly reduced. A CHANGES_DONE event will also be sent when new
1862   files appear.
1863
1864   The poll implementation is now using the thread default main context.
1865
1866   The fam implmentation is now running in the worker thread.
1867
1868   The fen implementation has been removed, since it was unmaintained.
1869
1870 * The GSettings schema compiler, glib-compile-schemas, is more strict
1871   about rejecting schemas with xml:lang style merged translations.
1872   Schema translations should be done by specifying the gettext domain
1873   in the xml, and keeping the translations in gettext. To avoid breaking
1874   already-installed schemas, this change is only taking effect when
1875   you use the --strict option.
1876
1877 * The hardcoded 10-thread limit of GTask's thread pool has been removed,
1878   since it was prone to causing deadlocks. The thread pool is now allowed
1879   to grow dynamically and will shrink back over time.
1880
1881 * GSimpleAsyncResult has been deprecated in favor of GTask.
1882
1883 * The algorithm used by GAppInfo to find default handlers for mime types
1884   has been tweaked to prefer apps that handle the specific subtype over
1885   default handlers for a generic supertype.
1886
1887 * Bug fixes:
1888  627285 inotify file monitor hardwired delay
1889  631597 Segmentation fault in append_escaped_text
1890  661767 merge/improve various bits of run-in-thread functionality
1891  687223 cleverer GThreadPool management
1892  711547 win32: silence some build warnings
1893  719966 glib: Add missing (nullable) and (optional) annotations
1894  726447 Possibly an error in text string
1895  728663 W32: wrong stat struct is used when built with MinGW-w64
1896  728669 W32: GLocalFile can't measure size of files larger than 2^32...
1897  730188 gsocket: Document FD ownership with g_socket_new_from_fd()
1898  733325 Several regex tests fail with pcre3 8.35
1899  738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
1900  739850 GClosure: add valgrind hints
1901  741791 gmain: Save errno when handling unix signals
1902  744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
1903  745255 Add support for copying sessions between GTlsClientConnections
1904  745745 gdbus: fix out-of-bound array access
1905  745821 Don't use __alloc_size__ attribute with clang
1906  746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
1907  746753 Glib-compile-resources --generate-header not using ".h" as ...
1908  747209 glib-compile-schemas ought to reject repeated <summary> and...
1909  747349 Conversion of gdbus to use GTask causes deadlocks
1910  747363 gatomic: Add missing new line in API doc comment
1911  747472 Don't ignore already-installed schemas with multiple <summa...
1912  747541 gdbus segfaults with invalid --dest
1913  747772 Having hardcoded utf8 strings in the source code does not p...
1914  748019 gsocketconnection: Fix copy-pasto in documentation
1915  748177 not all test schemas are distributed, "make distcheck" fails
1916
1917 * Translation updates:
1918  Basque
1919  Czech
1920  Danish
1921  Finnish
1922  German
1923  Hebrew
1924  Icelandic
1925  Norwegian bokmål
1926  Russian
1927  Turkish
1928
1929
1930 Overview of changes in GLib 2.43.92
1931 ===================================
1932
1933 GLib is now considered frozen.  We do not expect any major changes
1934 before the release of 2.44.0.
1935
1936  * GUnixMountMonitor now properly supports multiple main contexts
1937
1938  * many documentation improvements and cleanups.  We are now
1939    approaching a point where the documentation is 100% complete and the
1940    xml will build without warnings.  This will probably be enabled by
1941    default in the next cycle.
1942
1943  * new support for HTTP proxies in GIO
1944
1945  * new GTask:completed property
1946
1947  * use "private" futexes in order to further improve the performance of
1948    the contended case of GMutex and g_bit_lock()
1949
1950 Bugs fixed:
1951  614684 Make various parts of GObject const-correct
1952  730352 Use inet_pton(), if_nametoindex() and if_indextoname() for newer versions of Windows
1953  733876 Proxy protocol 'http' is not supported.
1954  741442 threads: use FUTEX_WAIT_PRIVATE and FUTEX_WAKE_PRIVATE if possible
1955  742599 Clean up GUnixMountMonitor
1956  743636 gtask: Add a GTask:completed property
1957  743661 g_win32_check_windows_version() is missing from doc
1958  744722 docs: Expand introduction to mention using async calls over sync ones
1959  745589 [Patch] gio: add some missing autocleanup
1960  745634 [GNotifications] Use themed icon as icon-name
1961
1962 Translations updated:
1963  Bosnian
1964  Bulgarian
1965  Catalan
1966  Czech
1967  French
1968  German
1969  Greek
1970  Hungarian
1971  Italian
1972  Kazakh
1973  Korean
1974  Latvian
1975  Lithuanian
1976  POTFILESin
1977  Polish
1978  Russian
1979  Serbian
1980  Slovak
1981  Slovenian
1982  Spanish
1983  Swedish
1984  Vietnamese
1985  pa  for Gnome
1986
1987 Overview of changes in GLib 2.43.91
1988 ===================================
1989
1990 We have now added 'g_autofree' as a libgsystem-style autocleanup macro
1991 that calls g_free() on the content of a local variable when it leaves
1992 scope (working only on GCC and clang).
1993
1994 GApplication now has an "is-busy" property, allowing one to query the
1995 effective busy state.
1996
1997 There have been various other bugfixes and cleanups.
1998
1999 Bugs fixed:
2000  661554 GIO's use of GError is wrong
2001  744263 Fix format specifier for __LINE__ in G_OBJECT_WARN_INVALID_PSPEC
2002  744565 gapplication: add bind_busy_property()
2003  744747 Add g_autofree
2004  744756 Can't find out if gapplication is marked as busy
2005  744830 autocleanups: Add GArray and GPtrArray
2006  744876 Unclean exit from from g_application_run
2007  745239 g_property_action_new missing type annotation
2008
2009 Translations updated:
2010  Chinese (Taiwan)
2011  French
2012  Galician
2013  Lithuanian
2014  Slovak
2015
2016 Overview of changes in GLib 2.43.90
2017 ===================================
2018
2019 * new GSimpleIOStream class to construct a GIOStream from an arbitrary
2020   GInputStream and GOutputStream
2021
2022 * GApplication: new API for marking 'busy' state according to the value
2023   of a boolean property on another object
2024
2025 * GOptionGroup: add binding support (boxed type, annotation fixes, etc.)
2026
2027 Bugs fixed:
2028  739724 Test functions should have async scope
2029  741024 glist: Mention that g_list_length() is bad for checking list emptiness
2030  741630 Add GSimpleIOStream class
2031  743349 goption: Add boxed type for GOptionGroup
2032  743990 GDBus connection closing is broken
2033  744565 gapplication: add bind_busy_property()
2034
2035 Translations updated:
2036  Greek
2037  Italian
2038  Norwegian bokmål
2039  Russian
2040  Slovenian
2041  Swedish
2042
2043 Overview of changes in GLib 2.43.4
2044 ==================================
2045
2046 * GType now has type declaration macros G_DECLARE_DERIVABLE_TYPE,
2047   G_DECLARE_FINAL_TYPE and G_DECLARE_INTERFACE, which significantly reduce
2048   the boilerplate needed for GObject types and interfaces.
2049
2050 * g_autoptr and g_auto are macros for declaring variables with automatic
2051   cleanup. They only work with gcc and clang.
2052
2053 * GListModel is a new interface that represents a dynamic list of GObjects.
2054
2055 * GListStore is a GSequence-based implementation of GListModel.
2056
2057 * Support thread names on OS X
2058
2059 * g_simple_action_set_state_hint: New function to set the state hint
2060   of GSimpleActions
2061
2062 * g_win32_check_windows_version: New function to check Windows version
2063
2064 * g_settings_schema_list_children and g_settings_schema_key_get_name
2065   are new functions to complete the GSettingsSchema API.
2066
2067 * Bugs fixed:
2068  389585 G_DEFINE_TYPE hack for header files
2069  729351 Add GListModel
2070  736914 Docs: various fixes and improvements
2071  741807 Add thread name support on OS X and iOS
2072  741895 gwin32: Add Simple API to check whether we are on at least a v...
2073  742456 object: Add g_steal_pointer() convenience function to mark own...
2074  743508 polkitd fails to start: patch for gio/gcredentialsprivate.h
2075  743517 GSettings API is missing some introspection functions
2076  743521 GSimpleAction: add g_simple_action_set_state_hint
2077  743596 G_DECLARE_DERIVABLE_TYPE() should allow additional typedef for...
2078  743640 add __attribute__((cleanup)) support
2079  743827 Fix build of GListModel (on Visual Studio)
2080  743927 GListStore: add sorted insert function
2081  743936 glib: handle unsigned modifier for long long in internal printf
2082  744012 Add GMutexLocker
2083  744190 Fix build on Compilers That Do Not Use inline for Plain C Code
2084
2085
2086 Overview of changes in GLib 2.43.3
2087 ==================================
2088
2089 * add g_set_object() convenience function
2090
2091 * GNetworkMonitor: check if NM is not running and don't crash
2092
2093 * fix some races with g_mkdir_with_parents
2094
2095 * fix some warnings in MSVC
2096
2097 * avoid use of G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC in order to save
2098   on static strings
2099
2100 * fix some content type vs. mime issues
2101
2102 * documentation improvements
2103
2104 * Bugs fixed:
2105  719455  g_file_make_directory_with_parents() can erroneously throw G_IO_ERROR_EXISTS
2106  732439  GSocket: avoid unnecessary g_socket_wait_condition() for blocking sockets
2107  734946  Implement GContentType on OSX
2108  741589  gobject: Add g_set_object() convenience function to set GObject pointers
2109  741653  gnetworkmonitornm: Check if network-manager is running
2110  741654  [patch] gobject: don't use G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC() macro
2111  741707  Gsocket blocks trying to send data
2112  741788  Document GSettings build system integration
2113  742548  configure.ac: stay out of autoconf's namespace
2114  742851  avoid MSVC warnings in G_STMT_END
2115  742972  ggettext: Include an example of setlocale() and friends in the i18n docs
2116  743014  gtestutils: Add an example of using test fixtures 
2117
2118 * Translations updated:
2119  Basque
2120  Brazilian Portuguese
2121  Spanish
2122
2123 Overview of changes in GLib 2.43.2
2124 ==================================
2125
2126 * New function: g_strv_contains
2127
2128 * New function: g_network_address_new_loopback
2129
2130 * New function: g_socket_send_messages
2131
2132 * A new GNetworkMonitor implementation using NetworkManager provides
2133   more detailed connectivity information
2134
2135 * Bugs fixed:
2136   11059 Linux poll issue
2137  664562 captive wifi portal support for GNetworkMonitor
2138  685880 Add g_strv_contains()
2139  712570 Hang in g_threaded_socket_service_func
2140  719646 GSocket: add g_socket_send_messages() to send multiple messages...
2141  728928 Provide separate error code for "Connection reset by peer"
2142  732317 Support GSocketConnectable for loopback addresses
2143  740814 "make check" should ensure that every symbol is documented
2144  740848 Backend subscription fails when connecting to a signal with a d...
2145  741016 gio: add G_IO_ERROR_NOT_CONNECTED
2146  741226 keyfile: Add "in group" to GError message consistently
2147
2148 * Translation updates:
2149  Gujarati
2150  Hebrew
2151  Hungarian
2152  Kannada
2153  Turkish
2154  Vietnamese
2155
2156
2157 Overview of changes in GLib 2.43.1
2158 ==================================
2159
2160 * GQueue now accepts NULL as a sibling in g_queue_insert_before() and
2161   g_queue_insert_after()
2162
2163 * Bugs fixed:
2164   11059 Linux poll issue
2165  726037 Add G_PARAM_READWRITE value to the GParamFlags enumeration
2166  727988 GMemoryOutputStream hangs when writing more than 1GiB
2167  729739 tlscertificate: add support for loading certificate chains
2168  733791 GSettings: delay backend subscription
2169  736286 Clarify g_file_replace behavior with etags
2170  736620 GQueue: accept NULL sibling for insert_before() and insert_after()
2171  737150 GLib-GIO-WARNING **: Failed to parse translated string 'visible-name...
2172  737160 unhelpful error message
2173  738259 GDBusInterfaceVTable: clarify memory handling for the method() virt...
2174  738551 'interface' variable conflicts with Windows defines
2175  738633 Need to disable SSLv3 in glib-networking
2176  740157 <app> --help doesn't work even when options were added
2177  740309 Fix docs in g_strfreev
2178  740413 Fix the GSettings Registry Backend 
2179
2180 * Translation updates:
2181  Norwegian bokmål
2182
2183
2184 Overview of changes in GLib 2.43.0
2185 ==================================
2186
2187 * GObject gained a debug option to provide instance counts. To use it,
2188   set GOBJECT_DEBUG=instance-count and call g_type_get_instance_count().
2189
2190 * GOption now has a strict POSIX mode in which it stops parsing arguments
2191   as soon as a non-option argument is encountered.
2192
2193 * Bugs fixed:
2194  354457 Feature Proposal: Per-Type Statistics for Instantiable GTypes
2195  695082 g_hash_table_remove_all is not save against a call to g_hash_table_remove
2196  723160 GOption: add strict posix mode
2197  728256 gcredentials: add NetBSD support
2198  729739 tlscertificate: add support for loading certificate chains
2199  733338 Don't segfault in GNetworkMonitor when IPv6 support is unavailable
2200  736273 gdesktopappinfo: Use symbolic names in the code
2201  736284 Keep only one list of signal emissions
2202  736806 gtask: Fix reference count loop causing leaks
2203  736914 Docs: various fixes and improvements
2204  737143 Include <stdint.h> in glib/valgrind.h
2205  737259 gcancellable: Clarify that GSources hold references to GCancellables
2206  737338 gmain: Unref child sources when finalising a GSource
2207  737446 tests: Fix some minor leaks in the unit tests
2208  737451 Provide api to read_all_async
2209  737741 g_datalist_id_get_data assertion fails for non-existant keys
2210  737869 GApplication command line handling breaks --help
2211  738170 g_byte_array_new_take() doesn't initialize array->alloc
2212  738197 g_cond_timed_wait() doesn't time out on Mac OS X
2213  738374 gfile: g_file_equal (x, x) is TRUE
2214  738675 GSubprocessLauncher is missing some data on the docs 
2215
2216 * Translation updates:
2217  Bengali (India)
2218  Bulgarian
2219  Gujarati
2220  Italian
2221  Telugu
2222
2223
2224 Overview of changes in GLib 2.42.0
2225 ===================================
2226
2227 All changes in this release are trivial in nature.
2228
2229  - introspection warning fixes
2230
2231  - g_application_add_main_option now uses an enum instead of an 'int'
2232    for the type of a parameter
2233
2234  - added a G_OPTION_FLAG_NONE so that people don't need to use 0
2235
2236  - gresource: Use GError in more places
2237
2238  - gresource commandline tool: improve extraction from multiple sections
2239
2240  - GSource now takes the context lock (if any) in g_source_set_name()
2241
2242  - new documentation to clarify the use of some APIs related to
2243    GVariant, GSource, GApplication
2244
2245  - other minor updates to docs
2246
2247 * Bugs fixed
2248  736683 Thread safety issues with g_main_context_find_source_by_id
2249  736975 [patch] please document that GVariant serialization needs an
2250         out-of-band length field
2251
2252 * Translation updates
2253  Danish
2254  Hindi
2255  Marathi
2256  Punjabi
2257  Serbian
2258  Simplified Chinese
2259
2260 Overview of changes in GLib 2.41.5
2261 ==================================
2262
2263 * Bug fixes:
2264  735819 single native credential struct used for two purposes
2265  735915 glib-building.html uses --enable-gcov instead of --enable-coverage
2266  736350 GDesktopAppInfo: avoid polling on missing desktop dirs
2267  736351 Don't use issetugid() on Android
2268         Fix the default application logic in GDesktopAppInfo
2269  736458 Only use rand_s() when targetting Visual Studio >= 2005
2270
2271 * Translation updates
2272  Galician
2273  Hungarian
2274  Indonesian
2275  Kannada
2276  Latvian
2277  Polish
2278  Russian
2279  Slovenian
2280  Tamil
2281
2282
2283 Overview of changes in GLib 2.41.4
2284 ==================================
2285
2286 * GApplication now has binding-friendly API to handle
2287   commandline options: g_application_add_main_option
2288
2289 * G_GNUC_BEGIN_IGNORE_DEPRECATIONS works with clang
2290
2291 * Bugs fixed:
2292  583330 poll list of mounted file systems (no mtab support)
2293  727455 Command line option parsing from bindings
2294  734126 add G_GNUC_BEGIN_IGNORE_DEPRECATIONS macro for clang
2295  735179 gsocketclient: Handle cancellation between CONNECTING...
2296  735297 Docs claim that GThread struct is deprecated 
2297
2298 * Translation updates:
2299   Assamese
2300   Catalan
2301   Catalan (Valencian)
2302   Czech
2303   French
2304   German
2305   Greek
2306   Hebrew
2307   Korean
2308   Oriya
2309   Traditional Chinese
2310
2311
2312 Overview of changes in GLib 2.41.3
2313 ==================================
2314
2315 * g_clear_pointer and g_clear_object no longer use atomics
2316
2317 * Bugs fixed:
2318  711547 win32: silence some build warnings
2319  725511 Compiled resource files should have the same /-separators everywhere
2320  725513 Some tests fail to build on W32
2321  725514 W32: gfileutils does not preserve errno correctly
2322  725515 test-printf fails on W32
2323  728730 gsocket: Set SO_NOSIGPIPE on sockets on Darwin
2324  729703 Leaks a GError in g_file_move
2325  730932 statically assert that reasonable assumptions about enums are true
2326  732085 gtype: Fast-path for g_type_is_a
2327  732754 GDBusMessage: optimise (de)serialisation of fixed arrays
2328  733345 ginetaddress: Add a precondition to g_inet_address_new_from_string()
2329  733576 Patches from static analysis run on 2.40
2330  733715 glib's configure.ac makes accidentally use of nested function
2331  733934 win32: improve the package installation dir lookup
2332  733960 W32: spawning a console process creates a new window when stdout...
2333  733969 Remove atomic aspects of g_clear_pointer/object
2334  733982 Do not crash when checking whether an instance type is of a given...
2335  734035 gedit hangs up when there's no GSettings key in the registry 
2336
2337 * Translation updates:
2338  Basque
2339  Brazilian Portuguese
2340  Lithuanian
2341  Slovenian
2342  Spanish
2343
2344
2345 Overview of changes in GLib 2.41.2
2346 ==================================
2347
2348 * The Unicode support has been updated to version 7.0
2349   of the Unicode standard
2350
2351 * GNotification now supports priorities for notifications
2352
2353 * GCredentials has gained NetBSD support
2354
2355 * GMutex now uses a faster, native implementation on Linux
2356
2357 * Bugs fixed:
2358  699132 Pluggable event loop backends
2359  720708 g_assert_warning(): number of arguments doesn't match for...
2360  722092 Add GtkApplication resources support
2361  724986 Change gio/data-to-c.pl to /usr/bin/env perl.
2362  727974 Fix up failure-to-see-expected-message logging
2363  728256 gcredentials: add NetBSD support
2364  728401 GDateTime: Add guards to g_date_time_new()
2365  729825 Formatting of g_alloca documentation
2366  729914 instead of DEBUG_CODE and IF_DEBUG, provide a common macro...
2367  730293 clang++-3.4: error: 'register' storage class specifier is ...
2368  731339 giochannel: avoid setting uninitialised length
2369  731424 #ifdef spaghetti for load_user_special_dirs() implementations
2370  731623 GNotification: add support for a priority setting
2371  731929 update tables to unicode 7.0.0
2372  731950 gvalue: New g_value_from_instance
2373  731986 GLib: implement GMutex natively on Linux
2374  732184 GObject: warn on use of deprecated properties
2375  732357 Docs: various fixes and improvements
2376  732429 GActionEntry: improve documentation
2377  732465 Fix build on x64 Visual C++ builds
2378  732704 Docs: various fixes and improvements
2379  732739 ginetsocketaddress: Explicitly initialise flags for getaddr...
2380  732754 GDBusMessage: optimise (de)serialisation of fixed arrays
2381  732984 g_object_ref(NULL) in g_dbus_object_manager_client_finalize
2382  733084 Typos in g_bytes_hash() and g_time_zone_find_interval() docs
2383  733146 spawn helper does not use correctly the parameters 
2384
2385 * Translation updates:
2386  Lithuanian
2387
2388
2389 Overview of changes in GLib 2.41.1
2390 ==================================
2391
2392 * Bug fixes:
2393  697229 Custom Interface implementations will be broken with glib 2.37/38
2394  698614 GObject: prevent installing properties after init
2395  729269 gvariant: Fix confusion between type and format strings in the docs
2396  730198 broken valgrind.h leads to crashes in g_type_free_instance on mingw64
2397  730807 GMutex performance regression
2398  730963 gconvert: mention that the g_convert len should be in bytes
2399  730984 Faster instance type check for fundamentals
2400  731050 <structname> tags appear in documentation
2401  731200 unconditional 'notify' during g_object_set() is problematic
2402  731335 gtype: guard uses of new fundamental type check
2403  731341 gparam: change value of G_PARAM_EXPLICIT_NOTIFY
2404  731366 run-assert-msg-test.sh gdb leaves assert-msg-test zombie
2405  731425 giomodule protects function-call with different token than function...
2406  731513 clang: build failure: implicit declaration of function '__atomic_load_4'
2407  731584 gbookmarkfile: Cleaner error handling code to pacify static analysis
2408  731657 Prevent an invalid @CARBON_LIBS@ from appearing in the .pc files
2409  731979 docs: Correct param to interface's default_init()
2410  731996 Return folder as icon for directories
2411  732002 gwakeup: Clarify buffer sizing in g_wakeup_signal()
2412  732005 Remove unused assignments
2413  732019 gtestdbus: Don’t close stdout for dbus-daemon
2414  732068 gsignal: Add an example to the g_signal_connect_swapped() documentation
2415  732081 gsocket: Document that g_socket_create_source() holds a socket ref
2416  732107 gsocketlistener: Reconsider closing sockets on listener finalisation
2417
2418
2419 Overview of changes in GLib 2.41.0
2420 ===================================
2421
2422 * Many bugfixes found by static analysis, including potential fd leaks
2423   and NULL pointer dereferences.
2424
2425 * Increased use of (nullable) attribute on out values and return types
2426   now that it is supported (mostly from porting Vala metadata).
2427
2428 * use XDG_CURRENT_DESKTOP for OnlyShowIn/NotShowIn handling of desktop
2429   files, deprecating g_desktop_app_info_set_desktop_env()
2430
2431 * add support for g_desktop_app_info_get_implementations() to find
2432   desktop files that have an Implements= line for a given interface
2433
2434 * GHmac has gained SHA-512 support
2435
2436 * support the new mimeapps specification (most notably, moving the
2437   assoications/defaults configuration to ~/.config/mimeapps.list).
2438
2439 * libgobject is now linked -Wl,-z,nodelete when possible to avoid errors
2440   when gobject is used from a module for a program that does not itself
2441   use gobject and that module is unloaded/reloaded
2442
2443 * ... and many other bug fixes.
2444
2445  623552 glib warns if backtrace.py is not present
2446  667468 glib-2.30.2: ipv6 tests fail when no ipv6 support is available
2447  668152 -framework Carbon linker flag not passed to pkg-config .pc files
2448  707298 libgobject should be linked with -Wl,-z,nodelete
2449  712391 Add g_desktop_app_info_get_implementors()
2450  722723 Infinite recursion when calling g_io_stream_close_async() from libsoup
2451  724741 hmac: Fix support for SHA-512 in GHmac
2452  726040 networkaddress: fix parsing of uri with @ after authority
2453  726318 gio: Document that GSocket is not thread safe
2454  726611 socketclient: Leak on cancellation
2455  726872 gio: Add names to idles and timeouts
2456  727119 wrong IN6_IS_ADDR_MC_LINKLOCAL usage break android build
2457  727123 GNotification: Some small documentation fixes
2458  727320 docs: Remove escaping '\' from literals
2459  727551 Check use_count of GApplication in g_application_release()
2460  727559 g_file_copy: Don't set GError when we intend to ignore errors
2461  727692 gio/gtlscertificate.c -- broken PEM-file processing (affects local CA root stores, for starters)
2462  727890 soup_content_sniffer_real_sniff segfault
2463  727900 gio: Add newer dbus UnknownXxxx and PropertyReadOnly errors
2464  727928 gapplication-tool fixes
2465  727939 INTLLIBS are always appended in configure checks
2466  727964 g_io_extension_point_get_extension_by_name: Warn, but don't crash, for NULL inputs
2467  728040 Implement new mimeapps spec
2468  728066 Deal with startup notify id being NULL
2469  728280 platform_get_argv0: fix sysctl(3) use on OpenBSD
2470  728285 docs: Use markdown links in .h files, too
2471  728350 gaction: Minor clarifications in the GAction documentation
2472  728380 docs: Remove <!-- --> comment before plural s
2473  728565 gfile: More explicitly document the context for GFileProgressCallback
2474  728983 Docs: various fixes and improvements
2475  729167 gobject: Document that classes/objects/interfaces are zero-filled
2476  729563 GOption: A short option's value is included in G_OPTION_REMAINING
2477  729813 AppInfo: use XDG_CURRENT_DESKTOP for OnlyShowIn
2478  729875 gio: cleanup gdbusmessage.c file
2479  730045 Avoid overeager warning about deprecated properties
2480  730189 gtestutils: Fix a very unlikely FD leak in test fork handling
2481  730190 gsocket: Add missing preconditions to g_socket_send_message()
2482  730277 gthread: Fix use of a local variable after it went out of scope
2483  730278 gsubprocess: Add a missing va_end() call
2484  730295 gdbus-tool: Remove dead variables
2485  730493 Port annotations from Vala metadata
2486
2487 Translations updated:
2488  Basque
2489  Brazilian Portuguese
2490  Catalan
2491  Czech
2492  Danish
2493  Greek
2494  Hebrew
2495  Hungarian
2496  Punjabi
2497  Serbian
2498  Slovenian
2499  Spanish
2500  Ukrainian
2501
2502 Overview of changes from GLib 2.39.91 to GLib 2.39.92
2503 =====================================================
2504
2505 This is a release candidate for 2.40.0.
2506
2507 There are no major changes in this release, but a few serious bugs have
2508 been fixed.
2509
2510 * Bugs fixed:
2511  710367 Crash in g_settings_backend_dispatch_signal()
2512  723899 G_DEFINE_TYPE() causes compiler warnings with clang due to foo_get_instance_private
2513  724859 Let the test_wait_until() test also run on non-*nix
2514  724916 gio unmount code makes XFCE's Thunar crash
2515  725651 GSubprocessLauncher: Does not copy the calling process environment.
2516  725656 Unskip GVariantDict
2517  725891 gio tests: add codegen to BUILT_SOURCES
2518  726046 Recent commit created symbolic icons issues
2519
2520 * Translations:
2521  Chinese
2522  French
2523  Korean
2524  Latvian
2525  Norwegian bokmål
2526  Portuguese
2527  Russian
2528  Traditional Chinese
2529
2530 Overview of changes from GLib 2.39.90 to GLib 2.39.91
2531 =====================================================
2532
2533 This release introduces a hard dependency on present and functioning
2534 clock_gettime() and CLOCK_MONOTONIC.  It also introduces a dependency on
2535 pthread_condattr_setclock() unless your system happens to have
2536 pthread_cond_timedwait_relative_np() (as do Mac OS and Android).  This
2537 release is known to be broken with at least GNU/Hurd, pending addition
2538 of working pthread_condattr_setclock(CLOCK_MONOTONIC) there.
2539
2540 New API: g_str_to_ascii()
2541
2542 * Fixed bugs:
2543  670144 unconditional use of CLOCK_MONOTONIC is broken
2544  673607 invalid assumption in g_cond_wait_until() / g_get_monotonic_time() API
2545  710142 Add more impressive transliteration to GLib
2546  722360 make check fails
2547  722604 (partial) Various tests are failing with 2.39.3
2548  723316 g_hash_table_iter_remove() should be explicit whether or not it is safe while iterating the table
2549  724609 Fix build of GIO on Windows
2550  724687 gmain: make monotonic time really monotonic, everywhere
2551  724706 gsource: document priority of child sources
2552  724707 some GSocket source improvements
2553  724839 GMainContext: some source ID cleanups
2554  724858 Dist gtranslit-data.h
2555  724994 Missing icons for bookmarks in file chooser
2556  725023 Can no longer find apps by executable/desktop file name
2557
2558 * Translations:
2559  Lithuanian
2560  Polish
2561  Thai
2562
2563 Overview of changes from GLib 2.39.4 to GLib 2.39.90
2564 ====================================================
2565
2566 * Fixed bugs:
2567  625408 make GVariant dictionaries more useful
2568  660809 document that if you fail a precondition check, documented guarantees do not apply
2569  661576 fix handling of constructors that destroy half-constructed objects
2570  679957 g_inet_address_new_from_string is not able to handle dots and numbers IPv4 addresses
2571  712837 gvariant: Document the need to cast varargs when constructing GVariants
2572  721458 g_simple_async_result_is_valid has a NULL check for the wrong source_tag
2573  721977 improve split handling of command line arguments
2574  722033 win32: fixup lib.exe invocation
2575  723422 Fix g_socket_get_available() with TCP on Windows
2576  723616 gio/tests: fix race when generating code
2577  724001 gsubprocess: Fix a broken link in the documentation
2578  724124 glib/tests/collate.c fails if no en_US locale
2579  724126 intermittent GApplication test failure: /gapplication/local-actions: lines of output permuted
2580  724233 gsocketservice: Note g_socket_listener_close() for closing open sockets
2581  724239 soup_session_queue_message - Connection terminated unexpectedly
2582  724278 gsocketconnection: Document closing connections with g_io_stream_close()
2583  724330 configure.ac: tweak inotify check
2584  724385 gtestutils: make the new assert messages more detailed
2585  724401 gsubprocess: Mutex leak
2586  724417 glib master build broken on OpenBSD
2587  724434 Build failure in gio/gresolver.c
2588
2589 * Updated translations:
2590  Brazilian Portuguese
2591  Galician
2592  Indonesian
2593  Italian
2594  Kannada
2595  Norwegian bokmål
2596  Spanish
2597  Thai
2598
2599 Overview of changes from GLib 2.39.3 to GLib 2.39.4
2600 ===================================================
2601
2602 * Fixed Bugs:
2603  139699 Correction for g_main_context_unref()
2604  583036 g_strchomp and g_strchug are not declared const
2605  683388 improve documentation for application developers
2606  685204 ./configure fails to add the '-g' flag to CFLAGS
2607  688406 GStaticMutex broke ABI on at least ARM EABI during 2.31.x
2608  693299 cannot compile on Solaris: error in gbitlock.c
2609  707111 Clarify type transformability and compatibility
2610  711547 win32: silence some build warnings
2611  719344 Fix the various test programs (or GLib itself) on Windows
2612  722025 cleanup/clarify command line argument encoding on Windows
2613  722323 remove unused include 'gslist.h' in 'gbookmarkfile.c'
2614  722326 gstringchunk: Use g_slist_free_full() where possible
2615  722357 gio: fix small memory leak on local xattr
2616  722436 Adjust doc to Makefile.decl renaming
2617  722503 GSimpleAction: add default activate handler
2618  722526 glib/deprecated/gthread.h error on FreeBSD
2619  722591 [documentation] broken link to GtkAction from GAction.html
2620  722973 Broken example in GApplication reference
2621  723048 'network-access' test can fail to guess interface index
2622  723360 gmain: Note that g_source_destroy() can be called multiple times 
2623
2624 * Updated Translations:
2625  Assamese
2626  Tamil
2627  Traditional Chinese
2628
2629
2630 Overview of changes from GLib 2.39.2 to GLib 2.39.3
2631 ===================================================
2632
2633 No major changes this release -- mostly lots of small fixes and
2634 improvements in test coverage.
2635
2636  * fix a crasher in code from gdbus-codegen
2637
2638  * improvements to gobject gdb helper script
2639
2640  * portability:
2641
2642    - fix a deadlock issue with kqueue on FreeBSD
2643
2644    - work around a quirk in the sunstudio compiler
2645
2646    - rename a variable to avoid clashing with a macro definition of
2647      'environ' on some platforms (like mingw)
2648
2649    - use POSIX-specified <poll.h> over <sys/poll.h>
2650
2651    - many improvements to Visual Studio projects and and some build
2652      fixes for Windows
2653
2654  * tests
2655    - a very large number of improvements in test coverage
2656
2657    - don't report skipped tests as failures
2658
2659    - return 77 if we skip all tests in an executable
2660
2661    - improve gtest documentation and fix some minor issues
2662
2663    - fix g_test_trap_reached_timeout() return value
2664
2665    - remove some dead code uncovered during test coverage expansion
2666
2667    - Use tap mode for installed tests too, when using tap
2668
2669  * fix races in unix signal handling
2670
2671  * make our GVariant-based commandline tools (glib-compile-schemas,
2672    gdbus, gapplication) print out GVariant parse errors in context
2673
2674  * GApplication now has a --gapplication-service command line switch to
2675    turn any GApplication into a service
2676
2677  * improve compatibility of GApplication and GOptionContext
2678
2679  * fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
2680
2681  * use a directory monitor in GKeyfileSettingsBackend
2682
2683  * improve robustness of some GIcon classes
2684
2685 Bugs fixed
2686  141251  poll(2) is in <poll.h>, not <sys/poll.h> per SUS standard
2687  613732  [PATCH] gobject.py: Don't install frame filters when GDB does not support them
2688  708212  g_variant_parser_error_get_quark() has unexpected name.
2689  710965  GApplication: add --gapplication-service switch
2690  711090  periodic failure of spawn-multithreaded async testcase
2691  712171  gsettings.m4: @GSETTINGS_RULES@: Support srcdir != builddir with nonrecursive make
2692  712630  Revert "gsettings m4: check for .xml in src/builddir"
2693  715028  GVariant: add way to print context of parse errors
2694  719344  Fix the various test programs (or GLib itself) on Windows
2695  720263  gtestutils: skipping a test should count as success, not failure
2696  720539  gdbus-codegen: Fix crasher in goa-using apps
2697  720635  Make gdb pretty-printers compatible with Python3
2698  720891  g_settings_get_child does not inherit the backend
2699  721034  glib 2.38.2 cannot be compiled with SunStudio Compiler under Solaris
2700  721059  g_subprocess_launcher_set_environ vs "environ"
2701  721074  kqueue: deadlock
2702  721087  Missing -lselinux in pkg-config --libs --static gio-2.0
2703  721324  Error message is printed to stdout
2704  721624  Regression in GTest framework reorders existing test cases
2705  721625  backwards NEWS entry about g_source_remove change
2706  721796  insufficient escaping in g_dbus_annotation_info_generate_xml()
2707  721947  Improve GApplication ⇔ GOptionContext compatibility 
2708
2709 Translations updated:
2710  Brazilian Portuguese
2711  Galician
2712  Greek
2713  Hebrew
2714
2715 Overview of changes from GLib 2.39.1 to GLib 2.39.2
2716 ===================================================
2717
2718 * Portability
2719
2720   - Remove alleged support for OS/2
2721
2722   - Remove alleged support for BeOS
2723
2724   - Remove alleged support for last-millennium Unixes
2725
2726   - Require C90 compliance
2727
2728   - Require POSIX.1 (1990) compliance on Unix
2729
2730   - Require GNU make
2731
2732 * Bugs fixed:
2733  113075 support "nonnull" attribute
2734  159528 g_ptr_array_remove_range()
2735  307947 The check for growing stack pointer in configure can fail
2736  607016 docs should mention property notification order
2737  671557 Fun with integers and g_key_file_load_from_data()
2738  676761 don't use g_critical for a runtime error
2739  690525 g_file_replace_contents_async doesn't copy its @conten...
2740  691608 Support compilation with clang 3.2
2741  697585 g_variant_builder_add's doc example is leaking
2742  697828 g_hash_table_add() should return a boolean
2743  702862 gdbus-codegen : look for deps in default install path
2744  703522 Reference leak in GvariantBuilder documentation
2745  705902 g_get_current_dir() should check PWD env var and retur...
2746  708274 Added GObject Introspection annotations to genums.c
2747  710519 Portability schmortability
2748  710741 some mainloop instrumentation
2749  710983 Test failures on powerpc
2750  711047 Enable the build of the various test programs on Windo...
2751  711051 Add basic test for the GNotification gtk backend
2752  711088 gbacktrace: Don't close stderr when running gdb
2753  711103 gmessages: Add g_info macro for G_LOG_LEVEL_INFO
2754  711178 appinfo test problems
2755  711546 utf8: report allocation error
2756  711640 gdesktopappinfo: Rank Keywords matches higher than Gen...
2757  711751 Fix memory leaks in libglib tests
2758  711753 gthread-posix: Don't use gslice allocated GRecMutex
2759  711796 glib-tap.mk: fix to actually use the TAP driver
2760  711800 fix g_test_set_nonfatal_assertions()
2761  711801 giomodule: Allow overriding source directory gio modul...
2762  711805 gdbus-connection: Fix race condition in test
2763  711806 gtestdbus: Don't destroy GSource twice
2764  711807 gtestdbus: Properly close server connections
2765  711871 Broken and misleading configure check for growing stack
2766  712136 'O_CLOEXEC' undeclared (first use in this function)
2767  712148 Add system bus support to GTestDBus
2768  712171 gsettings.m4: @GSETTINGS_RULES@: Support srcdir != bui...
2769  712314 AIX port: splice(); major()/minor(); libtool library order
2770  712315 GSettings: More docs for deprecated _list_schemas()
2771  712393 gobject: Box GMappedFile
2772  712547 GSocketClient "event" not useful for determining resol...
2773  715164 Clang static analysis fixes
2774  719395 GPtrArray add g_ptr_array_insert
2775  719402 Crashes when startup
2776  719472 leak in generated proxy-side property-setter
2777  719687 fix or remove g_trap_object_ref
2778  719809 Signal connection ids are always > 0 if successful
2779  719837 gdbus-connection: Work around race in connection tests
2780  719884 Fix documentation typos in GTask and GCancellable examples
2781  719979 g_settings_get: check validity of format string
2782  720080 Truncating a GMemoryOutputStream to a larger size cause...
2783  720210 gdataset: Remove unused define
2784  720236 Allow clean simple use of g_test_trap_subprocess() 
2785
2786 * Translations updates:
2787  Italian
2788  Lithuanian
2789  Simplified Chinese
2790  Spanish
2791
2792
2793 Overview of changes from GLib 2.39.0 to GLib 2.39.1
2794 ====================================================
2795
2796  * GSettings fixes/improvements
2797
2798    - GSettingsSchema API is now more powerful and consistent
2799
2800    - new GSettingsSchemaKey API allows accessing metadata for keys:
2801      type, default value, range and the long-awaited support for summary
2802      and description
2803
2804    - GSettingsSchemaSource gains support for listing schemas within a
2805      source.  Deprecate the global API that did this for the default
2806      source.
2807
2808    - 'gsettings list-schemas' now works properly with --schemadir
2809
2810    - deprecate a bunch of now-redundant functionality on GSettings
2811
2812    - add API to GSettings for getting the default value of a key (as set
2813      by the sysadmin)
2814
2815    - add API to GSettings for determining if the user has assigned a
2816      particular value to a key (ie: we are not just reading the default)
2817
2818    - ignore qualified tags and attributes appearing in schema files
2819
2820  * Applications/Actions
2821
2822    - make GSimpleAction a bit more strict with respect to state changes
2823      that would violate the interface (ie: by changing the state type
2824      after construction)
2825
2826    - throw an error when attempting to 'Describe' a non-existent action
2827      via D-Bus instead of returning a bogus description
2828
2829    - throw an error when attempting to invoke unsupported methods on an
2830      Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
2831      instead of emitting a g_critical() in context of the app (which is
2832      not itself at fault for the errant call)
2833
2834  * Appinfo
2835
2836    - substantially rework GDesktopAppInfo to reduce the amount of disk
2837      accesses that are performed in common situations
2838
2839    - add a new class: GAppInfoMonitor for discovering when applications
2840      are installed/removed
2841
2842    - add a new g_desktop_app_info_search() API for searching for
2843      installed applications by name, keywords, etc.
2844
2845  * GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
2846    "qualified" tags and attributes (those with a colon in the name, such
2847    as 'my:tag')
2848
2849  * GDBus
2850
2851    - ignore qualified tags, as above
2852
2853    - GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
2854      that test programs don't pick them up
2855
2856    - add new session_bus_run() convenience in the tests and use it
2857
2858  * GRand: use real random data as a seed on win32 and use the
2859    timestamp/pid/uid fallback only on UNIX machines where we can't open
2860    '/dev/urandom'.  This may cause issues with older mingw32 releases
2861    due to a missing prototype for the rand_s() API.
2862
2863  * Many win32 (and particularly MSVC) portability fixes.  Many
2864    additional tests are now runnable when building with MSVC.
2865
2866  * Due to early testing of the (soon to land) GCleanup framework, a very
2867    large number of memory errors have been found and fixed (mostly in
2868    the testcases, but some in glib itself).
2869
2870  * GIO:
2871
2872    - some more seeking cleanups: particularly on GLocalFileInputStream
2873
2874    - don't leave a .trashinfo file around if trashing a file fails
2875
2876    - Add a request_certificate virtual method to GTlsInteraction
2877
2878 Translations updated:
2879  Assamese
2880  Galician
2881  Greek
2882  Spanish
2883  Tamil
2884
2885 Bugs fixed:
2886  635641 schema compiler should ignore unknown attributes
2887  637257 g_tls_client_connection_gnutls_retrieve_function needs to be able to block
2888  637956 GKeyfileSettingsBackend should ignore file deletions
2889  645453 keys from base schema missing from extended schema
2890  665634 g_dbus_node_info_new_for_xml() errors on unknown attributes in XML files
2891  668232 Unable to get description and summary for a key
2892  668233 Unable to determine if a key is set to the default / what the default value is
2893  680838 Need g_settings_schema_source_get_schemas()
2894  683017 API for accessing GSettings Schema metadata
2895  687185 org.gtk.Actions.Describe doesn't return an error for non-existing action names
2896  687202 If trashing fails, the ".trashinfo" file is not removed
2897  695558 The --schemadir option has no effect
2898  696424 GSimpleAction.state property is not right
2899  697348 GTestDBus should unset DBUS_STARTER_ADDRESS, DBUS_STARTER_BUS_TYPE
2900  710133 Emit backward compatible code with gdbus-codegen
2901  710691 glib-networking: locking during implicit handshake
2902  710738 GRand has lame fallback for Windows
2903  710859 Typo in gio docs
2904  710885 Two fixes for GApplication
2905  710962 error: 'F_DUPFD_CLOEXEC' undeclared (first use in this function)
2906  710964 Add g_hash_table_get_key_array()
2907  710991 test: g_debug messages shouldn't affect g_assert_expected_messages
2908  711016 g_settings_list_keys () segfaults for empty schemas
2909  711048 glocalfileinputstream.c allows skip past end of file
2910  711049 Fix build of GLib-GIO 2.39.x on Windows/MSVC
2911  711064 Adding child source to blocked source can cause a segfault
2912  711070 Copying a symlink over another one segfaults
2913  711099 gapplication test failure
2914  711520 GDesktopAppInfo: allow more than one level of legacy folder prefixes
2915  711556 Add GAppInfoMonitor
2916  711557 Add g_desktop_app_info_search()
2917  711600 trivial portability fix
2918  711632 The desktop-app-info test fails during make check
2919  711754 gmain: Fix use of uninitialized memory in sigaction structure
2920  711755 private: Use threading primitives correctly in private test
2921  711756 gthreadpool: Don't pass bad data to GThreadPool sorter
2922  711768 Fix memory leaks in libgmodule tests
2923  711775 utils: Don't free memory owned by glib in test
2924  711782 boxed: Fix double free in boxed unit tests
2925  711803 gsubprocess: Fix a number of leaks and a segfault
2926  711808 gtestdbus: Fix leak of GMainLoop 
2927
2928 Overview of changes from GLib 2.38.0 to GLib 2.39.0
2929 ====================================================
2930
2931  * prep for the 2.40 series (version macros, docs index, etc.)
2932
2933  * GNotification
2934
2935    - new API for sending persistent notifications via the desktop shell
2936
2937    - notifications persist when the application has quit and clicking on
2938      them can restart the application with an action (via
2939      DBusActivatable)
2940
2941  * GSubprocess
2942
2943    - new API for launching subprocesses
2944
2945    - nice GIO integration like async functions, cancellability, etc.
2946
2947    - a convenient communicate() API inspired by the same API in Python
2948
2949    - related: the gspawn API now has a CLOEXEC flag for the created
2950      pipes for stdin/stdout/stderr
2951
2952  * New gapplication(1) commandline tool
2953
2954    - intended to be used with DBusActivatable apps
2955
2956    - can be used for launching apps, opening files, invoking application
2957      actions and listing apps and actions
2958
2959    - bash tab completion is supported
2960
2961  * GDesktopAppInfo changes:
2962
2963    - g_file_get_path() can implicitly cause a FUSE mount so don't call
2964      it until we know we need it (for an app that doesn't support URIs)
2965
2966    - don't crash when trying to load from a keyfile with
2967      DBusActivatable=true
2968
2969    - remove some dead code, refactor the search path handling a bit and
2970      do a large-scale whitespace cleanup (prep work for the pending
2971      desktop file index)
2972
2973  * File monitors
2974
2975    - fix broken handling of mount point monitoring
2976
2977    - remove some strange use of GObject::constructor() from the base
2978      class and inotify backend
2979
2980    - fix GFileMonitor to work in the non-default main context even when
2981      the main context is not running (or is blocked)
2982
2983    - add internal private API for easily creating a file monitor in the
2984      GLib worker thread
2985
2986  * GSettings
2987
2988    - g_settings_list_children: only list viable schemas.  This fixes a
2989      longstanding issue where 'gsettings list-recursively' will crash
2990      when there are invalid schemas installed
2991
2992    - don't accept invalid paths on g_settings_new_with_path, etc.
2993
2994  * GIO
2995
2996    - GFile now has a thumbnail::is-valid attribute to check if the
2997      thumbnail in thumbnail::path needs to be regenerated
2998
2999    - GDBusProxy now has a flag to control autostarting of services at
3000      construction time
3001
3002    - for GSeekable, properly introduce the concept of "resizable" vs.
3003      "fixed-sized" streams in the docs, explaining the expected
3004      semantics of the interface in each case
3005
3006    - fix some cases in GMemoryOutputStream that were violating the above
3007      expectations (which may cause a slight API incompatibility)
3008
3009    - clean up GCredentials code and add support for Hurd and Solaris
3010
3011    - improve splicing by using different codepaths for the case where we
3012      have real _read_async() and _write_async() implementations on the
3013      stream vs. the case where they are internally emulated (via
3014      dispatching the sync variant of the call in a thread)
3015
3016  * GKeyFile
3017
3018    - fix a leak in g_key_file_get_(u)int64 when we fail to parse the
3019      value as an integer
3020
3021    - add long-requested API g_key_file_save_to_file()
3022
3023  * Portability improvements
3024
3025    - avoid using O_DIRECTORY on platforms that don't have it
3026
3027    - be careful about systems that define SOCK_CLOEXEC but don't
3028      actually support it (like Hurd)
3029
3030    - only use SA_RESTART if it exists
3031
3032  * Other small API changes/additions
3033
3034    - a pair of functions to support matching strings for the type of
3035      search functionality that you'd expect to have with things like
3036      GtkSearchBar.  This will also be used by the desktop file index.
3037
3038    - g_str_is_ascii() with obvious purpose
3039
3040    - g_test_expect_message() no longer appears to allow you to catch
3041      G_LOG_ERROR messages
3042
3043  * GMainContext/GSource
3044
3045    - fix handling of overflowing the 'next source id' counter
3046
3047    - g_source_remove() will now throw a critical in the case that you
3048      try to remove a non-existent source.  We expect that there is some
3049      code in the wild that will fall afoul of this new critical but
3050      considering that we now reuse source IDs, this code is already
3051      broken and should probably be fixed.
3052
3053    - simplify handling of the 'current dispatching source' to not
3054      require use of a linked list
3055
3056  * GObject
3057
3058    - the long-broken (and leaky) pattern of destroying a just-allocated
3059      object from inside of a custom GObject::constructor is now
3060      officially completely illegal and will abort the program
3061
3062  * Unicode: update to 6.3.0
3063
3064  * Bug fixes
3065
3066    - g_file_copy() now falls back to pathname queryinfo.  This should
3067      clear up the bugs with copying from some GVfs backends (afp,
3068      gphoto, archive, at least).
3069
3070    - fix an out-of-bounds read in the xdgmime code
3071
3072    - fix a typo in the /org/freedesktop/DBus path on the object manager
3073      client
3074
3075    - skip emitting path_namespace='/' in match rules in order to
3076      workaround a bug in the D-Bus daemon and fix our own implementation
3077      (which shared exactly the same bug)
3078
3079    - fix crashes on precondition violations for GParamSpec constructors
3080
3081    - many other small fixups (see bug list)
3082
3083   * Many documentation improvements
3084
3085 Bugs fixed:
3086  309224 g_key_file_save_to_file missing
3087  583321 QNX: no SA_RESTART
3088  661576 fix handling of constructors that destroy half-constructed objects
3089  672102 GSubprocess class
3090  684842 Seeks on GMemoryOutputStream don't have opaque semantics
3091  688492 Add a notification API
3092  691581 g_output_stream_real_splice_async doesn't use overriden read/write_async functions
3093  702516 gfileutils: Make -Werror=format-nonliteral happy
3094  704218 New gapplication(1) tool
3095  704593 g_setenv: on some systems (BSD, OSX…), setting a variable to NULL crashes the system
3096  704882 GLocalDirectoryMonitorClass mount_notify field is useless
3097  704887 file monitoring improvements
3098  705029 Support for Solaris credentials
3099  705688 g_settings_list_children: only list viable schemas
3100  706254 Afp backend cannot copy files
3101  707887 Attempting to create GObject Property with underscore prefix segfaults
3102  708042 gapplication: don't rely on cmdline being finalized immediately
3103  708265 add support for GNU/Hurd in GLib D-Bus Library
3104  708266 fix error code checks when SOCK_CLOEXEC is defined but not supported
3105  708529 xdgmime: valgrind warns about invalid reads
3106  708677 incorrect object path 'deskop' used in gio/gdbusobjectmanagerclient.c
3107  708714 Typo in docs of GLIB_VERSION_2_40 macro.
3108  708753 gdesktopappinfo: Call g_file_get_path() on demand
3109  708793 glib build fails with clang < 3.1: error: expected ';' after top level declarator
3110  708828 GDBusProxy: add the ability to call methods on non autostarted proxies
3111  708860 glib-2.38.0 doesn't build on Solaris 10
3112  708972 gnetworking.h in tarball screws up out-of-source builds
3113  709113 [PATCH] Main loop dispatch path has needless linked list
3114  709227 Update to unicode 6.3.0
3115  709301 goutputstream: Add clear warning about short writes to _write_bytes() and async version
3116  709326 GDesktopAppInfo crashes creating a DBusActivatable app without a filename
3117  709440 Fix overloading of "source" and "target" terminology in GBinding
3118  709615 Cannot use g_test_expect_message with g_error
3119  709753 Add helpers for string matches when using GtkSearchBar-like widget
3120  709898 Expose thumbnail validity in GFile attributes
3121  709966 Remove outdated documentation
3122  709994 Minor fix for HACKERS doc to direct hackers to proper help file
3123  709995 Obsolete makefile rules
3124  710002 G_MAXUINT may be assigned as duplicate source id
3125  710313 Memory leak in g_key_file_get_(u)int64 with invalid integer values
3126  710345 [Patches] Fix some redundant-decls
3127  710496 g_locale_to/from_utf8() doc updated.
3128  710625 g_file_error_from_errno: Remove unneeded breaks
3129  710666 Frame clock related bug fixes
3130  710724 gmain: Warn when g_source_remove() fails
3131  710726 Work around D-Bus bug with path_namespace='/' match rules
3132
3133 Translations:
3134  Assamese
3135  Brazilian Portuguese
3136  Indonesian
3137  Russian
3138  Tamil
3139  Traditional Chinese
3140
3141 What's new in Glib 2.38
3142 ========================
3143
3144  * Application support
3145
3146   - GIO now provides an implementation of Desktop Actions from the
3147     desktop entry specification
3148
3149   - GApplication now implements the org.freedesktop.Application
3150     interface as per the desktop entry specification, allowing for
3151     standards-based D-Bus launching of GLib-based applications
3152
3153   - GDesktopAppInfo now supports DBusActivatable as per the desktop
3154     entry specification, allowing GLib-based applications to use D-Bus
3155     to launch other applications
3156
3157   - GApplication now has a "busy" flag that can be set on an application
3158     to allow the shell to show that it is busy
3159
3160  * GObject
3161
3162   - the private offset for a given class type is now always constant.
3163     This was done by reorganising the memory layout of instances so that
3164     the private data comes before the "official" pointer for the object
3165     (ie: at a negative offset).  Valgrind macros were added to mitigate
3166     any problems that this may have caused.
3167
3168   - a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
3169     generated function *_get_instance_private() that can now serve as an
3170     equally-performing alternative to ->priv pointers in instances
3171     (allowing memory savings)
3172
3173   - new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
3174     provide a convenient method of converting between named variables in
3175     private structures and their (now constant) offsets
3176
3177   - installing properties on a GObjectClass must now be done from
3178     class_init.  It is no longer valid to install them after class_init
3179     has returned.
3180
3181   - it is now possible to manually break a GObject property binding
3182     without destroying one of the objects involved
3183
3184  * Icons
3185
3186   - the requirements for implementing the GIcon interface have changed
3187     in order to make it possible to consume all implementations of GIcon
3188     with a finite number of cases
3189
3190   - a new GBytesIcon type was added for an icon represented by an
3191     in-memory binary blob in a known image format (ideally png).
3192
3193   - new APIs g_icon_serialize() and g_icon_deserialize() replace the old
3194     to/from_string APIs and will always work, irrespective of which
3195     types have been initialised in the calling process, allowing for a
3196     serialised GdkPixbuf to be deserialised in a process that doesn't
3197     have GdkPixbuf
3198
3199   - support for icons has been added to GMenuModel using the new APIs
3200
3201  * Actions and menus
3202
3203   - GPropertyAction provides a convenient way of creating a stateful
3204     property corresponding to a property on a GObject, such as the
3205     "visible-child-name" property of a GtkStack
3206
3207   - new API g_menu_remove_all()
3208
3209   - we now have established rules about what is a "valid" action name
3210     and an API to check them
3211
3212   - a new API for converting detailed action names to and from the
3213     split-out name and parameter value (as GVariant)
3214
3215   - for backwards compatibility, invalid action names can still be used
3216     with most functions, but this is not recommended
3217
3218  * Other GIO
3219
3220   - GDBus now supports services that wish to handle some of all
3221     properties on an interface asynchronously, without requiring the
3222     service to reimplement the entire org.freedesktop.DBus.Properties
3223     interface
3224
3225   - GFile now has a new _measure_disk_usage() (and async) API for
3226     recursively determining the amount of disk space used by a
3227     particular directory (akin to 'du').
3228
3229   - asynchronous version of g_file_trash() and g_file_make_directory()
3230     have been added
3231
3232  * Other new API
3233
3234   - GRegex has a new function to query the maximum lookbehind length to
3235     allow for regexp matching on streams
3236
3237   - GVariant has two new APIs for constructing strings that allow
3238     avoiding copies in some cases: g_variant_new_take_string() and
3239     g_variant_new_printf()
3240
3241  * Testing
3242
3243   - we can now generate TAP output
3244
3245   - new support functions for simplifying the process of dealing with
3246     data files for srcdir != builddir and installed test cases
3247
3248   - g_test_trap_subprocess() provides a portable alternative to
3249     g_test_trap_fork()
3250
3251  * Other
3252
3253   - GLib now builds on Android against the bionic C library
3254
3255 Overview of changes from GLib 2.37.93 to 2.38.0
3256 ================================================
3257
3258 * fix the documentation for GSourceFuncs
3259
3260 * fix compilation on OS X/ppc64
3261
3262 Bugs fixed: 708445, 647145
3263
3264 Translations updated:
3265  Danish
3266  French
3267  Portuguese
3268  Punjabi
3269
3270 Overview of changes from GLib 2.37.92 to 2.37.93
3271 ================================================
3272
3273 * a couple of bugfixes in the new g_file_measure_disk_usage() API
3274
3275 * updated Traditional Chinese translation
3276
3277 Overview of changes from GLib 2.37.7 to 2.37.92
3278 ===============================================
3279
3280 * new API g_file_measure_disk_usage() similar to du(1)
3281
3282 * minor fixes
3283
3284 * Translation updates:
3285  Assamese
3286  Belarusian
3287  Brazilian Portuguese
3288  Catalan
3289  Czech
3290  Galician
3291  German
3292  Hungarian
3293  Indonesian
3294  Italian
3295  Korean
3296  Korean
3297  Latvian
3298  Lithuanian
3299  Polish
3300  Serbian
3301  Slovenian
3302  Spanish
3303
3304 Overview of changes from GLib 2.37.6 to 2.37.7
3305 ==============================================
3306
3307 * GDateTime now supports %:z formatting variations
3308   for timezones. This is a GNU date extension.
3309
3310 * Bugs fixed:
3311  685387 Segfault with GObject.signal_handler_is_connected()...
3312  686786 g_socket_get_available_bytes() returns wrong value ...
3313  705027 GSocket GSource not threadsafe on Windows
3314  706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
3315  706706 Fix Gir annotations on g_loadable_icon_load_finish
3316  706888 gtype: fix a no-op assertion
3317  706958 configure.ac: fix atomic opts detection
3318  707092 "File Utilities" page for GLib documentation doesn'...
3319  707151 gdatetime: Extend the '%z' timezone format
3320
3321 * Translation updates:
3322  Catalan
3323  Hungarian
3324  Japanese
3325  Polish
3326  Slovak
3327  Tamil
3328
3329
3330 Overview of changes from GLib 2.37.5 to 2.37.6
3331 ==============================================
3332
3333 * Tests using the g_test facilities can now generate TAP output
3334
3335 * Bugs fixed:
3336  680926 generic type fallback logic is broken for -symbolic
3337  684327 setting null icon to icon list
3338  689245 GSocket unable to reuse (address,port) on Mac OS X
3339  692125 Support TAP as GTest output format
3340  693335 build: fix dtrace-related warnings
3341  696633 gdbus-codegen trips over unicode chars when using python 3.x
3342  696970 Compiling 2.36.0 for win64 fails
3343  697185 GSocket – Allow specifying the multicast interface from...
3344  700268 Add support for using the clang analyzer
3345  701318 Add G_SPAWN_DEFAULT to GSpawnFlags
3346  701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
3347  701800 a new approach to reporting critical errors
3348  702674 g_date_time_new_utc crash
3349  704165 GLib.IOChannel read_unichar() fails
3350  705075 Simplify g_get_tmp_dir()
3351  705152 Race in glib/task.test
3352  705398 gtype: Fix typo in g_type_class_add_private() error message
3353  705570 Check ref_count in g_object_notify_by_pspec
3354  705600 Deprecate GSimpleActionGroup functions?
3355
3356 * Updated translations:
3357  Assamese
3358  Brazilian Portuguese
3359  Czech
3360  Dutch
3361  Galician
3362  Gujarati
3363  Hebrew
3364  Italian
3365  Lithuanian
3366  Marathi
3367  Norwegian bokmål
3368  Russian
3369  Slovenian
3370  Spanish
3371  Thai
3372  Traditional Chinese
3373
3374
3375 Overview of changes from GLib 2.37.4 to 2.37.5
3376 ==============================================
3377
3378 * Implement the Desktop Action specification: In the case that the
3379   application is a GApplication and DBusActivatable, actions from the
3380   desktop file are translated into GActions that have been added to
3381   the  application with g_action_map_add_action().
3382
3383 * GPropertyAction is a new type of GAction that represents the value
3384   of a property on an object, and allows to change the value when
3385   activated.
3386
3387 * GNetworkMonitorNetlink can now handle default routes via a device.
3388
3389 * The gsettings tool now reports failure to write a key (e.g. because
3390   the key was locked down)
3391
3392 * Miscellaneous new api:
3393  - g_variant_new_printf
3394  - g_action_print_detailed_name
3395  - g_regex_get_max_lookbehind
3396
3397 * Bugs fixed:
3398  664444 Support additional application actions in .desktop files
3399  684123 glib build only tries -D_GNU_SOURCE if glibc is detected
3400  689794 support incremental matching
3401  699259 add org.freedesktop.Application support to GIO
3402  700460 rewrite tests to not rely on precise timing of timeouts
3403  701511 updates to various GSource types
3404  701609 gnetworkmonitornetlink: handle default route via device
3405  703270 add GPropertyAction
3406  704157 GAction: add function for printing detailed names
3407  704250 Doc: various fixes
3408  704267 regression gsourceclosure: segfault in gedit file chooser
3409  704322 glib-unix: fix handling of multiple signal source for the...
3410  704424 No error when failing to override a locked key
3411  704447 Fix build/use of g_child_watch_closure_callback on Windows
3412  704523 g_thread_create_full() can dereference NULL pointer
3413  704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
3414  704567 gdbusnameowning: Don't spew an error if we're releasing a...
3415  704585 libc printf can give mixed-case strings for NaN and Inf
3416  704587 FTBFS: statfs_result is undeclared for statvfs()
3417  704699 gmain: Reset signal handlers to default when source is
3418  704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
3419  704873 inotify: don't assume mainloop is running
3420  704999 glib/convert.test crashing due to lack of iconv cache
3421  704931 GMenuModel: add annotations to virtual functions
3422
3423 * Translation updates:
3424  Assamese
3425  Czech
3426  German
3427  Gujarati
3428  Spanish
3429  Tamil
3430
3431
3432 Overview of changes from GLib 2.37.3 to 2.37.4
3433 ==============================================
3434
3435 * Bugs fixed:
3436  701283 g_source_add_child_source() segfault
3437  702147 inconsistency of G_STRFUNC
3438  703191 new private macros interact poorly with versioning macros
3439  703254 Doc: various fixes
3440  703407 g_spawn_async() keeps child_pid_report_pipe open in child process
3441  703437 GDBusConnection: be more careful with async GetAll
3442  703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
3443
3444 * Translation updates:
3445  Catalan
3446
3447 Overview of changes from GLib 2.37.2 to 2.37.3
3448 ==============================================
3449
3450 * add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
3451
3452 * fix timestamps in tarball to prevent automake from being required to
3453   build the unmodified source
3454
3455 * add new D-Bus API for async property handling
3456
3457 * add back fsync() on ext4 for g_file_set_contents() after it was
3458   discovered that despite statements in the ext4 documentation
3459   suggesting that this is safe, it is not safe.
3460
3461 * Translations:
3462  Italian
3463  Norwegian bokmål
3464
3465 * Bugs fixed:
3466  698375 - D-Bus async properties
3467  700350 - timestamp issue
3468  701560 - fsync issue (fixed again)
3469  700035 - new API for instance private data
3470
3471 Overview of changes from GLib 2.37.1 to 2.37.2
3472 ==============================================
3473
3474 * The GLib test utilities have grown some file-related APIs
3475   to support tests that can be used installed and uninstalled.
3476
3477 * Installing properties after class initialization is deprecated,
3478   and will trigger a warning.
3479
3480 * GApplication:
3481  - Support org.freedesktop.Application, including D-Bus activation
3482    from desktop files
3483  - Set prgname to appid for services
3484
3485 * Bugs fixed:
3486  549783 gtester lacks framework for tests with data files
3487  692848 Fix property example in gobject tutorial
3488  698018 Add an explicit g_binding_release()
3489  698614 GObject: prevent installing properties after init
3490  699259 add org.freedesktop.Application support to GIO
3491  699959 g_file_copy(): Ensure we create private files by default
3492  700123 Test failure: g_inet_socket_address_get_scope_id
3493  700725 GIcon: NULLify the `type' out param in the sync methods too
3494  701401 gtest: add function for testing for WINE
3495  701456 Error in gnome/glib/gio/tests/file.c
3496  701474 Error building glibmm due to extra comma in glib/gtestutils.h
3497  701560 various improvements for g_file_set_contents()
3498  701680 GFileEnumerator: Add some documentation about ordering
3499  701878 Check wakeup() before iteration(TRUE) doesn't block
3500
3501 * Translations:
3502  Assamese
3503  Czech
3504  Galician
3505  Gujarati
3506  Kannada
3507  Marathi
3508  Odia
3509  Polish
3510  Slovenian
3511  Spanish
3512  Telugu
3513
3514
3515 Overview of changes from GLib 2.37.0 to 2.37.1
3516 ==============================================
3517
3518  * add support for installed tests:
3519    https://live.gnome.org/GnomeGoals/InstalledTests
3520
3521  * add a new g_test_trap_subprocess() that works on Windows as a
3522    replacement for the (now deprecated) g_test_trap_fork()
3523
3524  * support for explicitly cancelling a gobject property binding
3525
3526  * performance improvements for signal argument handling
3527
3528  * stop using `quotes' in very many log messages generated by GLib, for
3529    favour of 'this style'.  This may cause testcases in other packages
3530    to fail if they were matching on the previous text.
3531
3532  * improve manpages: add missing arguments and flags
3533
3534 Translations: 
3535  Aragonese
3536  Assamese
3537  Gujarati
3538  Hindi
3539  Kannada
3540  Norwegian bokmål
3541  Odia
3542  Slovenian
3543  Spanish
3544  Tamil
3545  Telugu
3546
3547 Bugs fixed:
3548  679683 replace g_test_trap_fork()
3549  694380 Improve signal argument collection performance
3550  695233 Strings require plural forms
3551  697849 spelling fixes in cross.xml and running.xml
3552  698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
3553  698981 [PATCH] test /gdbus/connection/large_message could hang forever
3554  699079 Prototype support for installed tests
3555  699485 [PATCH] tests/mappedfile: Also handle ENOMEM
3556  699493 SOCKS5 proxy code crashes if it cannot authenticate
3557  699500 gbitlock: fix this to not unconditionally use futex emulation
3558  699779 [PATCH] G_GNUC_FORMAT: documentation error
3559  700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
3560  700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
3561  700746 Use 'dumb quotes' rather than `really dumb quotes'
3562
3563 Overview of changes fron GLib 2.36.0 to 2.37.0
3564 ==============================================
3565
3566 * The syntax for detailed action names has been documented,
3567   and a parser API for them is now provided
3568
3569 * GApplication has gained a busy state. This feature is intended for
3570   clients that want to signal a desktop shell their busy state, for
3571   instance because a long-running operation is pending.
3572
3573 * GLib can now be built with the bionic C library
3574
3575 * GIcon can now be serialized to a GVariant
3576
3577 * Bugs fixed:
3578  548353 Finish implementing GFile interface (mostly asynchron...
3579  645881 Full port of glib-2.28.1 onto Android-ARM
3580  665445 Glib mistakes nl_langinfo() from plibc for the real t...
3581  672018 Need API to set global application state (busy, count...
3582  687659 drop support for adding interfaces after class_init
3583  688820 GIcon is a bad interface
3584  688954 extend 'detailed action' syntax, provide parser
3585  689223 Fix compilation on Android with the bionic C library
3586  695156 Add support for arg0namespace matching in signal_subs...
3587  696108 gdbus-codegen: avoid warnings in generated code
3588  696629 fix sed(1) usage
3589  696652 GTask won't free its error member variable on finalize
3590  696857 GThreadedResolver: set an error if no records could b...
3591  696973 Compiling 2.36.0 for win64 fails in gdbusmessage.c
3592  697131 No --version
3593  697160 [PATCH] gmacros: Mark G_UNAVAILABLE() functions as de...
3594  697229 Custom Interface implementations will be broken with ...
3595  697250 Documentation glitch of G_DEFINE_TYPE_EXTENDED causes...
3596  697365 Fix usage of hasmntopt in gunixmounts.c
3597  697367 Remove warning on gio/gunixmounts.c
3598  697386 Except const argument with atomic is not lock free
3599  697595 g_main_context_unref unlocks a mutex twice
3600  697601 reduce GMenuModel D-Bus traffic
3601  697626 Allow posix threads to be used on w32
3602  697652 Help options generated even when help disabled
3603  697771 fix a typo of "fo" to "of" in building.xml
3604  697887 GVariant: fix transfer annotation
3605  697942 abicheck.sh fails on mips
3606  698056 rewrite g_object_new()
3607  698081 Pidgin hangs in g_spawn_command_line_sync
3608  698455 GVariant: add new g_variant_new_take_string() API
3609  698457 g_variant_get_data_as_bytes() always returns toplevel...
3610  698478 gactionmap: don't require GActionGroup
3611  698595 the valgrind/priv-before-instance bug
3612  698655 desktop-app-info test relies on true being in /usr/bin/
3613  698686 GUnixSocketAddress: fix construct parameter issue
3614  698716 Use of g_mem_set_vtable() breaks after gobject automa...
3615  698999 bytesicon: fix a memory leak
3616  699001 bytesicon: don't use g_object_unref() on GBytes
3617  699361 gio: fix small leak
3618
3619 * Translation updates:
3620  Assamese
3621  Gujarati
3622  Hungarian
3623  Italian
3624  Kannada
3625  Norwegian bokmål
3626  Polish
3627  Spanish
3628  Tamil
3629
3630
3631 Overview of changes fron GLib 2.35.9 to 2.36.0
3632 ==============================================
3633
3634 This release contains only small bugfixes and translations updates.
3635
3636  - g_file_copy(): fix bug where attributes were not applied properly to
3637    the destination file
3638
3639  - fix some 'available since' annotations
3640
3641  - fix gdbus-codegen to produce more pedantically-correct code
3642
3643 * Bugs fixed:
3644  696108 gdbus-codegen: avoid warnings in generated code
3645  696014 g_file_copy(): Ensure G_FILE_COPY_OVERWRITE preserves permissions
3646
3647 * Translations updated:
3648  Basque
3649  Czech
3650  Gujarati
3651  Hindi
3652  Hungarian
3653  Japanese
3654  Malayalam
3655  Marathi
3656  Odia
3657  Punjabi
3658  Russian
3659  Tadjik
3660  Tamil
3661  Telugu
3662
3663 Overview of changes from GLib 2.35.8 to 2.35.9
3664 ==============================================
3665
3666 This release drops the old codepage ABI from gutils.c. This is a
3667 source-compatible change and only breaks ABI with respect to truly
3668 ancient binaries (and those binaries are already broken for other
3669 reasons).  This change only affects Windows.
3670
3671 * Bugs fixed:
3672  682896 glib doesn't build on mingw32
3673  693204 split up g_get_{hostname,username,realname,home_dir} etc.
3674  694181 Handle GNetworkAddress better in g_network_monitor_base_...
3675  694253 occasional /gdbus/unref-pending test failure
3676  694350 Add type names to gsignal warnings
3677  694757 Use separate GLIB_WARN_CFLAGS that can be overridden ext...
3678  568405 Which is the correct replacement for g_strncasecmp, if...
3679  630284 g_hash_table_get_keys docs
3680  659428 docs: Small clean-up of howto subsection headers
3681  675333 Cannot forget association in Open With dialog: program...
3682  694669 consider unicode corrigendum #9
3683  694843 g_base64_decode_step () produces invalid data
3684  695147 Don't use PATH_MAX as it's not guaranteed to be defined
3685  695191 Commit f641699 broke /appinfo/mime/api test case
3686  695339 Swapped msgid plural forms for translation
3687  695376 GDBusMethodInvocation leak and potential crash
3688  695425 Untranslatable message in gsettings-tool
3689  695887 Improvements to GObject API documentation
3690  695925 GUINT32/64_SWAP_LE_BE macros do not enclose val argume...
3691  696015 PATCH Add doc warning to g_base64_decode()
3692
3693 * Translation updates:
3694  Assamese
3695  Belarusian
3696  Brazilian Portuguese
3697  Catalan
3698  Catalan (Valencian)
3699  Danish
3700  French
3701  Galician
3702  German
3703  Greek
3704  Gujarati
3705  Italian
3706  Korean
3707  Latvian
3708  Lithuanian
3709  Polish
3710  Portuguese
3711  Punjabi
3712  Serbian
3713  Simplified Chinese
3714  Slovak
3715  Slovenian
3716  Spanish
3717  Thai
3718  Traditional Chinese
3719  Uyghur
3720  Vietnamese
3721
3722
3723 Overview of changes from GLib 2.35.7 to 2.35.8
3724 ==============================================
3725
3726 This release contains one major change that may cause problems: type
3727 modules are now never unloaded.  This is implemented by (effectively)
3728 leaking the last reference on dynamic types.  Some testcases that check
3729 for unloading of types have been observed to be broken by this change,
3730 but we know of no actual cases of "real code" breaking.  Please report
3731 any problems.
3732
3733 Other changes:
3734  * A couple of build fixes for Solaris
3735  * Fix signal emission for GDBusObjectManagerClient
3736  * annotations fixes
3737  * new API: g_dbus_address_escape_value()
3738  * GSocketClient: add proxy-resolver property
3739  * GSimpleProxyResolver: new simple GProxyResolver class
3740  * documentation fixes
3741  * gnetworkaddress: preserve IPv6 scope ID in IP literals
3742
3743 Bugs fixed:
3744  691105 Allow GSocketClient to override GProxyResolver for per client proxy settings.
3745  692827 configure test fails for arpa_nameser.h
3746  692829 new Btrfs support causes build failure on Solaris
3747  693285 GDBusObjectManagerClient: won't emit object-added|removed if name-owner arrives later
3748  693502 Cross-compiling documentation: typo (np -> no)
3749  693673 add g_dbus_address_escape_value()
3750  693694 gio: Fix annotations on g_[async_]initable_new() and friends 
3751
3752 Translations:
3753  Dutch
3754  Galician
3755  Polish
3756  Serbian
3757
3758 Overview of changes from GLib 2.35.6 to 2.35.7
3759 ==============================================
3760
3761 This is a quick follow-up release with a few bug fixes.
3762
3763 * Fix the build on systems with strict linkers by adding -pthread back
3764   to the LDFLAGS for a testcase.
3765
3766 * Re-enable native atomic operations on some buggy versions of clang
3767   that ship as part of the MacOS X SDK.
3768
3769 * Make G_IO_FLAG_IS_WRITEABLE an enum again (the #define broke bindings)
3770
3771 * a small docs fix
3772
3773 * Bugs fixed:
3774  657045
3775  636683
3776  682818
3777  693105
3778
3779 * Translations:
3780  Italian
3781
3782 Overview of changes from GLib 2.35.4 to 2.35.6
3783 ==============================================
3784
3785 * GUnixFdSource is a new way to add file descriptors
3786   to the mainloop
3787
3788 * g_source_set_ready_time lets you mark a source to become
3789   ready at a specified monotonic time
3790
3791 * The internal visibility handling of GLib has been reworked
3792
3793 * GFileMonitor will now automatically use fam instead of inotify
3794   if $HOME is on NFS
3795
3796 * The file monitor implementation can now be overridden with
3797   the GIO_USE_FILE_MONITOR environment variable
3798
3799 * Bugs fixed:
3800  570572 2 make check errors on
3801  592211 No monitoring over NFS mounts
3802  625552 wrong behaviour of GVolume GVolumeMonitor related func...
3803  657729 modernise GMainLoop
3804  658020 GSource for a single GPollFD
3805  678223 g_mutex_free
3806  682560 leak fixes
3807  682819 EINTR-harden all the things
3808  684404 When using g_network_address_address_enumerator_next()...
3809  686853 new GSource fd API
3810  688169 G_DISABLE_DEPRECATED doesn't cover deprecated/gthread....
3811  688681 build: Make .symbols file canonical on all platforms
3812  690118 Crash when closing last tab of a window using Ctrl-w
3813  691624 glib/gtester.c: missing include
3814  691812 gioinputstream - give task as callback_data not task_data
3815  691866 fails out of source build directory - gnetwork.h not f...
3816  692029 Add new API checking utility
3817  692034 Install an invalidation notifier for GClosure in g_sou...
3818  692058 Broken makefile for gio tests
3819  692079 build failure in gmarkup.c when using gcc 4.8 and buil...
3820  692201 inotify: fix a memleak
3821  692202 gfile: don't report completion twice on g_file_load_co...
3822  692229 Incorrect string formatters in a translation string
3823  692332 GNetworkMonitorNetlink: make the netlink socket cloexec
3824  692360 possibly non-threadsafe code in g_content_type_guess()?
3825  692404 tester: Use FD_CLOEXEC when creating pipes
3826  692408 nautilus SIGSEGV in g_file_info_get_size()
3827  692544 [PATCH] gfile: Ensure we create internal pipe with FD_C...
3828  692583 atomic get doesn't accept a const argument on architect...
3829  692618 Use g_timeout_add_seconds
3830  692815 Using g_hash_table_insert() when using a hash table as ...
3831  692865 Invalid docbook generated by gdbus-codegen
3832  692928 Document G_MENU_{ATTRIBUTE,LINK}_*
3833
3834 * Translation updates:
3835  Hebrew
3836  Kannada
3837  Lithuanian
3838  Norwegian bokmål
3839  Polish
3840  Serbian
3841  Slovenian
3842  Spanish
3843  Uyghur
3844
3845
3846 Overview of changes from GLib 2.35.3 to 2.35.4
3847 ==============================================
3848
3849 * New features:
3850  - New API: g_get_num_processors
3851  - New API: g_application_command_line_get_stdin
3852  - New GFileMonitor flag: G_FILE_MONITOR_WATCH_HARD_LINKS
3853  - Parse more timezone offset formats
3854  - Better timezone support on Windows
3855  - Make GParamSpec constructors introspectable
3856
3857 * Removed or deprecated features:
3858  - Disallow adding interfaces after class_init
3859
3860 * Bug fixes:
3861  532815 gio + inotify support for hardlinks
3862  614930 add g_get_num_processors (), return the max concurrent...
3863  626497 Btrfs clone/reflink ioctl support in g_local_file_copy
3864  633117 glib fails stests if /etc/localtime is not properly set
3865  661767 merge/improve various bits of run-in-thread functionality
3866  668210 Add g_application_command_line_get_stdin()
3867  675856 Use GDbus via gobject-introspection instead dbus-python
3868  684103 make glib work with python3
3869  684723 run-assert-msg-test.sh fails
3870  686058 OpenBSD: disable ipv6_v4mapped test
3871  686128 GTimeZone should be able to parse POSIX format for...
3872  687223 cleverer GThreadPool management
3873  687659 drop support for adding interfaces after class_init
3874  687920 GCredentials should have an accessor for the process ID
3875  688681 build: Make .symbols file canonical on all platforms
3876  688829 Variable overflow in utils.c test on 32-bit machine
3877  689324 Variable scoping in gunixmounts.c
3878  689810 Include guard optimization
3879  690043 Broken link for gsettings tutorial: gnome-utils in...
3880  690084 gmarkup: Make GMarkupParseContext a boxed type
3881  690388 Check if CMSG_FIRSTHDR() returns NULL when there is...
3882  690538 gschema DTD is invalid
3883  690543 Add test coverage for testing in-tree DBus services...
3884  690670 local_command_line not introspectable/annotated
3885  690902 G_END_DECLS needs to be at the end of gutils.h
3886  690970 Unhelpful deprecation message for g_value_array_get_nth
3887  691001 building docs is broken on master branch
3888  691011 Automake-1.13 errors on obsolete AM_PROG_CC_STDC
3889  691077 gio-querymodules crashes with SIGSEGV
3890  691110 g_cond_wait() docs incomplete
3891  691489 Crash in Oscars 2013 page
3892  691558 Only check for .hidden files if standard::is-hidden...
3893  691608 Support compilation with clang 3.2
3894
3895 * Translation updates:
3896  Assamese
3897  Bulgarian
3898  Estonian
3899  Galician
3900  Greek
3901  Hebrew
3902  Norwegian bokmål
3903  Polish
3904  Slovak
3905  Slovenian
3906  Spanish
3907  Tamil
3908
3909
3910 Overview of changes from GLib 2.35.2 to 2.35.3
3911 ==============================================
3912
3913 * This release contains an incompatible change to the g_get_home_dir()
3914  function. Previously, this function would effectively ignore the HOME
3915  environment variable and always return the value from /etc/password.
3916  As of this version, the HOME variable is used if it is set and the
3917  value from /etc/passwd is only used as a fallback.
3918
3919 * We now install a public "gnetworking.h" header that can be used to
3920  include the relevant OS-dependent networking headers. This does not
3921  really abstract away unix-vs-windows however; error codes, in
3922  particular, are incompatible.
3923
3924 * Bugs fixed in this release:
3925  142568 Allow $HOME to override passwd entry if the user really wants
3926  587806 The file selector should honor .hidden files
3927  602715 [GChecksum] Please add support for SHA512
3928  623187 provide some support for arbitrary setsockopt()s?
3929  629301 .goutputstream files left behind when cancelling I/O
3930  652650 Optimize GDBusMessage serialization
3931  664627 /gapplication/basic test intermittently fails: cmdline re-or...
3932  675516 Win32: Don't start a DBus server when built as static library
3933  679683 replace g_test_trap_fork()
3934  684145 Current Git sources fails to cross-compile for Windows in Li...
3935  686895 file-info: catch thumbnail files in large directory as well
3936  687092 IPv6 <-> IPv4 mismatch when subscribing to multicast (send)
3937  688180 GObject: Minor error in description of floating reference
3938  688319 gthread: add missing AVAILABLE_IN_2_32 annotations
3939  688377 configure: add missing square bracket in AS_IF for memmove
3940  688419 gtask: source_object arguments and return values not annota...
3941  688497 AppInfo: Add sufficient api to port gnome-session from Egg...
3942  688681 build: Make .symbols file canonical on all platforms
3943  688704 Add boxed GType for GThread
3944  688886 Improve the i18n documentation
3945  688931 GMemoryOutputStream: Add new _resizable() constructor usab...
3946  689037 need helper for creating a GFile from a remote commandline...
3947  689377 Fix a compiler warning in GDBus
3948  689538 Source object tag set too late in gsocketlistener
3949  689800 Treat lost+found directory as a hidden file
3950  689847 Add fast repeated typename -> GType resolver
3951  689982 Make GChecksum more fully introspectable
3952  690069 g_unix_open_pipe: Add missing F_SETFD
3953  690083 gfileenumerator: Add a g_file_enumerator_get_child method
3954  690163 Add a pre-configured gio/gnetworking.h for Visual C++ builds
3955  690346 Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE
3956  690348 Fix g_type_add_class_private() name in g_warning
3957
3958 * Translation updates:
3959  Assamese
3960  Galician
3961  Hebrew
3962  Hindi
3963  Kannada
3964  Odia
3965  Polish
3966  Spanish
3967
3968
3969 Overview of changes from GLib 2.35.1 to 2.35.2
3970 ==============================================
3971
3972 Note that the incompatible change to the ->constructed() vfunc that was
3973 made in the last unstable release (2.35.1) has been reverted due to
3974 causing regressions in applications.
3975
3976 A new incompatible change has been introduced in this version: it is no
3977 longer permitted to add interfaces to a class after the first
3978 instantiation (or more strictly: after g_type_class_ref()).  Bug #687659
3979 is tracking this.
3980
3981 Two private symbols (g_menu_{attribute,link}_hash_iter_get_type) which
3982 were accidentally exported have also been properly hidden.  This may
3983 cause some tools to issue warnings about ABI mismatch.
3984
3985 The remaining changes should be relatively harmless: 
3986
3987  * GIO now has kqueue support for GFileMonitor (BSDs, Mac OS)
3988
3989  * New g_variant_new_from_bytes() API
3990
3991  * UNIX signal sources now allow watching SIGUSR1 and SIGUSR2
3992
3993  * Many pedantic cleanups to adhere to a higher level of -W use
3994
3995  * GTask changes to avoid a deadlock
3996
3997  * many cleanups/fixes for Windows
3998
3999  * Boxing for GPollFD, GIOChannel, GBytes, GByteArray
4000
4001  * Fix URL-encoding of trashed files
4002
4003  * Many other docs and annotations fixes
4004
4005 Translations:
4006
4007  Galician
4008  Gujarati
4009  Lithuanian
4010  Serbian
4011  Slovak
4012  Slovenian
4013
4014 Bugs closed:
4015
4016  649302 Add support for GNU/FreeBSD
4017  668842 [GSocket] Add caching for the sender address in g_socket_receive_from()
4018  672924 Add annotations for g_filename_from_uri()
4019  673229 glib: Use Returns:, not @returns
4020  677062 (partial) GVariant: Make g_variant_new_from_bytes() public, add more GBytes API
4021  686185 g_date_time_format Transcoding Fails on OSX      
4022  686191 g_mutex_get_impl() should use g_atomic_pointer_get()
4023  686797 Box GPollFD to make it introspectable
4024  686810 [regression] Infinite wait in g_task_run_in_thread_sync()
4025  686822 possible dlopen()/dlclose() issue with automatic g_type_init()
4026  686839 mkinstalldirs: Move to glib-mkinstalldirs
4027  686895 file-info: catch thumbnail files in large directory as well
4028  686898 g_unix_signal_source_new: Allow SIGUSR1 and SIGUSR2
4029  686920 gdbus: Allow GDBusObjectManagerClient to work on peer connections
4030  686921 Remove some of the repetition from gio/tests/Makefile.am
4031  687075 g_spawn_sync diagnostic incorrectly complains about SIGCHLD
4032  687089 g_dbus_connection_export_menu_model(): fix a crash
4033  687098 Repeated g_timeout_add* use can lead to guint overflow
4034  687385 Add some stricter CFLAGS, fix up the code
4035  687441 ABI break in master: g_menu_attribute_hash_iter_get_type, g_menu_link_hash_iter_get_type removed
4036  687516 typo in string: KB should be kB
4037  687540 In Trash folder, Nautilus misinterprets "\n" in filename as a line break
4038  687541 GSignalQuery param_types field needs array annotation
4039  687600 gfileutils.c performs invalid cast of (varargs) open to non-vararg type
4040  687698 plural forms needed
4041  687700 ending spaces
4042  687742 Add support for internal linkage to glib-compile-resources
4043  687801 tests/buffered-input-stream: Fix size of parameter passed
4044  688109 win32 warning/error fixes
4045  688255 'make check' regressed in 138f4c1 because GMarkup error messages changed
4046  688338 [PATCH] gobject/gtype.c: Fix spelling of »exceed«
4047  688370 GDBusError documentation improvement for client-side
4048  688378 g_socket_join_multicast_group not working
4049  688518 gio-kqueue: use O_EVTONLY on MacOS
4050
4051
4052
4053 Overview of changes from GLib 2.34.0 to 2.35.1
4054 ==============================================
4055
4056 These two changes in particular may be slightly incompatible.  Please
4057 give feedback if they cause trouble:
4058
4059   * Signal handlers connected with g_signal_connect_object() are now
4060     automatically disconnected on target object destruction
4061
4062   * The ->constructed vfunc is now called after all properties are set
4063
4064 The remaining changes should not cause problems.
4065
4066   * g_type_init() is no longer necessary and has been deprecated
4067
4068   * GTask (the new GAsyncResult implementation) has landed 
4069
4070   * GLib version macros updated
4071
4072   * Update to Unicode 6.2
4073
4074   * Thread safety fixes for GFileMonitor in non-default main contexts
4075
4076   * GTimeZone support for old-format zoneinfo database (as on Mac OS)
4077
4078   * g_settings_bind() now works with non-canonical property names
4079
4080   * Fix crashes related to NULL connection passed to
4081     GBusNameVanishedCallback and document this situation
4082
4083 * Bugs fixed:
4084  118536 Make g_signal_connect_object'ed handlers disconnect when the data object is destroyed
4085  661767 merge/improve various bits of run-in-thread functionality
4086  682950 GFileMonitor crashing on high event count when running in different thread
4087  683642 Missing g_content_type_get_symbolic_icon
4088  684882 Gsettings should spaw a warning when binding against a low_underscored_property
4089  684909 codegen: Explicitly close output
4090  684912 Update to Unicode 6.2
4091  685037 g_strcmp0: Returns shall include values less and greater than zero
4092  685069 Leak in glib-compile-resources
4093  685208 missing g_return_if_fail
4094  685608 [Patch] Port gio tests from pygobject to pygi
4095  685697 Documentation typo in g_dbus_interface_skeleton_has_connection()
4096  685733 Call ->constructed() after all properties are set
4097  685787 gtestdbus: correct documentation typos
4098  685995 Crash in g_menu_exporter_name_vanished
4099  686091 Invalid reads in g_bytes_unref_to_data
4100  686119 dtrace, gobject_probes.d, the last three probes - semicolon missing
4101  686161 Deprecate g_type_init()
4102  686231 GBusNameVanishedCallback: document NULL connection
4103  686458 slightly increase poll duration in test_timed_wait 
4104
4105 * Translations updated
4106   Catalan (Valencian)
4107   Czech
4108   Danish
4109   Italian
4110   Lithuanian
4111   Norwegian bokmål
4112   Slovenian
4113
4114 Overview of changes from GLib 2.33.14 to 2.34.0
4115 ===============================================
4116
4117 * Bug fixes:
4118  654239 g_type_init()'s docs have no statement about how to...
4119  674620 Update GSettings migration guide for intltool updates
4120  676034 Fix doc annotation for g_ptr_array_ref()
4121  684278 Fix GIO build on Windows
4122
4123 * Translation updates:
4124  Brazilian Portuguese
4125  British English
4126  Bulgarian
4127  Catalan
4128  Galician
4129  German
4130  Hebrew
4131  Hindi
4132  Hungarian
4133  Kannada
4134  Latvian
4135  Marathi
4136  Spanish
4137  Telugu
4138
4139
4140 Overview of changes from GLib 2.33.12 to 2.33.14
4141 ================================================
4142
4143  * CVE-2012-3524: don't run dbus-launch from setuid binaries
4144
4145  * g_content_type_get_generic_icon_name():
4146      new API for getting the icon name for a mime type
4147
4148  * Introspection fixes:
4149   - GDBusConnection nullability fixes
4150   - give a box type to GTimeZone
4151
4152  * Drop GVFS_INOTIFY_DIAG
4153
4154  * Add a new "Writing GLib Applications" section to the reference
4155    documentation with general info on security, threads, etc.
4156
4157  * gwin32mount.c: Fix syntax error
4158
4159  * gresource tests: srcdir != builddir fixes
4160
4161  * tests/gvariant: Fix test on big endian architectures
4162
4163  * Fix regression in g_shell_parse_argv()
4164
4165 Bugs fixed:
4166  562907 g_shell_parse_argv() mishandles # (hash)
4167  683167 g_time_zone_new not introspectable
4168  683384 /gvariant/checksum-basic failure on big endian machines
4169  683641 Typo in gwin32mount.c
4170  683744 have a way to get the generic icon name for a mime type
4171
4172 Translation updates:
4173  Assamese
4174  Belarusian
4175  British English
4176  Czech
4177  Danish
4178  French
4179  Galician
4180  German
4181  Greek
4182  Hebrew
4183  Indonesian
4184  Indonesian
4185  Korean
4186  Lithuanian
4187  Marathi
4188  Marathi
4189  Polish
4190  Portuguese
4191  Punjabi
4192  Russian
4193  Serbian
4194  Slovenian
4195  Traditional Chinese
4196
4197 Overview of changes from GLib 2.33.10 to 2.33.12
4198 ================================================
4199
4200 * Add a G_DEFINE_QUARK macro
4201
4202 * Add symbolic icon support to drive, volume, and mount, file
4203   and content types
4204
4205 * Add API to allow thread-safe access to the same qdata item
4206
4207 * Bugs fixed:
4208  562907 g_shell_parse_argv() mishandles # (hash)
4209  627240 add G_DEFINE_QUARK
4210  672329 memory leaks in gutils.c and glib tests
4211  673012 Stable byte-level specification for normal form
4212  674805 gdbusproxy async test is broken
4213  679835 gvariant format string parsing (and assertions)...
4214  682075 gdbus: Fix double free and use after free of ob...
4215  682101 Provide a way to get a symbolic icon for a device
4216  682222 test_method_calls_on_proxy: assertion failed (e...
4217  682284 mount-op: use gint64 instead of guint64 for tim...
4218  682386 "make check" fails due to sys/resource.h not be...
4219  682560 leak fixes
4220  682586 gsettings-tool: make list-recursively really re...
4221  682819 EINTR-harden all the things
4222  682833 Handle EINTR for open()
4223  682849 drop the global lock for g_object_weak_ref
4224  682965 gdbus-tool: Check return value of strrchr()
4225  683088 gdbus-codegen: fix error when wrong interface n...
4226         Fix the build with gtk-doc-stub
4227         Don't crash if set_app_info is called before ad...
4228
4229 * Translation updates
4230  Assamese
4231  Galician
4232  Greek
4233  Indonesian
4234  Japanese
4235  Latvian
4236  Lithuanian
4237  Norwegian bokmål
4238  Polish
4239  Portuguese
4240  Punjabi
4241  Russian
4242  Spanish
4243  Traditional Chinese
4244  Vietnamese
4245
4246
4247 Overview of changes from GLib 2.33.8 to 2.33.10
4248 ===============================================
4249
4250 * New GTest API for testcases where log output is expected:
4251   g_test_expect_message()
4252
4253 * GMenuItem now has 'get' accessors and a construct-from-GMenuModel API
4254
4255 * GVariant now has a function to check a format-string for type
4256   compatibility
4257
4258 * win32: We now use overlapped IO to support multiple asynchronous
4259   operations (ie: reading and writing) at the same time.
4260
4261 * GMappedFile: Add g_mapped_file_get_bytes()
4262
4263 * The problems with g_file_make_directory_with_parents() should be
4264   resolved.
4265
4266 * The long-standing issues with placeholder generation of manpages are
4267   now resolved.
4268
4269 * gtlscertificate: Add GBytes based certificate and private-key props
4270
4271 * build: Switch back to using AS_IF for conditionals
4272
4273 * test coverage improvements, documentation improvements, leak fixes
4274
4275 * Bugs fixed
4276  326931 Better docs for G_GNUC_*
4277  550433 g_test_init doesn't recognize --help
4278  600751 GCompletion should better document if and how items memory is managed
4279  628193 Miscellaneous string fixes
4280  637460 man glib-genmarshal is hard to use
4281  674483 broken configure results when cross-compiling with gcc >= 4.5
4282  677065 GMappedFile: Add g_mapped_file_get_bytes()
4283  679288 win32: use overlapped events for streams
4284  679556 it's hard to use gtest when g_warning() is expected
4285  680823 g_file_make_directory_with_parents: Fix error propagation
4286  681319 gtlscertificate: Add certificate-bytes and private-key-bytes props
4287  681336 man pages not built if --enable-gtk-doc not specified
4288  681413 build: Switch back to using AS_IF for conditionals
4289  681501 gmem: array only partially filled with memcpy
4290  681854 Documentation fix for Howto compile a program with glib
4291  682025 Documentation correction
4292  682067 Fix problems with CLEANFILES and automake-1.11.1 
4293
4294 * Translations updated:
4295  Lithuanian
4296  Spanish
4297  Galician
4298  Telugu
4299  Serbian
4300  Assamese
4301  Marathi
4302  Indonesian
4303  Traditional Chinese
4304
4305 Overview of changes from GLib 2.33.6 to 2.33.8
4306 ==============================================
4307
4308 * GIO now has a g_file_delete_async function
4309
4310 * The defaults for GThreadPools max_unused_threads
4311   and max_idle_time values have been changed to
4312   2 and 15*1000, respectively.
4313
4314 * Bugs fixed:
4315  661767 merge/improve various bits of run-in-thread functionality
4316  680074 undefined symbol "get_C_locale"
4317  680121 g_cancellable_source_new: don't use a file descriptor
4318  680148 gthread: check for definition of PR_SET_NAME
4319  680310 Sorting of access points by strengh not working
4320  680704 g_utf8_strup() crash
4321  68076a0 GFile: Add g_file_delete_async()
4322  680787 Add .dir-locals.el to tell Emacs users not to use tabs...
4323  680823 g_file_make_directory_with_parents: Fix error propagation
4324  680994 STATIC_ASSERT in GDBusError docs don't have much utility
4325  681116 gtlscertificate: Add g_tls_certificate_equal() function
4326  681118 gtlsdatabase: Don't complain if no callbacks for async...
4327  669331 try to get gio tests working a little better on win32
4328  674314 Make gtk-doc not a hard dependency of GLib
4329  674800 gclosure: generic marshaller leaks return value
4330  675524 gsocket: FIONREAD undeclared (needs sys/filio.h)
4331  679509 use after free in g_dbus_action_group_describe_all_done()
4332  679996 gobject docs minor cleanup
4333  680459 Extra newline char in local implementation of g_applic...
4334  680505 object_path memory leak in gdbusobjectproxy.c
4335  680831 Deprecate and remove g_slice_[sg]et_config.*
4336  680912 gchecksum: Add g_compute_checksum_for_bytes()
4337  681151 checksum: Use functions instead of macros when buildin...
4338  681158 gtlscertificate: Don't confuse certificate and public ...
4339
4340 * Translation updates:
4341  Galician
4342  German
4343  Gujarati
4344  Hebrew
4345  Norwegian bokmål
4346  Serbian
4347  Slovenian
4348
4349
4350 Overview of changes from GLib 2.33.4 to 2.33.6
4351 ==============================================
4352
4353 * GAsyncInitable: partially revert the init_finish changes,
4354   some applications were found to rely on behaviour that
4355   was broken by these changes
4356
4357 * Bugs fixed:
4358  679617 win32: fix g_get_environ()
4359  679968 Add some annotations to GBytes, GVariantType...
4360  680111 GIOScheduler assumes GCancellable "cancelled...
4361
4362 * Translation updates:
4363  Spanish
4364
4365 Overview of changes from GLib 2.33.3 to 2.33.4
4366 ==============================================
4367
4368 * GMainContext: the source list has been reorganzied to
4369   avoid O(n) behaviour
4370
4371 * GRegex: Update included PCRE to 8.31 and expose new
4372   functionality in 8.x versions of PCRE
4373
4374 * GMountOperation gained a ::show-unmount-progress signal
4375   which provides information about slow unmount operations
4376
4377 * Bugs fixed:
4378  616892 gio: Add a boxed type for GFileAttributeMatcher
4379  619329 g_source_attach() O(n) in number of sources
4380  639771 g_dir_read_name() can also return NULL on error
4381  661767 merge/improve various bits of run-in-thread fun...
4382  667375 GAsyncInitable subclassing (and async subclassi...
4383  671545 Constify collect and lcopy strings in GTypeValu...
4384  674452 SEGFAULT in gio contenttype test
4385  674898 Deal with GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED...
4386  675504 Fix up GObject interface documentation
4387  677064 GString: Tweak documentation, add g_string_free...
4388  677578 error in PCRE error code conversion
4389  677579 update GRegexError for newer PCRE error codes
4390  678066 gdbus codegen does not work with python3
4391  678273 unicode othercasing is wrong in gregex
4392  678576 GIOScheduler performance enhancements
4393  678758 GTlsInteraction unlocks an unlocked mutex
4394  678808 GTestDBus issues
4395  678881 Test failures in /socket/timed_wait in some cas...
4396  678941 /contenttype/guess test case failure
4397  678944 gio returns the wrong default applications for ...
4398  678949 wrong definition of ulong_bool for 64 bit big e...
4399  678959 /mainloop/timeouts race condition: assertion fa...
4400  679193 update included pcre to 8.31
4401  679258 The 'Since' tag for G_SOURCE_CONTINUE and G_SOU...
4402  679473 Don't generate invalid property names
4403  679691 Add g_spawn_check_exit_status()
4404  679671 GDBusNodeInfo: the XML string must contain exac...
4405  676111 mount-operation: add show-unmount-progress signal
4406  679691 win32: fix build g_spawn_check_exit_status() wi...
4407  679813 Documentation bug on http://developer.gnome.org...
4408
4409 * Translation updates:
4410  Assamese
4411  Belarusian
4412  Bulgarian
4413  Galician
4414  Greek
4415  Norwegian bokmål
4416  Polish
4417  Spanish
4418  Traditional Chinese
4419  Vietnamese
4420
4421
4422 Overview of changes from GLib 2.33.2 to 2.33.3
4423 ==============================================
4424
4425 This release contains mostly bugfixes, cleanups and performance
4426 improvements (including many fixes contributed by Colin on the advice of
4427 Coverity).  There are a few notable externally-visible changes:
4428
4429 * Thumbnails are now in XDG_CACHE_HOME
4430
4431 * new GDBus API: per-thread g_dbus_connection_get_last_serial()
4432
4433 * GUnixOutputStream now has a can_poll() implementation
4434
4435 * New deep copy APIs for G(S)List: g_(s)list_copy_deep
4436
4437 * Bugs fixed:
4438  518309 Incorrect data*dir path in glib-gettextize output
4439  566994 Safer passing of -framework flag
4440  672889 GLib.utf8_validate does segfault
4441  673253 Not strict enough autconf test for libelf
4442  675024 adds g_list_copy_deep() and g_slist_copy_deep
4443  675168 prepare for thumbnails to move to XDG_CACHE_HOME
4444  675966 gresolver: More robust parsing of DNS responses
4445  676594 [Patch] fix g_reload_user_special_dirs_cache
4446  676825 Implement g_dbus_connection_get_last_serial ()
4447  677235 Clarify the comment at the top of gmarshal.list
4448  677527 OS X: gthread/spawn-async selftest failure
4449  677718 GDBusProxy: treat org.freedesktop.systemd1.Masked error as non-fatal
4450  677770 GUnixOutputStream does not implement can_poll
4451  677782 Install bash completion files in /usr/share
4452  677817 g_key_file_to_data adds extra blank lines in some cases
4453  677952 Missing annotation for GDBusConnection signal "closed"
4454  678052 g_wakeup_acknowledge is called too often.
4455  678273 unicode othercasing is wrong in gregex
4456  678333 gdbus-codegen code causes warnings under -Wfloat-equal
4457
4458 * Translations updated:
4459  Arabic
4460  Assamese
4461  Galecian
4462  Greek
4463  Spanish
4464  Telugu
4465
4466 Overview of changes from GLib 2.33.1 to 2.33.2
4467 ==============================================
4468
4469 * GLIB_VERSION_MIN_REQUIRED now defaults to the current stable version
4470
4471 * GIO input and output stream classes have grown GBytes-based methods
4472
4473 * GApplication now has hooks to register D-Bus objects before the bus
4474   name is taken
4475
4476 * Bugs fixed:
4477  605976 add g_type_ensure(), to ensure that a type has...
4478  660851 Breakage of code due to changes in the GThread...
4479  666386 Empathy doesn't open Redirect URI with particu...
4480  671139 need (transfer async) for io stream buffers
4481  672329 memory leaks in gutils.c and glib tests
4482  672548 g_utf8_validate: @str shouldn't end up annotat...
4483  674111 Provide an accessor for MimeType desktop entry...
4484  674483 broken configure results when cross-compiling ...
4485  674634 Add g_clear_pointer()
4486  674777 What's the (transfer) of g_variant_lookup()?
4487  675309 gkeyfile: Fix annotations for g_key_file_load_...
4488  675446 gfile: Plug memory leak in g_file_make_directo...
4489  675509 add extra dbus hooks
4490  675832 Incomplete gsettings bash auto-completion
4491  676208 The tmpl parameter to g_file_new_tmp can be NULL
4492  676265 GNetworkMonitor leaks a lot of memory
4493  676277 Document that g_app_info_create_from_commandli...
4494  676397 g_environ_* should work with NULL envp
4495  676398 g_spawn_* should take PATH from the passed env...
4496  676478 Broken gzip decoding
4497  676594 [Patch] fix g_reload_user_special_dirs_cache
4498  676816 Add more GLIB_AVAILABLE_IN_*
4499  676937 Document notify signal deduplication with free...
4500
4501 * Translation updates:
4502  Czech
4503  French
4504  German
4505  Greek
4506  Japanese
4507  Russian
4508  Slovenian
4509  Spanish
4510
4511
4512 Overview of changes from GLib 2.32.1 to 2.33.1
4513 ==============================================
4514
4515 * GApplication
4516  - can now have a NULL application ID
4517  - add accessors for determining dbus connection and object path
4518
4519 * g_clear_object: fix warnings when using it on C++ (due to lack of
4520   ability to implicitly cast void*)
4521 * add g_clear_pointer as a generic form of g_clear_object
4522
4523 * GDBus:
4524  - add our own implementation of the message bus for use on Windows only
4525  - fix up a few bugs that use of this bus uncovered in GDBus
4526  - escape nonce files in dbus addressess (think 'c:\')
4527  - support initial underscores in dbus codegen namespace (for private)
4528  - add GTestDBus for bringing up a session bus for testing purposes
4529  - gdbus-codegen: Avoid warnings in generated code
4530  - GDBusAuthObserver: Add a way to control what authentication mechanisms to use
4531  - 
4532
4533 * Fix misdetection of GNUstep as Cocoa (for the MacOS GSettings backend)
4534
4535 * make sure configure fails if AC_CHECK_ALIGNOF cannot detect the alignment
4536
4537 * GAppInfo
4538  - overwrite the DISPLAY only if it is set in the launch context
4539  - add accessor for StartupWMClass
4540
4541 * glib/tests/date: force US locale running the GDateTime tests
4542
4543 * Resources:
4544  - fix broken use of GVDB on big endian machines
4545  - set a 'display name' so that pretty file names appear in Gtk CSS
4546    warning messages
4547
4548 * GMainContext:
4549  - block child sources when blocking the parent
4550  - introduce more testcases for child sources
4551
4552 * GResolver: add support for MX, TXT, NS and SOA records
4553
4554 * GSocketControlMessage: Don't warn about unknown messages
4555
4556 * GIO:
4557  - implement GSeekable for the data and buffered stream classes
4558  - implement GPollable for many more classes as well
4559  - fix GConverterInputStream infinite loop when fill_buffer returns an error
4560  - fileinfo: document the correct type for trash::orig-path
4561
4562 * test coverage improvements and general fixes
4563
4564 * new 2.34 stuff: version macros, docs index section, etc.
4565
4566 * Build:
4567  - add --disable-modular-tests build option
4568  - don't require host binaries if tests are not enabled for cross-builds
4569
4570 * Translations updated
4571  Brazilian Portuguese
4572  Bulgarian
4573  Czech
4574  French
4575  Galician
4576  German
4577  Hebrew
4578  Hindi
4579  Italian
4580  Norwegian bokmål
4581  Polish
4582  Russian
4583  Russian
4584  Serbian
4585  Simplified Chinese
4586  Slovenian
4587  Spanish
4588  Telugu
4589
4590 Overview of changes from GLib 2.32.0 to 2.32.1
4591 ==============================================
4592
4593 * Bugs fixed:
4594  670254 glib-2.30.2: Fails /GDateTime/new_from_unix test
4595  672541 glib-compile-resources prepends --sourcedir to absolute paths
4596  673139 URL to mailing lists in README incorrect
4597  673174 g_input_stream_read[_finish]: document returning 0 on EOF
4598  673191 glib/gchecksum.c warning: dereferencing type-punned pointer...
4599  673216 [W32] gtestutils does not use path separators consistently
4600  673439 Properly deprecate g_value_{set,get}_char
4601  673612 Fails to decode dictionaries wrapped in two layers of array
4602  673803 gclosure: Support return values of GVariants
4603  669285 glib/tests/markup-parse fails under non-english locale
4604  673911 gio-2.0.pc lists full path to executables, breaking cross com..
4605  673762 gnextstepsettingsbackend.c:343: error: parse error before 'in'
4606
4607 * Updated translations:
4608  Belarusian
4609  British English
4610  Bulgarian
4611  Catalan
4612  Czech
4613  French
4614  German
4615  Hebrew
4616  Hindi
4617  Hungarian
4618  Italian
4619  Japanese
4620  Kannada
4621  Latvian
4622  Lithuanian
4623  Marathi
4624  Norwegian bokmål
4625  Odia
4626  Polish
4627  Serbian
4628  Slovenian
4629  Spanish
4630  Swedish
4631  Telugu
4632
4633
4634 Overview of changes from GLib 2.31.22 to 2.32.0
4635 ===============================================
4636
4637 * Bugs fixed:
4638  671988 Quickly registering / unregistering objects on bus...
4639  672095 glib needs stable sort function
4640  672406 glib/tests/include.c fails to build on FreeBSD
4641
4642 * Updated translations:
4643  Telugu
4644
4645
4646 Overview of changes from GLib 2.31.20 to 2.31.22
4647 ================================================
4648
4649 * Bugs fixed:
4650  531901 Use __builtin_bswap* for GUINT*_SWAP_LE_BE if building...
4651  653167 Out of tree build is broken on windows
4652  668973 Test /gvariant/parser fails on Solaris 10
4653  669797 gvfs now lists its fuse mounts
4654  670846 deadlock: GStreamer-WARNING **: wrong STREAM_LOCK count 0
4655  671664 gio-querymodules: unlink instead of writing empty cache
4656  671676 Glib can't be cross-compiled any more after merge of...
4657  671918 gnome-shell is inaccessible unless started while an AT...
4658  671942 GSocketMsgFlags: annotate as a flags
4659  671997 Unix signal handling assumes that volatile 1-byte writes...
4660  672013 GSimpleAsyncResult: support reliable cancellation
4661  672026 default log output should include pid and/or prgname
4662  672095 glib needs stable sort function
4663  672201 G_SPAWN_SEARCH_PATH should continue on ENODEV and ETIMEDOUT
4664  672239 request NO_REPLY from g_dbus_connection_call() with no as...
4665  672249 gdbusproxy leaks asyncresult in an error case instead of...
4666
4667 * Translation updates:
4668  Assamese
4669  British English
4670  Catalan
4671  Catalan (Valencian)
4672  Danish
4673  Esperanto
4674  Finnish
4675  French
4676  German
4677  Hungarian
4678  Korean
4679  Lithuanian
4680  Norwegian bokmål
4681  Polish
4682  Portuguese
4683  Russian
4684  Traditional Chinese
4685
4686
4687 Overview of changes from GLib 2.31.18 to 2.31.20
4688 ================================================
4689
4690 * Update to Unicode 6.1
4691
4692 * Update PCRE to 8.30
4693
4694 * Deprecations are now versioned, and new API is
4695   marked with the version it was introduced.
4696   Use these with GLIB_VERSION_{MIN,MAX}_REQUIRED
4697
4698 * The performance of signal emissions has been
4699   improved for simple cases
4700
4701 * Bugs fixed:
4702  529806 Cannot build in 64-bit Mac OS X due to libiconv
4703  580873 Documentation of register type functions incomplete
4704  592666 Document how to unset an attribute
4705  597785 g_type_class_add_private code snippet is a bad example
4706  621368 glib-2.24.1: FAIL: run-assert-msg-test.sh when updating...
4707  622149 --disable-regex breaks glib2 build
4708  639873 GBinding: Crash when binding two properties on the same...
4709  640202 For GLIB v. 2.23.6 and above: impossibility to build mu...
4710  668295 Need a way to classify GVolume instances
4711  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
4712  670542 Add version information for deprecations
4713  670557 gvaluetransform: Fix an infinite loop with GFlagsValue...
4714  670721 global variable for signal ID should be hidden
4715  670751 IceWM build fails due to the G_DEPRECATED_FOR macro
4716  670909 g_dbus_connection_call leaks when it receives an error...
4717  670922 Include path to gdbus-codegen in the pkgconfig file
4718  670969 GSequence lookup may fail if there was no sort prior to...
4719  671025 Constants and identifiers starting with a number are no...
4720  671270 make distclean failures
4721  671281 glib-compile-resources.xml is missing from the dist tar...
4722
4723 * Translation updates:
4724  Basque
4725  Belarusian
4726  Brazilian Portuguese
4727  Bulgarian
4728  Galician
4729  Hebrew
4730  Lithuanian
4731  Persian
4732  Punjabi
4733  Serbian
4734  Simplified Chinese
4735  Slovenian
4736  Telugu
4737  Traditional Chinese
4738  Uyghur
4739  Vietnamese
4740
4741
4742 Overview of changes from GLib 2.31.16 to 2.31.18
4743 ================================================
4744
4745 * GDBusProxy has now a flag, G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES,
4746   which can be set to make GDBus automatically reload
4747   changed properties even if the propertychanged signal
4748   does not contain the new values.
4749
4750 * GApplication puts non-unique applications on the bus
4751
4752 * GApplication now has g_application_quit()
4753
4754 * g_async_queue_timed_pop has been deprecated in favor of
4755   the new g_async_queue_timeout_pop, which uses relative
4756   delays in microseconds instead of a GTimeVal.
4757
4758 * a huge number of API documentation fixes
4759
4760 * Bugs fixed:
4761  647986 put non-unique apps on D-Bus
4762  658484 vpn connection vs NetworkSecretDialog
4763  664237 GDateTime falls back to UTC if TZ is set
4764  669329 gthread-win32: update for g_get_monotonic_time() changes
4765  669330 glocalfile: fix error code when opening a directory on win32
4766  669372 glib/tests memory leaks.
4767  669412 mem leak in g_environ_unsetenv
4768  669538 Fix compilation of glib-compile-resources.c on Windows
4769  669544 gdbus-codegen example introspection XML is not complete
4770  669595 glib-mkenums: fix handling of forward enum declarations
4771  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
4772  669671 gobject: use #pragmas to avoid deprecated function warnings
4773  669689 Retrieve cwd and environ in local GApplicationCommandLine
4774  669810 socket/win32: flush pending read before signaling HUP
4775  669865 g_regex_fetch()
4776  670085 memory leak in g_output_stream_write_async
4777  670138 gbytes.h is missing the G_BEGIN/END_DECL guards
4778  670485 Simplify session API (shared bug with gtk+)
4779
4780 * Updated translations:
4781  Belarusian
4782  Danish
4783  Galician
4784  Serbian
4785  Telugu
4786  Hebrew
4787
4788
4789 Overview of changes from GLib 2.31.14 to 2.31.16
4790 ================================================
4791
4792 * GResource:
4793  - The resource compiler can now convert pngs into
4794    pixel data that can be used without parsing at runtime
4795    (requires gdk-pixbuf-pixdata to be present)
4796
4797 * Bugs fixed:
4798  669123 resource compiler: failing to-pixdata should...
4799  669173 resource: fix xml preprocess entity handling
4800  669224 Cross-compilation broken by data-to-c
4801  669253 gsettings set buggy on array values
4802  669334 fix memory leak in bookmark file parser
4803
4804 * Translation updates:
4805  Norwegian bokmål
4806  Spanish
4807
4808
4809 Overview of changes from GLib 2.31.12 to 2.31.14
4810 ================================================
4811
4812 * GResource:
4813  - GLib now includes a commandline utility, gresource,
4814    to explore resources in ELF files
4815  - The resource compiler can now optionally strip
4816    ignorable whitespace from XML resources
4817  - The resource compiler can now generate build dependencies
4818  - The resource compiler will now autoselect output formats
4819
4820 * GApplication:
4821  - The menu markup parser API has been dropped, the
4822    menu XML support lives in GTK+ now
4823
4824 * GValueArray has been deprecated
4825
4826 * Bugs fixed:
4827  626258 N-ary Trees - 'nodes' can be inserted before and after...
4828  634232 Core Dump / Aborted using g_key_file_to_data
4829  639099 schema compiler chokes on valid schema
4830  667228 Deprecate GValueArray
4831  667243 Add an element clear function to GArray
4832  667929 glib-compile-resources: xml resources doesn't need to...
4833  668250 g_date_time_format() produces a non-UTF8 string
4834  668468 'IP_ADD_SOURCE_MEMBERSHIP' undeclared
4835  668532 resources: add dependency generator to the resource compiler
4836  668539 resources: compiler should autoselect output format...
4837  668561 gresource-tool not internationalized
4838  668572 glib_cv_g_atomic_lock_free config.cache setting not honored...
4839  668650 GRealArray->clear_func should be initialized
4840  668756 GKeyFile: allow loading from empty strings
4841  668857 fix couple of typos in comments
4842  669024 goption: implement platform_get_argv0() for OpenBSD
4843
4844 * Updated translations:
4845  Galician
4846  Norwegian bokmål
4847  Spanish
4848  Traditional Chinese
4849
4850 Overview of changes from GLib 2.31.10 to 2.31.12
4851 ================================================
4852
4853 * GApplication:
4854  - Drop support for exporting menus - this functionality
4855    will be provided in GtkApplication
4856  - Add a way to create actions that change settings
4857
4858 * Bugs fixed:
4859  629503 Add async versions of g_unix_connection_{receive,send}_credentials
4860  656301 glib-compile-schemas should not create an empty file
4861  668071 mingw-gcc build fails on gio/gsocket.[c|h]
4862  668118 the big appmenu switcheroo
4863  668158 base64 encode and line termination
4864  668163 GDBusConnection: note that exit-on-close is sometimes TRUE
4865  668269 gsignal: add g_signal_handlers_disconnect_by_data
4866  668279 create GAction from GSettings
4867
4868 * Translation updates:
4869  Norwegian bokmål
4870
4871
4872 Overview of changes from GLib 2.31.8 to 2.31.10
4873 ===============================================
4874
4875 * GResource:
4876  - A new facility to allow linking data files into binaries
4877    and make them available as resources
4878  - Resources are compiled using glib-compile-resources
4879  - GIO supports resource:/// uris to access resources
4880
4881 * Bugs fixed:
4882  619126 Missing dependency libs
4883  658315 g_key_file_get_keys() should set length to 0...
4884  660371 is it ever valid to have 0 as a GError domain?
4885  666700 Add some missing (allow-none) annotations
4886  667375 GAsyncInitable subclassing (and async subclassing...
4887  667447 Missing many introspection annotations
4888  667790 Protect call to pthread_condattr_setclock with define
4889  667938 wrong gtypes generated for empty flags enums
4890
4891 * Translation updates:
4892  Hebrew
4893  Spanish
4894
4895
4896 Overview of changes from GLib 2.31.6 to 2.31.8
4897 ==============================================
4898
4899 * GObject:
4900  - The type checks for overriding properties have been loosened.
4901    In particular, it is now possible to add the CONSTRUCT flag
4902    to an overridden property
4903  - GWeakRef is a new API for weak references; unlike g_object_weak_ref
4904    and g_object_add_weak_pointer, it is thread-safe.
4905
4906 * GHashTable has grown new convenience api for use as a set:
4907   g_hash_table_add, g_hash_table_contains
4908
4909 * GSocketConnection has gained API for managing connection status
4910
4911 * GSettings: a native OS X backend has been added, under the
4912   name 'nexstep'
4913
4914 * Bugs fixed
4915  455640 Something fishy with GRegex and unicode
4916  548954 weak references are not threadsafe
4917  625751 Add G_FILE_ATTRIBUTE_FILESYSTEM_USED
4918  658871 gbacktrace: g_get_prgname () isn't called for a NULL argu...
4919  664069 gvariant: Never break out of g_variant_iter_loop
4920  664830 g_strescape doesn't natively handle \v (vertical tab)
4921  665211 GDBusConnection singleton access can race with disposal
4922  665805 Add GSocketClient::action, for tracking socket client status
4923  666116 some tests provoke undefined behaviour, which is undesira...
4924  666422 Unreachable code in gio gnetworkmonitornetlink.c
4925  666551 Crash in g_thread_xp_SleepConditionVariableSRW
4926  666595 menu parser disallows id='' on submenu and section
4927  666615 loosen property override flag restrictions
4928  666616 gobject: fix property override type checks
4929  666803 g_utf8_validate() fails to validate strings with known size
4930  666804 g_ateaxit deprecation warning in devhelp points in wrong ...
4931  666951 g_mkdtemp: Since version incorrect in docs
4932  666978 Fails to compile glib applications with ISO C90 compiler
4933  667098 ginetaddressmask leaks its address property
4934  667225 GSocket: add missing type checks to public methods
4935  667226 GSocket: fix an error return value
4936  667279 Sometimes crashes when launching commandline-crea...
4937  667285 Wrong keyname listed in documentation for g_deskt...
4938  667331 Use g_queue_free_full() convenience function
4939  667420 GHashTable GDB pretty printing is broken
4940
4941 * Updated translations
4942  Belarusian
4943  Bulgarian
4944  Hebrew
4945  Norwegian bokmål
4946  Norwegian Nynorsk
4947  Spanish
4948  Vietnamese
4949
4950
4951 Overview of changes from GLib 2.31.4 to 2.31.6
4952 ==============================================
4953
4954 * GApplication no longer has APIs for setting menus.  Those have been
4955   moved to GtkApplication.
4956
4957 * the GActionGroup import/export functionality has been decoupled from
4958   GApplication by the introduction of a new interface for the purpose of
4959   handling platform data: GRemoteActionGroup.  This allows Gtk to
4960   properly deal with platform data (and gdk threads) on window actions.
4961
4962 * lots of documentation improvements
4963
4964 * bug fixes and a huge number of memory leak fixes
4965
4966 * the test suite now passes on ARM and some of the GDBus testcase hangs
4967   we've been seeing have been resolved (although others could remain)
4968
4969 * g_bytes_get_data() API changed: now includes 'size' out parameter
4970
4971 * new g_queue_free_full() API similar to g_[s]list_free_full()
4972
4973 * desktop files: use standard "Keywords" now, not "X-GNOME-Keywords"
4974
4975 * gsettings commandline tool now has --schemadir option for schemas not
4976   installed in the usual place (ie: as part of plugins)
4977
4978 * Bugs fixed:
4979  643736 GApplication doesn't emit dbus signals on action updates
4980  657433 g_queue_free_full() missing
4981  664699 glib: documentation fixes
4982  665737 acquire/release gdk threads lock on incoming dbus
4983  665879 GBytes: add a size argument to g_bytes_get_data
4984  666113 various leaks in GLib, GIO are visible in the regression tests
4985  666115 various tests leak memory, obscuring real leaks in the library
4986  666145 Doc could be more explicite that g_thread_init calls can be droped
4987  666173 Configure warning - linux/netlink.h usability... no
4988  666296 Race condition in g_thread_xp_get_srwlock
4989  666415 Settings tools should allow specifying a schema directory 
4990
4991 * Translations updated:
4992  French
4993  Spanish
4994
4995 Overview of changes from GLib 2.31.2 to 2.31.4
4996 ==============================================
4997
4998 * EXPERIMENTAL: Menu support has been added to GApplication.  Menus
4999   are exported on the bus, alongside the actions that are already there.
5000   There have also been many related improvements to action group
5001   functionality.
5002
5003   These new APIs are subject to changes in the coming releases.  In
5004   particular, it seems somewhat likely that the APIs for registering
5005   menubars may change in order to accommodate windows with different
5006   types of menubars.
5007
5008 * GDBusConnection previously directly dispatched destroy notifies when
5009   unregistering objects if the current main context was the same context
5010   the object was exported on.  It now unconditionally dispatches these
5011   through an idle on the context.
5012
5013 * Clean up Requires in pc files. Linking against GIO no
5014   longer drags in gmodule. This may require dependency
5015   fixes here and there.
5016
5017 * Introduce GBytes, a data type for immutable, fixed-size
5018   byte sequences. This makes the pre-existing GBuffer
5019   API available outside GLib
5020
5021 * GDBusInterfaceSkeleton can now be exported on multiple
5022   connections
5023
5024 * Bugs fixed:
5025  600161 Do not use static GTypeInfo and GInterfaceInfo
5026  640077 GFileMonitor: Always send CHANGES_DONE_HINT after a move...
5027  641720 Misleading definition for local_command_line() in GApplic...
5028  648516 Little comment error and 2 useless lines of code
5029  651997 Dummy backend for gapplication
5030  652560 Test for g_ascii_strtod is failing
5031  662208 failure to initialize a GInitable should be considered...
5032  662718 GDBusInterfaceSkeleton should be able to export on multi...
5033  663291 GBytes: Immutable, refcounted sequence of bytes
5034  664406 Need context for a proper translation
5035  664455 Build fixes for GLib GIT master (2.31.x)
5036  664558 GDBusWorker.frozen has a value > 1 in a gboolean
5037  664559 sys/wait.h not available on windows
5038  664617 gdbus segfault error 4 in libgio-2.0.so.0.3102.0
5039  664635 GMemory{Out,In}putStream _async functions break sub-class...
5040  664809 Add command line option to gtester to allow skipping tests
5041  665067 cryptic assertion failure if nonsensical flag combinations...
5042  665184 Check ref. count before reffing/unreffing
5043  665298 Add 'Requires.private: libpcre' to glib-2.0.pc
5044  665391 update documentation around mainloops
5045  665607 ./configure is there for fiddling with cross-compile enviro...
5046  665634 g_dbus_node_info_new_for_xml() errors on unknown attributes...
5047  665685 Add a #define for the max length of a Unicode decomposition
5048  665733 GDBusConnection holds lock while calling destroynotify
5049
5050 * Translation updates:
5051  Norwegian bokmål
5052  Spanish
5053
5054
5055 Overview of changes from GLib 2.31.0 to 2.31.2
5056 ==============================================
5057
5058 * Monotonic time is now properly supported on Windows
5059
5060 * glib-mkenums: fix @ENUMPREFIX@ with /*< underscore_name=... >*/
5061
5062 * EXPERIMENTAL: introduce new GSettingsSchema and GSettingsSchemaSource
5063   APIs for the convenience of plugin system authors and those who wish
5064   to introspect the contents of schemas.  This API may change.
5065
5066 * Improve the performance of GObject property notifies.
5067
5068 * GDBus:
5069  - fix a race when unowning a name immediately after owning it
5070  - thread safety improvements on GDBusConnection
5071  - fixes for exit-on-close functionality
5072
5073 * Deprecations:
5074  - add G_SIGNAL_DEPRECATED
5075  - don't use G_DISABLE_DEPRECATED masking for functions anymore
5076
5077 * docs
5078  - tmpl/ is finally dead for glib
5079
5080 * GIO:
5081  - GInetAddressMask: new type for internet address range matching
5082  - various GIO file and stream fixes
5083  - improvements to attribute and fileinfo handling
5084
5085 Overview of changes from GLib 2.29/2.30 to 2.31.0
5086 =================================================
5087
5088 This release contains a huge number of changes (500 commits worth).  The
5089 list below attempts to summarise, but not every change is listed.
5090
5091 * Major changes to threading and synchronisation
5092  - threading is now always enabled in GLib
5093  - support for custom thread implementations (including our own internal
5094    support for errorcheck mutexes) has been removed
5095  - a whole lot of dead code (to deal with the non-threaded case) has
5096    been ripped out.  This includes the racy path of GMainContext that
5097    caused deadlocks with respect to child process exits in
5098    single-threaded programs (such as gtester).
5099  - libgthread is now an empty shell and g_thread_init() is no longer
5100    required (and has been deprecated)
5101  - GMutex and GCond can now be statically allocated without explicit
5102    initialisation.  Dynamic allocation for these types is deprecated.
5103  - new types GRecMutex and GRWLock can also be statically allocated
5104    without explicit initialisation.
5105  - GPrivate can now be statically allocated and has an improved API.
5106    Dynamic allocation of GPrivate is deprecated.
5107  - GStaticMutex, GStaticRecMutex, GStaticRwLock, GStaticPrivate are
5108    deprecated.
5109  - GCond now uses monotonic time internally and a new API takes
5110    monotonic time for timed waits, deprecating the wallclock API
5111  - removal of the insane macro indirection used in the previous
5112    implementation of threading and synchronisation APIs
5113  - use SRWLock and CONDITION_VARIABLE APIs when available on Windows
5114    (Vista and later) and emulate them on XP
5115  - leaks of G(Static)Private-allocated data on some cases of thread exit
5116    have been fixed
5117  - simplified new thread creation API with the old API deprecated.  The
5118    concept of joinability has disappeared (all threads are joinable) as
5119    have priority levels, 'bound'ness (ie: kernel vs. userspace threads)
5120    and ability to manipulate the stack size.
5121  - GThread is now a refcounted type
5122  - other implementation details changed
5123
5124 * Move headers for some deprecated functionality to a separate
5125   deprecated/ directory.
5126
5127 * New support for attribute-based deprecations to issue compiler
5128   warnings instead of breaking the build and/or giving warnings about
5129   implicit declarations (and possibly miscompiling).
5130
5131 * GCache has been deprecated (after its last use was removed from our
5132   platform over a year ago).
5133
5134 * It is no longer possible to include individual headers (like
5135   "ghash.h") -- you must #include <glib.h>.
5136
5137 * The misguided experiment of allowing the program to stumble along with
5138   missing GSettings schemas is now over -- the abort is back.
5139
5140 * Clarify that fork() is not valid while using GMainContext.  This is
5141   because the internal resources of the GMainContext end up being shared
5142   by both processes.  We had an assert here but it was breaking existing
5143   (valid) use cases as well, so it has been removed for now.
5144
5145 * GApplication
5146   - add ::shutdown signal as logical dual to ::startup
5147   - don't use a GMainLoop: iterate the GMainContext directly (improves
5148     quit logic)
5149
5150 * Several portability fixes for Windows, OpenBSD, Solaris
5151
5152 * Add new GValue API to specifically deal in signed chars (in case the
5153   platform defines 'char' as unsigned)
5154
5155 * some new API to mitigate the problems associated with calling setenv()
5156   in a multi-threaded program
5157
5158 * Use CLOCK_MONOTONIC unconditionally if the libc has support at compile
5159   time (ie: stop checking for kernel support at runtime).
5160
5161 * pkg-config files:
5162   - drop -uninstalled variants
5163   - remove gobject dependency on gthread
5164
5165 * New macro G_ATOMIC_LOCK_FREE is defined if the atomic operations are
5166   implemented without use of a mutex.  Cleaned up atomic-related
5167   compilation issues with mingw compilers on win32 systems.
5168
5169 * SOCKS proxy and resolver improvements
5170
5171 * Fix the spelling of G_IO_FLAG_IS_WRITABLE (was WRITEABLE) and
5172   introduce a macro for backwards compatibility.
5173
5174 * GDBus:
5175   - many code generation updates and improvements
5176   - some race condition fixes, including testcase hangs
5177
5178 * GVariant:
5179   - new g_variant_new_from_fixed_array() API
5180   - substantial docs improvements/clarifications
5181
5182 * GKeyFile is now refcounted and boxed
5183
5184 * mount monitoring is now based on /proc/mounts (where available)
5185   instead of mtab
5186
5187 * new macros G_SOURCE_CONTINUE and G_SOURCE_REMOVE for returning from
5188   GSourceFunc (so you don't have to remember what TRUE and FALSE mean)
5189
5190 * use xlocale functions where available to avoid too much heavy lifting
5191   in functions like g_ascii_strtod()
5192
5193 * GMappedFile can now be created from an fd
5194
5195 * error message strings grammar/i18n fixes
5196
5197 * many docs updates
5198
5199 * Partial list of bugs closed:
5200  70598  Unify GStaticMutex and GMutex.
5201  320888 optimization for g_main_context_wakeup
5202  398418 GChildWatch race condition?
5203  527214 g_timer_elapsed() returns random values
5204  580505 add a way to set/get name for a thread
5205  583511 race condition means g_main_loop_quit() does not work
5206  590808 GKeyFile should have a refcount and a boxed type in GObject
5207  592715 Document that g_str_hash() and g_int_hash() are not NULL safe
5208  631413 Add macros for GSourceFunc return values
5209  632049 not immediately clear what g_variant_get_fixed_array expects
5210  640212 "Error stating file" is not a friendly message
5211  640293 Use xlocale functions to implement g_ascii_strtod()
5212  640975 Check that error exists before trying to set it
5213  643934 GApplication lacking a logical dual for the ::startup signal
5214  651268 assertion failed in GDBus worker thread
5215  653987 g_key_file_get_integer cannot interpret trailing spaces
5216  654412 Documentation for g_variant_get_child_value unclear
5217  654563 info capplet: Failed to calculate disk space
5218  655366 missing GSettings schemas lead to obscure crashes
5219  656621 g_spawn_*() calls executables in current directory
5220  656679 [gi] Add two annotations to gio
5221  657992 Add glib__private__() API to share between glib,gio
5222  658188 _set_as_last_used_for_type generates a broken mimeapps.list
5223  658206 gsocks5proxy.c has invalid gettext use
5224  658207 glib-compile-schemas says "can not"
5225  658558 simpleaction: Fix documentation of :enabled
5226  658683 clean up charset/language threading issues
5227  658692 add introspection annotations to g_time_val_from_iso8601()
5228  658715 Duplicite strings
5229  658769 Invalid reuse of GError in GThreadedResolver
5230  658806 sign error in string hash implementation
5231  658976 gdbus-codegen's C namespace option needs to support Ugly_Case
5232  659070 gdbus-codegen generated code segfaults when property changes
5233  659082 gdbus-codegen: Single letter namespaces get dropped from names
5234  659212 GMappedFile should fail on non-regular files
5235  659324 _SPLICE_CLOSE_TARGET doesn't mark the output stream as closed
5236  659423 Use adaptive mutexes when available
5237  659427 Move deprecated code to a separate directory
5238  659646 gdbus-codegen produce code that warnings at build
5239  659690 Possible build warning in code generated by gdbus-codegen
5240  659699 property name collision when generating code for "Connection"
5241  659754 Add API to GMappedFile that allows to pass FD
5242  659838 incorrect types in introspection for g_object_bind_property
5243  659866 pthread_rwlock_t requires defined __USE_UNIX98
5244  659870 gvalue: Fix signedness of g_value_get_char()
5245  659889 glib-2.29.92/gio-2.0.pc.in has a wrong line.
5246  659916 GObject size of 64K is not actively enforced
5247  659920 Missing setter for read/write property 'closed' of GIOStream
5248  659923 Add g_variant_new_fixed_array() function
5249  660013 Remove old g_atomic configure cruft
5250  660096 glib/rwlock tests failure (tests asserted)
5251  660130 Possible loss of user data when updating mimeapps.list
5252  660147 tracker causes g_critical in "gsettings list-recursively"
5253  660413 Make G_ASSERT_STATIC work with clang
5254  660498 Generated test code fails when the codegen changes
5255  660511 Use /proc/mounts for monitoring mounts, not /etc/mtab
5256  660536 Expose options for /etc/fstab entries
5257  660635 Deprecate g_thread_foreach
5258  660637 Pending dbus method calls not canceled on connection loss
5259  660739 kill off g_{mutex,cond}_{new,free}()
5260  660740 make GThread more standard
5261  660741 g_cond_timedwait is a disaster
5262  660743 macro wrappers for g_once_init_enter/leave
5263  660744 finish killing g_thread_init()
5264  660745 GPrivate leaks on Windows
5265  660791 [gio] Improve doc for g_file_make_directory_with_parents()
5266  660843 asyncqueue-test is broken
5267  660849 Remove cruft from g_strerror and g_strsignal
5268  660886 GDBusProxy: don't drop/complain about unknown props/signals
5269  660887 g_slice_set_config() is broken
5270  660994 Add g_main_context_ref_thread_default()
5271  661255 gio: enable test_peer regression test for OpenBSD
5272  661257 giomodules.c uses ":" instead of G_SEARCHPATH_SEPARATOR_S
5273  661318 tests use pthread without appropriate compiler/linker flags
5274  661421 Applications fail to initialize on GNU Hurd - commit
5275  661438 Implement G_GNUC_DEPRECATED/G_GNUC_DEPRECATED_FOR on Visual C++
5276  661711 Sorting keys for GDrive, GVolume and GMount instances
5277  661763 desktop-app-info: Add support for X-GNOME-Keywords
5278  661896 /gdbus/connection/life-cycle is racy
5279  661914 Gstreamer/Totem locks up
5280  662100 regression: g_dbus_connection_close() triggers exit-on-close logic
5281
5282 * Translations updates:
5283  Belarusian 
5284  Brazilian Portuguese
5285  British English 
5286  Bulgarian 
5287  Catalan 
5288  Catalan (Valencian)
5289  Czech 
5290  Danish 
5291  Esperanto
5292  French 
5293  Gujarati
5294  Hebrew 
5295  Hungarian 
5296  Italian 
5297  Japanese
5298  Lithuanian
5299  Norwegian bokmål
5300  Oriya
5301  Polish 
5302  Russian 
5303  Serbian
5304  Simplified Chinese
5305  Slovak 
5306  Slovenian
5307  Spanish 
5308  Tamil
5309  Vietnamese
5310
5311 Overview of changes from GLib 2.29.18 to 2.29.90
5312 ================================================
5313
5314 * API/ABI changes:
5315  - unix signal watches now match the API of all of the other sources
5316  - revert the addition of g_date_time_source_new () from last release
5317
5318 * networking and other fixes for Solaris
5319  - we no longer support symbolic port names (ie: from /etc/services)
5320  - check if -lsocket is needed
5321  - fix g_socket_details_from_fd()
5322  - avoid getmntinfo
5323  - fix some harmless warnings
5324
5325 * GDateTime improvements:
5326  - generally improved standards compliance (with C99)
5327  - support C99-specified format strings: %g, %G, %V, %c, %C, %w
5328  - consult the locale for the preferred 12-hour time format (%r)
5329  - drop support for non-standard %N and broken %W
5330  - better support for formatting non-POSIX (eg: Arabic) numerals
5331  - locale-related test case fixups, and fix some leaks
5332
5333 * GTlsInteraction: add interaction method invocation guarantees
5334
5335 * gdbus-codegen: post-process all interfaces when parsing >1 file
5336
5337 * make GMainLoop, GMainContext and GSource boxed types
5338
5339 * fix a race condition in the first use of g_get_monotonic_time()
5340
5341 * lots gtk-doc cleanups
5342
5343 * better intltool compatibility when generating pot file
5344
5345 * avoid GCC-specific compiler options when not using GCC
5346
5347 * Translation updates:
5348  Belarusian
5349  Brazilian Portuguese
5350  Canadian English
5351  Galician
5352  Indonesian
5353  Korean
5354  Lithuanian
5355  Norwegian bokmål
5356  Portuguese
5357  Spanish
5358  Swedish
5359
5360 Overview of changes from GLib 2.29.16 to 2.29.18
5361 ================================================
5362
5363 * GDateTime is now respecting LC_TIME when formatting
5364
5365 * GTimeZoneMonitor has been removed again
5366
5367 * A new API for wallclock functionality has been added:
5368   g_date_time_source_new(). This API is still experimental
5369   and may be changed or removed before 2.30.
5370
5371 * Bugs fixed:
5372  628904 Add credential support for FreeBSD and fix a socket issue
5373  650763 gdbus-codegen is broken with python 2.7
5374  655129 GDateTime could provide api for implementing wall clocks
5375  656341 gtlsconsoleinteraction.c uses getpass() which isn't avail...
5376  656387 GCancellable can be used concurrently
5377  656443 Make GTlsInteraction ask_password cancellable
5378  656675 void functions should not return in glib 2.29.16
5379  656772 g_variant_compare for uint64 incorrect
5380  656914 Load GIO_EXTRA_MODULES first, and ignore duplicates
5381  657083 The header langinfo.h is not available on all systems
5382  657084 gfileutils: fix docs/annotations for temp file methods
5383  657138 Some files missing in POTFILES.in
5384  657206 GInputStream leaked in g_file_icon_load_async()
5385  657243 g_cancellable_set_error_if_cancelled() documentation
5386  657274 Use detected PYTHON variable as shebang for gdbus-codegen
5387  657336 Speling fixes for glib found with codespell
5388  657452 plural forms needed
5389  657454 Translation comment needed
5390  657540 Print out file:// URL to coverage HTML report after building
5391  657593 g_test_trap_fork calls close(-1)
5392  646082 Addresses from GSocket should be normalized before returning
5393  657517 fix gio/tests/gdbus-peer on bsd
5394
5395 * Translation updates:
5396  Brazilian Portuguese
5397  Galician
5398  Norwegian bokmål
5399  Punjabi
5400  Russian
5401  Serbian
5402  Spanish
5403  Swedish
5404  Traditional Chinese
5405  Uighur
5406
5407
5408 Overview of changes from GLib 2.29.14 to 2.29.16
5409 ================================================
5410
5411 * GTlsDatabase: an abstract class that provides support
5412   or certificate and key lookup. An implementation will
5413   be provided in glib-networking
5414
5415 * GHmac: Support or HMAC digests
5416
5417 * Misc new API:
5418  - g_ptr_array_add_full: creates a GPtrArray with
5419    a preallocated size and a destroy function
5420  - g_desktop_app_info_get_show_in: checks if a GDesktopAppInfo
5421    should be shown in a given desktop environment
5422  - g_mkdtemp, g_mkdtemp_full, g_dir_make_tmp: create
5423    temporary directories
5424
5425 * Unify thread wakeup implementations of GMainContext
5426   and GCancellable, and use eventfd for it when available
5427
5428 * Show mounts in $XDG_USER_DIR in addition to /media and $HOME
5429
5430 * Bugs fixed:
5431  636572 GTlsCertificateDB
5432  644601 Some tests need a running dbus session
5433  652284 deal with small key lengths
5434  652827 glib-2.29.8 no longer builds with mingw.org's toolchain
5435  653063 PEM parser fails parsing private key when put first
5436  654078 Fail to static linking with Glib library
5437  654450 New functions: g_ptr_array_new_full()
5438  654793 Add G_VALUE_INIT
5439  655044 GDesktopAppInfo: Add g_desktop_app_info_get_show_in()
5440  655148 gdbusconnection is broken when compiling with mingw
5441  655241 glocalfile.c no longer compiles with MinGW GCC
5442  655598 g_cancellable_get_fd: silently return -1 for NULL cancellable
5443  655664 gdbus should not abort if no dbus session is available
5444  655769 Use ZLIB_CFLAGS when compiling gio
5445  656031 Improve GVariant annotations
5446  656048 glib-codegen requires Python >= 2.5
5447  656151 configure test logic inverted, doesn't match comments
5448  656152 GCC only syntax used, yet other compilers allowed by configure.
5449  656162 allow use of lcov 1.9 for coverage
5450  656282 GDBusProxy: uninitialized local variables can be freed
5451  656283 Failing tls connection cause assertion
5452  118563 Add g_mkdtemp in the spirit of g_mkstemp
5453  636405 Add g_return_if_fail() to g_settings_bind_with_mapping()
5454  656039 race condition between GDBusProxy signals and public API
5455  656492 g_io_channel_new_file failure (open(2) behavior wrt POSIX)
5456
5457 * Translation updates:
5458  Bulgarian
5459  Esperanto
5460  French
5461  Galician
5462  German
5463  Hebrew
5464  Indonesian
5465  Italian
5466  Norwegian bokmål
5467  Russian
5468  Spanish
5469  Swedish
5470
5471
5472 Overview of changes from GLib 2.29.12 to 2.29.14
5473 ================================================
5474
5475 * Unicode improvements
5476  - add g_unicode_script_{to,from}_iso15924
5477  - add G_UNICODE_SPACING_MARK define
5478  - more normalisation improvements
5479  - stop using deprecated g_unicode_canonical_decomposition()
5480
5481 * GParamSpec:
5482  - mark the 'name' field as 'const' and add a comment to the header to
5483    help avoid future problems caused by bad hacks
5484
5485 * Merge some (modified) patches from Debian:
5486  - 03_blacklist-directories.patch
5487    - add some blacklisted mount directories
5488  - 60_wait-longer-for-threads-to-die.patch
5489    - sleep longer in a test case, if needed to avoid failing
5490
5491 * Units policy change: prefer use of SI units
5492  - deprecate g_format_size_for_display, add g_format_size(_full)
5493
5494 * GSettings: don't call g_error() when the schema is missing
5495
5496 * GVariant support for arrays of object paths:
5497  - new g_variant_{new,get,dup}_objv API
5498  - support for g_variant_{new,get} '^ao' and '^a&o' similar to '^as'
5499
5500 * GDBus:
5501  - use new improved array-of-objects support and pass 'ao' as char**
5502    instead of GVariant*
5503  - improve handling of 'h' type (Unix file descriptor index)
5504
5505 * GIO:
5506  - fix compilation without USE_STATFS and USE_STATVFS
5507
5508 * Documentation fixes
5509
5510 * Bugs fixed:
5511  622921 Migrate from dbus-glib to glib's GDBus
5512  648271 Add g_unicode_script_to_iso15924()
5513  654948 Stop using deprecated g_unicode_canonical_decomposition()
5514  654988 g_atomic_int_add should document behaviour change
5515  655025 #define G_UNICODE_SPACING_MARK G_UNICODE_COMBINING_MARK
5516  655076 normalization misses some Full_Composition_Exclusion=True. 
5517
5518 * Translations updated:
5519  Spanish
5520
5521 Overview of changes from GLib 2.29.10 to 2.29.12
5522 ================================================
5523
5524 * Add new API to do Unicode (de-)composition in atomic steps,
5525   for use in Harfbuzz.
5526
5527 * Bugs fixed:
5528  615895 (indirectly) support non-NULL-terminated regexes in GRegex
5529  617949 glib trunk fails to compile on Solaris w/ Studio 12...
5530  620423 Document the possibility to unset attributes
5531  627974 Floating reference headaches
5532  644687 Not finding cross-links in current doc set
5533  649246 g_output_stream_splice() cannot be used on 32-bit machines...
5534  653841 a helper script to build glib from git master on win32
5535  653935 g_slist_free_full/g_list_free_full iterates twice in the list
5536  654017 tests: fix glib_translations_work() in gsettings unit test
5537  654085 Don't needlessly use "echo -e" when creating .def files
5538  654195 Add g_unichar_compose() and g_unichar_decompose()
5539  654232 GCancellable eventfd problems
5540  654394 suspicious use of floating references in GDBusInterfaceSkeleton
5541  654536 GSettings: lift key name length restriction to 64
5542  654627 GParamSpec: intern property names
5543  654651 Better g_unicode_canonical_decomposition()
5544  654917 Make g_cclosure_marshal_generic the default signal handler
5545
5546 * Translation updates:
5547  Belarusian
5548  Finnish
5549  Korean
5550  Latvian
5551  Lithuanian
5552  Norwegian bokmål
5553  Turkish
5554
5555
5556 Overview of changes from GLib 2.29.8 to 2.29.10
5557 ===============================================
5558
5559 * New features:
5560  - g_desktop_app_info_get_nodisplay: a function that is required
5561    to port gnome-menus to GDesktopAppInfo
5562  - g_hash_Table_iter_replace: new function to replace a value
5563    while iterating over a hash table
5564  - g_utf8_substring: convenience API to extract substrings from
5565    UTF-8 strings
5566  - g_action_group_add_entries: convenience API for creating lots
5567    of actions quickly
5568  - Use eventfd instead of pipes for waking up main contexts and
5569    for cancellation when available
5570  - GMatchInfo is now a refcounted boxed type
5571
5572 * API changes in GAction:
5573  - the 'set_state' entry in the GActionInterface vtable has been
5574    renamed to 'change_state
5575  - g_action_set_state has been renamed to g_action_change_state
5576  - the 'state' property has been changed to read-only
5577  - GSimpleAction can no longer be subclassed
5578
5579 * Bug fixes
5580  647796 g_variant_new_variant is not marked as constructor
5581  652072 gmain: make use of signalfd()
5582  652168 Crosscompiling Fails if build<=2.24 and host >2.24
5583  652750 make dist fails
5584  652758 GDataInputStream: Clarify g_data_input_stream_read_line docs...
5585  652822 Add a g_hash_table_iter_replace
5586  652897 tiny docs clarification for g_utf8_to_ucs4_fast
5587  653140 gmain: use Linux eventfd() for main context wake up
5588  653429 drop AM_MAINTAINER_MODE or enable it by default
5589  653484 GAsyncCallbacks should default to allow-none
5590         Add missing fundamental types to the generic marshaller
5591
5592 * Translation updates
5593  Belarusian
5594  Galician
5595  Russian
5596
5597 Overview of changes from GLib 2.29.6 to 2.29.8
5598 ==============================================
5599
5600 * Bug fixes
5601  646608 export_symbols variable for gio dynamic library is wrong
5602  646635 Fix introspection of GLib
5603  647930 Documentation: GDataInputStream _read_upto() version
5604  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
5605  651920 Improve qsort_r detection
5606  651959 gbitlock: "asm goto" is not available in gcc < 4.5
5607  651998 gdbus-codegen: Use relative Python imports
5608  652000 Fix for gatomic.c on Windows/MSVC
5609  652002 Proposal to clean up gvaluetransform.c for MSVC
5610  652025 g_dbus_connection_register_object: error is not set...
5611  652081 Typos in a GBinding warning message
5612  652197 Improper handling of double values in GDBusMessage
5613         Fix a deadlock in gobject finalization
5614
5615 * Translation updates:
5616  Czech
5617  Galician
5618  German
5619  Hebrew
5620  Norwegian bokmål
5621  Spanish
5622  Uighur
5623
5624
5625 Overview of changes from GLib 2.29.4 to 2.29.6
5626 ==============================================
5627
5628 * Atomic operations have been rewritten from scratch to make use
5629   of gcc builtins where possible. As a side-effect of this, calls
5630   to g_atomic_ API with explicit casts may now be problematic; if
5631   that happens to you, try first to remove the casts. Another
5632   side-effect of the rewrite is that g_atomic_int_exchange_and_add
5633   has been deprecated in favor of g_atomic_int_add.
5634
5635 * A full set of atomic operations on pointers has been added,
5636   including bit locks in pointer-size locations.
5637
5638 * Access to quarks is now lockless
5639
5640 * GObject data scalability has been greatly improved
5641
5642 * g_data_time_format now supports alternative digits and padding
5643
5644 * Introspection improvements:
5645  - Add a boxed type for GVariantBuilder
5646  - Annotation fixes in GDBus, GVariant, g_base64_
5647
5648 * Bugs fixed:
5649  502560 g_rand_double_range returns 'inf'
5650  612729 g_mkdir_with_parents can fail if the directory already exists
5651  617491 g_once() implementation is inefficient
5652  619418 Add a performance test for UTF-8 decoding functions
5653  619435 Make g_utf8_to_ucs4_fast() yet faster
5654  626549 G_STATIC_ASSERT_EXPR
5655  631231 bitlock: Fix detection and usage of futexes with Bionic
5656  632294 g_queue_remove() should return a boolean
5657  640518 GMainLoop has quadratic complexity when all pollfd's...
5658  642026 Race condition in g_static_private_free
5659  646635 Fix introspection of GLib
5660  648678 g_date_time_format(): support %O flags for localized numbers
5661  649480 Use MSG_CMSG_CLOEXEC in recvmsg in gio/gsocket.c
5662  649506 GTestFunc et al lacking Since tag
5663  649657 Don't return gboolean for functions that throw
5664  649775 glib-gio-gdbuscodegen-Makefile.patch
5665  649915 gsettings accepts unquoted strings longer than two characters
5666  649973 gthread: build unix tests only on unix
5667  649988 gdbus-codegen: Drop dependency on argparse
5668  650078 forkbomb building glib/tests/protocol
5669  650211 Optimization in key file parsing
5670  650236 Application over DBus implements action state incorrectly
5671  650345 g_key_file_has_key_full: New function to fix g_key_file_has_key...
5672  650458 reduce overhead in g_object_set/get_data
5673  650459 hash table consistency while calling destroy notify funcs
5674  650688 enforce rules about hash table modification
5675  650823 expand the set of atomic ops
5676  650874 codegen chokes on docs
5677  650882 use stdout instead of stderr for informational messages
5678  650884 fix compilation with gcc2
5679  650885 implement glib credentials on OpenBSD (hackish)
5680  650935 G_GNUC_MAY_ALIAS and atomic ops
5681  651009 minor documentation fix
5682  651034 Regarding g_cond_wait after g_thread_pool_push in gthreadedresolver
5683  651133 race condition in GDBusConnection's emit_signal_instance_in_idle_cb
5684  651141 hashtable infinite loop
5685  651219 fix path to true(1) on OpenBSD
5686  651223 Fix some compile warnings on OpenBSD
5687  651327 Minor fixes for the gsocket API
5688  651467 Add pointer sized bitlocks
5689  651650 gdbus: Avoid busy wait loop
5690  651725 gmain: Cleanups and a new test case
5691  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
5692
5693 * Updated translations:
5694  Catalan (Valencian)
5695  Esperanto
5696  Hebrew
5697  Hungarian
5698  Russian
5699  Spanish
5700
5701
5702 Overview of changes from GLib 2.29.2 to 2.29.4
5703 ==============================================
5704
5705 * GDBus:
5706  - Includes several new types to support modeling D-Bus
5707    objects and interfaces more fully, and also introduces
5708    an 'object manager' pattern:
5709    GDBusInterface, GDBusObject, GDBusObjectManager
5710    These interfaces have client-side implementations:
5711    GDBusProxy, GDBusObjectProxy, GDBusObjectManagerClient
5712    And server-side implementations:
5713    GDBusInterfaceSkeleton, GDBusObjectSkeleton, GDBusObjectManagerServer
5714  - The new gdbus-codegen utility uses these new classes
5715    to generate C code and documentation from D-Bus interface
5716    descriptions in XML
5717
5718 * GTest:
5719  - There is now a g_test_fail() function to mark
5720    tests as failed
5721
5722 * GDesktopAppInfo
5723  - Now has a binding-friendly filename property
5724  - Other new API to more fully expose desktop file contents:
5725    g_desktop_app_info_get_categories(),
5726    g_desktop_app_info_get_generic_name()
5727
5728 * GHashTable:
5729  - Several optimizations to reduce space consumption of
5730    large hash tables, in particular tables that are used
5731    to store sets.
5732
5733 * Unix-specific APIs:
5734   GLib now installs a separate header, glib-unix.h, that is
5735   meant to collect Unix-specific APIs. For now, it contains
5736   g_unix_open_pipe(), g_unix_set_fd_non_blocking() for dealing
5737   with pipes and fds, as well as APIs to create mainloop
5738   sources which can trigger callbacks on certain Unix
5739   signals (SIGTERM, SIGHUP, SIGINT).
5740
5741 * Bugs fixed:
5742  631379 GDBus nonce-tcp test failing
5743  632631 GLib-CRITICAL **: g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed
5744  635694 gdbus aborting due to unauthorized socket in DBUS_SESSION_BUS_ADDRESS
5745  637561 Crash when using G_DBUS_SERVER_FLAGS_RUN_IN_THREAD
5746  642935 g_date_time_format() prints wrong value for %z and timezone -0800
5747  643134 g_dbus_message_copy
5748  644941 glib-unix: New Unix-specific API
5749  646013 g_hash_table_remove_all_nodes optimization
5750  646309 glib cannot be cross-compilled for mingw32
5751  646435 GTimeZone doesn't seem to be thread-safe
5752  646957 GIO chained calls don't work with a thread default context
5753  647594 README link to mailing list is broken
5754  647602 Cannot connect to remote message bus via TCP
5755  647746 The GSocketService documentation is incomplete.
5756  647826 API: gtester: Add g_test_fail()
5757  647903 GDesktopAppInfo: Add g_desktop_app_info_get_categories()
5758  648416 g_app_info_create_from_commandline ignores SUPPORTS_STARTUP_NOTIFICATION
5759  648423 Support G_DEBUG=trap-warnings
5760  648425 GDesktopAppInfo: Add "filename" property for bindings
5761  648966 Update g_unichar_iswide and g_unichar_iswide_cjk
5762
5763 * Updated translations
5764  Norwegian bokmål
5765  Spanish
5766  Turkish
5767  Uighur
5768
5769
5770 Overview of Changes from GLib 2.28.0 to 2.29.2
5771 ==============================================
5772
5773 * GApplication
5774  - The documentation has been enhanced and clarified
5775  - An opt-out for uniqueness has been added: G_APPLICATION_NON_UNIQUE
5776  - GApplication now syncs settings before g_application_run() returns
5777
5778 * GDBus
5779  - Interface lookups are now happening in constant time
5780  - Signature checking and handling of various unexpected
5781    situations has been improved
5782
5783 * GVariant
5784  - The format accepted by the GVariant parser has beend documented
5785  - GVariant accepts G_VARIANT_TYPE_VARDICT for a{sv}
5786
5787 * GDateTime:
5788  - The return value of g_datetime_compare() has been fixed to
5789    match strcmp() semantics
5790  - In order to handle problems with changing timezones, a GTimeZoneMonitor
5791    has been added to GIO, and g_time_zone_refresh_local() can be
5792    called to update the cached information about the local timezone
5793
5794 * GOption now uses /proc/self/cmdline to set the program name instead
5795   and only falls back to "<unknown>" if that is unavailable
5796
5797 * GSettings:
5798  - The schema compiler now warns about references to non-existing schemas
5799
5800 * Commandline utilities are now fully translated
5801
5802 * Signals can now indicate that collecting their arguments must
5803   always happen, even in the absence of connected signal handlers,
5804   using the G_SIGNAL_MUST_COLLECT flag.
5805
5806 * Bugs fixed:
5807  635099 Memory leak in gdbus introspection when parsing xml
5808  640489 $ and ^ do not match lines if G_REGEX_MULTILINE|G_R...
5809  642042 Overriding GDBus org.freedesktop.DBus.Properties im...
5810  642052 g_timeout_add(_seconds) cannot handle large intervals
5811  642490 notify_desktop_launch() "g_variant_new_bytestring:...
5812  613269 g_type_get_qdata() doesn't work as I expected on subtypes
5813  624943 G_VALUE_NOCOPY_CONTENTS is undocumented
5814  637738 object_interface_check_properties never actually executes
5815  638185 GIOCondition should be annotated as "flags"
5816  639478 GDBusServer's g_dbus_server_new_sync() function should just...
5817  641755 Add g_settings_get/set_uint() helpers
5818  641768 dconf gsettings backend silently drops writes if it can't...
5819  642797 g_app_info_get_default_for_type() broken for subtypes
5820  642825 Unnecessary assertion failure in g_option_context_parse()
5821  642944 NULL key lookup using g_hash_table_lookup_extended()
5822  643074 Incorrect documentation for g_socket_receive() and g_socket...
5823  643197 g_application_id_is_valid docs imply no valid ids
5824  643468 GApplication docs: Warn that handling "command-line" means...
5825  643478 GApplication::local_command_line vfunc documentation seems wrong
5826  643624 Can g_variant_unref() on an already free'd variant
5827  643649 g_application_run() should say that argc/argv can be NULL
5828  643780 shouldn't need to create an action group to use actions...
5829  643795 g_timeout_add_seconds fires with intervals 1 second longer...
5830  644309 Program name is not set when using GtkApplication
5831  644428 Crash in failure section of g_markup_collect_attributes()
5832  644465 undefined reference to `_usleep'
5833  644552 g_timeout_add_seconds(1, ...) may have a latency of up to 2...
5834  644607 Correct internal definition of C_()
5835  645789 annotations for g_file_*_contents
5836  646039 g_settings_list_children() returns child that cannot be opened
5837  646310 Accept range with only min or max
5838  646420 g_dbus_method_invocation_get_parameters() docs should say...
5839  646843 occasional abort on autologin
5840  646985 add G_APPLICATION_NON_UNIQUE flag
5841  647579 gsettings: Implement reset-recursively
5842  647600 gsettings description has typo
5843
5844 * Translation updates
5845  Afrikaans
5846  Bulgarian
5847  Bengali India
5848  British English
5849  Bulgarian
5850  Catalan
5851  Czech
5852  Danish
5853  French
5854  Galician
5855  German
5856  Greek
5857  Gujarati
5858  Hebrew
5859  Hungarian
5860  Italian
5861  Japanese
5862  Korean
5863  Lithuanian
5864  Polish
5865  Portuguese
5866  Romanian
5867  Serbian
5868  Simplified Chinese
5869  Spanish
5870  Swedish
5871  Traditional Chinese
5872  Uighur
5873  Vietnamese
5874
5875
5876 Overview of Changes from GLib 2.27.93 to 2.28.0
5877 ===============================================
5878
5879 * Bugs fixed:
5880 641363 GInitable documentation isn't clear about that finalize...
5881 641395 Add more data about the origin application to the "Lau...
5882 641411 gdesktopappinfo signals lost if it's the session bus...
5883 641477 glib-mkenums uses unportable #! line
5884 641572 Add @EXEEXT@ to pkgconfig binary name
5885 641688 glib installs GSettings.html and gsettings.html
5886
5887 * Translation updates:
5888  Galician
5889  Italian
5890  Korean
5891  Punjabi
5892
5893
5894 Overview of Changes from GLib 2.27.92 to 2.27.93
5895 ================================================
5896
5897 * Bugs fixed:
5898  637013 gio/gdbusmessage.c fails to compile on Solaris
5899  640192 Error creating a Gio.Settings object through py...
5900  640261 Minimum version for external pcre needs to be..
5901  640262 GActionGroup contains redundant TYPE macros
5902  640436 Make load_user_special_dirs() resistant to non...
5903  640695 g_key_file_load_from_file() mishandles a CR-LF...
5904  640724 can't compile gio due to format string issues
5905  640725 can't compile tests due to format string issue
5906  640807 improve GVariant behaviour with invalid pointers
5907  640823 wrong documentation for g_source_add_child_source
5908
5909 * Translation updates:
5910  Bulgarian
5911  Galician
5912  Hebrew
5913  Norwegian bokmål
5914  Spanish
5915  Traditional Chinese
5916
5917
5918 Overview of Changes from GLib 2.27.91 to 2.27.92
5919 ================================================
5920
5921 * Update to Unicode 6.0
5922
5923 * Update PCRE to 8.12
5924
5925 * Bugs fixed:
5926  637696 g_unix_connection_send_fd() doesn't work
5927  638872 null settings backend bug
5928  640042 GtkApplication's warning about not connecting...
5929
5930 * Translation updates:
5931  Arabic
5932  Basque
5933  Estonian
5934  Greek
5935
5936 Overview of Changes from GLib 2.27.90 to 2.27.91
5937 ================================================
5938
5939 * Bugs fixed:
5940  638838 gdesktopappinfo: Don't crash if we don't have a desktop filename
5941  638894 Splitting on \s* gives no result
5942  639064 Update gschema.dtd
5943  639084 Copy/paste error in GSettings::writable-changed signal
5944  639177 SIGSEGV for GApplications with G_APPLICATION_IS_SERVICE
5945
5946 * Translation updates:
5947  Estonian
5948  Galician
5949  Indonesian
5950
5951
5952 Overview of Changes from GLib 2.27.5 to 2.27.90
5953 ===============================================
5954
5955 * Test reports created by gtester-report can now
5956   include revision information
5957
5958 * The g_desktop_app_info_launch_* family of functions
5959   now emit a DBus signal when an application is launched.
5960   Additionally, there is a new variant
5961   g_desktop_app_info_launch_uris_as_manager(), which
5962   gives more control over the launched process.
5963
5964 * The memory and null GSettings backends are now available
5965   as public API
5966
5967 * g_get_locale_variants() is a new function that returns a
5968   list of variants of a locale identifier
5969
5970 * Bugs fixed:
5971  587898 I/O timeouts for GSocket
5972  606960 gio: Add extension point for informing parties...
5973  631980 Handle an optional <revision> node in the report...
5974  634569 Document that g_variant_builder_add_value consumes...
5975  635998 Make _g_compute_locale_variants public
5976  636806 Add g_{memory,null}_settings_backend_get_default
5977  637262 Need a binary DER version of ::accepted-cas
5978  637544 Skip fsync() on btrfs
5979  637720 void functions should not return a value.
5980  637738 object_interface_check_properties never actually...
5981  637759 GIOChannel: fix a crash in g_io_channel_read_chars()
5982  637852 Updates to glib.vsprops file for MSVC 2008 builds...
5983  637858 Updates to test/testglib.c...
5984  638349 parameter name of g_variant_new_* may conflict...
5985
5986 * Translation updates:
5987  Hebrew
5988  Norwegian bokmål
5989  Simplified Chinese
5990  Spanish
5991  Swedish
5992  Uyghur
5993  Vietnamese
5994
5995
5996 Overview of Changes from GLib 2.27.4 to 2.27.5
5997 ==============================================
5998
5999 * Network support:
6000  - Add g_tls_certificate_verify() to verify a certificate
6001  - Add GTlsConnection:use-system-certdb
6002  - Other TLS api additions
6003
6004 * GIO:
6005  - Add g_io_stream_splice_async()/_finish() to splice two iostreams
6006  - Add g_emblemed_icon_clear_emblems() and make GEmblemedIcon derivable
6007  - Remove GPeriodic; it did not receive the necessary review and
6008    integration work to declare it stable
6009
6010 * GSequence:
6011  - New methods g_sequence_lookup() and g_sequence_lookup_iter()
6012
6013 * Bugs fixed:
6014  617254 Missing g_sequence_lookup
6015  632544 g_dbus_connection_send_message can not send a locked message...
6016  633350 g_hostname_to_ascii() ignores non-ascii dots
6017  634583 Better error reporting for g_variant_parse()
6018  635007 gsetting enum rule don't work for out-of-srcdir builds
6019  635626 GDBus message idle can execute while flushes are pending
6020  636100 Can't read GSettings:backend property
6021  636305 Typo on g_queue_remove_all() function description
6022  636311 appinfo: tweak application positioning for content-types
6023  636351 g_simple_async_result_is_valid lacks a version tag
6024  636387 gdb autoload files shadow the "dir" builtin
6025  636673 g_simple_async_report_error_in_idle should allow object...
6026  637147 Add a "delay-apply" property to GSettings
6027  637171 emblemedicon: add g_emblemed_icon_clear_emblems()
6028  637237 gapplication: plug a memory leak
6029
6030 * Translation updates:
6031  Estonian
6032  Galician
6033  Hebrew
6034  Norwegian bokmål
6035  Simplified Chinese
6036  Spanish
6037  Traditional Chinese
6038  Vietnamese
6039
6040
6041 Overview of Changes from GLib 2.27.3 to 2.27.4
6042 ==============================================
6043
6044 * GIO
6045  - Mounts are treated as hidden if they have a path element
6046    that starts with a dot
6047  - GAppInfo gained API to differentiate between recommended
6048    and fallback mime handlers
6049  - g_cancellable_create_source: creates a GSource that triggers
6050    when the GCancellable is canceled
6051  - GPollableInput/OutputStream: Interfaces for pollable streams
6052  - TLS support has landed, with an extension point that is
6053    implemented in glib-networking
6054
6055 * GLib
6056  - Mainloop sources can now have 'child sources'
6057  - g_get_runtime_dir: New function to return the XDG_RUNTIME_DIR
6058
6059 * Bugs fixed:
6060  530786 GFileMonitor "changed" signal underdocumented
6061  588189 TLS support for GSocket*
6062  630357 g_object_new_valist uses uninitialized memory
6063  630559 typo in public string in gsocks: 'The SOCKSv5 require...
6064  632445 Documentation refers to removed GNOME 2.0 porting guide
6065  634239 Child GSources
6066  634241 Add pollable input/output streams
6067  634504 allow passing a NULL emblem to g_emblemed_icon_new()
6068  634613 unsufficient g_get_user_runtime_dir() documentation
6069  635640 schema should inherit gettext-domain from schemalist
6070  635768 Protect g_file_monitor_set_rate_limit() against negative...
6071  635882 Fix the wrong-category schema test
6072  635187 Wrong type of GVariant received in an action...
6073
6074 * Updated translations:
6075  Galician
6076  Italian
6077  Norwegian bokmål
6078  Uyghur
6079
6080
6081 Overview of Changes from GLib 2.27.2 to 2.27.3
6082 ==============================================
6083
6084 * The GTimeSpec type that was introduced in the 2.27.2 has been
6085   dropped again in favour of APIs that return microseconds as
6086   64-bit integer.
6087   Affected functions:
6088   g_source_get_time
6089   g_periodic_unblock
6090   g_get_monotonic_time
6091   g_get_real_time
6092   The similar GTimeVal struct is still around, but its use is
6093   discouraged.
6094
6095 * GTimer is now using monotonic time unconditionally
6096
6097 * There are some new functions to facilitate error reporting
6098   in async GIO APIs:
6099   g_simple_async_result_take_error
6100   g_simple_async_result_new_take_error
6101   g_simple_async_report_take_gerror_in_idle
6102
6103 * There is new convenience API to us GVariant dictionaries:
6104   g_variant_lookup
6105
6106 * It is now possible to delay sending match rules to the
6107   D-Bus daemon in GDBus:
6108   G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE
6109
6110 * Support has been added for XDG_RUNTIME_DIR:
6111   g_get_user_runtime_dir
6112
6113 * Various fixes for Win64/MSVC builds have been committed
6114
6115 * Bugs fixed:
6116  620263 Add g_clear_object, g_clear_pointer, g_clear_boxed
6117  633075 update Project Files and sources for MSVC 2008/C89
6118  633381 gsettings Makefile rules should handle empty list...
6119  633685 Use g_simple_async_result_{new_,}take_error
6120  633686 Add g_simple_async_report_take_gerror_in_idle
6121
6122 * Translation updates:
6123   Belarusian
6124   Galician
6125   Hebrew
6126   Punjabi
6127   Spanish
6128
6129
6130 Overview of Changes from GLib 2.27.1 to 2.27.2
6131 ==============================================
6132
6133 * GApplication
6134  - Export actions over DBus and support activating them from remote instances
6135  - Support environment passing
6136
6137 * GSettings
6138  - The gsettings utility has a list-recursively command
6139  - The gsettings utility has commandline completion for enum values
6140
6141 * GLib is now linked against librt and uses monotonic time for
6142   timeouts and GPeriod sources. GSource has a new g_source_get_time()
6143   which returns monotonic time, and g_source_get_current_time() has
6144   been deprecated
6145
6146 * Bugs fixed:
6147  158725 free linked list with data
6148  626320 GVariant: Avoid locking in g_variant_get_child_value() if possible
6149  629247 add gsimpleasyncresult methods to take over a GError
6150  629274 GNetworkService does not do fallback when there is no SRV record
6151  631264 gsettings-tool choice/range support
6152  631482 g_date_time_from_instant: 1000000000000000000
6153  632169 docs for manual use of gsettings-data-convert
6154  632571 Add equivalent to gconftool-2's -R option
6155  633115 GSettings m4 doesn't fail the build for broken schemas
6156  633206 Default g_application_local_command_line() doesn't set exit_status...
6157  633339 support more complex gapplication setups
6158  633356 Make timeout G_MAXINT mean "no timeout"
6159
6160 * Translation updates:
6161  Catalan (Valencian)
6162  Indonesian
6163  Japanese
6164
6165
6166 Overview of Changes from GLib 2.27.0 to 2.27.1
6167 ==============================================
6168
6169 * GDateTime now has full week number support.
6170   New API: g_date_time_get_week_numbering_year
6171
6172 * The GSettings schema compiler will now skip over
6173   broken .xml schema files instead of aborting altogether
6174
6175 * GSettings now works properly on bigendian systems
6176
6177 * GSettings has more complete support for ranges
6178   New API:
6179     g_settings_get_range
6180     g_settings_range_check
6181   The gsettings commandline tool supports ranges too.
6182
6183 * GApplication has been rewritten; see the API docs for details
6184   and examples. The action support is not complete yet.
6185
6186 * The GLib mainloop has gained 'dispatch to context' functionality,
6187   which can replace manually created idles in many cases.
6188   New API:
6189     g_main_context_invoke
6190     g_main_context_invoke_full
6191
6192 * The gio-desktop-app-info-lookup extension point has been
6193   removed from GIO. GIO now uses x-scheme-handler mimetypes when
6194   looking for default applications.
6195
6196 * On win32, make g_get_user_data_dir() return the CSIDL_LOCAL_APPDATA
6197   folder on Windows, and not CSIDL_PERSONAL. This matches what Qt does,
6198   and has been widely requested. Also make g_get_user_config_dir() return
6199   this and not the (roaming) CSIDL_APPDATA folder.
6200
6201 * A periodic event clock has been added in GIO: GPeriodic. Note that this
6202   API is still experimental and expected to undergo changes before it
6203   will be incorporated into a stable GLib release. Use at your own risk.
6204
6205 Bug fixes:
6206  613822 gobject signal connect/disconnect not thread safe
6207  618737 "dispatch to context" functionality
6208  620710 g_get_user_data_dir() uses CSIDL_PERSONAL and not CSIDL_APPDATA
6209  623400 acquire context before dispatching
6210  627126 gsettings schema files don't get installed on FreeBSD
6211  627171 g_socket_new_from_fd() doesn't set the right protocol
6212  628876 Wrong error description
6213  628937 gracefully handle broken schemas
6214  629274 GNetworkService doesn't fallback when there is no SRV record
6215  629289 g_error() used wrong, produces core dump
6216  629687 leaks class refcount in gsocketcontrolmessage
6217  629849 GLib-CRITICAL **: g_source_get_context: assertion `!SOURCE_...
6218  629945 GDBus deadlock in g_bus_get_sync()
6219  630000 g_date_time_difference
6220  630077 GDateTime week number support
6221  630185 Allow NULL strings in g_quark_try_string()
6222  630797 docs mention non-existent g_object_dispose()
6223  630968 gschema-compile problems on power g5
6224  631263 GSettings needs range/choice APIs
6225  631264 gsettings-tool choice/range support
6226  631379 GDBus nonce-tcp test failing
6227  631410 Port gapplookupgconf.c to using x-scheme-handler/
6228  632884 Possible deadlock in g_object_remove_toggle_ref()
6229
6230 Transation updates:
6231  Basque
6232  Brazilian Portuguese
6233  British English
6234  Bulgarian
6235  Czech
6236  Dutch
6237  Estonian
6238  French
6239  Galician
6240  German
6241  Greek
6242  Hebrew
6243  Hungarian
6244  Japanese
6245  Lithuanian
6246  Polish
6247  Portuguese
6248  Romanian
6249  Simplified Chinese
6250  Slovenian
6251  Spanish
6252
6253
6254 Overview of Changes from GLib 2.25.15 to GLib 2.27.0
6255 ====================================================
6256
6257 Build:
6258   - massive restructuring to reduce #include abuse
6259   - tweaks to silence some harmless compiler warnings
6260   - rename gschema-compile.c to glib-compile-schemas.c
6261   - Windows fixes
6262   - fix building with zlib < 1.2.4 on win32
6263
6264 GDateTime:
6265   - better msgctxt for translating month and weekday names
6266   - API is changed quite a lot, implementation is improved
6267   - GTimeZone is now exposed
6268
6269 GObject:
6270   - make ordering for overridden interface properties consistent
6271   - ->priv structures are limited to 64k but this was not documented,
6272     and exceeding this limit produced bad results.  Add docs and enforce
6273     the limit properly.
6274   - add g_object_class_install_properties() to install multiple
6275     properties in one go
6276   - improve debugging output for GValue containing G_TYPE_STRV
6277
6278 GIO:
6279   - fix priority sorting of GIO extensions
6280   - add GCredentials support on FreeBSD
6281   - fix support for IPv6 addresses in URI parsing functions
6282   - GSocketClient fixes for when g_socket_connect succeeds immediately
6283   - clarify string encoding for GFile constructors in docs
6284   - new functions g_data_input_stream_read_upto{,async,finish}
6285   - tweak confusing documentation for g_output_stream_write()
6286
6287 GDBus:
6288   - GDBusMessage can now be locked and copied (like in libdbus)
6289   - GDBusConnection filter function API has changed again
6290   - GDBusServer: ::new-connection now declares if the connection was claimed
6291   - add a partial workaround for GObject bug 627724.
6292   - very many memory leaks fixed
6293
6294 GVariant:
6295   - check for size == 0 in g_variant_get_bytestring to avoid a crash
6296     when attempting to get_bytestring() from an empty array
6297   - improve gobject-introspection annotations
6298
6299 GSettings:
6300   - add GSettings Windows registry backend
6301   - some internal tweaks to the backend API
6302   - remove g_settings_list_items
6303   - add g_settings_list_children and _list_keys to replace it
6304   - add schema compiler restrictions for dealing with lists
6305   - don't automatically emit value changed signals on writability
6306     changes
6307
6308 Other:
6309   - constify the 'parser' vtable param to g_markup_parse_context_push()
6310   - plug many memory leaks in test cases
6311
6312 Bugs closed:
6313   50076 Time API to go with date API
6314  584284 g_data_input_stream_read_until_async different from sync version
6315  624546 Modification of GDBusMessage in filter function
6316  626919 Let g_object_class_install_property() return the installed GParamSpec*
6317  628029 GDateTime missing get_week_of_year method
6318  628253 Interface properties not listed in a consistent order
6319  628331 Plug lots of mem leaks in gio test suite
6320  628345 Plug a mem leak
6321  628436 Plug a mem leak
6322  628505 Fix building with zlib < 1.2.4 on win32
6323  628839 [PATCH] datetime: Rename shadowing variables
6324  628904 [PATCH] Add credential support for FreeBSD and fix a socket issue
6325  628952 incorrect glib_major_version and other variables on cygwin.
6326  629192 g_strdup_value_contents(): dump GStrv more usefully
6327  629251 g_socket_client_async_connect_complete: assertion failed
6328  629259 Failed to connect to "::1"
6329  629328 g_markup_parse_context_push doesn't respect const structs
6330  629429 month "May" short and full form same with "GDateTime" msgctxt
6331  629689 GDBusConnection leaks its GCredentials
6332  629698 Segfault in g_variant_get_bytestring() 
6333
6334 Updated translations:
6335   Arabic
6336   Armenian
6337   Basque
6338   British English
6339   Czech
6340   Finnish
6341   Galician
6342   German
6343   Hungarian
6344   Indonesian
6345   Japanese
6346   Lithuanian
6347   Norwegian bokmål
6348   Polish
6349   Portuguese
6350   Punjabi
6351   Simplified Chinese
6352   Slovenian
6353   Spanish
6354   Swedish
6355   Swedish
6356   Traditional Chinese
6357
6358 Overview of Changes from GLib 2.25.14 to GLib 2.25.15
6359 =====================================================
6360
6361  * GIO
6362   - Memory leak fixes
6363   - The GZip(De}Compressor can now process header information
6364   - Support for network proxies has been added, with the GProxy
6365     interface and the gio-proxy-resolver extension point. GIO
6366     includes SOCKSv4 and SOCKSv5 implementations, and libproxy
6367     is also going to provide an implementation of this extension
6368     point.
6369   - There are GAction and GActionGroup interfaces now, which will
6370     be used in GApplication in the near future.
6371
6372  * GObject
6373   - There are now convenience macros for defining boxed and
6374     pointer types
6375
6376  * GDBus
6377   - Memory leak fixes
6378   - GDBusProxy for well-known names can now auto-restart
6379     the service if the name owner disapperas
6380   - Filter functions are now allowed to modify messages
6381
6382  * GLib
6383   - GDateTime is a replacement for GDate that supports time
6384     and timezone information.
6385
6386  * Bugs fixed:
6387   50076 Time API to go with date API
6388  449565 Add G_DEFINE_BOXED_TYPE()
6389  617691 Add GZIP header processing to GZlibCompressor/GZlibDecompressor
6390  622184 add g_memory_output_stream_steal_data
6391  624546 Modification of GDBusMessage in filter function
6392  627088 Build failure in gdbus-peer.c on FreeBSD
6393  627181 save a memdup
6394  627182 Plug a mem leak in the gdbus-connection test
6395  627187 Plug some gdbus mem leaks
6396  627188 gdbus-non-socket test occasionally fails
6397  627252 G_OPTION_FLAG_NO_ARG is only for callback options
6398  627392 gdbus commit 8a3a4596 breaks win32 compile
6399  627407 FTBFS on !linux UNIX platforms
6400  627604 String error: 'that' twice in a row
6401  627969 ABR in g_file_open_tmp
6402  628084 gdbus-peer fails with assertion
6403  628193 Miscellaneous string fixes
6404  628296 abort() in gsocketconnection.c
6405  628309 Plug a mem leak in GConverterOutputStream
6406  628317 GEmblemedIcon:equal implementation is buggy
6407  628323 Fix invalid reads
6408  628327 Plug a mem leak
6409  628328 Plug a mem leak
6410  628329 Don't leak the FD list
6411  628324 Invalid reads in gdbus-export test
6412
6413  * Updated translations:
6414   British English
6415   Danish
6416   Galician
6417   Hebrew
6418   Punjabi
6419   Serbian
6420   Spanish
6421   Traditional Chinese
6422
6423
6424 Overview of Changes from GLib 2.25.13 to GLib 2.25.14
6425 =====================================================
6426
6427 * GDBus
6428  - Make the closure variants of GDBus apis work
6429  - Make error unregistration work
6430  - Use async IO in the IO thread (626748)
6431
6432 * GIO
6433  - Make g_simple_async_result_is_valid work without source (626208)
6434  - GSocketClient: add a timeout property
6435  - Fix memory leaks in GSocketClient
6436  - Handle async vs. sync correctly in GSocketConnection stream (616458)
6437  - Declare stream base classes as abstract
6438  - Clarify semantics of g_output_stream_write() (627071)
6439
6440 * Other
6441  - Improve test coverage for GDBus, GRegex, GAsyncResult
6442  - Drop dead code in pcre, xdgmime
6443  - Fix a race condition in gtester (578295)
6444  - Avoid an extra allocation in GAsyncQueue (626704)
6445  - Add test case for non-socket GIOStream (626841)
6446  - More explicit GVariant docs (622770)
6447  - Imroved docs for GAsyncInitable and GSimpleAsyncResult (602417)
6448
6449 * Translation updates:
6450  - Galician
6451  - Norwegian bokmål
6452  - Punjabi
6453  - Simplified Chinese
6454  - Swedish
6455
6456
6457 Overview of Changes from GLib 2.25.12 to GLib 2.25.13
6458 =====================================================
6459
6460 +-------------------------------------------------------------------+
6461 |   WARNING: There have been no breaks in API or ABI.  Weird, eh?   |
6462 +-------------------------------------------------------------------+
6463
6464 The primary purpose of this release is to fix a serious problem with
6465 glib 2.25.12: glibconfig.h (as generated on a Fedora amd64 system) was
6466 being distributed in the tarball.  It was being used to build some parts
6467 of glib on other systems (eg: 32bit ones).  This was causing some very
6468 serious problems.
6469
6470 There have been many other improvements, however:
6471
6472  Build and testing:
6473   - vastly improved test coverage
6474   - old tests moved to the gtester framework
6475   - gtester Makefile modified so that the tests only run once
6476   - cleanup of how we handle includes while building glib
6477
6478  GVariant:
6479   - add a g_return_if_fail (utf8) to g_variant_new_string()
6480
6481  GDBus:
6482   - perform extra sanity checks when serialising messages
6483   - add API to query and set the byteorder of a GDBusMessage
6484   - improve debug output, add some extra options
6485   - if exiting due to the bus disconnecting us, print an error message
6486     explaining why
6487   - sort property names correctly
6488   - don't bother sending RemoveMatch when we will close the connection
6489     anyway
6490   - use effective uid/gid for credential passing
6491
6492  GSettings:
6493   - add G_SETTINGS_BIND_INVERT_BOOLEAN for inverting boolean bindings
6494     without mapping functions
6495   - mark all strings in the schema compiler for translation
6496
6497  Binding:
6498   - improve closure support for bindings
6499   - copy GSettings INVERT_BOOLEAN flag
6500
6501  Other:
6502   - fix another complicated GCancellable deadlock possibility
6503
6504 Bugs closed:
6505  599590 glib build doesn't look for correct pkg-config
6506  619026 avoid warning in gutils.h when using gcc with -Wconversion
6507  624739 Please fix POTFILES.in
6508  625472 Valgrind claims uninitialized bytes used
6509  625500 g_date_set_time_val documentation doesn't mention local time
6510  625628 GDBusProxy: wrong property name sorting
6511  625753 Incorrect flags used in g_dbus_connection_call_sync()
6512  625827 Expand documentation about error quark naming
6513  625988 builddir != srcdir issues
6514  626107 glibconfig.h is being disted
6515
6516 Updated translations:
6517  French
6518  Galician
6519  Hebrew
6520  Norwegian bokmål
6521  Spanish
6522
6523
6524 Overview of Changes from GLib 2.25.11 to GLib 2.25.12
6525 =====================================================
6526
6527 +-------------------------------------------------------------------+
6528 | WARNING: There have been many API changes in GDBus -- sending     |
6529 | messages, subscribing to signals, closing connections and         |
6530 | registering subtrees are affected.  The ABI for GSettingsBackend  |
6531 | has also been changed.  For both reasons, a new dconf release is  |
6532 | required (and will be along soon).                                |
6533 +-------------------------------------------------------------------+
6534
6535 Build:
6536   - cleanup automake setup
6537   - rename configure.in to configure.ac
6538   - various docs fixups
6539   - move glibconfig.h to glib/
6540   - disable dtrace support on Mac OS (which has incompatible 'dtrace')
6541
6542 GSettings:
6543   - add support for vendor override files (to change the default values
6544     in a schema)
6545   - change GSettingsBackend vtable
6546   - add g_settings_reset()
6547   - support binding to G_TYPE_STRV properties
6548
6549 GDBus:
6550   - many bug fixes, including a serialisation fix
6551   - stop handling incoming connections as soon as stop() is called
6552   - proper support for file descriptor passing
6553   - new flags parameter for sending messages
6554   - new flags parameter for subscribing to signals
6555   - always reset the message serial when sending a message unless
6556     G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL is given
6557   - constness fixes for introspection structures
6558   - clean ups to subtree registration API
6559
6560 Other:
6561   - fix divide by zero bug in g_malloc_n functions
6562   - GIO: don't blindly assume that SOCK_CLOEXEC is supported
6563   - make GObject property notify freezes threadsafe
6564   - GIO: clean up credentials passing
6565   - GApplication: make default-quit not apply if register=FALSE
6566   - GIO: add annotations for gobject-introspection
6567
6568 Bugs closed:
6569  166020 use GAtomic for refcounting
6570  617483 Credentials passing
6571  622005 [GApplication] no way to modify the "default-quit" property
6572  623293 vendor override files
6573  623810 Message serialization bug
6574  623815 Don't check sender for GDBusProxy objects where name is not set
6575  624473 GDBusSubtreeIntrospectFunc return type
6576  624483 GDBusSubtreeEnumerateFunc clarification
6577  624484 GDBusSubtreeDispatchFunc clarification
6578  624754 gdbusaddress.c missing sys/wait.h
6579  624968 div by zero in g_malloc_n family
6580  624991 GSettings mapping for G_TYPE_STRV 
6581  625383 Add missing GI annotations
6582
6583 Updated Translations:
6584  Armenian
6585  Galician
6586  German
6587  Hebrew
6588  Kazakh
6589  Romanian
6590  Simplified Chinese
6591  Spanish
6592
6593 Overview of Changes from GLib 2.25.10 to GLib 2.25.11
6594 =====================================================
6595
6596 +-------------------------------------------------------------------+
6597 | WARNING: There have been minor API changes in GDBus and GVariant. |
6598 | These API changes will not affect many users, but they do require |
6599 | a new version of GTK+ to be installed.                            |
6600 +-------------------------------------------------------------------+
6601
6602 Build:
6603   - add a --disable-Bsymbolic configure flag to disable linking with
6604     -Bsymbolic-functions
6605   - this release sees the complete removal of the old 'g*alias' hacks
6606   - honour the NOCONFIGURE environment variable from autogen.sh
6607   - use proper feature test macros for isnan
6608   - use pkg-config to check for zlib
6609   - add ACLOCAL_AMFLAGS to Makefile.am
6610
6611 GDBus:
6612   - hide Class and instance structures for all GDBus types except
6613     GDBusProxy.  This breaks API by preventing subclassing, but probably
6614     nobody was doing that.
6615   - add new GDBusConnection call to support flushing all pending
6616     outgoing messages
6617   - change the register_object API to add a reference to the
6618     GDBusInterfaceInfo object so the caller need not keep it alive
6619     themselves
6620   - don't rewrite the serial number when sending messages that already
6621     have a serial number
6622   - better error checking for DBUS_SESSION_BUS_ADDRESS environment
6623     variable
6624   - switch to g_parse_debug_string for G_DBUS_DEBUG and add a lot of new
6625     flags
6626   - add support for temporarily freezing a freshly created
6627     GDBusConnection.  Do this until after the ::new-connection signal
6628     has finished running on GDBus services.
6629   - never require non-closed connections (the user is incapable of doing
6630     this due to the obvious race)
6631   - remove weird/misleading redundant check on NameOwnerChanged signal
6632   - emit GDBusProxy::g-properties-changed on NameOwnerChanged
6633
6634 GVariant:
6635   - the 'g_variant_{new,get}_byte_array' APIs have been removed
6636   - g_variant_{new,get,dup}_bytestring has been added, with different
6637     arguments and different behaviour
6638   - g_variant_{new,get,dup}_bytestring_array has been added, doing
6639     essentially the same thing as the 'strv' functions, but with byte
6640     strings instead of utf8 strings
6641   - G_VARIANT_TYPE_BYTESTRING ('ay'), BYTESTRING_ARRAY ('aay') and
6642     STRING_ARRAY ('as') constants have been added
6643   - the undocumented behaviour that g_variant_get_strv() deserialised
6644     arrays of object paths or signature strings has been dropped
6645   - additional varargs support for converting bytestrings or bytestring
6646     arrays with ^ay ^aay ^&ay and ^a&ay
6647   - improved gobject-introspection annotation
6648   - fix a problem with GBuffer calling g_slice_free for the wrong type
6649   - fix leaks in the type inferencing code of the parser
6650
6651 GSettings:
6652   - improved documentation
6653   - updated schema XML DTD, now xincluded into the docs
6654   - added support for schemas that extend other schemas (using the
6655     'extends=' attribute).  Values of keys in the base schema can be
6656     overridden using <override>.
6657   - added theoretical support for lists (using the 'list-of=' attribute)
6658   - lots of new tests
6659   - add support for flags (implemented similarly to enums)
6660   - add support for generating .enums.xml files to gsettings.m4:
6661       gsettings_ENUM_NAMESPACE = org.example.myapp
6662       gsettings_ENUM_FILES = ../path/to/*.h
6663     will generate org.example.myapp.enums.xml with mappings for all
6664     enums and flags in the specified .h files.
6665   - warn with g_message() if the 'memory' backend is used by default
6666     (ie: because no other GSettings backends are installed)
6667   - fix get_property() for GSettings::schema
6668   - command line tool: fix a bug that prevented non-basic values from
6669     being set due to a premature free
6670   - command line tool: bash completion support
6671   - chain up in _finalize
6672   - add a new g_settings_get_mapped API to read settings that require
6673     post-processing
6674   - retry with the translated or schema default value if the
6675     GSettingsBindGetMapping function fails
6676   - schema compiler: never fail due to empty schema directories (but
6677     warn)
6678   - peek rather than ref/unref the GEnumClass in the mapping function
6679   - schema compiler: compile *.enums.xml before *.gschemas.xml to ensure
6680     that we have all the enums that the schemas may reference
6681   - schema compiler: improve accuracy of line numbers in error reports
6682   - fix crashes in the keyfile backend caused by invalid group names in
6683     the keyfile
6684
6685 Other:
6686   - always intern GBinding prop names
6687   - base64: remove asserts preventing conversion of empty strings
6688   - document NULL special-cases for GValueArray
6689   - GNode docs improvements
6690   - improve detection of 'system internal' mounts
6691   - fix leaks in the inotify GFileMonitor implementation
6692   - annotate all custom GIO GSources to improve debugging (e.g. using
6693     SystemTap)
6694
6695 Tests:
6696   - Turn on glibc malloc checking features for make check
6697   - improvements for GSettings tests, plus new tests
6698   - improved tests for GKeyfile
6699   - new tests for GDir, GSList, GSList, GAppLaunchContext,
6700     CharsetConverter, GIcon, ...
6701   - move some tests to GTester (tree tests, uri tests)
6702   - generally, really an awful lot of new tests
6703   - don't try to allocate 2gigs of memory anymore for the array test
6704
6705  552363 g_value_array_{insert,prepend,append}'s special cases for NULL
6706  561248 Improve return value description from g_node_prev/next_sibling()
6707  570036 Add ACLOCAL_AMFLAGS to Makefile.am
6708  576833 g_sprintf add a reference to g_strdup_printf
6709  576854 g_strconcat() documentation should provide a hint about bad l10n
6710  582227 reference: add other URI functions to 'URI Functions' section
6711  599223 should provide g_spawn_* variants that take a GAppLaunchContext
6712  610784 array test failing
6713  613057 Leak in inotify GFileMonitor implementation
6714  620536 Annotate all custom GIO GSource using g_source_set_name
6715  620913 More control with G_DBUS_DEBUG
6716  622124 implement flags
6717  622127 GSettings extended key validation
6718  622128 retry with default value for failed mapping
6719  622294 More annotations for GVariant
6720  622565 glib-compile-schemas fails when no schemas
6721  622600 Fix missing prototype warning
6722  622813 gsettings mapping & enum buglet
6723  623142 Ensure ::new-connection runs before processing D-Bus messages
6724  623143 Never require non-closed connections
6725  623319 use g_parse_debug_string for dbus debug flags
6726  623401 process enums first
6727  623402 schema compiler reports wrong line numbers
6728  623407 g_keyfile_settings_backend_new crashes with the key "/"
6729  623473 zlib should be checked with pkg-config
6730  623537 GDBusProxy has weird checking on NameOwnerChanged
6731  623538 GDBusProxy::g-properties-changed emission for corner cases
6732  623692 directory with file at multiple MLS levels may display empty
6733  623720 gschema.dtd does not contain enum definitions
6734  623770 quoting of expand_macro in gdesktopappinfo.c
6735  623772 gdesktopappinfo.c, function child_setup
6736  623780 g_unix_is_mount_path_system_internal
6737  623954 g_settings_finalize
6738  623955 Dubious return values
6739
6740 Updated translations:
6741  Galician
6742  Hebrew
6743  Norwegian bokmål
6744  Spanish
6745
6746 Overview of Changes from GLib 2.25.9 to GLib 2.25.10
6747 ====================================================
6748
6749 +----------------------------------------------------------------+
6750 | WARNING: There have been API changes in GDBus. Users of these  |
6751 | APIs will need to be adapted.  In particular, a new release of |
6752 | dconf is required to go along with this one.  There has also   |
6753 | been a change in the GSettings backend API used for keyfiles.  |
6754 +----------------------------------------------------------------+
6755
6756 * GDBus:
6757  - add direction parameter to filter functions (API change)
6758  - allow calling other interfaces with a GDBusProxy
6759  - padding added to class struct fields (ABI change)
6760  - fixes for closures-based functions
6761
6762 * GVariant:
6763  - new is_floating() call
6764  - add g_value_take_variant() call (required for marshallers)
6765
6766 * GSettings:
6767  - support for binding GParamSpecEnum properties
6768  - ifelse-style condition support for GLIB_GSETTINGS m4 macro
6769  - remove gsettings-schema-convert tool (now in GConf)
6770  - allow introspection of all installed schemas
6771  - allow introspection of the keys in a schema
6772  - rewrite keyfile backend (API change)
6773
6774 * GNIO:
6775  - don't implicitly close GSocket until it is destroyed
6776  - windows fixups
6777
6778 * Other:
6779  - allow GChecksum to take (NULL, 0) for data/length
6780  - GRelation and GCompletion are now deprecated
6781  - introduce G_PARAM_DEPRECATED and G_ENABLE_DIAGNOSTIC
6782  - add working directory to GApplication platform data
6783  - lots of documentation cleanups
6784  - PCRE updated to 8.02
6785
6786 * Build:
6787  - the IA__g_* style symbol aliasing has been disabled and replaced with
6788    the -Bsymbolic-functions linker flag on platforms that support it.
6789    Please be on the watch for portability issues and report them to us.
6790  - many test cases have been moved to the GTester framework
6791  - lcov support has been added for tests
6792  - many windows fixes
6793
6794 * Bugs fixed:
6795  501057  lcov coverage suite and GLib integration
6796  551271  deprecate GRelation
6797  601686  Implement diagnostic mode
6798  603309  GSocketOutputStream broken on Windows (?)
6799  616718  GLIB_GSETTINGS macro can't be used conditionally
6800  616855  GSocketConnection: don't close the socket if it's still reffed
6801  618866  g_ptr_array_remove_index_fast memory leak
6802  619878  keyfile backend calls keys_changed with invalid argument
6803  619879  keyfile backend doesn't make use of expected_type
6804  621092  Add with_closures() variants for bindings
6805  621172  Cross compiling fails
6806  621838  Actually add cwd to platform data
6807  621945  Filter outgoing messages in GDBusConnection
6808  621947  add g_value_take_variant
6809  622038  GSettings: "It is a programmer error" documentation is unclear
6810  622154  [patch] update documentation for g_application_new
6811  622281  binding: Add SYNC_CREATE to the flags
6812  622480  Improve documentation for g_strcmp0()
6813  622554  g_error called if schema not installed
6814  622601  Return interned strings from g_settings_list_keys
6815
6816 * Translation updates:
6817  - Galician
6818
6819 Overview of Changes from GLib 2.25.8 to GLib 2.25.9
6820 ===================================================
6821
6822 +----------------------------------------------------------------+
6823 | WARNING: There have been API changes in GDBus, GSettings and   |
6824 | GApplication. Users of these APIs will need to be adapted. In  |
6825 | particular, a new release of GTK+ is required to go along with |
6826 | this one.                                                      |
6827 +----------------------------------------------------------------+
6828
6829 * GDBus
6830  - Use Gio's default async implementation
6831  - Fix proxy construction for objects with no properties
6832  - Fix error handling in synchronous initialization
6833  - Do not dispatch calls to unregistered objects
6834  - Add _with_closures alternative functions
6835  - Allow constructing GDBusProxy with well-known names
6836  - Remove GType parameters from GDBusProxy constructors
6837  - Nuke g_bus_watch_proxy API
6838  - Add --xml to gdbus-tool to print raw introspected XML
6839
6840 * GSettings
6841  - schema file format change: store (default, options) in gvdb
6842  - Add g_settings_sync()
6843  - Add support for enums and ranges
6844  - 'context' support has been replaced by direct use of
6845    GSettingsBackend
6846
6847 * GApplication
6848  - Switch to using variants for timestamps
6849  - Use GInitable
6850
6851 * GObject
6852  - Introduce g_object_notify_by_pspec
6853  - Add GBinding
6854  - The GVariant gtype G_TYPE_VARIANT was changed from boxed
6855    to fundamental. We believe there were no existing users
6856    of the boxed type, so this should not cause any applications
6857    to break.
6858
6859 * Test framework
6860  - Add package and version to the test report XML
6861  - Use optparse to parse gtester-report commandline
6862  - Add subunit support to gtester-report
6863  - Prevent division by zero if no tests
6864
6865 * Bugs fixed:
6866  621782 Crash using gbinding
6867  619945 GConverterOutputStream triggers assertion and corrupts data
6868  621319 more leaked GVariants in GSettings
6869  621168 GKeyFile memory leak on Windows platform
6870  621002 Switch to using variants for timestamps, split out signals
6871  620953 tiny docs addition
6872  618904 Lies in gunixmounts documentation
6873  621702 Correctly initialize GError
6874  611778 minor cleanup of gtester-report
6875  621213 GDBusProxy and well-known names
6876  621034 Rewrite apps test to ensure children are killed
6877  620954 gapplication gvariant simplifications
6878  611869 add subunit out feature to gtester-report
6879  621119 GDBusProxy and objects with no properties
6880  620990 Use Gio's default async implementation again
6881  620952 g_application_register_with_data is an ugly API
6882  621252 GSettings leaks context
6883  618715 fork() in GSettings test cases is problematic 618715
6884  621905 Assume a ref when doing async work
6885  621266 GSettings "context" clarification
6886
6887 * Translation updates:
6888  Chinese
6889
6890
6891 Overview of Changes from GLib 2.25.7 to GLib 2.25.8
6892 ===================================================
6893
6894 * Initial support for dtrace and systemtap profiling:
6895  - mainloop sources can be named
6896  - probes for memory allocation with g_malloc and gslice
6897  - gquark name tracking
6898  - type creation
6899  - object life-cyle (creation, finalization, ref, unref)
6900  - signal creation and emission
6901
6902 * GVariant
6903  - has been fixed to work with the FreeBSD malloc
6904  - added introspection annotations
6905  - new function: g_variant_builder_add_parsed
6906
6907 * GSettings:
6908  - g_settings_set/get_strv functions have lost their length parameter
6909  - g_settings_set_strv accepts NULL
6910  - added introspection annotiations
6911
6912 * GPermission: an abstract interface for representing permissions,
6913   with a minimal implementation named GSimplePermission
6914
6915 * GApplication: a basic application support class, with a D-Bus based
6916   implementation
6917
6918 * Bugs fixed:
6919  619585 glib-compile-schemas asserts on FreeBSD
6920  620384 Annotate GVariant and GSettings _strv() functions
6921  606044 Add support for dtrace/systemtap static markers
6922  620350 add g_variant_builder_add_parsed() API
6923  620349 utf8ify GVariant printer
6924  620767 Typo in GSettings documentation: "INTLTOOL_NOMERGE_RULE"
6925  620312 Fix g_settings_[gs]et_strv() API
6926  620519 GPermission
6927  620582 GPermission needs a simple implementation
6928  620496 GSettings schema compiler should reject invalid paths
6929  620173 missing single header inclusion guards
6930  620265 g_assertion_message_error should take const GError *
6931
6932 * Translation updates:
6933  Esperanto
6934  Galician
6935  Hebrew
6936  Indonesian
6937  Norwegian bokmål
6938  Slovenian
6939  Spanish
6940
6941
6942 Overview of Changes from GLib 2.25.6 to GLib 2.25.7
6943 ===================================================
6944
6945 * NOTE: API/ABI breaks since 2.25.6 release:
6946   - g_dbus_connection_sync{,_sync} takes a new 'reply_type' argument
6947   - GSettingsBackendClass 'list' virtual function changed
6948
6949   GSettings backends and things using GDBus may need to be rebuilt.
6950
6951 * GDBus: many build-related fixes
6952
6953 * GDBus (service): return a DBus error when receiving a method call for
6954   an unknown interface.
6955
6956 * GSettings: fix 'make install' bug in gsettings.m4 for generated schema
6957   files
6958
6959 * GSettings: avoid non-portable use of LC_MESSAGES
6960
6961 * better approach to handling man pages
6962
6963
6964 * Bugs fixed:
6965  619527 please improve docs on g_file_make_symlink
6966  619391 send-with-reply should have expected result signature
6967  618616 Use stack-allocated GVariantBuilders
6968  617004 Build with "--disable-nls" fails under MinGW/Win32
6969  619142 Build fixes (GDBus)
6970
6971 * Updated translations:
6972  Estonian
6973  Galician
6974  Norwegian bokmål
6975
6976 Overview of Changes from GLib 2.25.5 to GLib 2.25.6
6977 ===================================================
6978
6979 * GDBus: introspection improvements
6980 * GDBus: build fixes
6981
6982 * GSettings: GSettingsBackend ABI changed               **** NOTE ****
6983 * GSettings: --uninstall option for schema compiler
6984 * GSettings: new m4 macro with more power
6985 * GSettings: thread support
6986
6987 * rework of file notification on Solaris
6988 * fixes for gold linker
6989
6990 * Bugs fixed:
6991  619038 increase gsettings.m4 power
6992  619031 method-calls-in-thread test failing
6993  618839 Typo at translation message
6994  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
6995  618730 gunixcredentialsmessage.c doesn't compile on GNU/kfreebsd
6996  616314 Make GSettings (partially) threadsafe
6997
6998 * Updated Translations:
6999  Indonesian
7000  Galician
7001  Spanish
7002
7003 Overview of Changes from GLib 2.25.4 to GLib 2.25.5
7004 ===================================================
7005
7006 * GDBus: Fix serialization of empty arrays
7007
7008 * GDBus: Plug various memory leaks
7009
7010 * GSettings: Fix problems with GSETTINGS_CHECK_RULE
7011
7012 * Bugs fixed:
7013  616731 GSETTINGS_CHECK_RULE doesn't work in non-srcdir builds
7014  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
7015  618615 mem leaks in parse_value_from_blob
7016  618622 Plug some mem leaks in gdbus
7017  618650 Plug a mem leak in gdbusauth
7018  618663 Plug mem leaks in gdbus tests & examples
7019
7020 * Updated translations:
7021  Spanish
7022
7023
7024 Overview of Changes from GLib 2.25.3 to GLib 2.25.4
7025 ===================================================
7026
7027 * GDBus D-Bus support has been merged. This provides an API
7028   to replace dbus-glib
7029
7030 * GVariant no requires strings to be UTF-8. You can use byte
7031   arrays for non-UTF-8 strings.
7032
7033 * GSettings allows to bind string properties to byte arrays
7034
7035 * The schema compiler supports range restrictions
7036
7037 * Bugs fixed:
7038  618051 socket-server|client.c fail to compile under AIX...
7039  616102 GSettings ignores <choice> and <range>
7040  616720 Chunked quark allocation
7041  616877 Several issues with g_socket_receive_message
7042  616892 gio: Add a boxed type for GFileAttributeMatcher
7043  616967 Add g_regex_get_compile_flags() and g_regex_get_match_flags()
7044  617767 g_settings_[gs]et_strv() 'length' argument has missing docs...
7045  617914 gtester-report: cope with binaries with no test cases
7046  617937 output_stream_close vs output_stream_close_async semantics
7047  615494 Connction timeouts produce partially invalid error messages
7048  617823 glib-compile-schemas problems with an out of source build
7049  617947 glib-mkenums: add @valuenum@ support
7050
7051 * Translation updates:
7052  Galicaian
7053  Norwegian bokmål
7054  Shavian
7055  Spanish
7056
7057
7058 Overview of Changes from GLib 2.25.2 to GLib 2.25.3
7059 ===================================================
7060
7061 * New macro: G_GNUC_DEPRECATED_FOR, a variant of G_GNUC_DEPRECATED
7062   that lets you add replacement information (requires gcc 4.5)
7063
7064 * Rename AM_GSETTINGS autoconf macro to GLIB_GSETTINGS
7065
7066 * Rename gschema-compile utility to glib-compile-schemas
7067
7068 * Add support for timeouts in GSocket
7069
7070 * Bugs fixed:
7071  589989 Compilation error on Solaris 9
7072  616648 Change AM_GSETTINGS macro to GLIB_GSETTINGS
7073  587898 I/O timeouts for GSocket
7074  614541 Add G_TYPE_ERROR boxed type for GError
7075
7076
7077 Overview of Changes from GLib 2.25.0 to GLib 2.25.2
7078 ===================================================
7079
7080 * Include a 'gsettings' utility, for commandline access to GSettings
7081
7082 * Install a AM_GSETTINGS autoconf macro similar to AM_GCONF
7083
7084 * GSettings can bind the writability of a key explicitly
7085
7086 * There is now a predefined boxed type for GError
7087
7088 * Bugs fixed:
7089  615379 g_new macros crash if sizeof(struct_type) == 0
7090  616312 Add m4 rule equivalent to GCONF_SCHEMAS_INSTALL
7091  616295 mapping bug for uint64
7092  616216 glib compile from remote directory fails
7093  615960 Fix size passed to connect() for abstract sockets
7094  616432 Crash in gschema-compile
7095  616331 gsettings-schema-convert uses imaginary types
7096  616309 gsettings-schema-convert should output gettext-domain
7097  616384 Add mention of GConfBridge in conversion docs
7098  616311 gschema-compile outputs in current directory
7099  616276 simplify gschema-compile test setup
7100  616156 keys with unnecessary empty options arrays
7101  616405 gsettings missing g_return_if_fail's
7102  616245 Use G_DEFINE_INTERFACE macro
7103  614541 Add G_TYPE_ERROR boxed type for GError
7104
7105 * Updated translations:
7106  Catalan (Valencian)
7107  Galician
7108  Kannada
7109  Spanish
7110
7111
7112 Overview of Changes from GLib 2.24.0 to GLib 2.25.0
7113 ===================================================
7114
7115 * The GSettings framework has been merged. This provides the API to
7116   replace GConf. DConf will provide a backend implementation for it.
7117   GConf will also provide a backend implementation to ease the
7118   transition. We provide utilities to assist with schema conversion
7119   and data migration, as well as a porting guide.
7120
7121 * Translation updates:
7122  Bengali
7123  Catalan
7124  Danish
7125  Gujarati
7126  Marathi
7127  Thai
7128  Traditional Chinese
7129
7130
7131 Overview of Changes from GLib 2.23.6 to GLib 2.24.0
7132 ===================================================
7133
7134 * Bug fixes:
7135  613601 buglet in dup_close_on_exec_fd
7136  584284 g_data_input_stream_read_until_async behaves confusingly
7137  613748 Write errors in middle of copy cause hang
7138  613923 splice_stream_with_progress: wrong error handling
7139  613667 Typo in GObject documentation
7140  613618 gvariant format string docs unclear
7141
7142 * Translation updates:
7143  Basque
7144  Ukrainian
7145  Vietnamese
7146
7147
7148 Overview of Changes from GLib 2.23.5 to GLib 2.23.6
7149 ===================================================
7150
7151 * Class private data:
7152   - support for private data associated with a GTypeClass
7153
7154 * GVariant merge is now complete:
7155   - loading functions and parser merged
7156
7157 * Windows improvements:
7158   - socket fixes
7159   - various build improvements
7160   - removal of GCC/C99isms in favour of portable code
7161   - drop unmaintained Visual Studio 8 support
7162
7163 * Minor API addition:
7164   - g_desktop_app_info_get_filename()
7165
7166 * Bugs fixed:
7167  521707 Class private data
7168  612502 build fails on glib/tests/gvariant.c
7169  612832 [GDesktopAppInfo] New function g_desktop_app_info_get_filename
7170  612702 [PATCH] Fix GSocket-related crash on Windows
7171  612736 Improve the documentation about single include
7172  610858 gvariant test fails sometimes
7173  612327 uninitialized variable
7174
7175 * New translations:
7176  Afrikaans
7177  LowGerman
7178
7179 * Updated translations:
7180  Czech
7181  Finnish
7182  Galician
7183  Greek
7184  Punjabi
7185  Romanian
7186  Serbian
7187
7188
7189 Overview of Changes from GLib 2.23.4 to GLib 2.23.5
7190 ===================================================
7191
7192 * New API addition: g_malloc_n() and friends used to implement an
7193   overflow-safe family of g_new() macros.
7194
7195 * GVariant:
7196  - GVariantBuilder and GVariantIter are now merged.
7197  - The variable arguments API is now merged.
7198  - The parser will be in a future release.
7199
7200 * GIO:
7201  - Remove GUtf8InputStream (which never appeared in a stable release)
7202    for now since it doesn't satisfy the needs of its main intended use
7203    case.  We hope to reimplement this feature in a better form in a
7204    future release.
7205
7206 * Bugs fixed:
7207  609531 missing licence headers
7208  612107 Missing G_FILE_ATTRIBUTE_TRASH_ORIG_PATH
7209  611897 g_io_modules_scan_all_in_directory leaks
7210  608196 Overflow-safe g_new family
7211  611696 gio uses GetAddrInfo which requires special handing on windows 2k
7212  605667 Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid
7213  610860 test_g_file_open_readwrite fails if $HOME is unwritable
7214  552912 glib-2.18 /live-g-file/test_copy_move failed when run as root
7215  609813 Renaming a file discards file notes
7216
7217 * Updated translations:
7218  Basque
7219  Brazilian Portuguese
7220  British English
7221  Bulgarian
7222  Catalan
7223  Danish
7224  Estonian
7225  French
7226  German
7227  Hungarian
7228  Italian
7229  Lithuanian
7230  Norwegian bokmål
7231  Portuguese
7232  Russian
7233  Slovenian
7234  Spanish
7235  Swedish
7236  Traditional Chinese
7237
7238
7239 Overview of Changes from GLib 2.23.3 to GLib 2.23.4
7240 ===================================================
7241
7242 * GVariant: The core of GVariant has been merged now, with some
7243  API still to follow.
7244
7245 * GIO:
7246  - There is a new interface GFileDescriptorBased for file descriptor
7247    based IO. GLocalFile{Input,Output}Stream implement it
7248  - Use splice(2) to transfer data between file descriptors without
7249    extraneous copies
7250  - Add a way to request move events from file monitors
7251
7252 * Bugs fixed:
7253  609143 *result_uncertain is never assigned in g_content_type_guess
7254  604086 Use splice(2) when doing local file copies
7255  547890 No move events for GFileMonitorEvent?
7256  568760 nautilus freezes due to a bug in garray.c:322
7257  609962 Add info about the use of G_DEFINE_INTERFACE
7258  609564 g_base64_encode_close docs should mention outbuf size...
7259  610484 g_variant_equal bug
7260  610131 libasyncns does not compile on Solaris 8
7261  609530 missing single header include guards
7262
7263 * Updated translations:
7264  Czech
7265  Estonian
7266  Galician
7267  German
7268  Korean
7269  Polish
7270  Slovenian
7271  Spanish
7272  Traditional Chinese
7273
7274
7275 Overview of Changes from GLib 2.23.2 to GLib 2.23.3
7276 ===================================================
7277
7278 * GLib now has a facility for locks that consume only one bit of
7279   storage inside an integer: g_bit_lock()
7280
7281 * GVariant: The serializer has been merged, with more API to follow
7282
7283 * Bugs fixed
7284  548967 1 bit mutex lock
7285  604967 2.22.3 libasyncns build fails on HP-UX 11.11
7286  608602 G_VALUE_COLLECT_INIT variables shadow those in G_VALUE_COLLECT
7287  608743 Crash in g_hostname_to_ascii visiting certain website in epiphany
7288  599197 array ref and unref functions crash on NULL array.
7289  608159 mem leak in g_io_modules_scan_all_in_directory
7290
7291 * Translation updates
7292  Brazilian Portuguese
7293  Czech
7294  French
7295  Norwegian bokmål
7296  Slovenian
7297  Spanish
7298  Thai
7299
7300
7301 Overview of Changes from GLib 2.23.1 to GLib 2.23.2
7302 ===================================================
7303
7304 * We are now using gcc builtins for atomic operations when available
7305
7306 * g_assert() grew the ability to store assertions in core dumps
7307
7308 * GIO supports lazy loading of GIO modules, and there is a new
7309   gio-querymodule utility that goes along with this.
7310   Packagers will need to adapt to this.
7311
7312 * Threading changes:
7313  - The requirements for g_thread_init() have been relaxed slightly,
7314    it can be called multiple times, and does not have to be the first
7315    call.
7316  - GObject now links to GThread and threads are enabled automatically
7317    when g_type_init() is called.
7318  - Thread-safety issues with boxed types in GObject have been fixed.
7319
7320 * GObject:
7321  - Another bunch of performance work has landed
7322
7323 * GVariant:
7324  - GVariantType has been merged, with the rest of the GVariant
7325    API to follow.
7326
7327 * Bugs fixed:
7328  568760 nautilus freezes due to a bug in garray.c:322
7329  602417 Document lifecycles of GSimpleAsyncResult and friends
7330  604824 crash in Epiphany: Selecting my Slashdot bo...
7331  448888 don't init g_slice for always-malloc
7332  531902 Use GCC atomic buildins for g_atomic*
7333  554887 boxed type registration is not thread safe
7334  586150 unresolved symbols when building glib 2.21.2 on OS X Tiger
7335  589176 row gvalue transform array exponentially
7336  594872 Support storing assertion messages into core dump
7337  602240 Upgrade libasyncns to 0.8
7338  603590 Speed up G_VALUE_COLLECT
7339  604457 gutf8inputstream.c: increasing unknown size pointer
7340  605686 GCharsetConverter doesn't flush
7341  605733 g_memory_output_stream_new violates GObject standards
7342  605883 g_object_new() processes varargs even when there are none
7343  605977 invalid utf-8 conversion in g_local_file_get_parse_name(...
7344  606775 Enable threads by default in gobject
7345
7346 * Translation updates:
7347  Asturian
7348  Basque
7349  Bengali
7350  Bulgarian
7351  Estonian
7352  Norwegian bokmål
7353  Spanish
7354  Thai
7355  Ukrainian
7356
7357
7358 Overview of Changes from GLib 2.23.0 to GLib 2.23.1
7359 ===================================================
7360
7361 * GObject performance work has landed:
7362  - Construction of simple objects is much faster
7363  - Interface lookup is lock-free and constant-time now
7364  - Reduced locking overhead when dealing with types
7365
7366 * GType now has a G_DEFINE_INTERFACE convenience macro
7367
7368 * GIO gained GUtf8InputStream, an input stream that
7369   performs utf-8 validation
7370
7371 * GLib now has byte-swap macros for gsize and gssize
7372
7373 * Bugs fixed:
7374 557151 Determining the newly_constructed boolean in gobject.c...
7375 557100 Performance improvements for GObjectClasses that don't...
7376 501166 Warning message says IA__g_type_init instead of g_type_init
7377 585375 Performance and Contention problems with g_type_class_ref...
7378 587892 Race in GType when instantiating the same class for the...
7379 603270 Input Stream validating utf8
7380 603476 gioenums.h:62: error: comma at end of enumerator list
7381 603540 g_time_val_from_iso8601 uses uninitialised variable
7382 603982 Stack overflow when reading file async with filter
7383 604645 G_DEFINE_INTERFACE_* documentation is not generated
7384 604875 Use of sa_len conflicts with system header
7385 320482 provide G_DEFINE_TYPE like macros for interfaces
7386
7387 * Updated translations:
7388  Estonian
7389  Hebrew
7390  Norwegian bokmål
7391  Vietnamese
7392  Welsh
7393
7394
7395 Overview of Changes from GLib 2.22.x to GLib 2.23.0
7396 ===================================================
7397
7398 * GIO:
7399  - GConverter: a generic interface for stateful conversions of data,
7400    suitable for charset conversion, compression, decompression, regexp
7401    replacement. Concrete implementations are GCharsetConverter,
7402    GZlibCompressor and GZlibDecompressor. GConverterInputStream,
7403    GConverterOutputStream are stream implementations that convert data
7404    while loading or saving it.
7405  - GMounts can now have a 'default location': a path that reflects
7406    the main entry point for the user (e.g. the home directory).
7407  - As a consequence of the compression support, GIO depends on zlib now.
7408
7409 * GObject:
7410  - G_IMPLEMENT_INTERFACE_DYNAMIC: a convenience macro for adding
7411    interfaces to dynamic types.
7412
7413 * GModule:
7414  - The -pthread flag has been added to all gmodule .pc files, because
7415    it is not generally permissible to load modules that are linked
7416    against libpthread if the program has not been compiled with threading
7417    support.
7418
7419 * Bugs fixed:
7420  601637 GUnixFDMessage should contain a GUnixFDList
7421  585566 GSocketListener API issues
7422  572252 Bug in g_file_test() function.
7423  600550 g_app_info_create_from_commandline doesn't treat arguments properly
7424  541236 not detecting exact content type
7425  350200 [PATCH] GTypeModule derived class unref does not unload plugin
7426  589631 Please enclose literal values with double quotes
7427  577711 cross compile check for g++ broken
7428  600620 Support X-GNOME-FullName in GAppInfo
7429  598899 GWin32DirectoryMonitor is broken
7430  593809 Nautilus does not restore the position of the icons on the desktop...
7431  563627 g_get_prgname() threadsafety
7432  600141 Add -pthread to gmodule pkg-config
7433  593856 file and directory monitors don't work when glib is compiled...
7434  324930 Nautilus should disallow copying of symlink to FAT drive early
7435  587300 Deadlock when calling g_cancellable_disconnect in a...
7436  595138 GFile not robust with invalid input
7437  591216 Warning building resolver.o
7438  590016 Does not compile under MinGW32 + Wine
7439  591214 Warnings building gcancellable.o
7440  561998 Have specific entry points (paths) for mounts...
7441  508157 Add G_IMPLEMENT_INTERFACE_DYNAMIC
7442  535159 g_file_has_parent
7443
7444 * Updated translations:
7445  Brazilian Portuguese
7446  Catalan
7447  Estonian
7448  Galician
7449  Norwegian bokmål
7450  Shavian
7451  Slovenian
7452  Spanish
7453  Swedish
7454
7455
7456 Overview of Changes from GLib 2.22.1 to GLib 2.22.2
7457 ===================================================
7458
7459 * GIO:
7460  - Support case-sensitive globs in the shared mime database,
7461    including support for the newer cache format that allows these.
7462    Case-sensitive globs have been introduced in shared-mime-info
7463    version 0.70
7464
7465 * GObject:
7466  - Speed up creation of simple objects
7467
7468 * Bugs fixed:
7469  597194 Typo in _G_TYPE_CVH macro
7470
7471 * Updated translations:
7472  Russian
7473
7474
7475 Overview of Changes from GLib 2.22.0 to GLib 2.22.1
7476 ===================================================
7477
7478 * Bugs fixed:
7479  596064 Test file marked for translation
7480  595972 possibly invalid search in mime_info_cache_dir_add_...
7481  596561 C99 style of declaration of variable in gmessages.c
7482  596314 g_utf16_to_utf8 returns an invalid UTF8 string
7483  596748 g_async_result_get_source_object returns a new ref
7484  593809 Nautilus does not restore the position of the icons...
7485  593775 uses inotify_init1 unconditionally
7486
7487 * Updated translations:
7488  Bengali
7489  Hebrew
7490
7491
7492 Overview of Changes from GLib 2.21.6 to GLib 2.22.0
7493 ===================================================
7494
7495 * Add gdb python macros to make gobject debugging more pleasant
7496
7497 * Bugs fixed:
7498  579050 Allow making selected critical and warning messages non-fatal
7499  594759 g_socket_send_message fails due to invalid sendmsg params
7500  593941 GNetworkAddress skipping addresses when enumerating
7501  594597 Fix build with srcdir != builddir
7502  595619 Include gdb pretty printers
7503
7504 * Changes that might affect bindings:
7505  - The error parameter of g_simple_async_result_set_from_error has been
7506    made const.
7507
7508 * Updated translations:
7509  Assamese
7510  Bengali India
7511  British English
7512  Bulgarian
7513  Catalan
7514  Czech
7515  Danish
7516  Finnish
7517  Galician
7518  Greek
7519  Gujarati
7520  Hindi
7521  Japanese
7522  Kannada
7523  Malayalam
7524  Marathi
7525  Norwegian bokmål
7526  Oriya
7527  Polish
7528  Punjabi
7529  Romanian
7530  Serbian
7531  Simplified Chinese
7532  Slovenian
7533  Spanish
7534  Tamil
7535  Telugu
7536  Thai
7537  Traditional Chinese
7538  Ukrainian
7539  Vietnamese
7540
7541
7542 Overview of Changes from GLib 2.21.5 to GLib 2.21.6
7543 ===================================================
7544
7545 * Minor API additions:
7546   g_mkstemp_full is a variant of g_mkstemp that allows to specify flags
7547   and permissions
7548
7549 * Bugs fixed:
7550  593232 g_rand_new: read no more than requested from /dev/urandom
7551  591995 use saved errno
7552  589491 g_time_val_from_iso8601 doesn't handle some cases
7553  593406 Permissions set to 777 after copying via Nautilus
7554  594034 Add g_mkstemp_full()
7555
7556 * Updated translations:
7557  Assamese
7558  Basque
7559  Brazilian Portuguese
7560  Czech
7561  Estonian
7562  French
7563  German
7564  Hungarian
7565  Italian
7566  Kannada
7567  Malayalam
7568  Marathi
7569  Norwegian bokmål
7570  Oriya
7571  Portuguese
7572  Swedish
7573  Tamil
7574  Turkish
7575
7576
7577 Overview of Changes from GLib 2.21.4 to GLib 2.21.5
7578 ===================================================
7579
7580 * A performance problem with trashing of many files has been fixed
7581
7582 * GResolver now invalidates the libc resolv.conf cache as needed
7583
7584 * Minor api additions:
7585  - g_cancellable_make_pollfd returns a boolean now. And there is a
7586    new function g_cancellable_release_fd that can be used to released
7587    the resources used by a GCancellable.
7588
7589 * Bugs fixed:
7590  589988 Compilation error on Solaris 9 (missing stdint.h)
7591  588901 gtcpconnection.c won't compile
7592  584246 GResolver needs to call res_init() when network state changes
7593  591714 Figure out failure handling for g_cancellable_make_pollfd()
7594  591532 redundent '/' returned from g_file_resolve_relative_path
7595  591378 Use MSG_NOSIGNAL in GSocket if it's available
7596  589649 API documentation migration for Base64 Encoding
7597  591840 configure fails with autoconf 2.64
7598
7599 * Updated translations:
7600  Basque
7601  Brazilian Portuguese
7602  Bulgarian
7603  Danish
7604  Estonian
7605  Finnish
7606  Galician
7607  Gujarati
7608  Hndi
7609  Irish
7610  Japanese
7611  Korean
7612  Norwegian bokmål
7613  Polish
7614  Portuguese
7615  Punjabi
7616  Spanish
7617  Swedish
7618  Telugu
7619  Traditional Chinese
7620  Thai
7621
7622
7623 Overview of Changes from GLib 2.21.3 to GLib 2.21.4
7624 ===================================================
7625
7626 * GTree is now refcounted
7627
7628 * Bugs fixed:
7629  587938 Undocumented limitation for g_str_equal
7630  587773 refcounts for GTree
7631
7632 * Updated translations:
7633  French
7634  Hebrew
7635  Norwegian bokmål
7636  Spanish
7637  Swedish
7638  Traditional Chinese
7639  Ukrainian
7640
7641
7642 Overview of Changes from GLib 2.21.2 to GLib 2.21.3
7643 ===================================================
7644
7645 * GMappedFile is refcounted now
7646
7647 * Mainloop: It is now possible to set per-thread default contexts,
7648   with g_main_context_push_thread_default.
7649
7650 * glib-mkenums supports a @basename@ substitution, in addition
7651   to @filename@.
7652
7653 * GIO:
7654  - Vfs implementations can support storing of per-file metadata.
7655  - GCancellable can now be subclassed.
7656  - Unmount and eject methods now optionally allow interaction, via
7657    variants that take a GMountOperation object.
7658
7659 * Bugs fixed:
7660  556706 Inconsistent help arguments -h, -?
7661  579449 FileChoosers no longer work if an idle handler is active
7662  579933 mainloop FD_CLOEXEC has a race condition
7663  579984 alternate GMainContext support
7664  585937 gio/gsocket.c (glib 2.21.2) does not compile (Windows/mingw)
7665  586675 Runtime library location
7666  586797 Add GCancellables to GSocket ops
7667  586868 g_filename_complete_get_completions doesn't always return...
7668  587415 g_resolver_lookup_by_name_finish returns a freed list
7669  587434 regression tests fail, at least on x86_64
7670  586928 Avoid g++ warning in g_error()
7671
7672 * Updated translations:
7673  Estonian
7674  Hebrew
7675
7676
7677 Overview of Changes from GLib 2.21.1 to GLib 2.21.2
7678 ===================================================
7679
7680 * GIO:
7681   - g_socket_speaks_ipv4 is a new function to check if a socket can
7682     speak IPv4.
7683   - g_socket_listener_add_address gained a new effective_address out
7684     parameter.
7685   - GIO now returns special icons for XDG user directories, by the
7686     name folder-music, folder-documents, etc.
7687   - GIO gained support for starting/stopping of drives, which can be used
7688     in connection with external hard disk enclosures, disk arrays, iSCSI
7689     devices, etc. See g_file_start/stop_mountable.
7690
7691 * GLib:
7692  - g_reload_user_special_dirs_cache is a new function to force GLib to
7693    reload the XDG user directory mapping from disk.
7694
7695 * Bug fixes:
7696  584574 glib compile failure on Mac OS X with gunixresolver.c and...
7697  585566 GSocketListener API issues
7698  584255 Incorrect freeing of thread pool in GThreadedSocketService
7699  585088 g_string_chunk_insert_len stops at nul bytes
7700  585360 Monitor fontconfig configuration files using gio causes m...
7701  580103 Terminal starts on Display :0.0 when started on :0.1 in D...
7702  580301 network: a few issues on old darwin
7703  583398 SRV weight sorting is incorrect
7704  584176 build fixes on FreeBSD
7705  585189 g_cancellable_reset() must be called in same thread as g_...
7706  585280 compilation dies on gio/gsocket.c, needs sys/uio.h to con...
7707  585281 gio/gunixfdmessage.c needs sys/types.h for platforms that...
7708  585478 don't leak the inotify fd
7709  585575 g_socket_listener_add_inet_port() doesn't do the right thing
7710  585599 g_socket_listener_add_socket() consumes the socket
7711  585676 GEmblem doesn't reference its 'icon' if that is set as a ...
7712  585717 "bytes" nautilus translation to french is not shown in th...
7713  541276 XDG directories should have their own icons
7714  585726 Grammatical error in GList documentation
7715  585520 Wrong warning option in documentation
7716  585673 GNOME Goal: Remove deprecated glib symbols
7717  585591 Starting/stopping drives
7718
7719 * Updated translations:
7720  Bengali India
7721  Norwegian bokmål
7722
7723
7724 Overview of Changes from GLib 2.21.0 to GLib 2.21.1
7725 ===================================================
7726
7727 * GIO:
7728  - Support for network IO has been added, including a low-level
7729    socket API and a high-level API for network connections and
7730    services.
7731  - Support for read-write access with GIOStream and its subclasses.
7732  - GMount gained a pre-unmount signal.
7733
7734 * Bug fixes:
7735  576104Implement GMount::pre-unmount
7736  578769 implement GWinHttpFileInputStream::close_fn
7737  582856 gsocket.c doesn't compile on Solaris
7738  569375 g[u]intptr undocumented
7739  573246 [FIX] g_desktop_app_info_dup() can access NULL pointer
7740  575013 g_cancellable_push_current() does not allow NULL
7741  577884 live-g-file.c:461: error: format ‘%d’ expects type ...
7742  578499 g_output_stream_splice and stream closing with gnio strea...
7743  579558 Application employing gvfs crashes with only libgvfscommo...
7744  583001 SIGPIPE (grr!)
7745  583061 Please add convenience function to connect to machines by...
7746  583198 typo in error message
7747  583206 use g_set_error_literal where appropriate
7748  583229 void function g_async_initable_init_async returns value
7749  583324 locking problem in g_main_context_iterate()
7750  583408 void function g_socket_control_message_serialize returns ...
7751  578786 wrong and confusing error message
7752  583205 g_inet_address_to_bytes has no length outparam
7753  583196 mem leak in keyfile test
7754  583663 GSocketType enum ends with a comma
7755  569024 Make g_error_new_valist public
7756  569376 missing G_G[U]INTPTR_FORMAT
7757  580347 off-by-1 bug in GWinHttpFile
7758
7759 * Updated translations:
7760  Oriya
7761  Spanish
7762  Valencian-Catalan
7763
7764
7765 Overview of Changes from GLib 2.20.x to GLib 2.21.0
7766 ===================================================
7767
7768 * GIO:
7769  - New helper functions g_cancellable_connect/disconnect to avoid
7770    race conditions when connecting to the "cancelled" signal on
7771    GCancellable.
7772  - New types and methods for dealing with IPv4 and IPv6 addresses (and
7773    UNIX domain socket addresses under UNIX). This does not include code
7774    for actual socket I/O.
7775  - GResolver provides asynchronous and cancellable APIs for resolving
7776    hostnames, reverse lookup of IP addresses and resolving SRV records.
7777
7778 * Glib now provides hash and comparison functions for int64 and double
7779   types, suitable for use with GHashTable.
7780
7781 * GArray, GPtrArray and GByteArray can be ref counted now, and have
7782   boxed types.
7783
7784 * Bugs fixed:
7785  572844 Helper for GCancellable::cancelled connect/disconnect
7786  578363 goption docs should be improved
7787  548466 async/cancellable DNS resolver
7788  579830 param spec strings should use P_()
7789  579862 requesting xattr::foo ends up calling getxattr(..., user...
7790  580453 Hash and equal functions for gint64 and gdouble
7791  580450 Reference counting and boxed types for arrays
7792  580194 gresolver doesn't build on Solaris
7793  580301 network: a few issues on old darwin
7794  580299 network: include sys/types.h before sys/socket.h to insur...
7795  572508 gmarkup speedup
7796  580546 g_strtoull() referenced in documentation...
7797  580656 g_key_file_set_string_list erroneously asserts list != NULL
7798  579272 leaks in g_simple_async_result_set_op_res_gpointer
7799
7800
7801 * Updated translations:
7802  Catalan (ca)
7803  Pashto (ps)
7804  Spanish (es)
7805
7806
7807 Overview of Changes from GLib 2.20.0 to GLib 2.20.1
7808 ===================================================
7809
7810 * Bug fixes:
7811  575555 Use fsync() when replacing files to avoid data loss on
7812  575708 runaway inotify madness
7813  575270 GVolumeMonitor::mount-pre-unmount not being emitted
7814  577128 glib make check Failed to execute child process...
7815  573673 Always show "backup" directories
7816  578369 g_time_val_from_iso8601() parses timezones incorrectly
7817  578002 Fix a small typo in GFile docs
7818  578017 G_DEFINE_TYPE_EXTENDED docs
7819
7820 * Updated translations:
7821  Arabic
7822  Assamese
7823  Basque
7824  Bularian
7825  Brazilian Portuguese
7826  British English
7827  Catalan
7828  Danish
7829  French
7830  Galician
7831  German
7832  Greek
7833  Hungarian
7834  Italian
7835  Japanese
7836  Kannada
7837  Lithuanian
7838  Malayalam
7839  Norwegian bokmål
7840  Oriya
7841  Polish
7842  Punjabi
7843  Russian
7844  Simplified Chinese
7845  Slovenian
7846  Spanish
7847  Swedish
7848  Tamil
7849
7850
7851 Overview of Changes from GLib 2.19.9 to GLib 2.20.0
7852 ===================================================
7853
7854 * Base64 support: Avoid integer overflows. CVE-2008-4316
7855
7856 * Bugs fixed:
7857  574019 GChecksum: document and guarantee hex characters in lower case
7858  573454 Unable copy/move files to directories symlinked to gvfs share
7859  561172 gnome-open fails on local URIs with anchors
7860  573970 crash in gunixvolumemonitor:update_mounts when unmounting
7861  573843 g_get_current_dir returns non-absolute path
7862
7863 * Updated translations:
7864  Assamese (as)
7865  Bengali (bn_IN)
7866  Czech (cs)
7867  Hindi (hi)
7868  Italian (it)
7869  Japanese (ja)
7870  Lithuanian (lt)
7871  Malayalam (ml)
7872  Marathi (mr)
7873  Oriya (or)
7874  Polish (pl)
7875  Romanian (ro)
7876  Telugu (te)
7877
7878
7879 Overview of Changes from GLib 2.19.8 to GLib 2.19.9
7880 ===================================================
7881
7882 * GMarkup:
7883  - Considerable speedup
7884
7885 * GIO
7886  - Add G_FILE_CREATE_REPLACE_DESTINATION flag to allow replacing
7887    the destination of a copying operation as if it did not exit before.
7888  - Be more careful when classifying files as desktop files
7889  - Support desktop file key X-GIO-NoFuse which disables the use
7890    of fuse pathnames for %u and %U arguments
7891
7892 * Bugs fixed:
7893  572672 glib/gthread.c: argument is different type
7894  572464 Doc for g_file_get_contents
7895  572151 “it's” and “its” confused in docs and comments
7896  570501 g_win32_get_system_data_dirs uses invalid conversion...
7897  167569 g_string_append_printf crashes on win32 when used...
7898  572508 gmarkup speedup
7899  560564 Replacing a symlink with its linked file truncates... 
7900  549298 impossible to copy files with p (pipe) flag
7901  543183 Clarify docs for g_file_has_prefix
7902  540461 g_memory_output_stream_get_data_size() doesn't behave...
7903  573462 GEmblemedIcon leak
7904  573421 Clarify message format in GMountOperation
7905  573658 Deadlock in giomodule.c
7906  556706 Inconsistent help arguments -h, -?
7907  573527 Wrong shell to run config.status in Makefile.in.in
7908  573128 A couple of typos in GObject documentation
7909
7910 * Updated translations:
7911  Catalan (ca)
7912  British English (en_GB)
7913  Spanish (es)
7914  Basque (eu)
7915  Finnish (fi)
7916  French (fr)
7917  Gujarati (gu)
7918  Hebrew (he)
7919  Hungarian (hu)
7920  Korean (ko)
7921  Maithili (mai)
7922  Norwegian bokmål (nb)
7923  Dutch (nl)
7924  Portugese (pt)
7925  Swedish (sv)
7926  Thai (th)
7927  Traditional Chinese (zh_HK)
7928  Traditional Chinese (zh_TW)
7929
7930
7931 Overview of Changes from GLib 2.19.7 to GLib 2.19.8
7932 ===================================================
7933
7934 * GIO: Fix missing exports of new API
7935
7936 * Fix strict aliasing warnings and violations to make Glib work
7937   with gcc 4.4
7938
7939
7940 Overview of Changes from GLib 2.19.6 to GLib 2.19.7
7941 ===================================================
7942
7943 * GIO
7944  - GFile gained an attribute for the actual file size in bytes
7945  - GMountOperation gained an "aborted' signal that allows to abort
7946    a mount operation from the backend side
7947
7948 * Bugs fixed:
7949  523742 Use noinst for non-installable libraries
7950  566747 URIs opened with firefox %u load as local files
7951  541225 Can't compile gio on AIX duplicate case value in gioerror.c
7952  571598 GAsyncResult with NULL gobject
7953  505042 add file attribute for actually used file size in bytes
7954
7955 * Updates translations:
7956  Basque (eu)
7957  Gujarati (gu)
7958  Italian (it)
7959  Japanese (ja)
7960  Norwegian bokmål (nb)
7961  Dutch (nl)
7962  Portugese (pt)
7963  Thai (th)
7964  Vietnamese (vi)
7965
7966
7967 Overview of Changes from GLib 2.19.5 to GLib 2.19.6
7968 ===================================================
7969
7970 * New format macro to print goffset data: G_OFFSET_FORMAT
7971
7972 * GIO: 
7973  - Add a GFilter{Input,Output}Stream::close-base-stream properties which
7974    determine whether the base stream will be closed when the filter stream
7975    is finalized.
7976  - g_data_input_stream_read_line and ..._read_until have asynchronous
7977    variants now.
7978
7979 * Bugs fixed:
7980  568294 A wrong reference in the description of g_bookmark_file_...
7981  563141 RFE: define G_OFFSET_FORMAT
7982  569105 g_time_val_to_iso8601() assumes time_t==long
7983  568394 dropping the last reference to a stream filter closes...
7984  568741 g_buffered_input_stream_fill_async doesn't work
7985  568723 g_buffered_input_stream_fill_async doesn't take count == -1
7986  568575 _async functions for GDataInputStream
7987
7988 * Updated translations:
7989  Bulgarian (bg)
7990  Finnish (fi)
7991  Hungarian (hu)
7992  Oriya (or)
7993  Swedish (sv)
7994  Traditional Chinese (zh_HK)
7995  Traditional Chinese (zy_TW)
7996
7997
7998 Overview of Changes from GLib 2.19.4 to GLib 2.19.5
7999 ===================================================
8000
8001 * Update included PCRE to 7.8
8002
8003 * g_base64_decode_inplace: New function to do base64 decoding in place
8004
8005 * Bugs fixed:
8006  567138 get_package_directory_from_module() does not free ...
8007  566569 gregex docs clarification
8008  566573 g_match_info_fetch_pos docs
8009  564728 Add function to decode base64 encoded data in place
8010  567838 G_STRUCT_OFFSETOF fails to compile under icc 9.1
8011  567977 textdomain() macro should not return NULL ...
8012  512779 --disable-regex breaks compilation
8013  566770 error code 0 for Too many open files is useless
8014  565484 g_content_type_guess passes non-UTF8 text to XDG ...
8015
8016 * Updated translations:
8017  Catalan (ca)
8018  Spanish (es)
8019  Italian (it)
8020  Swedish (sv)
8021
8022  
8023 Overview of Changes from GLib 2.19.3 to GLib 2.19.4
8024 ===================================================
8025
8026 * GIO:
8027   - Use O_NOATIME when sniffing mimetypes
8028   - Add a convenience method to check if a GSimpleAsyncResult
8029     is valid
8030
8031 * Bugs fixed:
8032  560676 function access for g_threads_supported
8033  565905 There is no g_context_group_set_translation_domain
8034  564210 SUN Studio 12 has supported visibility attribute
8035  565136 GObject's "notify" signal parameters are wrong in gtk-doc
8036  565831 error in interface creation sample
8037  566348 g_file_open_tmp uses the wrong g_mkstemp on win32
8038  566064 Add NOATIME flag to query_info_flags
8039  566170 g_async_result_verify_source_object
8040
8041 * Updated translations:
8042  Spanish (es)
8043  Norwegian bokmål (nb)
8044  Brazilian Portugese (pt_BR)
8045  Simplified Chinese (zh_CN)
8046
8047
8048 Overview of Changes from GLib 2.19.1 to GLib 2.19.3
8049 ===================================================
8050
8051 * Bugs fixed:
8052  508021 Add support for the CRIS and CRISv32 architectures
8053  526320 should not list mounts that the user doesn't have permission to use
8054  558458 Cannot build gio tests on Solaris using SUN cc
8055  555465 GUnix{Input,Output}Stream lacks fd/close_fd_at_close property
8056  558298 Hide ecryptfs mounts
8057  515777 incorrect date&time on copy
8058  562452 Ensure we return G_IO_ERROR_CANCELLED if cancelling
8059         g_simple_async_result_run_in_thread
8060  473150 g_type_module_use inconsistently increases the use
8061         counter in case of error
8062  563150 G_GU?INT*_MODIFIER/FORMAT docs
8063  563156 Document printing and scanning gunichar values
8064
8065 * Updated translations:
8066  Hebrew (he)
8067  Italian (it)
8068  
8069
8070 Overview of Changes from GLib 2.19.0 to GLib 2.19.1
8071 ===================================================
8072
8073 * GIO: 
8074   - g_icon_to_string, g_icon_new_for_string: GIcon serialization support
8075   - G_FILE_ATTRIBUTE_PREVIEW_ICON: new file attribute for preview images
8076   - g_app_info_get_commandline: new function to get the full commandline
8077   - g_mount_shadow, g_mount_unshadow, g_mount_is_shadowed: New functions 
8078     to 'shadow' mounts (i.e. hide them from the UI when they already
8079     have a different representation, like a bookmark) 
8080
8081 * Bugs fixed:
8082  556186 gpoll.h breaks gmain.h inclusion
8083  557087 mem leak in g_content_types_get_registered
8084  556921 gpoll.h breaks hal compilation
8085  557210 g_compute_checksum_for_* asserts with less than 2 bytes
8086  558381 Add support for compile time assertions
8087  558185 'parent' variable in g_local_file_get_child_for_display_name()
8088         hits g_object_unref(NULL) assertion
8089  558513 g_warn_if_fail FIXME in gtestutils
8090  558672 NULL key lookup using g_hash_table_lookup_extended() 
8091  555740 gicon serialization
8092  557182 preview functionality
8093  528320 Incorrect icons displayed for files with custom mimetype icons
8094  556910 Memory leak: sub
8095  557592 Missing include in gwinhttpfile.c
8096  556415 Crash on Windows 2000 in g_winhttp_vfs_init()
8097  555935 Clarify the mechanism of overwriting properties
8098  552776 ac_cv_func_posix_getgrgid_r not mentioned
8099  559448 GObject Reference Manual (typo)
8100  561212 GFileReadMoreCallback API doc refers to non-existant function
8101  560569 gkeyfile doesn't use the set list_separator in some cases
8102  560568 gkeyfile docs buglet
8103  559413 g_option_group_set_error_hook docs buglet
8104  562378 callback return value not respected for callback option
8105         with no arg
8106  559110 Do not include libintl.h after glibintl.h
8107  557603 carbon check output misplaced
8108  562544 g_key_file_get_string and g_key_file_get_value
8109         documentation does not explain the difference
8110  547264 Missing "no flags" flag
8111  562638 GDebugKey key member should be const
8112  562639 g_parse_debug_flags() parsing "help"
8113  562549 g_byte_array_free should tell how free data
8114  559452 GObject Reference Manual (typo)
8115  559462 GObject Reference Manual (typo)
8116  559517 GObject Reference Manual (typo)
8117  562538 GObject interface tutorial shouldn't finalise with
8118         "Please forget everything"
8119  561352 Leak of icon description
8120  561375 Leaks mountpoint description
8121  561807 inotify_sub.c: dup_dirname() fails to remove trailing '/'
8122  562393 g_buffered_input_stream_read_byte broken if data available
8123  541715 win32 : patch for warnings and signature problems in recent code
8124  547481 g_data_input_stream_read_line behaves not as stated in the docs
8125  548163 Nautilus displays wrong error message for too long file names
8126  559633 gtk_image_new_from_gicon does not always work for .desktop files
8127  555486 – No way to recover command line from GAppInfo
8128
8129 * Translation updates:
8130  Spanish (es)
8131  Ukrainian (uk)
8132
8133
8134 Overview of Changes from GLib 2.18.1 to GLib 2.19.0
8135 ===================================================
8136
8137 * Rewrite GHashTable to use open addressing with quadratic probing instead 
8138   of chaining. This has the potential to reduce memory fragmentation 
8139   significantly, while being slightly faster due to better locality and 
8140   no need to call alloc/free functions for nodes. Benchmarks suggest it 
8141   also uses less memory overall.
8142
8143 * Make g_poll available as public api
8144
8145 * New macros g_assert_error and g_assert_no_error to assert 
8146   that a GError is set or unset
8147
8148 * g_cancellable_make_pollfd: New method to make a GPollFD for a cancellable
8149
8150 * g_app_info_can_delete, g_app_info_delete, g_app_info_reset_type_associations:
8151   New functions to clean up app infos and content types
8152
8153 * When launching applications, always pass fuse file:// uris when possible,
8154   and let gio convert such uris back to gio uris.
8155
8156 * Bugs fixed:
8157  505361 gunixinputstream.c assumes poll() available
8158  509446 portable blocking gio cancellation
8159  553820 gpoll.c: undeclared identifier
8160  553724 python interpretter path not patched in correctly
8161  553857 gbacktrace.h requires signal.h
8162  553447 g_assert_no_error()
8163  554092 glib doesn't return G_FILE_ERROR_NOENT et al on OS X
8164  528670 Always pass file:/// uri's in GAppLaunchContext
8165  555224 Improve g_format_size_for_display doc
8166  555309 giochannel breaks on error
8167  554790 g_convert() misbehaves with winiconv versions
8168  555314 mem leak in gmarkup
8169  555313 GFileAttribute boxed type get_type function should...
8170  552861 glib-2.0.m4 calls system(3) without storing its result
8171  554557 Patch to fix gcc warnings about missing format specifiers
8172  552107 Small libtool fixes
8173  551355 Make glib build with libtool 2.2
8174  555311 format not a string literal and no format arguments
8175  556101 static mutex yields warnings with g++
8176  556186 gpoll.h breaks gmain.h inclusion
8177  526456 Open addressing in GHashTable
8178  553426 cancellable clarifications
8179  545350 GAppInfo deletion
8180  545351 Reset associations for content type
8181  552168 volume's mount not mounted after g_volume_mount_finish
8182  554970 segfault when update-desktop-database is not available...
8183  554745 GFileAttributeInfoList should be boxed
8184  555121 Improved build-time handling of gio module-dir
8185  555711 Wrong fallback order of mimetype icons
8186  555331 Deprecate adoption of mounts
8187  556335 make check fails in abicheck.sh
8188  556334 Warning when building without selinux support
8189  556422 g_file_enumerator_next_file: unclear...
8190
8191 * Updated translations:
8192  Arabic (ar)
8193  Danish (da)
8194  Polish (pl)
8195  Brazilian Portugese (pt_BR)
8196  Romanian (ro)
8197  Russian (ru)
8198
8199
8200 Overview of Changes from GLib 2.18.0 to GLib 2.18.1
8201 ===================================================
8202
8203 * Bugs fixed:
8204  550433 g_test_init doesn't recognize --help
8205  523463 Core dump in gmain.c:2482:IA__g_main_context_check
8206  551228 G_STRFUNC on recent Sun compiler should be expanded...
8207  551410 gtestutils.c: using printf without prototype
8208  551731 g_date_set_time[_t] docs should mention what timezone
8209  548321 <string.h> is not included in gi18n-lib.h
8210  551149 xdgmime mem leak
8211  550647 synchronous pipe I/O when reading mount reply
8212  551887 Docs for g_desktop_app_info_new_from_filename aren't...
8213  551681 g_content_type_guess() too naive with filenames
8214  552352 g_app_info_launch doesn't work if "Path" key...
8215  551408 gmodule.def generated to builddir...
8216  552359 g_file_info_get_icon should return GThemedIcon, and...
8217
8218 * Updated translations:
8219  Arabic (ar)
8220  Bengali India (bn_IN)
8221  British English (en_GB)
8222  Hindi (hi)
8223  Croatian (hr)
8224  Korean (ko)
8225  Oriya (or)
8226  Turkish (tr)
8227  Telugu (te)
8228
8229
8230 Overview of Changes from GLib 2.17.7 to GLib 2.18.0
8231 ===================================================
8232
8233 * Win32:
8234   - rework the g_poll() implementation to match poll() semantics more closely
8235
8236 * Bugs fixed:
8237  324234 Using g_io_add_watch_full() to wait for connect() to return...
8238  548278 Async GETs connections are always terminated unexpectedly...
8239  500246 Bug fixes for giowin32
8240  523939 Example program for GValue
8241  550096 GBookmarkFile parser is not forward compatible
8242  550040 Move GString, rand and printf tests to the unit test framework
8243  550104 trivial documentation fix for g_get_home_dir
8244  548988 g_file_replace fails on Windows when the target file exists
8245  550059 Wrong docs for g_emblemed_icon_add_emblem
8246  548800 Missing a g_object_get_type function
8247  550056 Missing documentation for g_emblemed_icon_get_emblems
8248
8249 * Updated translations:
8250  Bulgarian (bg)
8251  Czech (cs)
8252  German (de)
8253  Estonian (et)
8254  Basque (eu)
8255  French (fr)
8256  Hebrew (he)
8257  Hungarian (hu)
8258  Italian (it)
8259  Japanese (ja)
8260  Lithuanian (lt)
8261  Maithili (mai)
8262  Dutch (nl)
8263  Swedish (sv)
8264  Thai (th)
8265  Ukrainian (uk)
8266  Vietnamese (vi)
8267
8268
8269 Overview of Changes from GLib 2.17.6 to GLib 2.17.7
8270 ===================================================
8271
8272 * More fixes for 64-bit Windows
8273
8274 * GIO
8275  - Add a vfs implementation for HTTP and HTTPS URIs on Windows
8276
8277 * Bugs fixed:
8278  546329 API docs for g_utf8_normalize() are incorrect
8279  546876 Modify GMarkup parser to accept &#x1; .. &#x1f;
8280  547200 g_utf8_find_next_char() issues
8281  547637 unconditional #include of sys/statfs.h in configure
8282  547337 G_DISABLE_DEPRECATED breaks tests build
8283  547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
8284  502498 Test framework assertion failures should follow gcc
8285  546371 Improve docs re g_file_monitor
8286  546483 GThemedIcon:use-default-fallbacks is not readable without...
8287  546132 GFileIcon is bindings-unfriendly
8288  542156 zfs mount in home directory shown on nautilus desktop 
8289  535124 umask 002 not being applied for new directories...
8290  547080 g_file_copy leaks expected errors
8291  546582 Callbacks from GFileMonitor present a GFile...
8292  547262 Missing link in the docs
8293
8294 * Updated translations:
8295  Arabic (ar)
8296  Catalan (ca)
8297  Spanish (es)
8298  Basque (eu)
8299  Finnish (fi)
8300  Galician (gl)
8301  Hebrew (he)
8302  Marathi (mr)
8303  Norwegian bokmål (nb)
8304  Portugese (pt)
8305  Brazilian Portugese (pt_BR)
8306  Swedish (sv)
8307  Thai (th)
8308
8309
8310 Overview of Changes from GLib 2.17.4 to GLib 2.17.6
8311 ===================================================
8312
8313 * Fix problems on 64-bit Windows
8314
8315 * g_markup_context_get_user_data: New function to access
8316   the user_data outside of callbacks
8317
8318 * GIO
8319  - g_mount_guess_content_type_sync: synchronous version of
8320    g_mount_guess_content_type
8321  - GEmblem: A GIcon implementation that adds emblem-related
8322    metadata to icons
8323  - GEmblemedIcon: A GIcon implementation that can add emblems
8324    to icons
8325
8326 * Bugs fixed:
8327  544088 option_test_LDADD is left in tests/Makefile.am
8328  544465 gmarkup makes it hard to use pre-rolled parsers
8329  545485 Implicit declaration of utime()
8330  545798 "Since: 2.18" mark is missing in g_set_error_literal...
8331  544140 fam-helper 64-bit issue
8332  529694 SELinux context setting support
8333  545157 wrong/no list of "open with" applications for .cc...
8334  545203 gfile.c: argument is different type
8335  545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
8336  544177 Fix trivial cut and paste error in documentation
8337  545395 Language tweak for g_value_set_string* docs
8338  541036 Gnumeric crashes when trying to open Desktop...
8339  546079 leak in xdgmime
8340  545395 Language tweak for g_value_set_string* docs
8341  546017 Don't copy attributes when copying a symlink
8342
8343 * Updated translations:
8344  Arabic (ar)
8345  Estonian (et)
8346  Galician (gl)
8347  Italian (it)
8348  Japanese (ja)
8349  Korean (ko)
8350  Norwegian bokmål (nb)
8351  Pashto (ps)
8352  Portugese (pt)
8353
8354
8355 Overview of Changes from GLib 2.17.3 to GLib 2.17.4
8356 ===================================================
8357
8358 * GIO:
8359  - New API to handle content types: g_mount_guess_content_type,
8360    g_content_type_guess_for_tree.
8361  - Export the eject-button signal on the volume monitor class
8362  - New API to enable out-of-process volume monitors: 
8363    g_volume_get_activation_root
8364
8365 * GObject:
8366  - New API to handle signals without slots in the class structure:
8367    g_signal_new_class_handler, g_signal_override_class_handler   
8368
8369 * Internationalization:
8370  - Add an NC_ macro that is a no-op equivalent of C_
8371
8372 * GMarkup:
8373  - Add two new functions g_markup_parse_context_push,
8374    g_markup_parse_context_pop to support "subparsers"
8375
8376 * Bugs fixed:
8377  541208 Functions to easily install and use signals without...
8378  541507 Ambiguous description of assigned characters in the...
8379  543040 async reading on dummy file will crash on GIO_USE_VFS=local
8380  543560 enable gio-FEN back-end warnings on Solaris will crash...
8381  528317 GRegex does not allow recursion limit
8382  337518 GMarkup: Subparser support
8383  541794 drive-eject-button signal
8384  541793 activation root for volumes
8385  467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
8386  428048 2 of 51 tests fail on Solaris
8387  542332 small fix for error message in GMarkup
8388  482413 get_contents_stdio -- overflow and memory corruption
8389  406120 g_ascii_strtod
8390  334234 "printf" format error
8391  536996 Missing noop i18n macro equivalent to C_
8392  540616 mem leak in filechooser button
8393  539229 gobject-query calls itself query
8394  521589 [RFC] gobject documentation should mention Vala
8395  543168 Description of G_SLICE=debug-blocks discourages its use
8396  543220 Case collision on gio-extension-points.html
8397  530759 update the gobject tutorial to the XXI century
8398  535223 gbookmark file inefficiency ...
8399  543504 crash in Epiphany Web Browser: Opening local file
8400
8401 * Updated translation:
8402  German (de)
8403  Estonian (et)
8404  Pashto (ps)
8405  Albanian (sq)
8406  Thai (th)
8407  Traditional Chinese (zh_HK)
8408  Traditional Chinese (zh_TW)
8409
8410
8411 Overview of Changes from GLib 2.17.1 to GLib 2.17.3
8412 ===================================================
8413
8414 * PCRE
8415  - fix for CVE-2008-2371 
8416
8417 * Bugs fixed:
8418  538119 glib's mainloop leaks a pipe to sub-processes
8419  537635 Corrections and improvements to g_time_val_{to,from}_iso8601
8420  539067 The document g_io_channel_win32_new_fd() says...
8421  535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
8422  539123 annotate g_d[n]gettext with G_GNUC_FORMAT
8423  539074 Cannot get exit status with g_spawn_command_line_sync
8424  316221 G_LOCK warns about breaking strict-aliasing rules
8425  539770 migrate gstrfunc unit tests to gtest
8426  539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
8427  538044 unconditional use of LC_MESSAGES
8428  540545 Monotonic time and timer offset
8429  535947 want g_set_error_literal
8430  539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF 
8431  536252 GFileEnumerator should allow access to the containing GFile
8432  538362 Get Win32 icons back in the file chooser
8433  540802 g_list_prepend doesn't concat lists
8434  540423 unrecoverable error after g_seekable_truncate
8435  538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
8436  539090 g_content_type_from_mime_type() should unalias
8437  540331 g_file_append_to () documentation: can return NULL
8438  534639 add g_desktop_app_info_new_from_keyfile
8439  536733 gio build failure on Irix
8440  536160 Add g_file_monitor()
8441  538127 FileChooser broken on win32
8442  531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
8443  538564 gio should have gio-types.h
8444  540047 glib-genmarshal.c: '#include <io.h>' is too before
8445
8446 Updated translations:
8447  Korean (ko)
8448  Occitan (oc)
8449
8450
8451 Overview of Changes from GLib 2.17.0 to GLib 2.17.1
8452 ===================================================
8453
8454 * New function: g_utime(), a gstdio wrapper for utime()
8455
8456 * New functions: g_dgettext() and g_dngettext(), wrappers
8457   for corresponding gettext functions with added functionaliy
8458
8459 * Support the latest version of the shared-mime spec, including
8460   icons for mime types 
8461
8462 * New function: g_themed_icon_prepend_name()
8463
8464 * Bugs fixed: 
8465  535418 Please document which glib version defines goffset
8466  528715 Misprint in the description of the interface g_type_class_add_private
8467  528714 Misprint in the description of the interface g_param_spec_flags
8468  537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
8469  530527 Misprint in the description of the interface 
8470         g_cclosure_marshal_VOID__FLAGS
8471  530526 Misprint in the description of the fields 'class_init' and 
8472         'class_finalize' of the structure GTypeInfo
8473  528719 Improvement to the documentation of the "g_object_connect" interface
8474  528172 gtk_signal_handlers_unblock_* functions return value
8475         amount of matched signals, not amount of actually unblocked
8476  528717 Misprint in the description of the parameter 'type_id' for 
8477         the interface g_type_register_fundamental
8478  528716 Misprint in the description of the parameter 'iface_data' for 
8479         the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc 
8480  537555 GObject instantiation not thread safe
8481  537546 'desktop' shortcut in file chooser looks like a generic folder
8482  537392 Additional colon in xattr name
8483  536641 Filesystem querying in gio does not list AFS and autofs file systems
8484  528600 g_dummy_file_get_parent("scheme://example.com/")
8485  503071 Application direction changes to right to left even if theres no 
8486         translation
8487  502511 g_assert_cmphex prints invalid message
8488  338162 Use po/LINGUAS
8489  314453 Nautilus crashes in Solaris when browsing the attached file
8490  529321 make check fails in glib/pcre
8491  455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD 
8492         fallback to $HOME/Desktop if xdg-user-dirs is not in use
8493  498732 g_key_file_to_data cannot fail
8494  511367 add g_file_make_directory_with_parents
8495  531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with 
8496         gcc 4.0 or newer
8497  536158 also bump GHashTable version when a node is removed via
8498         g_hash_table_iter_remove()/g_hash_table_iter_steal()
8499  531403 g_utf8_collate broken on Mac
8500  535628 test/patterntest.c still includes gpattern.h directly
8501  535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
8502
8503 * Translation updates:
8504  Arabic (ar)
8505  German (de)
8506  Italian (it)
8507  Norwegian bokmål (nb)
8508  Thai (th)
8509
8510
8511 Overview of Changes from GLib 2.16.x to GLib 2.17.0
8512 ===================================================
8513
8514 * Update to Unicode 5.1
8515
8516 * Update included libcharset to the one shipped with libiconv 0.12
8517
8518 * Update included PCRE to 7.7
8519
8520 * Enforce that only toplevel headers are directly included.
8521   This is turned on by default for GObject and GIO. To turn
8522   it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
8523
8524 * Fix library version of GIO.  GLib 2.16 shipped with libgio-2.0.so.0.0.0
8525
8526 * On Solaris, use FEN for file monitoring in GIO
8527
8528 * Use the GIO_EXTRA_MODULES environment variable to find
8529   additional GIO modules 
8530
8531 * G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
8532   function attribute
8533
8534 * g_checksum_reset: New function to reset the state of a GChecksum 
8535
8536 * g_unix_mount_monitor_set_rate_limit: New function to limit the 
8537   rate at which events are reported
8538
8539 * g_file_query_file_type: New utility function to query the type of
8540   a file
8541
8542 * g_memory_output_stream_get_data_size: New function to obtain the
8543   size of the written data.
8544
8545 * Bugs fixed:
8546  522292 Gives warnings in glib/gutils.h with GCC in C99 mode
8547  523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
8548  518160 replace two g_strdup_printf calls in GBookmarkFile
8549  523877 gbookmarkfile: avoid using g_string_append_printf() and
8550         other optimizations 
8551  525192 100% CPU if run main loop with no IO sources
8552  315437 extern inline -> static inline
8553  524314 g_convert() on Win32 implicitly converts full width
8554         alphanumerics into half width
8555  525732 Error in documentation for g_list_first
8556  525674 A typo in gmarkup.c
8557  448943 g_timeout_add_seconds() problems
8558  525972 UCS-4 not in the new win_iconv implementation
8559  526619 make test-report crash
8560  491554 Update to Unicode 5.1.0
8561  519137 g_slice_dup macro needs cast for 64-bit platform
8562  528752 Win32 build and SSL not working
8563  530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
8564  528667 Typos in testing module documentation
8565  459905 Bug in wcwidth data
8566  534085 g_unichar_iswide_cjk() has a totally wrong table
8567  501651 Update glib/libcharset
8568  519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
8569  534319 GLib's .pc files could use Libs.private
8570  534137 Typo in g_spawn_async_with_pipes doc
8571  517419 gio win32 directory monitor
8572  526796 Wrong order of arguments in g_file_copy's fallback
8573  530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
8574  532965 Should not return filesystem::free for certain file systems
8575  525553 fix typo and nitpicking in GArray documentation
8576  526572 Missing * in declaration of parent_class in Object
8577         Destruction section of GObject Reference Manual
8578  528648 Extra >s in Object Construction section
8579  535021 g_param_spec_internal documentation should
8580         describe purpose of nick and blurb
8581  521513 Firefox crash when using file picker
8582  528433 gdesktopappinfo snafu ...
8583  533369 API g_file_info_get_attribute_string () unables to get "...
8584  521045 glib f_fstypename miscellany
8585  521672 compile error
8586  521946 control rate limit on GUnixMountMonitor
8587  522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
8588  523015 Implement sliding window based upload operation
8589  523019 Use new GCC 4 feature
8590  523338 list nfs4 as a nfs mount type
8591  524350 Make glib build without NLS again
8592  524579 g_file_copy reports wrong total on progress callback for ...
8593  524742 A typo in gtestutils.c.
8594  524950 Minor documentation typos.
8595  525866 the user directory should not be considered as a mount to...
8596  526320 should not list mounts that the user doesn't have permiss...
8597  527132 nautilus crash when making ftp connection
8598  532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
8599  534759 Build failure in gio
8600  534764 Typo in error produced by g_file_make_directory
8601  521851 Redudant tests in gunixmounts.c
8602  524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
8603  525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
8604  534177 Invalid description of the interface g_cclosure_marshal_S...
8605  520715 Add GFile method g_file_query_file_type
8606  523039 nautilus can't access to trash/computer/network if gvfs i...
8607  
8608 * Updated translations:
8609  Arabic (ar)
8610  Bulgarian (bg)
8611  Catalan (ca) 
8612  Czech (cs)
8613  Greek (el)
8614  Candian English (en_CA)
8615  British English (en_GB)
8616  Spanish (es)
8617  Estonian (et)
8618  Basque (eu)
8619  Galician (gl)
8620  Hebrew (he)
8621  Hungarian (hu)
8622  Japanese (ja)
8623  Lithuanian (lt)
8624  Norwegian bokmål (nb)
8625  Dutch (nl)
8626  Occitan (oc)
8627  Portugese (pt)
8628  Russian (ru)
8629  Slovak (sk)
8630  Albanian (sq)
8631  Swedish (sv)
8632  Turkish (tr)
8633  Vietnamese (vi)
8634
8635
8636 Overview of Changes from GLib 2.16.0 to GLib 2.16.1
8637 ===================================================
8638
8639 * Fix a crash in g_themed_icon_new
8640
8641 * Update the included PCRE to 7.6
8642
8643
8644 Overview of Changes from GLib 2.15.6 to GLib 2.16.0
8645 ===================================================
8646
8647 * Fix the definition of G_INLINE_FUNC to work with gcc 4.3.0
8648
8649 * GIO:
8650  - Add missing GMountMountFlags argument to g_unix_volume_mount
8651  - Fix the adopt_orphan_mount vfunc to take a volume monitor 
8652    reference
8653  - Add properties to GThemedIcon for bindings sake
8654
8655 * Bugs fixed:
8656  520484 gvfsd-trash crashed with SIGSEGV in g_path_is_absolute()
8657  510855 g_checksum_update(): Take -1 for length.
8658  517676 g_themed_icon_new*() do more than call g_object_new().
8659  518816 should handle rmdir returning EEXIST correctly
8660  519352 g_[s]list_delete_link() docs
8661  519489 Fixes for sparse warnings in gio
8662  520169 add monitor argument to vfunc for GVolumeMonitor
8663  520700 Add type check in g_file_query_exists
8664  521145 FILE_READ_ONLY_VOLUME not present on Mingw32
8665  518720 No MIME type for empty files
8666  521013 in documentation, goffset doesn't say "Since 2.x"
8667  521028 Missleading error messages from g_io_channel_set_encoding()
8668  517484 GMainLoop could set the thread "Alertable" for APCs to be... 
8669
8670 * Updated translations:
8671  Assamese (as)
8672  Bengali India (bn_IN)
8673  Czech (cs)
8674  German (de)
8675  Spanish (es)
8676  Estonian (et)
8677  Finnish (fi)
8678  French (fr)
8679  Gujarati (gu)
8680  Italian (it)
8681  Lithuanian (lt)
8682  Malayalam (ml)
8683  Marathi (mr)
8684  Norwegian bokmål (nb)
8685  Romanian (ro)
8686  Russian (ru)
8687  Slovak (sk)
8688  Ukrainian (uk)
8689
8690  
8691 Overview of Changes from GLib 2.15.5 to GLib 2.15.6
8692 ===================================================
8693
8694 * GIO:
8695  - New file attributes: trash::item-count, filesystem::use-preview
8696  - Rename g_file_contains_file to g_file_has_prefix
8697  - g_file_query_filesystem_info grew async variants
8698  - g_themed_icon_append_name: new convenience function
8699  - g_content_type_get_icon is implemented now
8700  - Only show mounts in /media and ~
8701  - g_file_contains_file has been renamed to g_file_has_prefix
8702
8703 * Win32:
8704  - g_win32_get_package_installation_directory_of_module: new function
8705    which supersedes g_win32_get_package_installation_directory
8706  - Use alertable wait functions so that I/O completion routines or 
8707    user-mode Asynchronous Procedure Calls can be run
8708  - Fix race conditions in g_spawn implementation on win32
8709
8710 * Other:
8711  - g_uri_get_scheme has been renamed go g_uri_parse_scheme
8712
8713 * Updated translations:
8714  Arabic (ar)
8715  Belarusian Latin (be@latin)
8716  Catalan (ca) 
8717  British English (en_GB)
8718  Finnish (fi)
8719  Galician (gl)
8720  Hebrew (he)
8721  Italian (it)
8722  Kannada (kn)
8723  Norwegian bokmål (nb)
8724  Dutch (nl)
8725  Brazilian Portugese (pt_BR)
8726  Vietnamese (vi)
8727
8728
8729 Overview of Changes from GLib 2.15.4 to GLib 2.15.5
8730 ===================================================
8731
8732 * Update the included PCRE to 7.6
8733
8734 * GIO:
8735  - g_volume_should_automount: new function to determine if a volume
8736    should be mounted automatically
8737  - g_file_query_default_handler: new convenience function to get
8738    the default handler for a file
8739  - g_app_info_launch_default_for_uri new convenience function to
8740    launch the default handler for a URI
8741  - Use mimeapps.list and defaults.list as discussed on xdg list
8742    recently
8743  - g_app_info_get_default_for_uri_scheme has a real implementation
8744    now (gvfs provides a GConf-based implementation)
8745  - There is the beginning of a test suite
8746  - standard::description:  new file attribute
8747  - GMountMountFlags flags argument added to mount calls
8748
8749 * GObject:
8750  - class initialization is now threadsafe
8751
8752 * Updated translations:
8753   Arabic (ar)
8754   Catalan (ca)
8755   Spanish (es)
8756   Basque (eu)
8757   Italian (it)
8758   Japanese (ja)
8759   Kannada (kn)
8760   Korean (ko)
8761   Macedonian (mk)
8762   Occitan (oc)
8763   Portugese (pt)
8764   Brazilian Portugese (pt_BR)
8765   Swedish (sv)
8766   Thai (th)
8767
8768
8769 Overview of Changes from GLib 2.15.3 to GLib 2.15.4
8770 ===================================================
8771
8772 * G_GNUC_PRETTY_FUNCTION has been deprecated
8773
8774 * GIO:
8775  - g_file_copy has an async variant now
8776  - Drives and volumes now have API to get identifiers
8777    like Hal UDIs or UUIDs.
8778  - There is now a registration API to let modules register
8779    extensions they provide, such as volume monitor implementations
8780
8781 * Bugs fixed:
8782   511807 g_time_val_to_iso8601() uses MT-unsafe gmtime() function
8783   316260 [patch] Doc patches for gnode (2.8.1)
8784   385132 solaris gettext support fix
8785   484261 ./configure check for system PCRE unicode support fails w...
8786   510292 GOption main help not shown
8787   511580 Implement g_file_copy_async
8788   511654 Compile errors due to C99 constructs
8789   487909 g_utf8_strreverse and combining marks
8790   512381 unused variable 'is_main_group' 
8791
8792 * Updated translations:
8793   Arabic (ar)
8794   Belarusian (be)
8795   Czech (cz)
8796   Spanish (es)
8797   French (fr)
8798   Galician (gl)
8799   Portugese (pt)
8800   Russian (ru)
8801   Swedish (sv)
8802   Thai (th)
8803
8804
8805 Overview of Changes from GLib 2.15.2 to GLib 2.15.3
8806 ===================================================
8807
8808 * GChecksum:
8809  - g_checksum_update can accept nul-terminated strings
8810  - The MD5 implementation works correctly on buffers 
8811    that are longer than 64 bytes
8812
8813 * GIO:
8814  - Don't include a copy of the inotify headers, rely on system headers
8815  - g_file_find_enclosing_mount has an async variant now
8816  - Reduntant seek API on file streams has been removed
8817
8818 * Bugs fixed:
8819   508602 gmemory{in|out}putstream.c: unknown pointer size
8820   508771 There is no g_file_test/exists() for GFile
8821   508773 g_uri_escape_string() documentation unclear.
8822   509465 AM_PATH_GLIB_2_0 doesn't support gio
8823   509626 async functions: Document allowed NULL callback?
8824   509990 GSeekable documentation unclear
8825   510448 No inotify support on ARM or SH5
8826   510855 g_checksum_update(): Take -1 for length. 
8827
8828 * Updated translations:
8829   Basque (eu)
8830   Marathi (mr)
8831   Swedish (sv)
8832   Ukrainian (uk)
8833
8834
8835 Overview of Changes from GLib 2.15.1 to GLib 2.15.2
8836 ===================================================
8837
8838 * GIO:
8839  - Mount operation API change: unhandled methods get reported via 
8840    the reply, rather than by the signal emission return value
8841  - File monitor API change: Add a GError argument to g_file_monitor_file
8842  - g_unix_mount_guess_should_display(): new function
8843
8844 * Bugs fixed:
8845   508224 [PATCH] FAM backend crashes due to double free
8846   508074 GAsyncResult documentation suggests g_freeing it.
8847   508108 GFile documentation slightly unclear.
8848   508309 rpc_pipefs mount points should be hidden
8849   508378 GFileInfo documentation implies that it changes attribute...
8850   508719 g_file_get_relative_path fails if parent is root
8851   508773 g_uri_escape_string() documentation unclear.
8852
8853 * Updated translations:
8854   Arabic (ar)
8855   Spanish (es)
8856   Hebrew (he)
8857   Italian (it)
8858   Korean (ko)
8859   Turkish (tr)
8860
8861
8862 Overview of Changes from GLib 2.15.0 to GLib 2.15.1
8863 ===================================================
8864
8865  * Portability fixes:
8866  - Assertion functions are marked as noreturn again
8867  - Handling of inline functions has been fixed to work with gcc 4.3
8868  - C99 comments have been removed from headers
8869  - The nonportable sed -i option is no longer used
8870
8871  * GIO:
8872   - Clarified the semantics of g_app_info_get_all()
8873   - API for memory input and output streams has been changed a bit
8874   - GDirectoryMonitor has been removed; GFileMonitor can monitor
8875     files and directories now
8876
8877  * Bugs fixed:
8878    504829 Invalid environment passed to g_spawn_async in g_desktop_...
8879    505258 crash in Users and Groups: Adding a user
8880    505815 g_content_types_get_registered should not g_free keys
8881    491218 g_timer_new() doesn't initialize timer->end
8882    315437 extern inline -> static inline
8883    476856 Inconsistency between standard and implementation of the ...
8884    480122 g_module_open fails to open modules with ".la" extension
8885    495589 gspawn.c failing to set FD_CLOEXEC
8886    500273 doesn't build with --disable-visibility
8887    504142 Do not show empty groups in --help output
8888    504879 giofam incorrectly linked
8889    505042 add file attribute for actually used file size in bytes
8890    505058 xattr namespace docs
8891    505674 Misprint in the definition of the macro G_CCLOSURE_SWAP_DATA
8892    505730 Fails to build on OSX 10.4: _NSGetEnviron not declared
8893    505887 older darwin lacks lchown
8894    506374 gmemoryinputstream api
8895    506461 Conversion of g_assert_not_reached() and friends into fun...
8896    503051 Small bug in glib interface
8897    506395 Updates to GIO documentation
8898    507628 Missing .pc entry for gio linking against glib
8899    505195 [patch] typo in g_try_new0 docs 
8900    507822 g{file,directory}monitor changes signal problem
8901    506377 gmemoryoutputstream write implementation
8902    507835 bug in gunixinputstream 
8903
8904  * Updated translations:
8905    Arabic (ar)
8906    Belarusian Latin (be@latin)
8907    Spanish (es)
8908    Basque (eu)
8909    Irish (ga)
8910    Hebrew (he)
8911    Occitan (oc)
8912    Vietnamese (vi)
8913
8914
8915 Overview of Changes from GLib 2.14.x to GLib 2.15.0
8916 ===================================================
8917
8918 Major new features:
8919
8920  * GIO: a VFS API, designed to replace GnomeVFS. The GIO implementation 
8921    in GLib has support for local filesystems. The new, separate gvfs 
8922    module contains various backend implementations (cifs, ftp, sftp,
8923    http, ...)
8924
8925  * GChecksum: provides various hash algorithms, such as MD5, SHA-1
8926    and SHA-256
8927  
8928  * GTest: a test framework 
8929  
8930 Smaller additions:
8931
8932  * GHash:
8933  - GHash has iterators, as an alternative to g_hash_table_foreach
8934
8935  * GMarkup: 
8936  - g_markup_parse_context_get_element_stack: New function to
8937    get the stack of open elements
8938  - G_MARKUP_PREFIX_ERROR_POSITION: New flag to improve error
8939    reporting
8940  - g_markup_collect_attributes: Convenience function for handling
8941    attributes
8942
8943 * GKeyFile: 
8944  - Functions that take a GError now return a boolean to indicate 
8945    success, instead of void
8946  - Various performance improvements
8947
8948 * GAsyncQueue:
8949  - g_async_queue_new_full: new function that allows to specify
8950    a free function for leftover elements
8951  
8952 * GError:
8953  - g_prefix_error and g_propagate_prefixed_error: New functions
8954    to ease error propagation
8955
8956 * Internationalization:
8957  - C_: A new 2-argument variant of the Q_() macro 
8958  - Use native character set conversion API on Windows
8959
8960 * GLib builds with automake 1.10
8961
8962 * Bugs fixed:
8963  455725 specific combination of g_utf8_strlen and g_pattern_match...
8964  467537 g_convert_with_iconv() not resetting iconv() state correc...
8965  497033 Commandline option parser should warn about missing optio...
8966  504527 gchecksum: Conditional jump or move depends on uninitiali...
8967  445362 Non-numeric local labels in gatomic.c are causing linker ...
8968  482313 gregex: no way to tell why compilation failed
8969  317775 main loops continues to run after g_main_loop_quit() has ...
8970  418778 Insufficient pkg-config version requirement
8971  436293 g_option_context_new() doc should mention that the string...
8972  466557 glib-mkenums shifts ARGV[0] to undefined
8973  468882 GKeyFile doesn't accept "True" as a true boolean value
8974  469551 application --help messages are garbaged on none UTF-8 lo...
8975  479724 Memory leak upon calling "g_main_loop_run" in the seconda...
8976  490061 outptrs uninitialized after g_parse_long_long
8977  490637 gobject documentation patch
8978  495294 glib-genmarshal prints warnings but returns 0
8979  496046 option to prefix location of errors for GMarkup
8980  498113 tests/regex-test fails on 64bit environment
8981  500506 Fails to build on OSX 10.4
8982  500638 gkeyfile speedup ...
8983  500875 Make check fails as there is no "test" target for "build"...
8984  502511 g_assert_cmphex prints invalid message
8985  502927 g_array_index triggers cast aligment warning
8986  503029 g_time_val_from_iso8601 parse non-ISO8601 dates
8987  503222 Need context to translate
8988  503420 gkeyfile leaks a hash table
8989  503470 Fix build when builddir != srcdir
8990  504227 Inverse variant for g_test_trap_assert_stdout, g_test_tra...
8991  71704  file include order
8992  491957 Misprint in the specification of the interface "g_main_co...
8993  491959 Misprint in description of the structure "GThreadPool"
8994  491965 Mistype in the specification of the function "g_hook_list...
8995  491966 Misprint in the specification of the interface "g_main_co...
8996  491968 The documentation does not mention the restriction for th...
8997  491970 The documentation for the interface "g_date_clamp" is inc...
8998  491974 The documentation of the interface "g_main_context_iterat...
8999  491975 The documentation for the interfaces "g_io_channel_read_u...
9000  491979 Misprint in the description of the interfaces g_key_file_...
9001  491982 Misprint in the description of the interface "g_key_file_...
9002  501107 EXTRA_DIST automake warnings
9003  501997 g_utf8_normalize() returns NULL on invalid string
9004  502590 C_/g_dpgettext efficiency
9005  464259 g_set_application_name() docs should say "Since 2.2"
9006  496518 gbase64.c API doc clarification
9007  498728 g_key_file_get_*_list should set length to 0 when returni...
9008  500361 Improve docs for g_array_free() and g_ptr_array_free()
9009  501853 g_checksum_get_digest docs
9010  503862 Allow NULL strings in g_parse_debug_string()
9011  142676 Q_
9012  367550 Add g_async_queue_new_full() with GDestroyNotify function
9013  375651 Minor enhancements to GKeyFile API
9014  443648 MD5 digest support
9015  449937 Upgrade auto* sources to be clean under automake1.9
9016  452887 gmarkup context "get element" function is useless when ca...
9017  491549 [PATCH] Eliminate libiconv dependency on Windows
9018  500507 GHashTableIter API 
9019
9020 * Translation updates
9021  Belarusian Latin (be@latin)
9022  Czech (cs)
9023  German (de)
9024  Spanish (es)
9025  Esperanto (et)
9026  French (fr)
9027  Korean (ko)
9028  Marathi (mr)
9029  Norwegian bokmål (nb)
9030  Brazilian Portugese (pt_BR)
9031  Slovenian (sl)
9032  Swedish (sv)
9033
9034
9035 Overview of Changes from GLib 2.14.2 to GLib 2.14.3
9036 ===================================================
9037
9038 * Update PCRE to 7.4
9039
9040 * Bugs fixed:
9041  487491 Fix some warnings from sparse
9042  488068 Small (one-time) memory leak in glib_gettext initialization
9043  493688 TYPE macro "_get_type ()" is documented wrong
9044
9045 * Updated translations:
9046  Arabic (ar)
9047  Belarusian Latin (be@latin)
9048  Estonian (et)
9049  Irish (ga)
9050  Slovenian (sl)
9051
9052  
9053 Overview of Changes from GLib 2.14.1 to GLib 2.14.2
9054 ===================================================
9055
9056 * Bugs fixed:
9057  476849 Invocation of the interface "g_hook_free" fails in certai...
9058  359165 marshallers can throw warnings with -Wunused
9059  477957 more discussion on g_value_set_object vs. g_value_take_ob...
9060  478459 G_DEFINE_DYNAMIC_TYPE_EXTENDED doesn't work with G_IMPLEM...
9061  483337 inline is disabled for MSVC when compiling C code
9062  478349 Broken link to gettext website
9063  469231 g_spawn optimization for setting all open fds to CLOEXEC 
9064
9065 * Updated translations:
9066 Arabic (ar)
9067 Galician (gl)
9068 Hebrew (he)
9069 Korean (ko)
9070
9071
9072 Overview of Changes from GLib 2.14.0 to GLib 2.14.1
9073 ===================================================
9074
9075 * Bugs fixed:
9076  476840 Invocation of the interface "g_utf8_strreverse" crashes f...
9077  444765 Fix FIXME in gregex.c when new pcre is out
9078  464145 g_markup_escape_text Produces Invalid XML
9079  465625 g_type_default_interface_ref() does not ensure working g_...
9080  466768 Clearify that comments can be put anywhere in a Key-file.
9081  474229 The GError documentation should give convention for the G...
9082  474899 G_BREAKPOINT() docs inaccurate
9083  475854 Overuse of -lpcre when using system pcre
9084  473879 Incorrect includes in gregex.c
9085  468694 Typoes in documentation
9086  469051 g_snprintf () talks about characters where it probably me...
9087  457601 Missing arch specific atomic implementation
9088  475923 Missing pcre flags when static-linking against glib
9089  475619 glibthread-2.0.la does not list -lpthread
9090
9091 * Updated translations:
9092  Bulgarian (bg)
9093  Catalan (ca)
9094  Danish (da)
9095  German (de)
9096  Canadian English (en_CA)
9097  British English (en_GB)
9098  Spanish (es)
9099  Estonian (et)
9100  Finnish (fi)
9101  French (fr)
9102  Gujarati (gu)
9103  Hungarian (hu)
9104  Italian (it)
9105  Georgian (ka)
9106  Kannada (kn)
9107  Lithuanian (lt)
9108  Makedonian (mk)
9109  Norwegian (nb)
9110  Dutch (nl)
9111  Polish (pl)
9112  Portugese (pt)
9113  Brazilian Portugese (pt_BR)
9114  Romanian (ro)
9115  Russian (ru)
9116  Albanian (sq)
9117  Serbian (sr, sr@Latn)
9118  Swedish (sv)
9119  Tamil (ta)
9120  Thai (th)
9121  Ukrainian (uk)
9122  Vietnamese (vi)
9123
9124
9125 Overview of Changes from GLib 2.13.7 to GLib 2.14.0
9126 ===================================================
9127
9128 * Last-minute API additions:
9129  - Make g_unichar_combining_class public
9130  - Add goffset type, add G_MAXSSIZE and G_MINSSIZE
9131
9132 * Update PCRE to 7.2
9133
9134 * Bugs fixed:
9135  453998 Make _g_unichar_combining_class() public
9136  462549 gregex.c: variable is declared at middle of block
9137  417068 g_file_test doc inconsistency
9138
9139 * Updated translations:
9140  Assamese (as)
9141  Basque (eu)
9142  Kannada (kn)
9143  Malayalam (ml)
9144  Dutch (nl)
9145  Polish (pl)
9146  Brazilian Portugese (pt_BR)
9147  Turkish (tr)
9148
9149
9150 Overview of Changes from GLib 2.13.6 to GLib 2.13.7
9151 ===================================================
9152
9153 * The memory corruption warning from the slice allocator that
9154   occurred when threads were initialized after the slice allocator
9155   has been removed, as the slice allocator now works fine
9156   in this scenario.
9157
9158 * New functions g_once_init_enter() and g_once_init_leave() make
9159   it easier to write threadsafe one-time initialization functions 
9160  
9161 * Bugs fixed:
9162  454473 Simple XML Subset Parser terminates on invalid XML
9163  445813 g_module_open error, add file name
9164  453796 errno gets clobbered by g_filename_display_name
9165  341988 don't use "-c" with msgfmt in Makefile.in.in
9166  447048 Please produce slightly more output during long tests
9167  454785 GModule documentation lists same block of code twice.
9168  454786 GModule documentation lists same paragraph twice.
9169  383155 small docs quirks in gobject/closure API documentation
9170  65041  _get_type() functions aren't thread safe
9171
9172 * Updated translations
9173  Assamese (as)
9174  Spanish (es)
9175  Gujarati (gu)
9176  Japanese (ja)
9177  Korean (ko)
9178  Macedonian (mk)
9179
9180
9181 Overview of Changes from GLib 2.13.5 to GLib 2.13.6
9182 ===================================================
9183
9184 * Reintroduce a GType typedef whose removal in 2.13.5
9185   caused trouble for C++ bindings
9186
9187 * Bugs fixed:
9188  450216 docs not explicit enough about g_free()
9189  451459 g_type_register_static_simple calls g_type_register_static
9190
9191 * Updated translations
9192  Norwegian bokmål (nb)
9193  Sinhala (si)
9194
9195
9196 Overview of Changes from GLib 2.13.4 to GLib 2.13.5
9197 ===================================================
9198
9199 * xdg-user-dirs support: 
9200  - the Desktop directory is guaranteed to be defined
9201  - user-dirs.dirs is no longer reloaded on changes
9202
9203 * Slice allocator: 
9204  - new api to duplicate slices
9205
9206 * Regular expression support:
9207  - GRegex is a boxed type now
9208
9209 * Bugs fixed:
9210  44793 make check failing in trunk
9211  354522 Small problem with PLT hiding 6 symbols
9212  363986 glib 2.12.4 does not compile with SGI IDO cc
9213  443869 g_type_class_add_private doesn't warn when adding 0-sized...
9214  446859 Legitimately return 0 for g_quark_from_string(NULL)
9215  447534 Small typo in g_timeout_add_seconds() doc
9216  447583 GStaticRWLock
9217  447935 g_get_current_dir SIGSEGV on long path
9218  448260 CLAMP has surprising result if low > high
9219  57693  g_string_vprintf()
9220  442029 add g_slice_dup()
9221  445065 Add GRegex boxed type
9222  448819 Add full version of g_timeout_add_seconds()
9223
9224 * Updated translations: 
9225  Swedish (sv)
9226  Oriya (or)
9227  Hebrew (he)
9228  Spanish (es)
9229  Estonian (et)
9230
9231  
9232 Overview of Changes from GLib 2.13.3 to GLib 2.13.4
9233 ===================================================
9234
9235 * Bugs fixed:
9236  444121 g_get_user_special_dir deadlocks
9237  444161 invalid UTF8 in key name shows up as valgrind error in g_...
9238  444130 g_option_context_get_help() is broken when there's a desc...
9239
9240
9241 Overview of Changes from GLib 2.13.2 to GLib 2.13.3
9242 ===================================================
9243
9244 * GKeyFile:
9245  - Added defines for easier handling of desktop files
9246
9247 * Unicode support:
9248  - Update g_unichar_iswide_cjk for Unicode 5.0
9249
9250 * Regular expression support:
9251  - GRegex structs can now be ref-counted
9252  - Some new functions for dealing with incremental 
9253    replacement have been added
9254  - The GRegexEvalCallback signature has been changed
9255
9256 * g_get_user_special_dir() has been added to support
9257   xdg-user-dirs
9258
9259 * Bugs fixed:
9260  419376 Functions using named subpatterns behave inconsistently w...
9261  434358 g_regex_fetch_named() and g_regex_fetch_named_pos() are b...
9262  423708 typo in the README.win32 file see patch below
9263  339225 Add new defines for easier handling of .desktop files 
9264  442265 API additions/changes for GRegex
9265  432651 Add a glib-ish xdg_user_dir_lookup
9266
9267 * Updated translations:
9268  Estonian (et)
9269  Norwegian bokmål (nb)
9270
9271
9272 Overview of Changes from GLib 2.13.1 to GLib 2.13.2
9273 ===================================================
9274
9275 * Unicode support:
9276  - Add g_unichar_ismark()
9277
9278 * GOption:
9279  - Allow to use callbacks for remaining args
9280
9281 * Updated translations:
9282   Belarusian Latin (be@latin)
9283   British English (en_GB)
9284   Galician (gl)
9285   Norwegian bokmål (nb)
9286   Oriya (or)
9287   Spanish (es)
9288   Thai (th)
9289
9290
9291 Overview of Changes from GLib 2.13.0 to GLib 2.13.1
9292 ===================================================
9293
9294 * GRegex:
9295  - Portability fixes
9296  - Split into immutable GRegex and GMatchInfo
9297  - Add g_regex_get_max_backref() and g_regex_get_capture_count()
9298    to obtain information about the compiled regex
9299
9300 * GKeyFile:
9301  - Fix roundtrip problems
9302  - Add g_key_file_load_from_dirs()
9303
9304 * Unicode support:
9305  - Fix corner cases in case conversion routines
9306
9307 * GOption:
9308   - Add a function to get the formatted help string
9309
9310 * GHash:
9311  - Add new functions g_hash_table_get_keys() and
9312    g_hash_table_get_values() to retrieve the keys and
9313    values in list form
9314
9315 * Updated transations:
9316   Simplified Chinese (zh_CN)
9317   Arabic (ar)
9318
9319
9320 Overview of Changes from GLib 2.12 to GLib 2.13.0
9321 =================================================
9322
9323 * Add GSequence, a list that is implemented using
9324   a balanced binary tree.
9325
9326 * Add GRegex, an implementation of Perl regular expressions,
9327   based on PCRE.
9328  
9329 * Use Posix monotonic clocks instead of gettimeofday()
9330   for GTimer when available.
9331
9332 * Support static initialization of GQeues with G_QUEUE_INIT,
9333   g_queue_init() and g_queue_clear().
9334
9335 * Add g_string_chunk_clear() for clearing a 
9336   GStringChunk.
9337
9338 * Add g_unichar_get_script() to obtain Unicode
9339   script information.
9340
9341 * Add g_unichar_iszerowidth() to obtain information
9342   about zero-width characters.
9343
9344 * Add G_GNUC_MAY_ALIAS which wraps the gcc may_alias 
9345   type attribute.
9346
9347 * G_GNUC_INTERNAL has a working definition for the
9348   Sun Studio compiler. This requires the macro to
9349   be positioned before the function declaration.
9350
9351 * The slice allocator can produce detailed debugging
9352   information with G_SLICE=debug-blocks.
9353
9354 * Modules support G_DEBUG flags resident-modules and
9355   bind-now-modules.
9356
9357 * Add G_DEFINE_DYNAMIC_TYPE() to make it easier
9358   to define types in modules.
9359
9360 * Bug fixes: too many to list them in detail here.
9361
9362 * New and updated translations (be,bg,bn,ca,cs,de,
9363   en_CA,en_GB,et,fa,fr,he,hu,it,ja,ku,lt,mg,mk,ml,
9364   nb,ne,nn,pt,pt_BR,ro,sr,sr@Latn,sv,ta,uk,vi,zh_CN,
9365   zh_HK,zh_TW)
9366
9367
9368 Overview of Changes from GLib 2.12.1 to GLib 2.12.2
9369 ===================================================
9370
9371 * Unicode updates:
9372  - Normalization is following Unicode TR #29
9373  - g_unichar_isxdigit() only accept characters
9374    for which g_unichar_xdigit_value() returns a value
9375  - g_unichar_toupper and g_unichar_tolower leave
9376    unconvertable characters in place instead of
9377    replacing them by NUL
9378
9379 * Bugs fixed
9380  348491 g_utf8_strup() and g_utf8_strdown() returns 
9381         string with NUL bytes
9382  349825 GKeyFile always inserts a newline before a group
9383  347842 g_unichar_isxdigit() is too general about what 
9384         it considers a digit
9385  348694 g_utf8_normalize() hasn't been updated to PR #29
9386  348785 Hint about G_DEBUG in Message Logging docs
9387  349792 Wrong english string (UI)
9388  349952 gparamspecs.c uses gcc feature
9389
9390 * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko,
9391   nl,pl,tr,uk,zh_HK,zh_TW)
9392
9393
9394 Overview of Changes from GLib 2.12.0 to GLib 2.12.1
9395 ===================================================
9396
9397 * Update to final Unicode Character Database 5.0.0
9398
9399 * Bugs fixed:
9400  346660 issues with base64 api documentation / g_base64_decode_cl...
9401  348136 Coverity reports allocation of wrong size CID #2839
9402  336281 Update to UCD 5.0
9403  346197 g_date_strftime %F option doesnt work for win32
9404  348011 Small optimization to real_toupper()
9405  246494 prototype mismatch in glib/gconvert.c
9406
9407 * New and updated translations (bg,bn_IN,ca,dz,eu,fi,
9408   fr,he,it,ja,mk,or,pt)
9409
9410
9411 Overview of Changes from GLib 2.11.4 to GLib 2.12
9412 =================================================
9413
9414 * Bugs fixed:
9415  344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
9416
9417 * Updated translations (cy,nb,nl)
9418
9419
9420 Overview of Changes from GLib 2.11.3 to GLib 2.11.4
9421 ===================================================
9422
9423 * GBookmarkFile:
9424  - g_bookmark_file_remove_item returns a boolean
9425  
9426 * g_mkstemp accepts the XXXXXX in the middle of
9427   the template
9428  
9429 * Bugs fixed:
9430  344868 g_key_file_to_data should separate groups 
9431
9432 * Updated translations (de,es,fr,gu,hi,ko,th)
9433
9434
9435 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
9436 ===================================================
9437
9438 * GBookmarkFile:
9439   - g_bookmark_file_move_item: Return TRUE in case of
9440     an empty target
9441
9442 * Bugs fixed: 
9443  343919 gunicollate.c: strxfrm bug on VC8
9444
9445 * Updated translations (fi)
9446
9447 Overview of Changes from GLib 2.11.1 to GLib 2.11.2
9448 ===================================================
9449
9450 * Add g_ascii_stroll to parse signed 64bit integers
9451
9452 * GMarkup: add a flag to treat CDATA as text
9453
9454 * GHashTable: add functions to remove all entries
9455
9456 * GMainLoop: add functions to find the currently
9457   running source, and determine if it is destroyed
9458
9459 * Bug fixes:
9460  342563  g_atomic_thread_init() needs to be called before 
9461          other _g_*_thread_init() functions
9462  343548  Potential use after free in callers of g_string_free() 
9463  168538  Wish: Clearing contents of GHashTables
9464  321886  GTK+ cannot be reliably used in multi-threaded 
9465          applications
9466  341826  goption.c: 'strtoll' is C99's function
9467  343899  g_ascii_formatd dosn't work as expected for all 
9468          format strings
9469  317793  Make GEnumValue strings const
9470  337129  Compile warnings in G_IMPLEMENT_INTERFACE
9471  303622  What is G_TYPE_CHAR?
9472
9473 * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
9474  
9475
9476 Overview of Changes from GLib 2.11.0 to GLib 2.11.1
9477 ===================================================
9478
9479 * GOption  
9480   - Support 64-bit integers 
9481   - Allow optional text before and after the options
9482     in help output
9483
9484 * Bug fixes:
9485  340538 gbase64-test writes OOB 
9486  340816 GKeyFile set_string_list invalid memory reads 
9487  339105 g_key_file_parse_value_as_double
9488  340434 convert-test.c fails (function test_one_half)
9489  311043 Memory leaks (and potential infinite loops) 
9490         when using G_ERRORCHECK_MUTEXES
9491  335198 Error checking mutexes are fubar  
9492  341237 Add a G_OPTION_ARG_INT64
9493  341192 g_io_channel_set_flags not implemented on win32
9494  336120 Allow adding description before/after GOption 
9495         --help output body
9496  341191 misplaced check in g_relation_delete
9497  340530 mismatched calloc / g_free in win32 threads
9498
9499 * Updated translation (es)
9500
9501 Overview of Changes from GLib 2.10.x to GLib 2.11.0
9502 ===================================================
9503
9504 * GBookmarkFile: a parser for files containing bookmarks
9505   stored using the Desktop Bookmark specification.
9506
9507 * Base64 encoding support
9508         
9509 * Unicode 5.0 support
9510
9511 * GOption supports floating point numbers 
9512
9513 * GKeyFile supports floating point numbers
9514
9515 * Bug fixes:
9516  155884 gatomic.c should be based on new SDK
9517  157877 update-desktop-database doesn't handle duplicate entries
9518  164719 keyfile parser doesn't support floats
9519  327662 Import BookmarkFile from libegg
9520  329548 Add G_OPTION_ARG_DOUBLE
9521  329789 option-test.c type confusion
9522  332841 Segmentation Fault when %llu is passed to vasnprintf and 
9523         HAVE_SNPRINTF is not defined
9524  333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define 
9525         _WIN32_WINDOWS 0x0401'
9526  333916 g_timer_elapsed docs should mention that microseconds 
9527         may be NULL
9528  334440 dlerror() portability issue causes crash on (old) a.out 
9529         NetBSD platform
9530  334646 goption + error out params
9531  334799 g_remove() must check return value of remove()
9532  334943 make check FAIL: threadpool-test
9533  335215 Some breakages with GThreadPool
9534  336085 g_option_context_new parameter lacks better explanation
9535  336677 Documentation for g_object_ref_sink() is incorrect
9536  337027 gbookmarkfile.c: sys/time.h include error
9537  337553 Wrong escaping of URIs
9538  338572 Dereferencing NULL value in g_key_file_get_group_comment
9539  338845 g_completion_complete_utf8 crashes when NULL is passed to it
9540  339337 g_bookmark_file_set_description
9541  339338 gbookmarkfile.c, function expand_exec_line
9542  339340 gbookmarkfile.c, function bookmark_app_info_dump
9543
9544 * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
9545                        or,pt_BR,ro,tr,vi,zh_CN)
9546
9547
9548 Overview of Changes from GLib 2.10.0 to GLib 2.10.1
9549 ===================================================
9550
9551 * Bugs fixed:
9552  314794 Broken pthread detection on Darwin [Gregor Riepl]
9553  322476 Missing check for .dylib [Vladimir Panov]
9554  333651 Inconsistent _g_charset_get_aliases prototype [Julio 
9555         M. Merino Vidal]
9556  333761 GInitiallyUnowned breaks application code [Sven Herzberg]
9557
9558 * Win32 changes:
9559  - Fix g_listenv() implementation.
9560  - Allow up to 100 GPrivate structs
9561
9562 * Translation updates (fr,hu,lt,pl,sv)
9563
9564
9565 Overview of Changes from GLib 2.9.6 to GLib 2.10.0
9566 ==================================================
9567
9568 * Bugs fixed:
9569  328997 64bit pointer trunction in glib slab-allocator
9570         [Pascal Hofstee]
9571  331110 g_cond_broadcast(inform_cond) without holding 
9572         inform_mutex [Chris Wilson, Sebastian Wilhelmi]
9573  332093 Fix some leaks in the tests [Kjartan Maraas]
9574  332435 g_utf8_strlen returns wrong value if a maximum 
9575         number of bytes to check is specified 
9576         [Matthias Clasen]
9577  331367 gslice requires more POSIX-like semantics for 
9578         GPrivate destructors [Tor Lillqvist]
9579
9580 * Documentation improvements [Matthias, Kang Jeong-Hee,
9581   Tor Lillqvist, Stefan Kost]
9582
9583 * Translation updates (el,eu,ka,uk)
9584
9585 Overview of Changes from GLib 2.9.5 to GLib 2.9.6
9586 =================================================
9587
9588 * Bugs fixed: 
9589  329124 distclean removes README [Kjartan Maraas, Tim Janik]
9590  317679 GRelation field type not documented [Behdad Esfahbod]
9591  329123 Typo in GTime docs [Kjartan Maraas]
9592
9593 * Documentation improvements [Sven Herzberg, David
9594   Schleef, Kjartan Maraas, Behdad Esfahbod]
9595
9596 * Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
9597
9598 Overview of Changes from GLib 2.9.4 to GLib 2.9.5
9599 =================================================
9600
9601 * Memory management: 
9602   Runtime debugging support: The slice allocator
9603   can be turned off by setting G_SLICE=always-malloc
9604   in the environment. Zeroing of freed memory can
9605   now be turned on at runtime by setting
9606   G_DEBUG=gc-friendly in the environment. [Tim Janik]
9607
9608 * Bugs fixed:
9609  328253 HP-UX/IA-64 uses ".so" as default shared library 
9610         extension [Albert Chin]
9611  143380 unicode-encoding test fails converting to UTF-16 
9612         with libiconv [Marc Moorcroft]
9613  328254 Build breakage (GSlice) [Jens Ganseuer]
9614  328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
9615
9616 * Translation updates (da,et,zh_CN)
9617
9618 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
9619 =================================================
9620
9621 * Type system:
9622   Fix a problem with g_object_compat_control() which 
9623   can lead to segfaults in GTK+ applications on 64bit 
9624   platforms. 
9625
9626 * Thread suppport: 
9627   Unused threads now fall back to the global pool after 
9628   500 milliseconds, where they wait for another 
9629   max-idle-time milliseconds. [Sebastian Wilhelmi]
9630
9631 * Fix a memory allocation problem in GKeyFile. [Morten 
9632   Welinder]
9633
9634
9635 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
9636 =================================================
9637
9638 * GTree:
9639  - Replace the simple recursive implementation by
9640    a nonrecursive, threaded one  [Maurizio Monge]
9641
9642 * Change g_filename_display_name and
9643   g_filename_display_basename to use the Unicode
9644   replacement character U+FFFD instead of a question
9645   mark, and don't append "(invalid encoding)"  [Matthias]
9646
9647 * Documentation improvements [Sven Herzberg, Federico
9648   Mena Quintero, Stefan Kost]
9649
9650 * Bugs fixed:
9651  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
9652         [Bogdan Nicula]
9653  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
9654  169285 "threaded" tree implementation for GTree 
9655         [Maurizio Monge]
9656  326747 g_filename_display_basename adds (invalid encoding) 
9657         [Alberto Ruiz]
9658
9659 Other contributors: Christian Kellner, Murray Cumming
9660
9661 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
9662
9663
9664 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
9665 =================================================
9666
9667 * Memory management:
9668  - Add tests for cache colorization [Tim Janik]
9669  - Minimize space consumption if small amounts of differently
9670    sized slices are allocated, at a small performance cost.  [Tim]
9671
9672 * Thread support:
9673  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
9674    Sebastian Wilhelmi]
9675  - Add g_thread_pool_set_sort_function() to allow sorting the 
9676    tasks of a threadpool.  [Martyn Russell]
9677  - Add g_thread_pool_set_idle_time() to allow unused threads
9678    to exit after a certain time.  [Martyn]
9679
9680 * Type system:
9681  - introduce a new type GInitiallyUnowned, which has an initial
9682    floating reference. [Tim]
9683  - Add support for GType parameters. [Matthias]
9684
9685 * Main loop:
9686  - Add g_main_context_is_owner() to determine if the current
9687    thread is the owner of the context.  [Michael Meeks]
9688
9689 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
9690   wrapper functions instead of macros.  [Manish Singh]
9691
9692 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
9693   Stefan Kasal, Dan Williams]
9694
9695 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
9696
9697 * Bugs fixed:
9698  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
9699         tries to modify [J. Ali Harlow]
9700  324332 g_option_context_parse() returns false without setting error 
9701         [Tim-Philipp Müller]
9702  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
9703  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
9704  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
9705         gpointer [Andrew Paprocki]
9706  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
9707         Stanislav Brabec]
9708  325273 Error in documentation for glib_check_version () [Declan Naughton]
9709  325310 g_spawn_sync hangs when catching both stdout and 
9710         stderr [Tor Lillqvist]
9711  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
9712  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
9713  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
9714  325438 a typo (compatability) [Stefan Kasal]
9715  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
9716
9717
9718 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
9719 =================================================
9720
9721 * Memory management
9722  - The slice allocator is implemented [Tim Janik]
9723  - g_slice_free_chain() has been renamed to 
9724    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
9725  - Mem chunks are deprecated [Matthias Clasen]
9726
9727 * Data structures
9728  - Hash tables are refcounted, and have a boxed type [Tim]
9729
9730 * Thread support
9731  - Support for Solaris threads has been removed 
9732    [Sebastian Wilhelmi, Andrew Paprocki]
9733  - g_async_queue_sort(), g_async_queue_push_sorted() have 
9734    been added to allow GAsyncQueue to be used as a priority 
9735    queue, together with the corresponding _unlocked 
9736    variants  [Martyn Russell]
9737
9738 * GObject:
9739  - The concept of a floating initial reference has been
9740    moved from GtkObject to GObject [Tim]
9741
9742 * Win32 changes:
9743  - Make g_rename() replace existing files [Tor Lillqvist]
9744
9745 * Misc new API:
9746  - G_GUINT64_CONSTANT macro to define guint64 
9747    constants [Andrew Paprocki]
9748  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
9749    compiler to emit a warning if the value returned
9750    by a function is ignored. [Arjan van de Ven, Alex Larsson]
9751  - GList and GSList now have sort functions which take an
9752    extra user data argument [Martyn Russell]
9753  - g_param_spec_ref_sink() has been added for consistency [Tim]
9754
9755 * $LOGNAME is respected when determining user data. [Laszlo Peter]
9756
9757 * Other changes and bug fixes [Tim, Matthias, Behdad, 
9758   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
9759   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
9760   Andreas Schwab, Kalle Vahlman]
9761
9762 * Documentation
9763  - Deprecation warnings carry version information [Matthias]
9764  - The slice allocator has been documented [Matthias, Tim]
9765  - Other improvements [Morten Welinder]
9766
9767 Overview of Changes from GLib 2.8.x to GLib 2.9.0
9768 =================================================
9769 * Unicode support:
9770  - The Unicode tables have been updated to Unicode 4.1, 
9771    adding several new values to the GUnicodeBreakType 
9772    enumeration. This breaks Pango <= 1.10 
9773    [Behdad Esfahbod]
9774  - The various Unicode character predicate functions 
9775    (g_unichar_isalpha, g_unichar_isdigit,...) have
9776    been optimized
9777    [Behdad]
9778  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
9779    These functions handle negative offsets now, and
9780    going backwards in g_utf8_offset_to_pointer uses
9781    "stutter stepping".
9782    [Larry Ewing, Matthias Clasen]
9783
9784 * Memory management:
9785  - Mem chunks are no longer used internally in GLib and
9786    GObject. GMemChunk will be deprecated in GLib 2.10
9787  - All APIs based on GAllocator (g_list_push/pop_allocator,
9788    and similar push/pop_allocator functions for other
9789    data structures) have been deprecated, since they
9790    never worked as intended.
9791  - The g_slice_* functions have been added as a 
9792    new API for fast allocation of small memory blocks. 
9793    The implementation in GLib 2.9.0 is just a simple 
9794    wrapper around malloc. GLib 2.10 will have an
9795    efficient and scalable implementation. 
9796    [Tim Janik, Matthias]
9797
9798 * Pattern matching:
9799  - g_pattern_match has been optimized to avoid
9800    unnecessary recursion.
9801    [Tim, Matthias]
9802
9803 * g_intern_string, g_intern_static_string: 
9804  - New functions to intern strings. These are now used 
9805    by GObject to avoid duplicating static strings 
9806    [Matthias]
9807
9808 * g_thread_foreach: 
9809  - New function to iterate over all GThreads 
9810    [Tim, Matthias]
9811
9812 * g_date_set_time_t, g_date_set_time_val:
9813  - New functions to set a GDate from a time_t or
9814    GTimeVal value. g_date_set_time has been deprecated 
9815    in favor of these.
9816    [Roger Leigh]
9817
9818 * g_snprintf and g_vsnprintf:
9819  - These functions are no longer declared in gprintf.h, 
9820    since they are in glib.h
9821    [Matthias]
9822
9823 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
9824 =================================================
9825 * Optimize single-character insertions in GString [Ross Burton]
9826 * Fix build problems on OS X
9827 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
9828 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
9829 * Documentation improvements [Tristan van Berkom, Behnam
9830   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
9831 * New and updated translations (ca,cy,ko,ro,uk)
9832
9833 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
9834 =================================================
9835 * Make g_value_transform() handle enum values
9836   correctly on ppc64.  [Michael Lorenz]
9837   (Third-party code accessing enumeration values 
9838   in GValues should also be changed to access 
9839   v_long, not v_int, in order to work on bigendian 
9840   64bit machines.)
9841 * Make g_flags_get_first_value() handle a value
9842   of 0 meaningfully. [Tim-Philipp Müller] 
9843
9844 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
9845 =================================================
9846 * Make atomic operations on s390 work [Matthias]
9847 * Fix C++ guards in gstdio.h [Tor Lillqvist]
9848
9849 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
9850 =================================================
9851 * Add native implementations of atomic operations 
9852   on s390 [Matthias]
9853 * Make atomic reference counting of closures
9854   work on s390 [Matthias]
9855 * Avoid an infinite loop in g_convert_with_iconv().
9856   [Sebastian Bacher]
9857 * Documentation improvements [Ross Burton]
9858
9859 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
9860 =================================================
9861 * Thread-related changes
9862  - Fix build issues on HP-UX [Paul Cornett]
9863  - Threadsafe access to flags stored in datasets [Tim Janik]
9864  - Fix several issues with atomic refcounting for 
9865    closures, objects and paramspecs [Tim]
9866  - Improve tests for atomic refcounting changes [Tim]
9867 * Fix handling of stateful encodings in g_convert_* [Matthias]
9868 * Fix translation of GOption help output [Dan Winship]
9869 * Catch format errors in translations. This may cause 
9870   "make check" to fail when using older versions
9871   of gettext [Matthias]
9872 * Win32 bug fixes [Tor Lillqvist]
9873 * Documentation improvements [Ross Burton, Jochen Baier, 
9874   Matthias, Tim]
9875 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
9876
9877 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
9878 =================================================
9879 * Fix g_atomic_pointer_compare_and_exchange 
9880   on Sparc64 [Gert Doering]
9881 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
9882 * Win32 bug fixes [Tor Lillquist]
9883 * Other bug fixes [Benoit Dejean, Manish Singh]
9884 * Documentation improvements [Bryan Silverthorn,
9885   Callum McKenzie] 
9886 * New and updated translations (de,lt,sq,zh_CN)
9887
9888 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
9889 =================================================
9890 * GOption
9891  - Allow callbacks with optional arguments [Pawel Sliwowski]
9892  - Allow to turn off the automatic long option name
9893    disambiguation  [Adam McLaurin]
9894  - Only allow printable ASCII as short option names [Matthias]
9895 * Win32
9896  - Build fixes [Tor Lillqvist]
9897  - Rewrite iochannel socket implementation [Tor]
9898 * GObject
9899  - Threadsafety improvements; in particular, refcounting
9900    of objects is done atomically now. [Wim Taymans, Tim Janik]
9901 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
9902 * Documentation improvements [Richard Laager, Matthias]
9903 * New and improved translations (bf,cs,hu,nb,nl,no)
9904
9905 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
9906 =================================================
9907 * Win32 build fixes [Hans Breuer]
9908 * Bug fixes [Mikael Magnusson]
9909 * Documentation improvements [Matthias Clasen]
9910 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
9911
9912 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
9913 =================================================
9914 * GOption 
9915  - Allow callback arguments without parameters [Dan Winship]
9916 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
9917 * Misc new functions:
9918  - g_get_host_name [Tor Lillqvist]
9919  - g_mkdir_with_parents [Tor]
9920  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
9921    Matthias Clasen]
9922 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
9923   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
9924 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
9925 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
9926   sk,th,zh_TW)
9927
9928 Overview of Changes from GLib 2.6.x to GLib 2.7.0
9929 =================================================
9930 * GKeyFile
9931  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
9932  - Accept \r\n as line end [Bastian Nocera]
9933  - Don't interpret leading zeros as octal numbers. [Matthias]
9934  - Make key and group removal work [David Hoover, Matthias Hasselmann]
9935 * GOption
9936  - Improve formatting of --help output [Matthias, Noah Levitt]
9937  - Accept -? [Matthias]
9938  - Warn about duplicate main groups [Jeff Franks]
9939  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
9940  - Report missing arguments as errors [Björn Lindqvist]
9941  - Add a boxed type for GDate [Tim-Philipp Müller]
9942 * GTree
9943  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
9944 * Stdio wrappers
9945  - Work regardless of large file support [Manish Singh]
9946  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
9947 * GObject
9948  - Implement "toggle references" to help language bindings [Owen Taylor]
9949  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
9950  - Make pspec lookup a bit faster [Morten Welinder]
9951 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
9952 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
9953   Sven Neumann, Manish, Alexis S. L. Carvalho]
9954 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
9955 * Add g_utf8_collate_key_for_filename() to sort filenames taking
9956   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
9957 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
9958   NULL-terminated argument lists. [Marc Meissner]
9959 * Win32 changes
9960  - Improved debugability [Ulf Lamping, Hans Breuer]
9961  - Make filename handling more robust [Tor, Billy Skaggs]
9962  - Improve g_get_system_data_dirs() [Tor]
9963  - Use more precise timers [Tor]
9964  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
9965 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
9966   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
9967   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
9968   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
9969   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
9970   Christian Biere, Noah, Benoît Carpentier]
9971 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
9972   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
9973   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
9974 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
9975   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
9976
9977 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
9978 =================================================
9979 * GOption
9980  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
9981  - Improve handling of -- [Matthias Clasen]
9982  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
9983 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
9984 * Add gmodule-export-2.0.pc [Matthias]
9985 * Win32 changes
9986  - Improve hangling of UNC paths [Tor Lillqvist]
9987  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
9988    take and return UTF-8 now [Tor] 
9989  - Make g_file_test() work more reliably, and use PATHEXT
9990    when check for executables [Tor]
9991  - Build and cross-compilation fixes [J. Ali Harlow]
9992 * Other bug fixes [Jens Hatlak, Morten Welinder, 
9993   Tor, Kalpesh Shah, Adrian Bunk]
9994 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
9995   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
9996   Vincent Untz, Bastien Nocera]
9997 * New and updated translations (cy,de,nl,ru,sq,sv)
9998
9999 Overview of Changes from GLib 2.4.x to GLib 2.6.0
10000 =================================================
10001
10002 * Major new APIs
10003   - GOption, a commandline option parser
10004   - GKeyFile, a parser/editor for the .ini like files 
10005   - Functions to support the XDG basedir specification
10006   - Wrappers for common POSIX pathname functions to handle filename
10007     encodings consistently. On Windows, these use UTF-8.
10008
10009 * Miscellaneous new functions
10010   - g_filename_display_name() converts filenames in displayable UTF-8 strings
10011   - g_uri_list_extract_uris() splits uri lists
10012   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
10013   - g_log_set_default_handler() installs an alternate default log handler
10014   - g_get_language_names() obtains a list of applicable locale names
10015   - g_strv_length() calculates the length of NULL-terminated string arrays
10016   - g_win32_get_windows_version() determines the Windows version 
10017   - G_GNUC_INTERNAL marks functions as non-exported
10018   - glib_check_version() checks the GLib version at runtime
10019   - g_debug() completes the family of logging functions
10020
10021 * Performance improvements
10022   - Optimize g_utf8_validate()
10023   - Optimize g_markup_parse_context_parse()
10024   - Reduce signal connection complexity from O(n) to O(1) 
10025   - Get rid of many PLT entries for internally used exported symbols
10026   - Reduce code size by removing literal strings from g_return_if_fail()
10027
10028 * Other changes
10029   - On Windows, GLib functions that take file name arguments now require
10030     those to be in UTF-8. Functions that return file names return UTF-8.
10031   - Use higher precision for mathematical constants
10032   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
10033   - Support ll as printf format modifier for long long on all platforms
10034   - Clean up the ABI and enforce the list of exported symbols
10035   - Add a .pc file for using gmodule in libraries
10036   - Require ngettext
10037
10038 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
10039 =================================================
10040 * GOption: Don't list help options if group-specific
10041   options have been requested [Glynn Foster]
10042 * Make g_get_language_names() track locale changes [Christian Persch]
10043 * Win32 bug fixes [Tor Lillqvist]
10044 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
10045 * New and updated translations (da,es,ja,lt,zh_CN)
10046 Bugs fixed: 159530,100697,160271,160645,157255
10047
10048 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
10049 =================================================
10050 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
10051 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
10052   Morten Welinder]
10053 * Reduce signal connection complexity from O(n) to O(1) 
10054   [Sven Neumann]
10055 * Add a .pc file for using gmodule in libraries [Owen]
10056 * Add G_GNUC_MALLOC to mark functions returning newly 
10057   allocated memory  [Matthias]
10058 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
10059   Bruce Hochstetler]
10060 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
10061   Frederic Crozat, Tor]
10062 * Documentation improvements [Matthias, Tor, Owen]
10063 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
10064
10065 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
10066 =================================================
10067 * GOption
10068   - Add G_OPTION_FLAG_REVERSE to allow options 
10069     which unset a  boolean variable [Tor Lillqvist]
10070 * GChildWatch
10071   - Use sigaction instead of signal [Jonas Jonnson, 
10072   Archana Shah]
10073   - Make the very first SIGCHLD work [Gustavo Carneiro]
10074 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
10075   Manish Singh, J. Ali Harlow]
10076 * Documentation improvements [Matthias Clasen, Tor]
10077 * Updated translations (da,ja,tr,zh_CN)
10078
10079 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
10080 =================================================
10081 * GKeyFile
10082   - Cleanups, add more error checking [Ray Strode]
10083   - Fall back to the untranslated string when getting 
10084     locale strings [Mark McLoughlin]
10085 * GOption
10086   - Document GOption [Matthias Clasen]
10087   - Better support for rest arguments [Owen Taylor, Matthias]
10088   - Handle conflicts between groups [Matthias]
10089 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
10090 * Add g_filename_display_name() to convert filenames
10091   in displayable UTF-8 strings  [Alex Larsson, Matthias]
10092 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
10093 * Bug fixes [Christophe Fergeau, Morten Welinder, 
10094   Owen, Kjartan Maraas, Mark]
10095 * Documentation improvements [Matthias, Tor]
10096
10097 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
10098 =================================================
10099 Add GKeyFile, a parser/editor for the .ini like files used in various
10100    freedesktop.org specifications. [Ray Strode]
10101 Make the handling of filename encodings consistent across all
10102    GLib functions, introduce wrappers for common POSIX 
10103    functions which accept the same filename encoding. [Tor Lillqvist, 
10104    Owen Taylor]
10105 GOption
10106  - Rename g_context_option_error_quark() to a more language-binding
10107    friendly name [Murray Cumming]
10108  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
10109 * Strip the internal aliasing prefix IA__ from function names in 
10110   assertions [Matthias Clasen]
10111 * Add a function to split uri lists. [Matthias]
10112 * Win32 bug fixes 
10113  - Don't open console windows [Tor]
10114 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
10115  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
10116   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
10117   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
10118 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
10119  Adam Hooper, Gustavo Carneiro]
10120 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
10121
10122 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
10123 =================================================
10124 * GOption
10125  - set the program name from argv[0] [Masatake YAMATO] 
10126  - make contexts work without a main group [Anders Carlsson]
10127 * Performance 
10128  - Get rid of many PLT entries for internally used exported symbols,
10129    and clean up the ABI at the same time and make make check check the
10130    list of exported symbols.  [Matthias Clasen]
10131 * Add API to get ISO 8601 week numbers [Niklas Lundell]
10132 * Add API to install an alternate default log handler [Darin Adler]
10133 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
10134 * Reduce code size bloat by removing literal strings from
10135  the g_return_if_fail() macros [Owen Taylor]
10136 * Add g_strv_length [Tim-Philipp Müller]
10137 * Win32 changes
10138  - Add API to determine the Windows version [Tor Lillqvist]
10139 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
10140   Manish Singh]
10141 * Documentation improvements [Morten Welinder, Matthias]
10142 * New and updated translations (es,nn,ro)
10143
10144 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
10145 =================================================
10146 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
10147 * Add GOption, a commandline option parser [Anders Carlsson]
10148 * Add glib_check_version [Michael Natterer]
10149 * Add XDG basedir API [Ray Strode]
10150 * Require ngettext [Danilo Segan]
10151 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
10152   Jon-Kare Hellan, Jody Goldberg]
10153 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
10154 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
10155 * New and updated translations (bs,eu,fi,gu,ne,pa)
10156
10157 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
10158 =================================================
10159
10160 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
10161   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
10162   Ögren, Tommi Komulainen]
10163 * Documentation improvements [Soeren Sandmann, 
10164   Christophe Fergeau, Danek Duvall]
10165 * New and updated translations (eu,hi)
10166   
10167 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
10168 =================================================
10169
10170 * New functions g_debug [Sven Herzberg]
10171 * Use higher precision for mathematical constants [Morten 
10172  Welinder]
10173 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
10174  [Federico Mena Quintero]
10175 * Win32
10176  - Handle empty digit string in printf() functions 
10177    correctly [Tor Lillqvist]
10178  - Support ll as format modifier for long long [Tor]
10179  - Be more careful about HOME [Tor, Ivan Wong]
10180  - Bug fixes [John Ehresman]
10181 * Miscellaneous bug and portability fixes [Danilo Segan, 
10182  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
10183  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
10184  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
10185 * Documentation updates [Matthias Clasen, Crispin Flowerday,
10186  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
10187 * New and updated translations (ja,ne,no,wa)
10188  
10189 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
10190 =================================================
10191
10192 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
10193 * Miscellaneous bug and portability fixes [Owen Taylor,
10194   Matthias Clasen, Jonas Jonsson, Christian Krause,
10195   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
10196   Piotr Klaban]
10197 * Documentation updates [Matthias]
10198 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
10199   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
10200
10201 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
10202 =================================================
10203
10204 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
10205 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
10206 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
10207   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
10208   Sebastian Wilhelmi]
10209 * Documentation updates [Owen]
10210 * Updated translations (hr,ro)
10211
10212 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
10213 =================================================
10214
10215 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
10216 * GMain threading fixes and improvements [Sebastian]
10217 * Win32 [Tor Lillqvist]
10218  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
10219  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
10220 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
10221 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
10222
10223 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
10224 =================================================
10225
10226 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
10227 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
10228 * Add atomic operations and use it for the async queue and
10229   gonce implementation. [Sebastian Wilhelmi]
10230 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
10231 * Add g_main_depth() for finding the recursion depth of the main
10232   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
10233 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
10234 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
10235 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
10236 * Updated translations (cy,et,ga,sq)
10237
10238 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
10239 =================================================
10240
10241 * Add a native AIX gmodule implementation. [Laurent Vivier]
10242 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
10243 * Extend GQueue API to match the GList API. [Soeren Sandmann]
10244 * Add g_hash_table_find().  [Tim Janik]
10245 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
10246 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
10247 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
10248 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
10249   Matthias]
10250 * Add g_strsplit_set(). [Soeren]
10251 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
10252   Soeren, Matthias]
10253 * Win32 build fixes. [Tor Lillqvist]
10254 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
10255   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
10256   Matthias]
10257 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
10258
10259 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
10260 =================================================
10261
10262 * Add G_MAXSIZE. [Manish Singh]
10263 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
10264   implementing the init-by-array functionality of the 
10265   original mersenne twister. Add g_rand_copy(). Improve seeding. 
10266   [George Lebl]
10267 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
10268 * Add g_ptr_array_foreach(). [Matthias Clasen]
10269 * Add g_timer_continue(). [Tim-Philipp Müller]
10270 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
10271 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
10272   g_file_test() there too [Hans Breuer] 
10273 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
10274 * Add G_DEFINE_TYPE() plus variants to ease the constuction
10275   of GObject boilerplate code.  [Tim Janik]
10276 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
10277 * Documentation improvements [Matthias, Manish]
10278 * Win32 build fixes [Hans]
10279 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
10280   Zack Rusin]
10281 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
10282
10283 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
10284 =================================================
10285
10286 * Add glib/gi18n.h and glib/gi18n-lib.h for common
10287   gettext support, including a Q_() macro for translation
10288   with context [Matthias Clasen]
10289 * Add a more flexible G_FILENAME_ENCODING variable
10290   as a replacement for G_BROKEN_FILENAMES [Matthias]
10291 * Fix the return value g_main_context_iterate() for
10292   newly ready sources [Padraig O'Briain]
10293 * Handle Hangul composition for normalization [Noah Levitt]
10294 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
10295 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
10296 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
10297 * Documentation improvements [Matthias]
10298 * GObject [Tim Janik]
10299  - Support '-' in g_signal_connect()/disconnect() names
10300    like 'swapped-signal'.
10301  - Add g_type_class_peek_static() and use to optimize
10302    g_object_new() for static types [Tim]
10303  - Allow setting construct-only properties from within
10304    init() implementations
10305  - Enforce readability/writeability in g_object_set/get()
10306 * Fix bug with g_ascii_strtod and multi-byte separator.
10307   [Behdad Esfahbod, Roozbeh Pournader]  
10308 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
10309   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
10310   Morten Welinder]
10311 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
10312
10313 Overview of Changes from GLib 2.2.x to GLib-2.3.0
10314 =================================================
10315
10316 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
10317 * Update Unicode data to Unicode 4.0 [Noah Levitt]
10318 * Support XML-safe formatted output with 
10319   g_markup_[v]printf_escaped [Owen Taylor]
10320 * Add g_file_read_link to read symbolic links [Matthias]
10321 * Add g_unichar_get_mirror_char to obtain the 
10322   mirrored variant of a character [Noah]
10323 * Support for one-time initialization functions. 
10324   [Sebastian Wilhelmi]
10325 * Miscellaneous API additions: g_vasprintf
10326   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
10327 * Docs improvements [Matthias]
10328 * Add support instance-private data on classed types
10329   [Mark McLoughlin, Tim Janik, Owen]
10330 * Optimize signal emissions [Soeren Sandmann, Tim]
10331 * Support a "default vtable" per interface [Tim]
10332 * Add support for properties on interfaces [Owen, Tim]
10333 * Miscellaneous API additions: g_value_take_string(),
10334   g_value_take_param(), g_value_take_object(), 
10335   g_value_take_boxed(). [Matthias]
10336 * Win32 build fixes [Tor Lillqvist]
10337
10338 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
10339 =================================================
10340
10341 * Fix a problem with g_thread_init() on 64-bit problems
10342   [Alceste Scalas, Sebastian Wilhelmi]
10343 * Add assembly implementations of byteswap macros
10344   for ia64 and x86_64. [Manish Singh]
10345 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
10346 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
10347
10348 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
10349 =================================================
10350
10351 * Win32 bug fixes [Tor Lillqvist]
10352 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
10353   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
10354 * Ensure we have a GUINT64_FORMAT by pulling in Trio
10355   if necessary [Manish Singh]
10356 * Further Trio build fixes [Matthias Clasen, Owen]
10357 * Hack around gcc, libtool issues with -pthread [Owen]
10358 * Docs improvements [Matthias]
10359 * Bug and portability fixes 
10360 * Updated and new translations (bg,de,fi,fr,sq,fr)
10361
10362 Other contributors: Kai Poitschke, Morten Welinder
10363
10364 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
10365 =================================================
10366
10367 * autoconf changes to make it possible to cross compile
10368   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
10369   Johannes Stezenbach]
10370 * Use libintl when it has bind_textdomain_codeset() and
10371   GLib doesn't. [Owen]
10372 * Improve generation of pseudo-random integers [Morten Welinder, 
10373   Sebastian Wilhelmi]
10374 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
10375 * Cleanup include order [Sven Neumann]
10376 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
10377 * Doc fixes and additions [Matthias]
10378
10379 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
10380   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
10381
10382 Overview of Changes from GLib 2.0.x to GLib-2.1.x
10383 =================================================
10384
10385 * Add copy of the Trio library to build and use for printf() when 
10386   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
10387 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
10388 * Add g_markup_parse_context_get_element() [Matthias]
10389 * Add g_utf8_strreverse [Matthias]
10390 * Add g_ascii_strtoull() [Tim Janik]
10391 * Support scanning of 64-bit values with GScanner [Tim]
10392 * Add g_set/get_application_name() [Havoc Pennington]
10393 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
10394   Use for g_return_if_fail(). [Matthias Clasen]
10395 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
10396 * Improve the seeding algorithm of GRandom to avoid problems
10397   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
10398   environment variable. [Sebastian Wilhelmi]
10399 * Improve thread configure checks, use -pthread where applicable
10400   [Sebastian]
10401 * Improve handlng of thread priorities [Sebastian]
10402 * Fix up parameter names that might shadow functions from
10403   system headers [Soeren Sandmann]
10404 * Clean up usage of deprecated functions [Manish Singh]
10405 * Docs fixes and improvements. In particular, include "Since" information.
10406   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
10407   Owen Taylor, Morten Welinder]. 
10408
10409 Overview of Changes in GLib 2.0.7
10410 =================================
10411
10412 * Fix C++ warnings in gtype.h [Dom Lachowicz]
10413 * Fix g_type_fundamental_next() [Tim Janik]
10414 * Fix various missing includes of config.h [Morten Welinder]
10415 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
10416 * Various 64-bit fixes [Manish Singh]
10417 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
10418 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
10419 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
10420      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
10421      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
10422 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
10423
10424 Overview of Changes in GLib 2.0.6
10425 =================================
10426
10427 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
10428 * Clean up debug spew from GObject [Anders Carlsson]
10429 * Compiler warning fixes [David L. Cooper II]
10430 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
10431 * Fixes for --disable-debug [Sebastian Wilhelmi]
10432 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
10433   Rajkumar Sivasamy, Laurent Vivier]
10434 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
10435   Sebastian Rittau, Linus Welleij]
10436 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
10437 * Updated translations (bg,ko,vi)
10438
10439 Overview of Changes in GLib 2.0.5
10440 =================================
10441
10442 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
10443 * Clean up debug spew from GObject [Anders Carlsson]
10444 * Compiler warning fixes [David L. Cooper II]
10445 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
10446 * Fixes for --disable-debug [Sebastian Wilhelmi]
10447 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
10448   Rajkumar Sivasamy, Laurent Vivier]
10449 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
10450   Sebastian Rittau, Linus Welleij]
10451 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
10452 * Updated translations (bg,ko,vi)
10453
10454 Overview of Changes in GLib 2.0.4
10455 =================================
10456
10457 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
10458 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
10459 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
10460 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
10461
10462 Overview of Changes in GLib 2.0.3
10463 =================================
10464
10465 * Handle sorting 0-length arrays (Ron Arts)
10466 * Threading fixes (Sebastian Wilhelmi)
10467 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
10468   Sebastian, Qingjiang Yuan)
10469 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
10470 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
10471 * Win32 fixes (Tor Lillqvist)
10472 * Try to fix g_get_charset() related segfaults. (Owen)
10473 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
10474   Andrew P. Lentvorski, Jr.)
10475 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
10476 * g_markup fixes. (Matthias Clasen.)
10477 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
10478   Wayne Schuller)
10479
10480 Overview of Changes in GLib 2.0.1
10481 =================================
10482
10483 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
10484 * Performance improvements for GObject parameter lookup, 
10485   g_filename_to/from_utf8() [Alex Larsson]
10486 * Actually check interface prerequisites [Matthias Clasen,
10487   Miroslaw Dobrzanski-Neumann]
10488 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
10489 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
10490 * Fixes for g_log() and threading.
10491   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
10492 * Make g_print(), g_printerr(), g_warning(), etc, convert from
10493   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
10494 * Fixes for GIOChannel on windows. [Tor Lillqvist]
10495 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
10496 * Fix file descriptor leak in g_file_get_contents() [Matthias]
10497 * Workaround iconv() problems on older Solaris [Lauri Alanko]
10498 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
10499 * Minor bug fixes.
10500
10501 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
10502   Akira Tagoh, Morten Welinder
10503
10504
10505 Overview of Changes in GLib 2.0.0
10506 =================================
10507
10508 * Thread portability fixes [Sebastian Wilhelmi]
10509 * Documentation updates [Owen Taylor]
10510 * Make g_strerror(), g_strsignal() properly return UTF-8,
10511   call bind_text_domain_codeset() so that error strings
10512   are in UTF-8 as well. [Owen, Tor Lillqvist]
10513
10514 Overview of Changes in GLib 2.0.0 rc1:
10515 ======================================
10516
10517 * Win32 fixes [Tor Lillqvist]
10518 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
10519 * Fix up g_date_strftime [Daniel Elstner]
10520 * Add some structure padding [Tim Janik]
10521 * Make g_get_homedir() prefer the users home directory to $HOME
10522
10523 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
10524
10525 Overview of Changes in GLib 1.3.15:
10526 ===================================
10527
10528 * Speed up marshalers by using private access to GValue 
10529   [Anders Carlsson, Tim Janik]
10530 * Reduce GValue to 2 elements [Tim]
10531 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
10532 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
10533 * Add padding to various structures [Owen Taylor, Tim]
10534 * Win32 fixes [Tor Lillqvist]
10535
10536 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
10537   Daniel Elstner
10538
10539 Overview of Changes in GLib 1.3.14:
10540 ===================================
10541
10542 * Register value transformations for gint64, guint64 [Andy Wingo]
10543 * Build with large-file support [Sven Neumann, Owen Taylor]
10544 * Fix handling of hostnames in URI's [Darin Adler]
10545 * Main loop bug fixes [Havoc Pennington, Owen]
10546 * Doc fixes and improvements [Manish Singh, Tim Janik]
10547 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
10548 * Win32 fixes [Hans Breuer, Tor Lillqvist]
10549 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
10550 * Miscellaneous bug fixes
10551
10552 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
10553   Morten Welinder.
10554
10555 Overview of Changes in GLib 1.3.13:
10556 ===================================
10557
10558 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
10559 * Miscellaneous win32 fixes [Tor, Hans Breuer]
10560 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
10561 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
10562 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
10563 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
10564   Laszlo Peter, Havoc Pennington, Tim Janik]
10565
10566 Overview of Changes in GLib 1.3.12:
10567 ===================================
10568
10569 * Implement closure chaining, fixing up API (Tim Janik)
10570 * Closure chaining test case (James Henstridge)
10571 * Make GType long not int where both are equal width (Tim)
10572 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
10573 * Fixes for NetBSD. (Dan Winship)
10574 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
10575 * Save space for GBSearchArray (Tim Janik)
10576 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
10577
10578 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
10579   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
10580   Sebastian Wilhelmi.
10581
10582
10583 Overview of Changes in GLib 1.3.11:
10584 ===================================
10585
10586 * Win32 fixes [Hans Breuer, Tor Lillqvist]
10587 * Documentation improvements [Matthias Clasen]
10588 * Portable directory handling API [Hans]
10589 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
10590 * Fix excess relocations in Unicode tables [Andrew Taylor]
10591 * Fix gpattern for UTF-8 [Matthias Clasen]
10592 * Support overriding class closures [Tim Janik]
10593 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
10594 * Hide pointers to type information inside GType to reduce locking
10595   [Alex Larsson, Tim]
10596 * Adds check for direct inclusion of gobject/*.h [Owen]
10597 * GObject API cleanups [Tim]
10598
10599 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
10600   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
10601
10602
10603 Overview of Changes in GLib 1.3.10:
10604 ===================================
10605
10606 * Many Win32 fixes and improvements [Tor Lillqvist]
10607 * Documentation improvements [Matthias Clasen]
10608 * g_string_printfa() renamed to g_string_append_printf()
10609 * Use libcharset from libiconv to implement charset detection
10610   more portably. [Owen Taylor, Hidetoshi Tajima]
10611 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
10612 * Make support for 64 bit integers a requirement [Joshua]
10613 * GPattern improvements [Tim Janik, Matthias]
10614 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
10615 * Many bug fixes and minor tweaks.
10616
10617 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
10618   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
10619   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
10620   Jacob Berkman
10621
10622
10623 Overview of Changes in GLib 1.3.9:
10624 ==================================
10625
10626 * Fixes for comparison of threads [Sebastian Wilhelmi]
10627 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
10628 * Win32 fixes [Tor Lillqvist, Hans Breuer]
10629 * Add a len argument to g_ascii_strup/strdown
10630 * Bug, portability fixes, cleanups.
10631
10632 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
10633
10634
10635 Overview of Changes in GLib 1.3.8:
10636 ==================================
10637
10638 * Documentation updates [Owen]
10639 * Made GType interfaces overridable in derived types
10640 * Many win32 fixes [Tor Lillqvist]
10641 * Miscellaneous cleanups and fixes
10642
10643 Other contributors:
10644   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
10645
10646
10647 Overview of Changes in GLib 1.3.7:
10648 ==================================
10649
10650 * Integrate GClosure support into the main loop [Owen Taylor]
10651 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
10652 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
10653 * Minor hash table optimizations
10654 * Main loop and threading improvements [Sebastian Wilhelmi]
10655 * Added g_ascii_* functions to be used for locale insensitive UTF-8
10656   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
10657 * Add functions for Unicode case-conversion, normalization, and 
10658   collation [Owen]* GString improvements [Owen]
10659 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
10660 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
10661 * Make code 64bit clean [Mark Murnane]
10662 * More G_CONST_RETURN fixes
10663 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
10664 * Miscellaneous bug and API fixes
10665
10666 Other contributors:
10667   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
10668   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
10669   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
10670   Peter Williams
10671
10672
10673 Overview of Changes in GLib 1.3.6:
10674 ==================================
10675
10676 * Threads have a "return value" from g_thread_join
10677 * Removed ability to adjust thread stack size
10678 * Prefix warnings with progname/PID by default, change toggle for this to 
10679   be an env variable G_MESSAGES_PREFIXED not a compile-time option
10680 * GMarkup speedups
10681 * GDate const, convenience fixups
10682 * Include test cases that headers are compilable by C++ compiler
10683 * Add ability to spawn processes with argv[0] != executable path.
10684 * g_strstr_len, g_strrstr, g_strrstr_len
10685 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
10686 * Misc bug fixes
10687
10688
10689 Overview of Changes in GLib 1.3.5:
10690 ==================================
10691
10692 * Added an installed glib-mkenums Perl program for parsing enumeration
10693   declarations from header files.
10694 * Mark some additional deprecated functions.
10695 * Bug and Portability fixes
10696
10697
10698 Overview of Changes in GLib 1.3.4:
10699 ==================================
10700
10701 * Efficiency improvements for GThreadPool
10702 * A few bug fixes
10703 * Build fixes
10704 * Documentation improvements
10705
10706
10707 Overview of Changes in GLib 1.3.3:
10708 ==================================
10709
10710 GLib:
10711
10712 * More user_data support in various functions.
10713 * Main loop API revamps to support per-thread main loops.
10714 * Unicode handling improvements.
10715 * Implemented debugging traps.
10716 * G_CONST_RETURN specification all over the place.
10717 * Various new small utility functions.
10718 * Random number generator precision improvements.
10719 * New configure option --disable-mem-pools.
10720 * Many Win32 improvements.
10721 * Added g_try_malloc() friends varinats.
10722 * Many documentation improvements.
10723 * Many threading improvements, support for dynamic allocation
10724   of static mutexes.
10725 * GHookLIst API cleanups.
10726 * Improved format support of GDate parser.
10727 * String function speed improvements with new g_stpcpy().
10728 * Hashtable API additions.
10729 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
10730 * Optimizations, cleanups, bug fixes.
10731
10732 GObject:
10733
10734 * Added many convenience functions.
10735 * GClosure and GParamSpec use float/sink ref-counting scheme now.
10736 * Reworked property change notification.
10737 * Binary searchable array cleanups, so it's widely usable now.
10738 * Added static content keeping for some GValue types.
10739 * Support for statically scoped signal parameters.
10740 * Extinguished property trailer args in set/get interface.
10741 * Added support for abstract types.
10742 * G_CONST_RETURN specification all over the place.
10743 * Split parameter exchange functionality into value transforms
10744   and parameter conversions.
10745 * Added signal emission hooks and signal accumulators.
10746 * Added interface prerequisites to support is_a (interface, object)
10747   relations.
10748 * Implemented GValueArray.
10749 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
10750   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
10751   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
10752 * Varrags value collection improvements.
10753 * Implemented debugging traps.
10754 * Made things thread-safe.
10755 * Many documentation improvements.
10756 * Many cleanups, optimizations and bug fixes.
10757
10758
10759 Overview of Changes in GLib 1.3.2:
10760 ==================================
10761
10762 GLib:
10763
10764 * Win32 build improvements  [Tor]
10765 * Improvements to error reporting  
10766   (g_critical(), g_return_if_reached()) [Darin]
10767 * Add g_strlcpy/g_strlcat  [David Wheeler]
10768 * New IO channel implementation for Win32  [Tor] 
10769 * Make g_array_free, g_string_free return pointer to memory requested
10770   not to be freed.  [Darin]
10771 * Added GError based error reporting for thread functions.  [Sebastian]
10772 * Moved reference docs into GLib distribution. [Owen]
10773 * Added g_convert() for doing convenient character set conversions based
10774   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
10775 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
10776   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
10777 * Portability fixes for threading.  [Sebastian]
10778 * Added convenient functions for launching new processes (g_spawn_*),
10779   and shell quoting/unquoting functions.  [Havoc]
10780 * Split glib.h into many headers.  [Sebastian]
10781 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
10782 * Fixed confusions between comparison functions that return <0, 0, >0
10783   and equaility functions that return FALSE,TRUE.  [Sebastian]
10784 * Added safe/portable temporary file manipulation functions.  [Tor]
10785 * autoconf improvements.  [Raja]
10786 * Many documentation improvements.
10787 * Bug fixes.
10788
10789 GObject:
10790
10791 * Added boxed and pointer types.  [Tim/Jonathan]
10792 * Added callback abstraction (GClosure)  [Tim]
10793 * Added signal system (GSignal)  [Tim]
10794 * Make GTypePlugin an interface  [Tim]
10795 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
10796 * Bug fixes.
10797
10798
10799 What's new in GLib 1.3.1:
10800 =========================
10801
10802 * New GObject library added including object system based on
10803   the GTK+ object system. 
10804 * Functions for getting the properties of Unicode characters, 
10805   computing the canonical decomposition and ordering combining
10806   characters aand manipulating UTF-8 string manipulation based
10807   on libunicode.
10808 * GString now properly handles embedded nuls.
10809 * Multiple fixes from the 1.2.x branch.
10810 * Upgrade to libtool 1.3.3
10811 * Full thread support (thread creation and destruction).
10812 * BeOS port, BeOS dynamic modules.
10813 * Many improvements to the Windows ports.
10814 * Improvements to the OS/2 port, OS/2 module support.
10815 * Double ended queue implementation.
10816 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
10817 * New configure option --enable-msg-prefix to prefix messages, warnings
10818   et ceteri with the program name and the process id.
10819 * New thread-safe random number generator Mersenne Twister.
10820 * g_strcompress() added, g_strescape() had a slight API change, and
10821   more tightly defined semantics.
10822 * the g_string(x) macro has been removed, #x may be used instead.
10823                                 
10824