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