Imported Upstream version 2.61.3
[platform/upstream/glib.git] / NEWS
1 Overview of changes in GLib 2.61.3
2 ==================================
3
4 * Support setting thread name on BSD systems (#1761)
5
6 * Install previously-uninstalled headers for public `GNativeSocketAddress`
7   object (#1854)
8
9 * Very initial support for Windows apps (UWP) (!1057)
10
11 * Add various new valgrind suppressions to `glib.supp` (#1879, !1075)
12
13 * Bugs fixed:
14  - #83 Optimisation for g_nearest_pow() in garray.c
15  - #512 GSignal: accumulator function not called to accumulate G_SIGNAL_RUN_CLEANUP object handler return values
16  - #873 allow NULL arguments to parse_strv
17  - #905 Patches from static analysis run on 2.40
18  - #1057 goption: add sanity check to input parameters
19  - #1309 GSettings object stops emitting "changed" signal on g_settings_reset after call to g_settings_delay
20  - #1620 GDBus criticals from GVfs with GLib master
21  - #1761 Setting thread-name on BSD systems
22  - #1803 GDK_SCALE=X is not respected when using "gio open"
23  - #1819 Invalid characters in Open Location dialog crashes GIMP
24  - #1852 Regression: g_mkdir_with_parents() returns 0 on failure
25  - #1854 glib/gio: GNativeSocketAddress headers not installed.
26  - #1860 g_clear_handle_id does not trigger GLIB_VERSION_MAX_ALLOWED warning
27  - #1863 Potential invalid writes on g_utf8_strreverse
28  - #1867 A couple of en_GBisms
29  - #1870 GSettingsBackend watches not thread-safe
30  - #1879 Incomplete valgrind suppressions - 16 KiB leak reported by valgrind from loading libglib-2.0.so
31  - #1880 glib/gbacktrace.c: If dup2 happened to return -1, don't call dup2 with same value
32  - #1881 GIO_USE_VOLUME_MONITOR and GIO_USE_FILE_MONITOR do not work as documented
33  - !1002 Remove mentions of mailing lists from the documentation
34  - !1011 gapplication: Fix a leaking GRemoteActionGroup member
35  - !1015 Post-release version bump
36  - !1016 gnetworkmonitornm fixups
37  - !1017 Improve ISO 8601 parsing by GDateTime
38  - !1023 g_object_get_property: Improve documentation for use of G_VALUE_INIT
39  - !1026 gutf8: Assert that written memory stays in bounds
40  - !1027 gfileutils: Fix error propagation for other than ENOENT
41  - !1031 meson: build gnulib if printf isn't good enough
42  - !1032 meson: small printf check cleanups
43  - !1033 win32: don't assume the format specifier for the stdlib printf/scanf like functions
44  - !1034 glib/tests/fileutils: Add a reproducer for #1852
45  - !1036 cond test: Don't make assumptions about struct sigaction member order
46  - !1037 Meson: Override glib-compile-resources/schemas
47  - !1044 Relax use of g_test_bug() to not require g_test_bug_base() to be called first
48  - !1049 minor typos in the documentation
49  - !1050 tests: Fix a pragma warning on FreeBSD
50  - !1054 gerror: Add a docs paragraph about not displaying errors verbatim in UI
51  - !1057 Some (probably) easy uwp patches
52  - !1059 Update win32 readme, add myself to codeowners
53  - !1066 libffi.wrap: Meson port has moved to FDO gitlab
54  - !1068 gsubprocesslauncher.c: fix documentation
55  - !1071 meson: Move libdl_dep to the top level
56  - !1074 Adjust README formatting
57  - !1075 glib.supp: add suppression for g_type_class_ref()
58
59 * Translation updates:
60  - Basque
61  - Catalan
62  - Czech
63  - English (United Kingdom)
64  - French
65  - Galician
66  - German
67  - Hungarian
68  - Indonesian
69  - Korean
70  - Lithuanian
71  - Polish
72  - Romanian
73  - Spanish
74  - Swedish
75
76
77 Overview of changes in GLib 2.61.2
78 ==================================
79
80 * Add various new array functions (#236, #269, #373)
81  - `g_array_copy()`
82  - `g_ptr_array_copy()`
83  - `g_ptr_array_extend()`
84  - `g_ptr_array_extend_and_steal()`
85  - `g_array_binary_search()`
86
87 * Add `g_assert_finalize_object()` helper function for writing tests (#488)
88
89 * Rework how D-Bus connections are closed/unreffed when `g_test_dbus_down()` is
90   called. Tests which leak a `GDBusConnection` may now time out and abort,
91   rather than silently leaking. (#787)
92
93 * Add a deprecation macro for GLib macros, and use it; third-party uses of
94   long-deprecated GLib macros may now start causing warnings. (#1060)
95
96 * Deprecate `GTime` and `GTimeVal`, and various functions which use them.
97   Use `GDateTime` and `guint64` UNIX timestamps instead. (#1438)
98
99 * Stop using `G_DISABLE_DEPRECATED` to allow disabling deprecation warnings;
100   third-party code should now be using
101   `GLIB_VERSION_{MIN_REQUIRED, MAX_ALLOWED}` to control symbol usage (!871)
102
103 * Improve support for running `ninja test` when GLib is built statically (#1648)
104
105 * Improve `GNetworkMonitor` detection of offline states (#1788)
106
107 * Fix build failure on macOS related to missing `_g_content_type_get_mime_dirs`
108   function (#1791)
109
110 * Add various installed utilities’ paths to `gio-2.0.pc` (#1796)
111
112 * Fix keyfile `GSettings` backend and portal (especially relevant to any version
113   of GLib included in a flatpak runtime) (#1822, !985)
114
115 * More IPv6 ‘Happy Eyeballs’ fixes in `GNetworkAddress` (!865)
116
117 * Fix CVE-2019-12450, wide permissions of files when copying using GIO (!876)
118
119 * Bump the Meson dependency from 0.48.0 to 0.49.2; we won’t depend on anything
120   higher than this for a while, as Debian 10 ships 0.49 (!924)
121
122 * Various test fixes for Windows (!930, !931)
123
124 * Initial support for Universal Windows Platform (UWP): certification, and use
125   of packaged libraries (!951)
126
127 * Add experimental clang-cl support on Windows, allowing `g_autoptr()` support
128   on Windows (!979)
129
130 * Bugs fixed:
131  - #77 G_STDIO_NO_WRAP_ON_UNIX wraps
132  - #236 Add a function to copy an array
133  - #269 Additional convenience functions for g_ptr_array
134  - #373 GArray could use a binary search function
135  - #436 running tests leaves lots of coredumps
136  - #453 find-enclosing-mount docs confusing
137  - #488 Add g_object_assert_last_unref() helper macro to detect object leaks in tests
138  - #590 A reader lock can be obtained even if a writer is already waiting for a lock
139  - #638 g_atexit is defined when not declared
140  - #737 Initialize GValue in g_object_get_property()
141  - #787 gtestdbus: Properly close server connections
142  - #804 gdbusproxy prefixes unstripped error
143  - #870 Fix and enhance GDatetime for Windows
144  - #872 ucs4 functions have wrong return transfer
145  - #887 gdusmessage.c mishandles bounds of GDBusMessageType and related enums
146  - #894 gvalue: Avoid expensive checks where possible
147  - #940 Docs for g_socket_listener_set_backlog are not very helpful
148  - #943 G_DEFINE_TYPE_WITH_PRIVATE docs not helpful
149  - #1018 Allow guid key in dbus addresses
150  - #1060 Add deprecation macro for macros
151  - #1169 Tools can display gibberish messages from translations
152  - #1270 g_get_charset always returns 8-bit codepage on Windows, crippling UTF-8 output
153  - #1438 Deprecate GTimeVal- and GTime-based APIs
154  - #1635 g_socket_join_multicast_group iface parameter fails on win32/64
155  - #1648 2.58.2: Assorted asserts fail in Arch Linux when built statically
156  - #1729 g_content_type_guess segfaults when passed an empty data buffer on Mac OS
157  - #1788 GNetworkMonitor claims I am offline
158  - #1790 documentation on g_file_info_get_attribute_as_string
159  - #1791 _g_content_type_get_mime_dirs missing from libgio-2.0.0.dylib on MacOS
160  - #1792 glib-genmarshal generated valist marshal does not respect static scope for some types
161  - #1793 glib-genmarshal generates wrong code for va marshaler for VARIANT type
162  - #1794 API Proposal: g_timer_is_active
163  - #1796 Add gio-querymodules variable to pkg-config file
164  - #1797 glib/tests/win32 test failing on 64-bit Visual Studio builds
165  - #1798 /contenttype/tree reliably fails on FreeBSD since !863
166  - #1807 g_dbus_server_new_sync() documentation references nonexistent function
167  - #1808 Stopping a GDBusServer should clean up Unix socket paths (if not abstract) and nonce-tcp nonce files
168  - #1811 Introspection info for g_unichar_compose's 3rd arg should be OUT
169  - #1822 keyfile gsettings backend not loading
170  - #1823 Documentation for disabling selinux is incorrect
171  - #1825 GKeyFileSettingsBackend created without filename construct property and unchecked assertion
172  - #1828 Small typo in gio manpage
173  - #1837 Specify for each (optional) parameter, whether it is OUT or INOUT
174  - #1838 Reword documentation for G_DECLARE_FINAL_TYPE
175  - #1847 Setting GLIB_VERSION_{MIN_REQUIRED, MAX_ALLOWED} to before 2.56 triggers warnings
176  - !533 docs: Document pitfall of deprecation pragmas
177  - !563 ci: Add scan-build job in a new ‘analysis’ pipeline stage
178  - !678 glib-compile-schemas: Improve translatable strings
179  - !817 gdate: Officially mark GTime as deprecated
180  - !851 gsettings: Document that lists are returned in no defined order
181  - !853 gobject: Fix apostrophe usage in a few small bits of documentation
182  - !859 gobject: Add a g_assert_finalize_object() macro
183  - !863 gunicollate/cygwin: Don't use __STDC_ISO_10646__ for wchar_t related checks
184  - !865 gnetworkaddress: fix "happy eyeballs" logic
185  - !867 Post-release version bump
186  - !871 Drop G_DISABLE_DEPRECATED
187  - !873 Use atomic reference counting for GSource
188  - !874 Clamp number of vectors to IOV_MAX / UIO_MAXIOV for GOutputStream writev()...
189  - !875 CI/msys2: disable coverage reporting, lcov doesn't support gcc9 yet
190  - !876 CVE-2019-12450: gfile: Limit access to files when copying
191  - !877 gio: specify proper c_marshaller and va_marshallers
192  - !883 tests: Fix small race in GSubprocess tests
193  - !884 garcbox.c: Fix typo atomit => atomic
194  - !885 goption: Clarify G_OPTION_ARG_FILENAME documentation
195  - !889 Include <sys/filio.h> for FIONREAD
196  - !901 gmain: Clarify that g_source_destroy() doesn’t drop a reference
197  - !904 Add glib-genmarshal tests and fix some valist marshaller bugs
198  - !906 property action: Add state hints
199  - !908 Improve testfilemonitor test repeatability and debuggability
200  - !909 D-Bus auth mechanism improvements
201  - !914 ci: Run scan-build in a different build directory
202  - !915 docs: fix typo on arrays examples in gvariant-text
203  - !917 docs: Fix name of IRC channel in CONTRIBUTING.md
204  - !919 glib/tests/refcount.c: Fix tests on non-GCC-isque compilers
205  - !920 gmacros: Only use deprecated attributes on enumerators with GCC ≥ 6.5
206  - !923 Check if compiler symbols are defined before using them
207  - !924 Bump the required version of Meson
208  - !930 glib/tests/convert.c: Skip tests that aren't meaningful for Windows
209  - !931 glib/tests/fileutils.c: Fix stdio Wrapper Test on Windows
210  - !934 build: Increase the slow test timeout to 180s
211  - !935 Ignore */__pycache__/* directories
212  - !937 Fix module tests on Visual Studio builds
213  - !939 gstdio: minor cleanups
214  - !941 list model: Expand items-changed docs
215  - !944 gutils: Don't limit the length of the host name to 99
216  - !945 Avoid overrunning stack at the end of the varargs.
217  - !947 gobject/tests/signals.c: Fix tests on Windows
218  - !948 GObject: Fix mkenums.py and genmarshal.py tests on Windows
219  - !950 ci: Enable CI on FreeBSD 12
220  - !951 Preliminary patches for Universal Windows Platform support
221  - !952 gio: Make minor docs improvements
222  - !953 g_utf8_normalize: Doc comment return missing nullable annotation
223  - !954 Fix the ISO 15924 code for Manichaean
224  - !955 gmacros: Use _Static_assert when C11 is available
225  - !958 gthread: fix minor errno problem in GCond
226  - !961 gmain: Fix g_main_context_prepare priority annotation
227  - !962 gmacros: Use _Static_assert only for non-expr static assert
228  - !964 gmacros.h: Use static_assert on MSVC if possible
229  - !968 Fix typo in request handle
230  - !970 gdatetime: Unset LC_ALL for the test as well
231  - !971 docs.c: Forward link from g_auto* → G_DEFINE_AUTO*
232  - !973 doc: fix typo in gio/gresource.c
233  - !979 Experimental clang-cl support
234  - !980 gmacros.h: Add better support for clang-cl
235  - !981 gio: fix typo in g_settings_reset documentation
236  - !982 Various doc fixes
237  - !985 Keyfile portal fixes
238  - !987 gio/tests: Remove code and comments referring to libtool
239  - !991 fix atomic detection on older gcc versions
240  - !992 docs: Add example to g_test_summary() documentation
241  - !994 gio: Fix minor docs mistakes
242  - !996 Small array test fixes
243  - !997 gdbusaddress: Add missing transfer annotation
244  - !1007 Resubmission of !832 “Try to create the complete path right away and fall back”
245  - !1009 gapplication: remove inactivity_timeout source on finalize
246
247 * Translation updates:
248  - Hungarian
249  - Indonesian
250  - Portuguese (Brazil)
251  - Spanish
252
253
254 Overview of changes in GLib 2.61.1
255 ==================================
256
257 * `g_unichar_isxdigit()` and `g_unichar_xdigit_value()` now handle full-width
258   characters (U+FF21–U+FF26 and U+FF41–U+FF46) (#58)
259
260 * Deprecate `gtester` utility and its test reporting format and enable TAP
261   output by default instead — the `--tap` option to tests is now a no-op
262   (#1441, #1619)
263
264 * Add `g_test_summary()` to allow test authors to programmatically summarise
265   what each unit test in a test suite does (#1450)
266
267 * Upgrade to Unicode Character Database v12.1 (#1713, !822)
268
269 * More IPv6 Happy Eyeballs fixes to `GNetworkAddress` and `GSocketClient`
270   (#1747, #1771, #1774)
271
272 * Fix valgrind and gdb support for the new `GHashTable` changes (#1749, #1780)
273
274 * Fix GTask wait times growing faster than the number of task threads (#1683)
275
276 * Change `GApplication` to ignore `-psn_*` arguments on the macOS command line,
277   as they are irrelevant (#1784)
278
279 * Add `g_autoqueue()` helper macros, similar to `g_autolist()` (!474)
280
281 * Add pre-allocated link helpers for `GList` and `GQueue`:
282  - `g_list_insert_before_link()`
283  - `g_queue_insert_before_link()`
284  - `g_queue_insert_after_link()`
285
286 * Improve network availability detection with NetworkManager to treat lower
287   levels of connectivity as having reduced availability (!781)
288
289 * Add `g_clear_signal_handler()` to allow disconnecting from a `GObject` signal
290   and clearing the signal handler ID to zero in a single call (!819)
291
292 * Add `g_autoptr()` support for `GRWLock` (!825)
293
294 * Define `G_OS_UNIX`, not `G_OS_WIN32`, when GLib is built agains Cygwin (!862)
295
296 * Bugs fixed:
297  - #29 GScanner: should explicitly document modifiable fields (value, next_value, ...)
298  - #58 g_unichar_isxdigit() and g_unichar_xdigit_value() should deal with full-width a-fA-F
299  - #106 Boxed types should be documented better
300  - #135 g_unichar_totitle(0) returns 0x00001F88 instead of 0
301  - #429 g_format_size() is broken on Windows
302  - #1441 Deprecate gtester
303  - #1450 Add API for tests to describe what they're checking
304  - #1619 GTest should have a way to default to TAP
305  - #1683 GTask: task_wait_time is increased constantly when the number of running thread is greather than 10
306  - #1713 Upgrade to Unicode Character Database v12
307  - #1739 meson build failure libdl
308  - #1747 Critical in g_socket_client_async_connect_complete
309  - #1749 New GHashTable implementation confuses valgrind
310  - #1753 Remove memory leaks from gio/test/resolver.c
311  - #1755 Please revert #535 gmacros: Try to use the standard __func__ first in G_STRFUNC
312  - #1759 test_month_names: assertion failed
313  - #1760 Document for g_resolver_lookup_records why it returns a list of list of gchar*.
314  - #1763 tests: -p runs tests in the reverse of the specified order
315  - #1768 g_strlcat(): Possible buffer overflow in implementation
316  - #1771 GNetworkAddressAddressEnumerator unsafely modifies cache in GNetworkAddress
317  - #1774 Leaks in gsocketclient.c connection code
318  - #1776 glib/date test fails
319  - #1780 GDB pretty-printer for GHashTable no longer works
320  - #1782 Error in documentation for cross-compile.
321  - #1784 MacOS adds a -psn_X_XXXXXX parameter to the command line
322  - !474 Add g_autoqueue
323  - !476 Add pre-allocated link helpers for GList and GQueue
324  - !556 gtestutils: Make --tap compatible with -p and --GTestSkipCount
325  - !732 gsocket: Clarify in docs that `flags` arguments can be platform specific
326  - !766 W32: swap special g_get_prgname() for platform_get_argv0()
327  - !774 Only build tests if certain conditions are met.
328  - !780 Add copyright and licensing terms to test report generator
329  - !781 gnetworkmonitornm: Fix network available detection
330  - !782 build: Fix check for RTLD_NEXT
331  - !785 Remove monitor test
332  - !787 build: Remove */.gitignore files
333  - !791 glib/gconstructor.h: Include stdlib.h for MSVC builds
334  - !792 general: Remove a few unhelpful references to ‘master’
335  - !795 gdesktopappinfo: Add support for MATE and Xfce4 terminals
336  - !802 gio: tests, don't check for libdl on OpenBSD
337  - !806 Get to 100% coverage on GQueue tests
338  - !808 Update the Docker images used for CI
339  - !809 Modified version of !784 — Adding tests cases for a better coverage of glib/tests/strfuncs.c
340  - !813 gappinfo: Add precondition checks to GAppLaunchContext env methods
341  - !814 gschema.dtd: Add target attribute to alias
342  - !819 Clear signal handler
343  - !820 ci: Keep JUnit report script working on Debian stable
344  - !821 Various minor cleanups to autoptrs
345  - !822 glib: Update Unicode Character Database to version 12.1.0
346  - !825 Add autoptr support for GRWLock
347  - !831 build: (Long time after) post-release version bump
348  - !835 Fix typo in German translation
349  - !836 Document the best practices for binding GInitiallyUnowned
350  - !862 build: define G_OS_UNIX, not G_OS_WIN32 under cygwin
351
352 * Translation updates:
353  - Basque
354  - Catalan
355  - German
356  - Indonesian
357  - Spanish
358
359
360 Overview of changes in GLib 2.61.0
361 ==================================
362
363 * Changes to `iconv` configure options, including the default iconv
364   implementation on macOS — distributors may need to check their configure
365   scripts (#1557)
366
367 * Build fixes when building GLib with `G_DISABLE_ASSERT` defined (#1708)
368
369 * Fix documentation for `gdbus-tool wait` to use correct units (#1737)
370
371 * Improvements to symlink handling on Windows (!269)
372
373 * Add exception handling for crashes on Windows (!582)
374
375 * Set `G_WITH_CYGWIN` again when GLib is built on Cygwin (this was a regression
376   from the autotools build) (!736)
377
378 * Use `GCocoaNotificationBackend` by default on macOS, rather than
379   `GGtkNotificationBackend` (!745)
380
381 * Use Windows symbol visibility when GLib is built on Cygwin, as PE binaries
382   are subject to W32 visibility mechanics — this affects the definition of
383   `_GLIB_EXTERN` (!752)
384
385 * Add coloured output support to `gdbus introspect` (!761)
386
387 * Bugs fixed:
388  - #682 docs: advise not to use non-literal strings as qdata keys
389  - #1177 gparted crashes due to g_quark_from_static_string used in global initialization
390  - #1258 the buffer written to by g_input_stream_read is not marked as an out parameter
391  - #1557 By default glib tries to use libc instead of native iconv on OSX
392  - #1566 Meld Windows shows error on startup "There was a problem starting c:\Program"
393  - #1614 GIO tests fail on FreeBSD CI with: Unexpected error from C library during 'pthread_mutex_lock': Invalid argument
394  - #1708 Building GLib with G_DISABLE_ASSERT fails
395  - #1709 GResource generation test incompatible with stable LLVM on Linux
396  - #1710 Crash in g_cancellable_cancel
397  - #1712 gdbus-proxy test is flaky
398  - #1724 unconditional check in fuzzing/meson.build
399  - #1725 gosxappinfo.h is not installed on macOS
400  - #1727 Cannot use trash folder with an NFS mount using automount / autofs
401  - #1728 GSocket does not support ENOTSOCK
402  - #1732 Win32: lookup_by_name_async segfaults for not available domains
403  - #1737 gdbus-tool wait command timeout argument incorrect unit reference
404  - !67 glib: update internal gnulib from upstream
405  - !269 Win32 symlink code refactoring
406  - !493 tests: Check that cancelling g_file_replace don't overwrite existing file
407  - !582 Basic W32 exception handling for glib
408  - !680 Fix warnings glib
409  - !690 Fix thread safety issues
410  - !694 gvariant-parser: Fix pattern coalesce of M and *
411  - !706 Fix data races in task test and gmenumodel test
412  - !709 Bump release version for 2.62 series
413  - !710 socket: Fix annotation for flags in g_socket_receive_message
414  - !712 gwin32: Fix comment for g_win32_veh_handler
415  - !716 Various minor documentation fixes
416  - !717 Improve formatting of GCC attribute documentation
417  - !718 GSocketClient - Free last error if a connection attempt fails and on retry the...
418  - !719 Handle an UNKNOWN NetworkManager connectivity as NONE
419  - !721 codegen: Fix use of uninitialised variable
420  - !723 Provide examples for GNUC attribute macros
421  - !724 meson: do a build-time check for strlcpy before attempting runtime check
422  - !728 gsocket: Remove (type) annotation from flags arguments
423  - !730 Improve gdbus-address parsing tests
424  - !735 docs: Use the right g_autoptr function when using an auxiliary function
425  - !736 Set G_WITH_CYGWIN again
426  - !737 gresolver: Don’t use gai_strerror() on Windows, as it isn’t threadsafe
427  - !741 Fix use-after-free triggered by gnome-session-binary
428  - !745 gcocoanotificationbackend: give more priority than the gtk one
429  - !749 gio: Add missing autocleanup definition for GSettingsSchema{Key,Source}
430  - !750 Check for RTLD_NEXT
431  - !752 Use W32 visibility for Cygwin
432  - !754 Check for /proc/self/cmdline
433  - !757 Fix gnulib build on older Visual Studio builds
434  - !760 Properly ensure the cocoa notification backend type
435  - !761 RFC: gdbus-tool: Add --color option for introspect
436  - !762 gutils: Add (nullable) annotation to g_get_prgname()
437  - !765 gslice: Use a convenience macro
438  - !769 ci: Generate a cover report for the test suite
439  - !772 tests: Check that option-argv0 test succeeds on Linux
440  - !776 tests: Only run --external-data test on GNU ld/objcopy
441  - !779 Fix 2.62 documentation symbols
442
443 * Translation updates:
444  - Dutch
445
446
447 Overview of changes in GLib 2.60.0
448 ==================================
449
450 * Further fixes to the Happy Eyeballs (RFC 8305) implementation (#1653, #1679, #1693)
451
452 * Add support for the XDG trash portal (#1676, !276)
453
454 * Bugs fixed:
455  - #1653 gsocketclient-slow test is flaky
456  - #1658 keyfile settings backend: Consider tightening permissions
457  - #1668 Fill in CODE-OWNERS file
458  - #1675 glib-compile-resources: c_name generation issue
459  - #1676 Trash portal tries to open files as read-only but D-Bus API documents against that
460  - #1679 socket-service test is flaky
461  - #1693 Happy Eyeballs failure in gsocketclient-slow test
462  - #1697 gthreadresolver: do_lookup_records does res_ninit with an uninitialized state
463  - #1698 g_base64_encode(NULL, 0) causes critical warnings
464  - !276 Support the trash portal
465  - !639 gvariant-parser: Fix error handling when type coalescing fails
466  - !666 Socket fixes to W32 test suite
467  - !674 Update gvdb submodule
468  - !676 Initialize a variable
469  - !677 gerror: Add a missing precondition assertion in documentation
470  - !686 gio: Also support modules built with MSVC
471  - !688 gsocketclient: Fix critical on cancellation
472  - !689 glib-compile-resources: Fix a minor leak
473  - !691 gtask: Separate GTask fields memory locations to avoid data races
474  - !692 glib.supp: Add more variations of existing suppressions
475  - !696 Move closures refcount test to gobject/tests/
476  - !698 gthreadedresolver: Remove unused thread pool
477  - !699 tests: Fix closure-refcount to preserve old semantics
478  - !702 Rename gobjectenumtypes.[ch] to glib-enumtypes.[ch]
479  - !703 Clean up gmarshal.[ch]
480
481 * Translation updates:
482  - Catalan
483  - Czech
484  - French
485  - Friulian
486  - German
487  - Italian
488  - Korean
489  - Romanian
490  - Serbian
491
492
493 Overview of changes in GLib 2.59.3
494 ==================================
495
496 * Fix support for g_get_user_special_dir() on macOS, including support for the Downloads directory (#1048)
497
498 * Ensure that cancelling a GTask cannot cause its callback to be called synchronously (in the same call chain as the original *_async() call) (#1608)
499
500 * Further fixes to the Happy Eyeballs (RFC 8305) implementation (#1644, #1680)
501
502 * Various fixes for installation of installed tests (thanks to Iain Lane) (!649, !651)
503
504 * Various fixes for tests when run on Windows (thanks to LRN) (!665, !667)
505
506 * Bugs fixed:
507  - #535 gmacros: Try to use the standard __func__ first in G_STRFUNC
508  - #875 gio-gvfs on Windows: Don't mishandle other non-native URIs in gwinhttpvfs.c
509  - #1048 "Desktop" shortcut appears twice in file chooser sidebar on OSX
510  - #1608 Cancellation might not be asynchronous under certain circumstances
511  - #1644 network-address test failure in CI: IPv6 Broken (g-io-error-quark, 24)
512  - #1680 Regression: g_socket_client_connect_to_host_async() sometimes gets "Connection refused" when connecting to localhost
513  - #1686 gdbus-peer test is sometimes timing out
514  - !613 Use win32 io channel on windows for the protocol test
515  - !634 Win32: gio/gsocket.c: Set WSAEWOULDBLOCK on G_POLLABLE_RETURN_WOULD_BLOCK
516  - !638 gvariant-parser: Fix parsing of G_MININT* values in GVariant text format
517  - !640 tests: Tag socket-service test as ‘flaky’
518  - !641 Minor typo fixes to GSpawn documentation
519  - !645 gsocketlistener: Fix multiple returns of GTask when accepting sockets
520  - !647 gsocketclient: Ensure task is always returned on cancel
521  - !648 gio/tests/task: Run the worker indefinitely until it's cancelled
522  - !649 gio tests: Install test1.overlay file when building installed tests
523  - !650 gstring: fully document semantics of @len for g_string_insert_len
524  - !651 tests: Install the slow-connect-preload.so library and use it
525  - !667 GSubprocess fixes for W32 test suite
526  - !668 tests: Mark gdbus-peer test as flaky
527  - !669 GWin32VolumeMonitor: Sort the volumes correctly
528  - !670 gpollableoutputstream: Fix the description of the interface
529  - !672 Fix some tests when running as root
530
531 * Translation updates:
532  - Catalan
533  - Danish
534  - French
535  - Indonesian
536  - Kazakh
537  - Portuguese (Brazil)
538  - Slovenian
539  - Turkish
540
541
542 Overview of changes in GLib 2.59.2
543 ==================================
544
545 * Fix check on GDBusMessage size when reading it. (#1642)
546
547 * Add async GIO API: g_file_query_default_handler_async(), g_app_info_launch_uris_async() (#1249, #1347)
548
549 * Fix some bugs in the Happy Eyeballs implementation. (#1646, #1649)
550
551 * Install a new generated header with enum types for Unicode enums. (!481)
552
553 * Support the XDG trash portal. (!276)
554
555 * Bugs fixed:
556  - #1224 TSAN patches
557  - #1249 xdg-open/gnome-open doesn't work if service isn't started
558  - #1347 g_app_info_launch_default_for_uri_async  is not really async
559  - #1376 gmarkup: Optimize g_markup_escape_text()
560  - #1642 minor mismatch between error and code in g_dbus_message_bytes_needed
561  - #1646 Criticals in g_socket_client_enumerator_callback()
562  - #1649 Critical in g_socket_client_connected_callback
563  - #1673 G_MININT constants broken in g-i
564  - !276 Support the trash portal
565  - !481 Define enum types for Unicode enums
566  - !585 gio: do not pass O_PATH file descriptors to portal APIs
567  - !593 Don't fail trash test if ~/.local doesn't exist or mount points can't be determined (master)
568  - !609 Make `g_app_info_launch_uris_async()` really asynchronous
569  - !619 gvariant: Fix a mistake in docs
570  - !622 Fixing warnings
571  - !626 gdbus: Avoid printing null strings
572  - !627 gsocketclient: Fix criticals
573  - !629 Various memory leak cleanups to GSettings tests (subset)
574  - !630 docs: Ignore more version macros
575
576 * Translation updates:
577  - Galician
578  - Hungarian
579  - Lithuanian
580  - Polish
581  - Spanish
582
583
584 Overview of changes in GLib 2.59.1
585 ==================================
586
587 * Autotools support is gone. (!580)
588
589 * g_format_size() now uses a no-break space to separate digits and units;
590   translations will need to be updated accordingly. (#1625)
591
592 * New g_queue_clear_full() API. (#1464)
593
594 * Fix argument quoting on win32 when spawning subprocesses. (!419)
595
596 * Allow polling more than 64 handles on win32 using g_poll(). (#1071)
597
598 * Tag various tests as ‘flaky’. These are no longer run routinely on our
599   upstream CI machines, and downstream packagers may want to not run them (or
600   not treat those test failures as package build failures) on their test
601   machines either. They are in the `flaky` test suite. (!579)
602
603 * Add overlay support to g_resources_get_info(). (#1445)
604
605 * Support defaults and locks in the keyfile GSettings backend. This will be
606   used for flatpaks. (!450)
607
608 * Accept unquoted strings in the keyfile GSettings backend to simplify things
609   for sysadmins. (!603)
610
611 * Update our contribution guidelines (`CONTRIBUTING.md`). (!590)
612
613 * Add writev() and writev_all() APIs to GOutputStream and GPollableOutputStream,
614   and provide implementations of them for many subclasses. (#1431)
615
616 * Bugs fixed:
617  - #424 Add 'proxy' debugging support
618  - #1055 Provide alignment macros
619  - #1071 Eliminate MAXIMUM_WAIT_OBJECTS limitation in g_poll() on Windows
620  - #1445 g_resources_get_info doesn't respect resource overlays
621  - #1464 Add g_queue_clear_full() API
622  - #1500 GListStore needs double checking on some warnings
623  - #1623 xdg-open: file with colon results in “The specified location is not supported”
624  - #1625 Unbreakable space needed when showing size of folder/file
625  - #1636 GTask getters don’t return TRUE/FALSE after bitfield changes
626  - #1637 EXCEPTION_ACCESS_VIOLATION in g_clear_pointer
627  - #1639 GListStore implementation of g_list_model_get_item() returns wrong results on integer overflow
628  - #1655 gvariant-parser warnings
629  - #1663 G_MININT32 triggers compiler warning C4146 with Visual C++
630  - #1666 `G_DEFINE_DYNAMIC_TYPE_EXTENDED` causes warnings with -Wcast-function-type
631  - !319 giomodule: Print the type of each default GIO module
632  - !333 Add writev() API to GOutputStream and GPollableOutputStream
633  - !419 gspawn, win32: qouted args - escape end backslash
634  - !450 Settings portal
635  - !512 gtype: Clarify type of GInterfaceInitFunc
636  - !516 gthread: Add g_private_set_alloc0() convenience API
637  - !535 win32 gpoll: overcome the 64 handles limit
638  - !545 goption: Fix an annotation on g_option_context_parse_strv()
639  - !560 docs: Fix dconf GSETTINGS_BACKEND name in gio overview
640  - !564 gtype: Document type for iface_default_init() function
641  - !568 Add separate definitions of g_assert_[non]null() for C++
642  - !571 docs: Add note on how to check a gboolean condition
643  - !575 gio: Update bad cert error in accept-certificate and GTlsError docs
644  - !579 Temporarily disable flaky tests
645  - !580 Drop autotools support
646  - !583 gmacros: MSVC supports the noreturn function attribute
647  - !587 Remove unused .pc.in files
648  - !588 MSVC: Move dirent implementation to glib/dirent/
649  - !590 Update contribution documentation
650  - !591 gfileinfo: Fix annotation for g_file_info_set_attribute_stringv
651  - !592 Remove leftover build/ directory
652  - !595 gtestutils: pass open file descriptors to subprocess
653  - !597 tests: Tag gsocketclient-slow test as ‘flaky’
654  - !598 gdbus-proxy test fails with GLib-GIO:ERROR:glib/gio/tests/gdbus-proxy.c:832:fail_test: code should not be reached
655  - !599 gdtlsconnection: do not return on a void method
656  - !601 gio: Support "help" in extension point env vars
657  - !602 Update POTFILES.in
658  - !603 keyfile settings: Accept unquoted strings
659  - !608 build: Add -Wno-pedantic flag to compiler arguments
660  - !611 gnetworkaddress: fix use-after-free for network address
661  - !612 gdir: shutup a warning when building with msvc
662  - !615 Fix a couple of wrong compiler warnings
663
664 * Translation updates:
665  - Spanish
666  - Swedish
667
668
669 Overview of changes in GLib 2.59.0
670 ==================================
671
672 * This will be the last development release with autotools support. As our
673   Meson support has been around since 2.56.x, and was used to release tarballs
674   in 2.58.x, the next development release (2.59.1) will drop autotools as used
675   to build GLib. The macros installed for other packages to use will remain.
676
677 * Add `G_TEST_OPTION_ISOLATE_DIRS` to redirect `XDG_*_HOME` to a temporary
678   directory for each unit test. (#538)
679
680 * Support `Property.EmitsChangedSignal` annotations in `gdbus-codegen`. (#542)
681
682 * Add `g_assert_cmpvariant()` API for unit tests. (#1191)
683
684 * Hide bind mounts from GIO mount listings. (#1271)
685
686 * Automatically realign data passed to `g_variant_new_from_bytes()` or
687   `g_variant_new_from_data()` if it is not correctly aligned. This prevents
688   misaligned accesses on architectures which don’t support them. Callers should
689   still aim to correctly align data to get higher performance. (#1342)
690
691 * Support `ld -b binary` (on platforms which support it; i.e. Linux) to provide
692   large pre-compiled `GResource` resources with a fast compilation time. (#1489)
693
694 * Unconditionally install GLib m4 macros, so that projects which depend on GLib
695   and which still build using autotools can continue to build even once GLib has
696   ported entirely to Meson. (#1520)
697
698 * Various fixes to the Meson build.
699
700 * Drop Python 2 support and require Python 3.4+. See discussion on
701   https://mail.gnome.org/archives/desktop-devel-list/2018-July/msg00004.html.
702   (!196)
703
704 * `GHashTable` performance and memory improvements for common cases. See
705   https://hpjansson.org/blag/2018/07/24/a-hash-table-re-hash/. (!208)
706
707 * Add flags that allow a `GApplication` to signal and replace a currently
708   running other instance of the same `GApplication`. This will be used for app
709   upgrades with flatpak. (!250)
710
711 * Autostart xdg-desktop-portal when using the network monitor and proxy monitor
712   portal backends. (!317)
713
714 * Add a g_task_set_name() API to allow `GTask`s to be described; useful for
715   debugging. (!384)
716
717 * Enable FreeBSD CI on every commit for upstream GLib. (!387)
718
719 * Various GVariant, GMarkup and GDBus fuzzing fixes, including buffer overflow
720   fixes. (!411)
721
722 * Various fixes to eliminate thread races, found by thread sanitizer (tsan).
723
724 * Deprecate TLS/DTLS rehandshaking, as it has been removed from the protocol in
725   TLS 1.3. (!478)
726
727 * Support reading arguments from a file with `glib-mkenums`, which is useful
728   for long argument lists due to having deeply nested build directories, on
729   systems with a low limit on the command line length. (!489)
730
731 * Make `g_environ_*()` case-insensitive on Windows, as the environment itself
732   is case-insensitive on Windows. (!500)
733
734 * Add Application Layer Protocol Negotiation (ALPN) support to `GTlsConnection`
735   and `GDtlsConnection`, so that higher layer protocols can be negotiated when
736   setting up a TLS connection, without additional round trips and latency. This
737   is needed for eventual HTTP/2 support. (!520)
738
739 * Add support for TPM keys in PEM files when loading TLS certificates. (!522)
740
741 * Add a `GRecMutexLocker` auto-pointer wrapper for `GRecMutex`. (!528)
742
743 * Bugs fixed:
744  - #107 The "g_key_file_get_comment" interface returns comment with unexpected new line symbol at the end
745  - #179 g_object_unref assert in debug code
746  - #277 'destroy_data' in g_cclosure_new is registered as finalize notifier instread invalidate.
747  - #538 Add helpers to redirect XDG_*_HOME to a temp dir for unit tests
748  - #542 gdbus-codegen does not honor "Property.EmitsChangedSignal" annotations
749  - #656 check for -Werror=format-security broken
750  - #734 Provide a way to instantiate a GDBusProxy-derived class from a GDBusConnection and a object path without blocking
751  - #827 gmain: Clarify that g_source_set_callback() is safe on attached sources
752  - #1055 Provide alignment macros
753  - #1119 GVolumeMonitor: Results don't reflect current state but state when application was launched
754  - #1191 add g_assert_equal_variants
755  - #1261 Add option to leave <default> in gschema empty
756  - #1271 fstab binds appear as mounts (x-gvfs-hide is being ignored)
757  - #1310 gdbusproxy: make g-name-owner property useful with unique names
758  - #1313 Meson: Rework the config.h generation
759  - #1342 Automatically realign data passed to g_variant_new_from_bytes() or g_variant_new_from_data()
760  - #1343 g_date_set_parse: Parses "September" in Polish incorrectly
761  - #1362 Incorrect documentation about GSettings child add/remove notifications
762  - #1452 GFileInfo: unable to retrieve correct modification time of links and mounted volumes on Windows
763  - #1471 Incorporate oss-fuzz fuzz targets into GLib
764  - #1489 Use `ld -b binary` to speed up GResource generation for linking
765  - #1498 distcheck fails in distclean
766  - #1506 error: redefinition of typedef 'GKqueueFileMonitor'
767  - #1509 test_timeval_to_iso8601_overflow: 'out' should be NULL
768  - #1513 GIcon regression?
769  - #1514 gio/appinfo test sometimes fails in CI
770  - #1518 /network-monitor/create-in-thread fails in (LXC) containers on glib-2-56
771  - #1520 Change conditions for installing m4 macros
772  - #1522 Trash not working on NTFS folder accessed from symlink
773  - #1523 GIO NetworkMonitor doesn't reflect the current network state
774  - #1525 GTask allows (buggy) application code to cause callback to be called twice, without warning
775  - #1527 Meson doesn't install data for installed-tests
776  - #1528 Meson tests are hard to debug in an autobuilder environment
777  - #1530 tests/mainloop-test appears to be flaky
778  - #1535 meson: installed-test metadata not run in TAP mode
779  - #1536 meson: spurious dependencies on convenience libraries in .pc files
780  - #1537 meson: absolute paths to ${builddir} included in gtk-doc HTML
781  - #1538 meson: G_HAVE_GROWING_STACK defined differently
782  - #1539 meson: Some files are unnecessarily installed executable
783  - #1541 meson: timeloop-closure test not installed
784  - #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
785  - #1544 meson: gtester-report #! not replaced with ${PYTHON}
786  - #1546 Cross-compilation fails in 2.58
787  - #1556 build: Too long file path issue with meson on Windows
788  - #1562 GDate test suite fails with latest glibc
789  - #1570 ghash.c:694:27: left shift of 1 by 31 places cannot be represented in type 'int'
790  - #1572 Flags validation fails
791  - #1575 g_date_time_format() should have format attribute
792  - #1576 Fails to build with Meson on Debian armel (armv5te EABI softfloat little-endian)
793  - #1580 glib-compile-resources using strings breaks building e.g. GTK+ on MS Visual C, which limits strings to 65535 chars
794  - #1581 Memory used for reference counted data might be misaligned.
795  - #1588 Moving a bookmark item to the same URI causes a crash
796  - #1589 g_log_writer_is_journald memoizes a single result, even though it accepts a parameter
797  - #1590 tests: g-file-info-filesystem-readonly fails if run more than once with fuse & bindfs installed
798  - #1594 Return value of g_dbus_connection_get_unique_name not annotated as nullable
799  - #1600 g_timeout_source_new_seconds overflows when given interval > (G_MAXUINT / 1000)
800  - #1601 appinfo test fix is defective
801  - #1605 g_date_time_format fails when used with non ASCII format string on POSIX locale
802  - #1615 gdbus-codegen not generating nullable annotation
803  - !196 [RFC] build: Drop Python 2 support and require Python 3.4+
804  - !200 Add a new GTlsError to indicate protocol downgrade attacks
805  - !208 GHashTable improvements
806  - !219 glocalfilemonitor: Fallback to poll file monitor for NFS
807  - !238 W32 GFileInfo improvements
808  - !250 Application replace
809  - !264 glib-compile-resources: encode data as string
810  - !268 build: simplify alloca checks. See #1313
811  - !272 dtrace: Add missing const attributes to types in glib_probes.d
812  - !273 gtlsbackend: add support for setting the default TLS database
813  - !277 Use "command -v" instead of "which"
814  - !282 meson: Add macOS libtool versioning for ABI compatibility
815  - !286 gspawn: Fix build on systems without O_CLOEXEC
816  - !287 glib-compile-resources: Fix generated code compiling with C++ compilers
817  - !289 tests: Add more tests to finish branch coverage of GHashTable
818  - !290 build: fix installation dir of glib-gettextize
819  - !292 Remove all ChangeLog files
820  - !293 Document new volume class `loop`
821  - !294 portal network monitor: Always emit changed signal on changed
822  - !295 meson: fix typo
823  - !296 Add G_GNUC_FALLTHROUGH for __attribute__(fallthrough))
824  - !297 build: Drop AC_C_CONST from configure.ac
825  - !302 Document that GTimeVal is subject to the year 2038 problem on 32-bit systems
826  - !303 liststore: Simplify code
827  - !304 Add more GListStore/GListModel tests
828  - !309 codegen: Change pointer casting to remove type-punning warnings
829  - !312 Enable GIO tests on Windows
830  - !316 gdbus: Improve error when well-known name is unowned
831  - !317 Autostart xdg-desktop-portal if needed
832  - !322 gnetworkmonitornm: Set a GError properly on an error handling path
833  - !332 gmarkup: Make the documentation even more explicit about untrusted input
834  - !334 gio: automake: Add libgmodule dependency
835  - !338 gcharset: fix leaking g_get_language_names_with_category
836  - !339 Add g_desktop_app_info_get_string_list(); fix g_key_file_free()
837  - !340 tests: Mark two more tests as slow
838  - !345 Fix build failure on systems without POSIX spawn
839  - !347 Use Meson 0.48.0 for CI
840  - !348 Documentation tweaks for g_array_free
841  - !353 Meson: Do not run tests/refcount with --tap
842  - !354 Fix spelling mistakes detected by Debian's Lintian tool
843  - !358 Autotools: Move libmount from Libs.private to Requires.private
844  - !360 CI: Test static build on installed glib
845  - !363 Tests: Mark printf wrappers with G_GNUC_PRINTF
846  - !364 ci: Enable FreeBSD CI
847  - !366 gunixmounts: Mark mounts as system internal instead of filtering out
848  - !372 gmacros: Fix G_[UN]LIKELY to not mask -Wparentheses
849  - !374 gthreadpool: Include prgname in thread name
850  - !375 m4macros: Allow information from pkg-config to be overridden
851  - !376 gthread: Clarify priority handling in GRWLock
852  - !379 Ignore g_return_*if_fail() branches in lcov coverage report
853  - !381 Add UTF-8 communication tests for GSubprocess
854  - !384 gtask: Add a g_task_set_name() method
855  - !387 ci: Enable FreeBSD CI in the official repository
856  - !396 m4: Fix AM_PATH_GLIB_2_0 macro
857  - !400 grefcount: add missing gatomic.h
858  - !403 build-sys: Pass CFLAGS to $(DTRACE)
859  - !405 ci/msys2: fix path to the lcov config file
860  - !406 meson: Mark 1bit-emufutex test as slow
861  - !407 meson: Increase test timeouts
862  - !410 gfileutils: Add examples to g_path_get_dirname() documentation
863  - !411 Various GVariant, GMarkup and GDBus fuzzing fixes
864  - !412 Enable compile time check of g_date_time_format() format
865  - !413 Add support for g_auto(s)list to G_DECLARE'd types
866  - !414 gio, tests: ensure objectmanager sources are generated
867  - !415 gseekable: fix 'attmepting' typo
868  - !416 gdbus-peer: Make sure to not include objectmanager-gen.c source
869  - !417 Fix ^*ay handling in g_variant_iter_loop()
870  - !418 Meson: Cleanup a FIXME now that we have dict addition
871  - !420 gdbus-codegen: add autocleanup for FooObject
872  - !422 GMarkup buffer overflow fixes for error handling, round 2
873  - !423 gutils: Check whether getauxval function exists
874  - !424 ci: Fix Docker image version
875  - !425 gdate: Reinitialize using_twodigit_years and locale_era_adjust.
876  - !435 gdatetime: Fix formatting of time zones offsets in range -01:00 to +00:00
877  - !436 valgrind: Add glib_init()-related suppressions
878  - !440 Fix minor memory leaks in tests
879  - !443 tests: Avoid multithreaded use of g_test_rand_int_range
880  - !444 gvarianttypeinfo: Consistently use atomics to access ref_count
881  - !446 gmain: Fix data races in GUnixSignalWatchSource and GChildWatchSource
882  - !451 closures test: Avoid timeout on ARM64 CPUs
883  - !452 Atomic reference count in GVariant, ContainerInfo and GDBus introspection
884  - !453 tests: Fix some data races in tests
885  - !454 gdbusproxy: make g-name-owner property useful with unique names
886  - !458 glib-compile-resources: Fix size allocation for compressed streams
887  - !460 gatomicrefcount: Make g_atomic_ref_count_init non-atomic
888  - !461 Meson: Fix build error in gdbus-example-objectmanager
889  - !462 meson: add aarch64 memory barrier handling
890  - !463 gio, tests: fix leak of dbus connection.
891  - !467 Update documentation of g_tls_connection_handshake() again
892  - !469 docs: add index of new symbols for gio > 2.52
893  - !470 docs: Clarify return/error behaviour of D-Bus signal subscriptions
894  - !472 gdbusmessage: Gracefully handle message signatures with invalid types
895  - !477 gthread: Remove unsynchronized access to g_once_init_list from assertion
896  - !478 Deprecate TLS rehandshaking
897  - !480 docs: add a missing semicolon
898  - !482 Check for 'z' library before fallbacking to subproject
899  - !483 meson: Turn selinux into a meson feature and make it auto by default
900  - !484 Meson: Add 'nls' option to disable translation
901  - !485 gdbus-codegen: Tag interfaces and properties so annotated with G_PARAM_DEPRECATED
902  - !486 Check for zlib header
903  - !489 glib-mkenums: Support reading @rspfiles for arguments
904  - !490 gspawn: Fix g_spawn deadlock in a multi-threaded program on Linux
905  - !491 Meson: Add missing include_directories when using glib as subproject
906  - !492 g_value_get_variant: return value is transfer-none not transfer-full
907  - !494 Resolve "Follow-up from "gunixmounts: Stop considering cifs/nfs as system file systems""
908  - !500 genviron: make g_environ_* case-insensitive on Windows
909  - !504 tests: Unset LANGUAGE when running gdatetime tests
910  - !505 Support isolating directories for unit tests
911  - !508 ci: Install additional locales used during tests
912  - !510 Add new Linux Testing project version number to configure script
913  - !511 gvariant: Fix error handling for parsing Unicode escapes
914  - !514 fix gdbus-codegen --interface-info-{header,body}
915  - !515 binding: Clarify the use of g_object_unref() to remove a binding
916  - !517 Meson: Fix deprecation warning with upcoming 0.49.0 release
917  - !518 Meson: Fix declare_dependency() calls
918  - !520 GTlsConnection: add ALPN support
919  - !521 tests: Rename macro to avoid conflict with encoding prefix
920  - !522 gtlscertificate: Add support for TPM keys in PEM files
921  - !524 gdatetime: Fix typo in the comment
922  - !528 Add GRecMutexLocker
923  - !530 tests: Minor improvements to mkenums.py and taptestrunner.py used by it
924  - !534 gtlscertificate: Fix bug in PEM private key parser
925  - !536 Various minor docs fixes
926  - !541 gtimezone: Fallback to /etc/timezone on Gentoo
927  - !546 spawn: add shebang line to script
928  - !547 Do not check for NULL when calling free()
929  - !549 Improve documentation of g_assert_error()
930  - !551 Revert "tests: Fix GOptionContext leak in GSubprocess tests"
931  - !554 Only subscribe to owner-changed signals on message bus connections
932  - !555 Suppress -Wint-in-bool-context warning with G_DEFINE_INTERFACE and g++
933
934 * Translation updates:
935  - Brazilian Portuguese
936  - Czech
937  - Danish
938  - Greek
939  - Hungarian
940  - Lithuanian
941  - Norwegian bokmål
942  - Polish
943  - Slovak
944  - Slovenian
945  - Spanish
946  - Swedish
947  - Turkish
948
949
950 Overview of changes in GLib 2.58.0
951 ==================================
952
953 * Tarball built with `ninja dist`, so if you want to build this release with
954   autotools (which is supported), you will need to re-run autogen.sh. This
955   release, and all micro releases in the 2.58.x series, support being built
956   with Meson or autotools. See:
957   https://mail.gnome.org/archives/gtk-devel-list/2018-June/msg00012.html
958
959 * Fix cancellation of g_subprocess_communicate_async() calls. See !266.
960
961 * Drop support for the __int64 type, which further breaks compilation on old
962   MSVC versions (before VS2013). See #1313.
963
964 * Expose GSettings schema directory in gio-2.0.pc as `schemasdir`. See !274.
965
966 * Support v3 of the xdg-desktop-portal network monitor API. See !265, !279.
967
968 * Fix G_MODULE_SUFFIX on macOS when GLib is built with Meson — it should be `so`
969   rather than `dylib`. Projects that use Meson and the `g_module_build_path()`
970   API such as glib-networking should pass `name_suffix:` to `shared_module()` to
971   ensure that plugins continue to be called libfoo.so on macOS. See !280.
972
973 Bugs fixed:
974  !280 meson: Always set G_MODULE_SUFFIX to `so` on macOS
975  !266 subprocess: Fix communicate_cancelled signature
976  !279 Revert "Add a gnet utility" (see !265)
977  !265 Network monitor again
978  !274 gio: Provide schemas directory information in pkg-config file
979  !239 gvariant: Fix more bounds checking in GVariant text format parser
980  !195 garray: add overflow checks before expanding array
981  #1497 g_strdup_printf warns on invalid format specifier with G_GUINT64_FORMAT on Win32
982  !270 autotools: remove support for the __int64 type. See #1313
983  !267 ci: Add an autotools job
984
985 * Translation updates:
986  Czech
987  Galician
988  Indonesian
989  Italian
990  Kazakh
991  Korean
992  Turkish
993
994
995 Overview of changes in GLib 2.57.3
996 ==================================
997
998 * G_GNUC_MALLOC’s definition has been tightened up to match an updated
999   definition from GCC. Many uses of G_GNUC_MALLOC which were previously
1000   appropriate may cause miscompilation with newer GCC versions. Check your uses
1001   of it against the updated documentation. See #1465.
1002
1003 * Many minor documentation fixes.
1004
1005 * Fix for gint64 and int64_t compatibility on macOS and BSD. See #972.
1006
1007 * Fix free space metadata on some file systems (notably FAT). See #328.
1008
1009 * Support installed-tests with our Meson build system. See #1444.
1010
1011 * Forbid @filename@/@basename@ in glib-mkenums templates, which is a change to
1012   its long-standing behaviour (which was long-standing nonsensical). See !241.
1013
1014 * Various stat() fixes on Windows. See #1452, #1476.
1015
1016 * MinGW-w64 ABI warning: In case you build 64 bit glib without LFS support by
1017   passing --disable-largefile (not the default) and use GStatBuf, you need to
1018   rebuild your application as the size of GStatBuf has changed for this case.
1019   See #1476.
1020
1021 * Improve TAP compatibility of g_test_incomplete(). See #1474.
1022
1023 * Change fallback preferences when loading icons. See !72.
1024
1025 Bugs fixed:
1026  !263 build: Clean files left behind after gio/tests/gresource.c test
1027  !262 gmem: Only evaluate pointer argument to g_clear_pointer() once
1028  #1465 Many uses of G_GNUC_MALLOC are incorrect
1029  #1448 g_error does not abort() as documented
1030  #1494 g_clear_pointer may not use the correct calling convention with its callback
1031  #972 Mismatch between gint64 and int64_t on 64-bit macOS/BSD
1032  !251 gtestdbus: Fix watcher crash on FreeBSD
1033  #1492 gcc-8: -Wcast-function-type: new warnings for g_list_copy_deep()
1034  !252 tests: fix gnotification tests broken due to the recent icon name fallback changes
1035  #328 filesystem::{free,size,used} not set for full FAT fs
1036  !248 network monitor portal: update properties initially
1037  #1373 Incorrect transfer annotation for g_binding_unbind.
1038  #1444 the meson build doesn't support installed tests
1039  #1027 Fix trashing on overlayfs
1040  #1454 gvdb does not treat corrupt files as empty as promised; dconf suffers
1041  !243 tests: Explicitly set TZ=UTC for g_time_val_from_iso8601() testing
1042  #1488 ‘O_CLOEXEC’ undeclared (first use in this function)
1043  !241 glib-mkenums: forbid @filename@/@basename@ in fhead and ftail
1044  !240 gtimer: Ensure arithmetic is correctly signed for ISO 8601 parsing
1045  #1452 GFileInfo: unable to retrieve correct modification time of links and mounted volumes on Windows
1046  !234 DOC: Documentation fix in GTask description
1047  #1363 Meson: Review cross compilation properties
1048  !225 gtimer: Add overflow checks to g_time_val_from_iso8601()
1049  !230 gbookmarkfile: Fix some more minor leaks when metadata elements are repeated
1050  !229 Fix up g_bytes_compare() documentation
1051  #1476 g_stat - possbile memory corruption causing SEGFAULT
1052  !199 Update TLS documentation
1053  #1474 g_test_incomplete() makes test_case_run() return FALSE
1054  #1475 glib/tests/atomic.c test_types() trips -Werror=bad-function-cast on Debian armel
1055  #1472 Test for BROKEN_IP_MREQ_SOURCE_STRUCT is broken on Windows / Mingw
1056  !220 date test: Use g_test_skip(), not g_test_incomplete()
1057  #1467 malloc difference causes refstring test to fail on FreeBSD
1058  !230 gbookmarkfile: Fix some more minor leaks when metadata elements are repeated
1059  #1466 Not Able to Build glib 2.57.2 in Mingw-w64 x64 bits
1060  #1433 test_posix_parse: assertion failed (g_time_zone_get_abbreviation (tz, 0) == "UTC"): ("LMT" == "UTC")
1061  #1446 Follow-up from "Document difference between g_assert() and g_assert_*() wrt G_DISABLE_ASSERT"
1062  !206 grefstring: Avoid an unnecessary NUL assignment
1063  #1458 g_volume_get_mount returns NULL value after g_volume_mount_finish is called with no error
1064  !72 gio: icons should fallback to non-preferred style appropriately.
1065
1066 * Translation updates:
1067  Brazilian
1068  Chinese (Taiwan)
1069  French
1070  German
1071  Lithuanian
1072  Polish
1073  Romanian
1074  Turkish
1075
1076
1077 Overview of changes in GLib 2.57.2
1078 ==================================
1079
1080 * Require pcre 8.31
1081 * Require meson 0.47.0
1082
1083 * Bugs fixed:
1084  742456 Add g_steal_pointer() convenience function to mark ownership...
1085  795569 MinGW CI: fix tests
1086  796341 gmem.h: Use typeof() in g_steal_pointer() macro
1087  #1013 Support for per-session overrides
1088  #1360 glib-mkenums breaks if option specified but no nick
1089  #1175 Add names and tags to various GSources and GTasks constructed in GLib
1090  #903 g_main_context_wait() not deprecated in API, but emits a g_critical()...
1091  #786 Fix memory leaks in libgio tests
1092  #927 gio/gresource.c:do_lookup check for terminating "/"
1093  #976 Document difference between g_assert() and g_assert_*()...
1094  #1447 glib 2.57.1: test_month_names: assertion failed...
1095  #1407 Update to Unicode Character Database 11
1096  #1455 glib python tools have full python path in shebang, limits to 128 characters
1097  #1459 Missing g_return_val_if_fail in g_async_queue_timeout_pop
1098
1099 * Translation updates:
1100  Friulian
1101  German
1102  Romanian
1103  Spanish
1104
1105
1106 Overview of changes in GLib 2.57.1
1107 ==================================
1108
1109 * New api:
1110  - g_hash_table_steal_extended
1111  - G_GNUC_NO_INLINE 
1112
1113 * Bug fixes:
1114  668132 Use libmount and expose mount options on GUnixMountEntry type
1115  736741 Update private copy of valgrind.h
1116  748620 g_regex_* utf-8 validity requirements are not stated clearly
1117  784995 meson: some Windows improvements
1118  788771 NODELETE missing when built with meson
1119  788773 meson does not install correct pc files
1120  789968 Add g_autoptr() support for GTypeClass
1121  794325 Various fixes to compile on OSX
1122  795152 gdesktopappinfo: Mark GDesktopAppInfo constructors as nullable.
1123  795165 Add g_date_time_get_timezone() and g_time_zone_get_identifier()
1124  795180 Investigate performance impacts of recent compiler features on hot functions
1125  795302 Add g_hash_table_steal_extended() API
1126  795376 Add g_ptr_array_steal()
1127  795544 Add binary/textfile/zero size detection
1128  795569 MinGW CI: fix tests
1129  795636 gitlab-ci: generate test coverage reports
1130  795735 Fix comparison for GVariant property values
1131  795802 gdbus-codegen doesn't accept --output-directory with --output for --body and --header
1132  795849 gwin32: Fix detection of MinGW32 vs MinGW-w64
1133  795876 meson: Fix checks for posix_memalign and stpcpy
1134  795960 g_format_size_for_display() is deprecated since 2.30
1135  796085 Meson: Many apps breaks on non-glibc because of missing libintl
1136  796138 Fix typo in g_file_info_set_attribute docs
1137  796139 Add g_autoptr() support for GParamSpec
1138  796164 Fix atomic ops check in meson.build
1139  796186 Typo: "instead off" in gsignal.c
1140  796213 Meson: Fail to build on macosx
1141  796220 meson: do not run atomic test with msvc
1142  796264 Add android CI
1143  796325 meson: Add exception for atomic ops test for Android
1144  796328 gengiotypefuncs.py: Read and parse files in binary mode 
1145
1146 * Translation updates:
1147  Czech
1148  Indonesian
1149
1150
1151 Overview of changes in GLib 2.57.0
1152 ==================================
1153
1154 * Bug fixes:
1155  739424 Rewrite kqueue GFileMonitor backend to drop threading
1156  751826 Use g_get_language_names() for other locale categories
1157  788773 meson does not install correct pc files
1158  793400 g_application_id_is_valid() not strict enough
1159  793578 gdatetime tests depend on Japanese translation of month names
1160  793645 test_month_names: Updated translations needed for el_GR, hr_HR, ru_RU
1161  793729 gitlab-ci: Add Windows MinGW support
1162  793994 GUnixVolumeMonitor doesn’t show user mounts when run as root
1163  794170 gdbus: hexdecode() and hexencode() do not return/use decoded/encoded s...
1164  794194 gobject_gdb.py: 'address' is a property of gdb.Value not a function
1165  794207 leak: g_socket_listener_add_inet_port increases ref-count on socket-li...
1166  794284 Support whitespace stripping for JSON resources
1167  794285 glib-compile-resources should not noisily g_printerr() when xmllint is...
1168  794473 Remove duplicated option in gio.xml
1169  794506 glib-mkenums: Enters infinite loop if using typedef enum SomeIdentifier
1170  794528 Fix segfault caused by use-after-free in GPollFileMonitor
1171  794555 glib meson build fails on MinGW due to misdetected functions
1172  794557 gtkdoc-scangobj fails on gio in meson builds
1173  794606 glib-2.56.0 fails to compile when res_nquery is not available
1174  794635 gmacros: Don't define bogus __has_* macros
1175  794636 G_HAVE_GNUC_VISIBILITY is defined in meson MinGW builds
1176  794686 Date (except weekday) displayed in English
1177  794732 Fix various compiler warnings 
1178
1179 * Translation updates
1180  Hungarian
1181  Slowak
1182  Slovenian
1183  Spanish
1184
1185
1186 Overview of changes in GLib 2.56.0
1187 ==================================
1188
1189 * Bugs fixed:
1190  672777 Error in gdummyfile.c
1191  732184 GObject: warn on use of deprecated properties
1192  733338 Don't segfault in GNetworkMonitor when IPv6 support is unavailable
1193  742124 g_data_input_stream_read_upto()'s documentation should say that the...
1194  749206 GDateTime: month names in the genitive case
1195  768507 simplify qguark functions
1196  791457 Slow transfer rate when writing to smb/cifs
1197  793272 fix GCC 8.0's -Wcast-function-type warnings
1198  793300 g_hash_table_add() return value change in 2.40 not mentioned in docs
1199  793399 Fix some cases of -Wduplicated-branches
1200  793555 -Wimplicit-function-declaration when using g_abort()
1201  793565 GLib does not compile on macOS 10.13 due to .m file naming
1202  793597 gdbus-tool: Make --dest optional for emit again
1203  793635 Enable CI for GLib
1204  793880 gnetworkmonitor: Minor fixes based on code review 
1205  793578 gdatetime tests depend on Japanese translation of month names 
1206  794180 test_month_names fails unless installed
1207
1208 * Translation updates:
1209  Brazilian Portuguese
1210  British English
1211  Catalan
1212  Czech
1213  Danish
1214  Dutch
1215  Finnish
1216  French
1217  Friulian
1218  Galician
1219  German
1220  Hungarian
1221  Indonesian
1222  Italian
1223  Kazakh
1224  Korean
1225  Lithuanian
1226  Polish
1227  Scottish Gaelic
1228  Serbian
1229  Serbian Latin
1230  Spanish
1231  Swedish
1232  Turkish
1233
1234
1235 Overview of changes in GLib 2.55.2
1236 ==================================
1237
1238 * GFile now has API to get the path without copying
1239
1240 * A network monitor implementation for Windows has been added
1241
1242 * Bugs fixed:
1243  520116 g_utf8_strlcpy()
1244  584284 g_data_input_stream_read_until_async behaves confusingly different f...
1245  605700 request for g_key_file_get_locale()
1246  658713 ngettext (plural forms) needed for "Message has %d file descriptors ...
1247  685442 windows GNetworkMonitor implementation
1248  723003 gsettings list-recursively reports some keys multiple times
1249  749583 GSequence performance improvements
1250  757284 Move G_DIR_SEPARATOR* and G_SEARCHPATH_SEPARATOR* into glibconfig.h
1251  760324 [PATCH] gkeyfile.c: find_file_in_data_dirs fails to return the path ...
1252  761102 Increase performance for main loop
1253  767976 GFile: Add g_file_peek_path()
1254  770335 gdbus-codegen: generated getter for 'ao' property is actually (trans...
1255  772989 Totem allows invalid urls that might cause segfault that's irrecover...
1256  790698 convert: test failure on NetBSD
1257  791015 gdbus-codegen: Split generation of header and source
1258  791622 Disable strict-aliasing in GLib
1259  792050 GResolver is not thread-safe
1260  792217 Deprecate GTlsClientConnection:use-ssl3
1261  792338 meson, autotools: figure out if mem barrier is needed for arm64 host...
1262  792351 gbookmarkfile: check length before dereferencing groups
1263  792364 gdbus-threading test method-calls-in-thread: assertion failed (elaps...
1264  792370 GNetworkMonitor: Rename "network-changed" signal argument
1265  792410 GDateTime new_from_iso8601 test broken in 2.55 on i386
1266  792432 flush stdout after logging (debug) messages
1267  792455 Improve docs of GSequence
1268  792499 deadlock on startup with TCP session bus
1269  792516 gconvert: More consistent handling of embedded NUL bytes
1270  792777 g_notification_set_urgent() unconditionally sets G_NOTIFICATION_PRIO...
1271  792780 gbytes should reference toplevel bytes when slicing with g_bytes_new...
1272  792856 off64_t isn't a part of C standard
1273  792862 gpollableoutputstream: document side effects of WOULD_BLOCK on D/TLS
1274  792903 Clarification between g_try_.. functions and their counterparts
1275  793006 High CPU load for GUnixMountsMonitor consumers
1276  793026 possible mem leak in g_mutex_impl_new
1277  793074 g_message() does not get -Wformat warnings when compiling with G_LOG...
1278
1279 * Translation updates:
1280  Hungarian
1281  Indonesian
1282  Polish
1283
1284
1285 Overview of changes in GLib 2.55.1
1286 ==================================
1287
1288 * Build:
1289  - The --enable-rebuilds configure option has been removed
1290  - The --with-charsetalias-dir configure option has been added
1291
1292 * GList and GSList now have autoptr support
1293
1294 * The gsettings list-schemas command has gained a --print-paths option
1295
1296 * Bugs fixed:
1297  346816 Refactor LIBDIR in libcharset Makefile
1298  508976 Does g_slist_sort preserve the order of equal elements?
1299  562334 2.18.2 break libglade on Solaris
1300  662802 systemtap multiarch issue
1301  684282 Add support static link of GIO modules
1302  692034 Install an invalidation notifier for GClosure in g_source_set_closure()
1303  694723 Get rid of REBUILD stuff in configure.ac
1304  697715 floating point precision problem in check test gst/gstvalue
1305  701156 testgobject assumes that the priv data follows the instance data
1306  720380 Segfault when using GDBusMenuModel on a peer-to-peer connection
1307  724383 glib: document restrictions on various foreach() functions
1308  724412 GLib mappedfile.c test uses g_get_user_runtime_dir instead of a tempo...
1309  724794 Fix "on on" typo in tap-driver.sh comment
1310  732003 gnode: Eliminate implicit signed-to-unsigned integer conversion
1311  734479 G_VALUE_HOLDS etc. cause -Wcast-qual warnings for a const GValue *
1312  737677 gmain: Make GSourceCallback thread-safe
1313  741167 gdbus-codegen fix for boxed out parameters
1314  748534 gtest: if a subprocess assertion fails, print its stdout and stderr
1315  749527 add weak pointer helpers similar to g_set_object
1316  749652 compilation errors with gcc 4.8
1317  754634 Update the list of Linux filesystem magic numbers used in get_fs_type
1318  756011 Fix up annotations for GBookmarkFile
1319  761102 Increase performance for main loop
1320  773980 GIR scanner doesn't interpret array type properly
1321  776147 gio/glocalfilemonitor.c doesn't handle case G_FILE_MONITOR_EVENT_MOVE...
1322  776195 -z nodelete configure check does not work on Solaris
1323  777075 Potential leak of memory pointed to by 'list'
1324  779413 Translated X-Geoclue-Reason string not used in a dialog window
1325  780309 gio/tests/appinfo build fails: gdesktopappinfo.c skipped on OS X
1326  780893 Reword licensing header for gdbus-codegen
1327  782057 Unit tests fail in run-assert-msg-test.sh
1328  784995 meson: some Windows improvements
1329  786796 gtk-doc build fails with meson
1330  788806 Impossible to build static glib via meson
1331  788936 Show mime type icons on OS X
1332  790416 g_date_time_format returns empty string on %r with German locale
1333  790588 Generated file missing from .gitignore
1334  790697 g_object_ref API should propagate parameter type
1335  790785 glib-tap: Add missing mkdir for .test generation rule
1336  790829 glib-genmarshal --body must not generate alias implementations
1337  790830 Mismatch between number of interface methods in text and example code
1338  790837 Meson: missing many configure options
1339  790839 GApplication command line: lacks parameter_string, summary and descri...
1340  790877 fix non-portable check in G_GNUC_CHECK_VERSION
1341  790894 Do not connect to the session bus when trying GProxyResolverPortal io...
1342  790896 docs/reference/README has broken link to http://www.gtk.org/rdp/
1343  790914 gdesktopappinfo: Downgrade a warning to a debug message
1344  790934 gtester doesn't handle skipped tests
1345  790948 GSourceFuncs documentation is confusing: when will dispatch be called?
1346  791036 Guard for g_output_stream_vprintf makes no sense
1347  791128 C runtime complains about bad arguments on each g_log() call
1348  791221 po/README.translators has no useful information in 2017
1349  791235 Fix gschema.dtd regarding flags.
1350  791267 Make gschema.dtd usable.
1351  791296 gtester-report: fix range usage when running as python3 app
1352  791318 GBytes: Improve documentation
1353  791325 Gio handling of thumbnail:: attribute namespace causes inconsistent b...
1354  791334 gbinding.c:898: The target object of type GNetworkAddress has no prop...
1355  791337 Crash opening URIs with g_desktop_app_info_launch_uris_with_spawn()
1356  791342 Add autoptr support for lists
1357  791460 meson: fixes for OSX
1358  791532 Implicit declaration of function ‘memcmp’ in gtestutils.h
1359  791622 Disable strict-aliasing in GLib
1360  791720 Criticals in gio/xdp-dbus.h leading to crash under flatpak
1361  791744 gmenumodel test sometimes fails: assertion failed (items_changed_coun...
1362  791745 not immediately clear whether g_test_slow() is in effect by default
1363  791906 GSocketListenerClass.event has wrong signature
1364  792064 gsettings list-schemas --print-paths
1365  792098 Binding: bind_property’s @notify func is nullable
1366  792099 gdbus-test-codegen: Cast to void* to printf "%p"
1367  792129 meson: skip optional linux/unix deps that default to true when buildi...
1368  792322 GLib-GIO:ERROR:gschema-compile.c:51:test_schema: child process (/gsch...
1369  792324 gkeyfile: Document need for KEEP_TRANSLATIONS with get_locale_string()
1370
1371 * Translation updates
1372  Hebrew
1373  Indonesian
1374
1375
1376 Overview of changes in GLib 2.55.0
1377 ==================================
1378
1379 * New API:
1380   - g_clear_handle_id, to simplify removing sources from the default mainloop
1381   - g_file_load_bytes, to make it more convenient to load files into GBytes
1382
1383 * Bugs fixed:
1384  330458 Sample code for the GLib Key-value parser
1385  483341 g_error and friends create warnings when not used in MSVC
1386  569375 g[u]intptr undocumented
1387  573251 documentation for g_seekable_truncate() needs some love
1388  629347 Missing annotations in GFile (was: Perf throws an exception in cur...
1389  630983 [PATCH] Type accuracy for result of strlen() in string utilities.
1390  632953 Clarify documentation of GValueTransform.
1391  636210 Document that pre-unmount is not guaranteed and backend-dependant
1392  656502 type information for GSettings::backend missing from .gir
1393  661442 Nautilus crashes when refreshing home folder after modifying ~/.co...
1394  668035 gtester-report broken with python 2.7.2 and glib 2.30.1
1395  670139 gbytes.c:try_steal_and_unref nit
1396  677233 (transfer full) annotation not correct for g_closure_new_simple re...
1397  679347 glocalfile seems to leak 'fstype'
1398  679467 Mention translation in g_warning() documentation
1399  689323 Variable scoping in gunixmounts.c
1400  691436 glib-mkenums output arch dependent
1401  695681 gsettings bash completion put error messages
1402  705331 AM_PATH_GLIB_2_0 macro fails with -Wstrict-prototypes -Werror
1403  706667 Fix permission denied error when installing from an nfs directory
1404  711809 gdbus-proxy: Fix erroneous timeout during following tests
1405  722256 gslist: Simplified node removal and got rid of some code duplication
1406  723655 Socket source is left in the poll after the socket is closed
1407  723743 g_child_watch_add() doesn't check for non-pids
1408  725014 g_settings_schema_source_ref should check for NULL pointer
1409  727346 docs: Escape some backslashes for markdown
1410  730296 gsignal: Fix a potential NULL pointer dereference
1411  731625 Improve test for darwin printf format-strings
1412  731705 gio/tests/desktop-app-info assumes /bin/true
1413  737278 Clarify relationship of g_application_quit() to hold count
1414  738176 Skip GSpawnChildSetupFunc closures in introspection
1415  740223 source_object for GAsyncResult should be nullable
1416  740791 gio: cannot specify the source when joining a multicast group (IGM...
1417  740826 glib doesn't know fuse filesystems
1418  742548 configure.ac: stay out of autoconf's namespace
1419  742997 Don't skip invalid enum values in schemas
1420  745723 -Wunused-but-set-variable work-around no longer sufficient
1421  749371 Use a GHashTable as a set when possible
1422  751738 Unused-variable warnings in glib/tests/autoptr.c
1423  752239 Missing dependency for python files in build file
1424  752240 Add DTLS support to GIO
1425  753459 GDateTime: Add conversion functions from/to ISO 8601 strings
1426  753521 g_subprocess_launcher_set_environ misses argument annotations
1427  754026 gfileutils: add some sanity checks
1428  756009 'const gchar* const *' gets incorrectly defaulted to utf8
1429  756103 Skip g_base64_decode_step() in introspection
1430  756128 Fix up annotations in gconvert
1431  756430 g_rw_lock_reader_lock() can return without locking, or error
1432  756470 Fix up annotations in gdataset.c
1433  756588 Fix up annotations on data/qdata API of GObject
1434  760022 Memory leak in gvariant-parser.c
1435  760109 [PATCH] Invalid GDate can't be g_boxed_copy()'d
1436  760716 Fix documentation regarding <glib/gprintf.h>
1437  765063 Update annotations for gio
1438  765552 Please set serial in .m4 files to prevent autoreconf failure on up...
1439  767215 GCC version number is interpreted as start of a list in docs for g...
1440  767239 Tautological comparisons in convert tests
1441  769674 some GIO tests' arbitrary timeouts are too short
1442  769846 gmessages: Add timestamp to g_log_writer_format_fields()
1443  770459 Tutorial article is slightly wrong
1444  773355 Incorrect documentation about stopping a signal emission from a hook
1445  774083 spelling mistakes in glib: charater
1446  776562 Add Intel C Compiler support for G_GNUC_BEGIN/END_IGNORE_DEPRECATI...
1447  777308 GModule win32: disable error dialog popup
1448  777310 gio/gasynchelper.c: fix cast from pointer to smaller int type on w...
1449  777956 gmessages: Update advice for G_LOG_DOMAIN
1450  779182 xdg-open fails with gio open for some uris
1451  779501 Type of GIConv given wrongly on web
1452  780202 introspection: Don't expose GValueArray.free
1453  780296 xdg-open/gnome-open doesn't work if service isn't started
1454  781598 gstdio.h should #include what it needs to work
1455  781867 various gvfsd-* wants to look in /boot/efi, causes unnecessary/ina...
1456  783210 build: Switch to sassc for generating style
1457  783270 Improve Visual Studio support for Meson builds
1458  783825 Suggest that asynchronous operations should invoke the callback in...
1459  786737 No g_variant_get() example for dicts
1460  786785 Commit #fe2a9887a8 breaks gdbus-codegen, cannot find its module so...
1461  787271 Make GListModel usable from G-I bindings
1462  787485 g_tls_backend_supports_dtls () returns true when the backend doesn't
1463  787551 Factor out some duplicated code in GParamSpec validation
1464  787581 tests: Add tests for g_slist_copy() and g_slist_copy_deep()
1465  787671 meson: Fix permissions of installed scripts
1466  787731 g_file_query_filesystem_info() wrongly reports "filesystem::readon...
1467  788138 glib-compile-resources: Fix leak of a GHashTable
1468  788180 G_FILE_ATTRIBUTE_ID_FILE is useless on W32
1469  788270 gmodule - failed to load symbol on Android 64bit
1470  788368 Race condition in GDbusObjectManagerClient
1471  788384 gtypes: Fix signedness of __builtin_bswap() usage
1472  788385 gtestutils: Explicitly cast args to g_assertion_message_cmpnum()
1473  788401 PATCH: MacOS build cannot detect content type from content - xdgmi...
1474  788467 Fatal errors and warnings should be reported as TAP
1475  788488 GFile-based API for g_build_filename()
1476  788489 gmain: add g_clear_source API
1477  788561 Document how to integrate GTest into your project
1478  788594 gdbus-tool doesn’t handle non-message-bus connections correctly
1479  788705 Allow building GLib on older Linux platforms
1480  788766 fixed a doc-typo in socket_get_remote_address
1481  788772 meson installs gdb scripts incorrectly
1482  788863 Add more filename type annotations for strings which can contain f...
1483  788880 gunixmounts: Update list of virtual file systems to ignore
1484  788927 Expose better API for detecting ‘system’ mounts
1485  788936 Show mime type icons on OS X
1486  788948 Document Autotools best practices for genmarshal/mkenums
1487  788975 Meson + Visual Studio: Can't find zlib.h with subprojects/zlib
1488  788978 Document XML has a syntax error
1489  788989 Use subdir-objects with Autotools
1490  788990 Include licensing information in output from glib-mkenums, glib-ge...
1491  789087 gint and guint misrepresented as functions
1492  789170 GFormatSizeFlags should have a value for bits
1493  789245 g_settings_bind() not conforming to lifecycle specification
1494  789444 Fix handling of length in g_utf8_make_valid
1495  789637 glib-mkenums: Fails when --ouput file does not exist
1496  789681 meson: Libmount support not built
1497  789723 [PATCH] gdbus-codegen: Call abspath() earlier
1498  789755 g_get_host_name: ensure return value is always UTF8 encoded
1499  789820 GPollFileMonitor is not cleaning up correctly
1500  790015 docs: Various linking and syntax fixes
1501  790030 GResource/GVariant fails to load from non-pointer aligned memory
1502  790093 gio-tool: fix inverted logic in monitor tool
1503  790126 gengiotypefuncs.py is missing from tarballs
1504  790147 build: Drop data-to-c.pl in favour of data-to-c.py
1505  790157 gmessages: Give examples of G_DEBUG with gdb in the documentation
1506  790272 file: add g_file_load_bytes()
1507  790275 avoid temporary string allocations in g_resources_enumerate_children
1508  790310 speedup path canonicalization in GResourceFile
1509
1510 * Translation updates:
1511  Catalan (Valencian)
1512  Czech
1513  German
1514  Nepali
1515  Norwegian bokmål
1516  Slovak
1517  Slovenian
1518  Spanish
1519
1520
1521 Overview of changes in GLib 2.54.0
1522 ==================================
1523
1524 * Bugs fixed:
1525  780861 Crash in GnomeWallClock
1526  786983 Please make the output of gio-querymodules deterministic
1527  787109 Valgrind false positive in ioctl() in btrfs file copy
1528  787123 glib: Slighty update GIOChannel documentation
1529  787146 GMainLoop: match of parameter pair of LOCK_CONTEXT/UNLOCK_CONTEXT
1530
1531 * Translation updates:
1532  Basque
1533  Catalan
1534  Romanian
1535  Swedish
1536
1537
1538 Overview of changes in GLib 2.53.7
1539 ==================================
1540
1541 * Bugs fixed:
1542  736710 remove unnecessary executions of libtool from configure
1543  785260 gio/tests/appmonitor fails if local dir not writeable
1544  786456 g_subprocess_wait[_check]_async() breaks when cancelled...
1545  786555 g_array_free() is not thread safe w.r.t. g_array_unref()
1546  786580 gdesktopappinfo.c: Add Tilix as a fallback terminal
1547  786807 g_uuid_string_random undefined when built with meson
1548
1549 * Translation updates:
1550  Brazilian Portuguese
1551  Catalan
1552  Czech
1553  Danish
1554  Finnish
1555  French
1556  Friulian
1557  German
1558  Italian
1559  Kazakh
1560  Korean
1561  Latvian
1562  Nepali
1563  Polish
1564  Spanish
1565  Turkish
1566
1567
1568 Overview of changes in GLib 2.53.6
1569 ==================================
1570
1571 * Bugs fixed:
1572  766358 glib doesn't respect XDG_* envvars on W32, ever
1573  783270 Improve Visual Studio support for Meson builds
1574  785955 pthread_setname_np misdetected with meson
1575  786060 Sequences documentation does not make it clear...
1576  786360 gobject: add autoptr support for GClosure
1577  786452 crash on Linux without stderr stream
1578  786460 gio-tool: Unify buffer sizes
1579  786462 Use g_output_stream_write_all instead of while
1580  786463 gio-tool-save: Prevent overwriting error
1581
1582 * Translation updates:
1583  Catalan
1584  Galician
1585  Hungarian
1586  Indonesian
1587  Lithuanian
1588  Nepali
1589  Serbian
1590
1591
1592 Overview of changes in GLib 2.53.5
1593 ==================================
1594
1595 * Bugs fixed:
1596  695573 Untranslatable strings in glib-compile-schemas
1597  725950 GApplication: call dbus_unregister only once, and before destruction
1598  731703 giomodule test misbuilds its test modules as libraries
1599  769135 External control for g_test_add/g_test_run
1600  779332 Rewrite mkenums in Python
1601  779607 Race between mounts-changed signal and g_unix_mounts_get() function
1602  784000 Improve strerror_r() detection
1603  784815 Map G_NOTIFICATION_PRIORITY_HIGH to NOTIFY_URGENCY_NORMAL
1604  784965 Use the glib preset for i18n in Meson
1605  784995 meson: some Windows improvements
1606  785113 glib-mkenums Python port fixes
1607  785130 G_LOG_DOMAIN shouldn't be left undefined for applications
1608  785438 Spurious -Wmaybe-uninitialized in gdatetime.c
1609  785468 glib/gpoll: Unnecessary if conditional included in the poll_rest() function
1610  785520 Replace advice to use removed gdk_spawn functions
1611  785577 clobbers errno while setting GError
1612
1613 * Translation updates:
1614  Slovenian
1615  Spanish
1616
1617
1618 Overview of changes in GLib 2.53.4
1619 ==================================
1620
1621 * Unicode support has been updated to Unicode 10.0.0
1622
1623 * glib-genmarshal and glib-mkenums have been rewritten in python.
1624   Every effort has been made to keep compatibility. Please report
1625   problems related to these tools
1626
1627 * GLib can now be built with meson. autotools are still supported
1628
1629 * Bugs fixed:
1630  722047 drop makefile.msc?
1631  733821 g_strerror() uses strerror(3) instead of strerror_r(3)
1632  773842 g_utf8_find_next_char() won't signal the end of a NUL-terminated string
1633  779332 Rewrite mkenums in Python
1634  780095 g_utf8_get_char_validated() stopping at nul byte even for length specified...
1635  780634 Remove remaining old codepage ABI comapt code
1636  783841 test_GDateTime_new_from_timeval_overflow fails on 32 bit systems
1637  784000 Improve strerror_r() detection
1638  784020 GKeyFile – Add array length annotations to to_data(), get_keys() and get_g...
1639  784037 gio: Mention the ALL_METADATA flag in g_file_copy()
1640  784433 gdbus-codegen with variant type parameters result in nested variant
1641  784456 Update to Unicode 10.0.0
1642  784528 Rewrite glib-genmarshal in Python
1643  784579 Calling g_dir_open on Missing Directory When Executable File Path Contains...
1644  784581 docs: Fix cut'n'paste error in g_resources_get_info() doc
1645  784739 Minor typo in configure error message
1646  784792 Just fixing a little typo in comments
1647
1648 * Translation updates:
1649  Hebrew
1650
1651
1652 Overview of changes in GLib 2.53.3
1653 ==================================
1654
1655 * Bugs fixed:
1656  658446 Add translation comment for wrong password notice string
1657  661926 Improve the default logging setup in GLib
1658  674885 type initialisation deadlock in GObject
1659  775593 GIO cannot write symlinks on FreeBSD and NetBSD
1660  776169 Various gio-tool fixes
1661  776333 Fix annotation on g_file_copy_async()
1662  776504 Upgrade license from LGPLv2+ to LGPLv2.1+
1663  777307 race condition between gdbus signal callback and g_bus_unwatch_name...
1664  778422 gsubprocesslauncher: Clarify the behavior of set_environ()
1665  781301 Stack pointer corrupted by incorrect call of NtNotifyChangeMultipleKeys
1666  782336 Add additional documentation of the GResource XML format
1667  782996 build: Use AM_TESTS_ENVIRONMENT rather than TESTS_ENVIRONMENT
1668  783061 GApplication: Remove some unused members
1669  783130 Make dbus activation sandbox-aware
1670  783193 Adapt to OpenURI api change
1671  783201 gdbus-codegen: Apply --output-directory to generated docs as well
1672  783340 win32: port monotonic times to use QPC
1673  783350 length parameter can be NULL g_data_input_stream_read_line
1674  783392 incorrect (out) annotation for g_dbus_interface_info_generate_xml
1675  783593 GGtkNotificationBackend should use /org/freedesktop/DBus to call Ge...
1676
1677 * Translation updates:
1678  Esperanto
1679  German
1680  Indonesian
1681  Kazakh
1682  Spanish
1683
1684
1685 Overview of changes in GLib 2.53.2
1686 ==================================
1687
1688 * A few new number parsing functions have been added:
1689   - g_ascii_string_to_signed
1690   - g_ascii_string_to_unsigned
1691   These have better error handling than the existing ones.
1692
1693 * glib-mkenums now supports /*< private >*/ and /*< public >*/
1694
1695 * GSettings now consider XDG_DATA_HOME in addition to XDG_DATA_DIRS.
1696
1697 * Bugs fixed:
1698  674885 type initialisation deadlock in GObject
1699  698064 Add g_ptr_array_contains()
1700  732000 gdatetime: Remove an unnecessary NULL pointer check
1701  734946 Implement GContentType on OSX
1702  741335 Possible differences in use of XDG_DATA_DIRS versus XDG base directory specification
1703  748263 Use-after-free in g_dbus_connection_call_internal()
1704  776876 gmodule – Various Android bug-fixes
1705  777030 build error where minor() and major() cant be resolved in gio/gdbusmessage.c
1706  780300 gio/gosxappinfo.c uses deprecated LSFindApplicationForInfo
1707  780309 gio/tests/appinfo build fails: gdesktopappinfo.c skipped on OS X
1708  781755 Avoid compiler warnings in generated marshallers code
1709  781826 portal support: Read /.flatpak-info
1710  781830 Fix some typos and errors in GVariant documentation
1711  781847 Use-after-free under send_message_with_reply_cleanup():gdbusconnection.c:1792
1712  781867 various gvfsd-* wants to look in /boot/efi, causes unnecessary/inappropriate auto...
1713  782068 doc: Trivial typo fixes
1714  782075 gtimer: Handle gmtime() failure in g_time_val_to_iso8601()
1715  782089 gdatetime: Fix overflow checks when constructing from timestamps
1716  782162 Support public/private trigraph in glib-mkenums
1717  782237 make check error
1718  782311 inode/directory is treated as a subclass of application/octet-stream
1719  782628 libmount build dependency check not requiring the right version?
1720
1721 * Translation updates:
1722  Hungarian
1723  Indonesian
1724  Spanish
1725
1726
1727 Overview of changes in GLib 2.53.1
1728 ==================================
1729
1730 * The gdbus tool gained a wait command
1731
1732 * g_unix_signal_source_new support SIGWINCH now
1733
1734 * There are now g_enum_to_string and g_flags_to_string functions
1735
1736 * A new function to instantiate objects: g_objet_new_with_properties
1737
1738 * GParameter and related APIs have been deprecated
1739
1740 * Bug fixes
1741  447907 enum/flags from string + type transform + tests
1742  668962 GUnixMountPoint/GUnixMountEntry not usable through gobject-introspection
1743  669355 gdbus-codegen output contains stray semicolons at file scope (forbidden in C99)
1744  674885 type initialisation deadlock in GObject
1745  698064 Add g_ptr_array_contains()
1746  709865 Add boxing to GParameter
1747  725894 build: Include gettext libraries for static compilation on Mac OS X
1748  734946 Implement GContentType on OSX
1749  741229 gio: Handle NULL cached properties in NetworkManager monitor
1750  745971 gdbus-tool: Add a command to wait for a well-known name on the bus
1751  755046 gfileutils: Add precondition checks to g_file_test()
1752  761102 Increase performance for main loop
1753  761889 GDateTime: %p does not always print AM/PM string
1754  766660 Please clarify the extent to which GInitable, GAsyncInitable must be idempotent
1755  769534 g_unix_signal_source_new does not support SIGWINCH
1756  772221 Take advantage of Unicode
1757  775879 g_log_default_handler should not check G_MESSAGES_DEBUG
1758  776169 various gio-tool fixes
1759  777961 Documentation for g_app_info_equals() could be clearer
1760  778049 race in gsource detected by TSan
1761  778207 gio-querymodules: fix memory leak
1762  778287 G_MODULE_EXPORT and -fvisibility=hidden
1763  779409 Fix false positive g_warning() in remove_filter()
1764  780066 g_base64_encode_close() in glib/gbase64.c produces invalid base64 encoding
1765  780095 g_utf8_get_char_validated() stopping at nul byte even for length specified buffers
1766  780306 Unused function in gunicollate.c for CARBON
1767  780310 g_tls_database_verify_chain doesn't set the GError for failures other than cancell...
1768  780384 gio/tests/contenttype fails on OS X: "public.directory" != "public.folder"
1769  780441 Make the portal implementation of g_app_info_launch() synchronous
1770  780634 Remove remaining old codepage ABI comapt code
1771  780908 gobject: remove duplicate GType sanity check
1772  780924 Memory leak in gdbusmethodinvocation.c
1773  781125 gio-tool: Fix errors format string
1774  781234 the buffer written to by g_input_stream_read is not marked as an out parameter
1775  781298 gfileutils.c:330:3: error: ISO C90 forbids mixed declarations and code
1776
1777 * Translation updates
1778  Catalan
1779  Friulian
1780  German
1781  Hebrew
1782  Indonesian
1783  Polish
1784  Russian
1785
1786
1787 Overview of changes in GLib 2.52.0
1788 ==================================
1789
1790 * Bug fixes:
1791  779799 gdatetime test fails with tzdata 2017a
1792  780032 Add missing attributes to two functions
1793  780144 gio/fam: Remove leftover debug print
1794
1795 * Translation updates:
1796  French
1797  Friulian
1798  Latvian
1799
1800
1801 Overview of changes in GLib 2.51.5
1802 ==================================
1803
1804 * OS X implementations of GContentType and GAppInfo
1805   have been added
1806
1807 * Bugs fixed:
1808  673047 gunicollate is broken on OS X (patch included!)
1809  734946 Implement GContentType on OSX
1810  747146 Implement GNotification on OSX
1811  769983 glib-mkenums generates non-reproducible Makefile snippets
1812  777203 gnulib license information is not correct in glib2.0
1813  778515 Crash in the gio kqueue backend
1814  779456 Make g_utf8_make_valid optionally take a length
1815
1816 * Translation updates:
1817  Danish
1818  Friulian
1819  German
1820  Hungarian
1821  Korean
1822  Lithuanian
1823
1824
1825 Overview of changes in GLib 2.51.4
1826 ==================================
1827
1828 * Memory leak fixes
1829 * Fix the released tarball
1830
1831
1832 Overview of changes in GLib 2.51.3
1833 ==================================
1834
1835 * Bugs fixed:
1836  771997 gchecksum: Add SHA-384 support
1837  778422 gsubprocesslauncher: Clarify the behavior of set_environ()
1838  778581 gdbus-codegen: Fix -Wconversion warning
1839  778801 gdbus-codegen: Add --outdir flag
1840  778991 Plug a mem leak in gdbusauth
1841  779183 g_io_extension_point_get_extensions should check for NULL pointer
1842
1843 * Translation updates:
1844  Basque
1845  Chinese (Taiwan)
1846  Danish
1847  Indonesian
1848  Italian
1849  Serbian
1850
1851
1852 Overview of changes in GLib 2.51.2
1853 ==================================
1854
1855 * Minimal support for UUIDs has been added
1856
1857 * A new file attribute, G_FILE_ATTRIBUTE_RECENT_MODIFIED has been added
1858   to improve sorting of recent files
1859
1860 * Bugs fixed:
1861  639078 UUID support feature request
1862  777135 gkeyfile: Be more specific about error codes in documentation
1863  777307 race condition between gdbus signal callback and g_bus_unwatch_name...
1864  777481 goutputstream: docs: fix typos
1865  777493 g_mkdtemp() not introspectable
1866  777507 Recent view sorting incorrectly
1867  777592 Add minor examples to GDBus and GVariant documentation
1868  778002 race in gdbusprivate.c detected by the ThreadSanitizer
1869  778096 race in gdbusconnection reported by TSan
1870
1871 * Translation updates:
1872  Norwegian bokmål
1873  Polish
1874  Simplified Chinese
1875  Slovak
1876  Spanish
1877  Swedish
1878
1879
1880 Overview of changes in GLib 2.51.1
1881 ==================================
1882
1883 * glib-compile-resources grew a --generate-phony-targets flag
1884
1885 * GLib now installs a valgrind suppressions file for GLib and GIO
1886
1887 * Bugs fixed:
1888  666114 should have infrastructure to run its tests under valgrind
1889  729730 GDBusMessage: Fix segfault if DEBUG_SERIALIZER is enabled
1890  730932 statically assert that reasonable assumptions about enums are true
1891  735731 gobject: Document behaviour of GType checking macros on NULL
1892  736810 gdbus: Fix leak in g_dbus_message_print()
1893  762283 GSocket – Fix race conditions on Win32 if multiple threads are waiting on cond...
1894  767609 Test suite problems
1895  767952 g_dbus_method_invocation_return_*, g_dbus_method_invocation_take_error: They d...
1896  769672 Assert threads for testcase 642026 are sucessfully created
1897  769745 gtask: Add guards for public functions
1898  770175 Add command line argument to mkenums and genmarshal to write output to a file
1899  770646 glib: Namespace global tapset variables by soname
1900  772160 Add g_unix_mount_for() support
1901  772989 Totem allows invalid urls that might cause segfault that's irrecoverable
1902  773823 gio: Bump copy buffer size to 256k by default
1903  774086 fix g_main_context_check declaration
1904  774368 Dependency file output of resource scanner breaks Ninja
1905  774421 Two minor patches
1906  774520 GSocket allocates and processes control messages even if not requested
1907  775309 Crash in gdbusauth
1908  775468 Improve log write supports color method on windows
1909  775510 testing with -fsanitize=undefined reports various undefined behaviour
1910  775517 Password input is echoed in the terminal
1911  775621 gmessages: Fix compilation on Android
1912  775765 FDO notification withdrawal backend sends wrong ID to the server
1913  775913 subprocesslauncher: potential infinite loop in verify_disposition()
1914  776198 Stray semicolon after g_variant_print() function in gvariant.c
1915  776586 License headers cleanup
1916  777077 Use of memory after it is freed
1917
1918 * Translation updates:
1919  Brazilian Portuguese
1920  Czech
1921  Galician
1922  German
1923  Hebrew
1924  Kazakh
1925  Lithuanian
1926  Spanish
1927  Swedish
1928
1929
1930 Overview of changes in GLib 2.51.0
1931 ==================================
1932
1933 * glib-genmarshal and glib-mkenums have gained --output options
1934   for better build system integration
1935
1936 * New API: g_utf8_make_valid
1937
1938 * Bugs fixed:
1939  591603 Make _g_utf8_make_valid public
1940  610969 Nice to have g_utf8_make_valid as public
1941  767882 Bit shift overflow (-Wshift-overflow) warning in gparam.h
1942  769135 External control for g_test_add/g_test_run
1943  769630 gfile: G_FILE_MONITOR_WATCH_MOVES was actually introduced in 2.46
1944  772160 Add g_unix_mount_for() support
1945  772221 Take advantage of Unicode
1946  773303 GApplication leaks option_strings 
1947
1948 * Translation updates:
1949  French
1950  Galician
1951  German
1952  Hungarian
1953  Lithuanian
1954  Norwegian bokmål
1955  Occitan
1956  Polish
1957  Slovak
1958  Turkish
1959
1960
1961 Overview of changes in GLib 2.50.1
1962 ==================================
1963
1964 * Update Unicode support to Unicode 9.0.0
1965
1966 * Bugs fixed:
1967  662946 gunixmounts monitoring doesn't work correctly with libmount
1968  771591 Update to Unicode 9.0.0
1969  772054 glib/gspawn-win32-helper.c: unexpected behavior re CommandLineToArgvW()
1970  772255 gresolver: Mark GResolver as an abstract class
1971  772269 Add --version options to glib-compile-resources and glib-compile-schemas
1972  772297 completion: Complete gsettings describe
1973  772511 g_log_default_handler crashes windows apps with "Unspecified fatal err...
1974
1975 * Translation updates:
1976  Brazilian Portuguese
1977  Catalan
1978  Croatian
1979  Czech
1980  Danish
1981  Hungarian
1982  Italian
1983  Latvian
1984  Polish
1985  Swedish
1986
1987
1988 Overview of changes in GLib 2.50.0
1989 ==================================
1990
1991 * Bugs fixed:
1992  771438 Turn on libmount by default on linux
1993         Fix the annotation for g_log_variant
1994
1995 * Translation updates:
1996  British English
1997  French
1998
1999
2000 Overview of changes in GLib 2.49.7
2001 ==================================
2002
2003 * Add g_log_variant, binding-friendly api for structured logging
2004
2005 Bugs fixed:
2006  646926 arg_data invalid after g_option_context_parse() fails
2007
2008 * Translation updates:
2009  Danish
2010  Finnish
2011  Galician
2012  German
2013  Hebrew
2014  Kazakh
2015  Korean
2016  Latvian
2017  Lithuanian
2018  Polish
2019  Portuguese
2020  Serbian
2021  Slovak
2022  Spanish
2023  Swedish
2024  Thai
2025
2026
2027 Overview of changes in GLib 2.49.6
2028 ==================================
2029
2030 * The gsettings commandline tool now has a describe command
2031
2032 Bugs fixed:
2033  745754 Add gcc-style dependency output to glib-compile-resources
2034  769076 Fix warning: attempt to override closure->va_marshal with new marshal
2035  770372 gdbus-codegen: Strip @since parameters before comparison
2036
2037 Translation updates:
2038  Brazilian Portuguese
2039  Czech
2040  German
2041  Hungarian
2042  Polish
2043  Portuguese
2044  Spanish
2045
2046
2047 Overview of changes in GLib 2.49.5
2048 ==================================
2049
2050 * Structured logging:
2051  - drop libsystemd dependency
2052  - document that g_test_expect_message does not work with structured logs
2053
2054 * Use libmount for unix mount support
2055
2056 * Add an async variant of g_app_info_launch_default_for_uri
2057
2058 Bugs fixed:
2059  522053 GUnixMountMonitor needs to use /proc/self/mountinfo on recent Linux
2060  682794 Add usage guidance to logging documentation
2061  744456 Structured logging API
2062  766370 Add a macro for initializing g_auto(GVariantBuilder)
2063  767240 Regex failures with pcre 8.38
2064  768198 Can't build glib with systemtap enabled
2065  768453 Gdbus test: compilation fails due to -Werror=format-y2k errors
2066  768752 Add async variant of g_app_info_launch_default_for_uri
2067  769027 Docs misleadingly imply G_CHECKSUM_SHA512 is available since 2.16
2068  769029 gmessage: compiler complains about -Wformat-nonliteral
2069  769042 'O_CLOEXEC' undeclared (first use in this function)
2070  769087 gmessages: support NULL log domain
2071  769089 Fix gsettings uint64 testcase
2072  769104 Build failure when using _GLIB_CHECKED_ADD_U32 with the Intel compiler
2073  769139 g_log_writer_journald uses non-standard 'htole64' function
2074  769238 memory increases every time I umount and mount my secondary hard disk.
2075  769245 is_valid_heap_iter define misses NULL pointer check
2076  769507 gmessages: Don’t require is_journald() call before writer_journald()
2077  769785 gmessages: Expand documentation further for structured logging
2078  769995 gdbus-codegen: Allow '@since: UNRELEASED' in documentation comments
2079
2080 Translation updates:
2081  Catalan
2082  Hebrew
2083  Lithuanian
2084  Slovak
2085  Spanish
2086
2087
2088 Overview of changes in GLib 2.49.4
2089 ==================================
2090
2091 * Change the just-introduced structured logging API. The arguments
2092   of g_log_structured() had to be reordered to enable an implementation
2093   within the limits of what the standards guarantee about var args.
2094
2095 Bugs fixed:
2096  744456 Structured logging API
2097  768936 gio doc build fails because of missing gio.xml in the tarballs
2098  768963 improper va_list use in g_log_structured()
2099  768968 gio/tests/socket-listener hangs since e4ee307
2100
2101 Translation updates:
2102  Spanish
2103
2104
2105 Overview of changes in GLib 2.49.3
2106 ==================================
2107
2108 * GLib has a structured logging API, g_log_structured, with support
2109   for writing to the systemd journal. It also supports colored output
2110   in terminals
2111
2112 * Some new GBytes API has been added:
2113  - g_key_file_load_from_bytes
2114  - g_compute_hmac_for_bytes
2115
2116 * Stack-allocated GVariantBuilder and GVariantDict objects can now be
2117   initialized with G_VARIANT_BUILDER_INIT and G_VARIANT_DICT_INIT
2118
2119 * gio:
2120  - Add a way to register handlers for custom uri schemes
2121  - Add a G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE attribute to
2122    have these heuristics in a single place
2123  - Include a gio tool that makes the functionality of the
2124    various gvfs commandline tools available in a single place
2125  - Add portal support to g_app_info_launch_default_for_uri
2126  - Add portal support to GNetworkMonitor
2127  - Add portal support to GProxyResolver
2128  - Add portal support to g_application_send_notification
2129
2130 Bugs fixed:
2131  547200 g_utf8_find_next_char() issues
2132  662802 systemtap multiarch issue
2133  723506 fork/exec from non-main thread when autolaunching could be avoided...
2134  725902 build: simplify dtrace configuration
2135  728207 gsocketservice: Documentation does not mention that is already act...
2136  729914 instead of DEBUG_CODE and IF_DEBUG, provide a common macro to supp...
2137  744456 Structured logging API
2138  744678 Unable to delete relocatable schemas
2139  746685 clarify that g_variant_get_data() can be used instead of g_variant...
2140  747134 glib-compile-resources --generate should detect common C++ file ex...
2141  750257 GSettings changed signal should clearly state the order required
2142  753231 Memory is potentially used after free
2143  754012 missing filename in "Error loading css: Failed to import: Error op...
2144  760115 gtestutils: add missing dash in seed argument's --help documentation
2145  760423 gio-querymodules prints error messages as question marks on some l...
2146  761102 Increase performance for main loop
2147  765338 GLib.compute_hmac_for_data throws every time
2148  766370 Add a macro for initializing g_auto(GVariantBuilder)
2149  766899 Superflous HTML/XML comments in GDBusProxyTypeFunc documentation s...
2150  766933 GSocketAddress leaks in gnetworkmonitornetlink.c:read_netlink_mess...
2151  767765 Add names and tags to various GSources and GTasks constructed in GLib
2152  767880 gkeyfile: add g_key_file_load_from_bytes() API
2153  767887 vfs: add g_vfs_register_uri_scheme()
2154  767949 [patch] Typos in glib docs
2155  768029 infinite loop in parse_name_internal()
2156  768119 Fix fallout from get_supported_schemes() changes
2157  768357 Build the gio tool on Windows/MSVC
2158  768498 portal support for glib
2159  768504 keyfile: g_key_file_get_double behavior doesn't follow documentation
2160  768549 Test failure: test_ip_sync_dgram
2161  768551 Test failure: test_socket_address_to_string
2162  768560 gio/tests/gsettings: fix GSettings reference leaks in some tests
2163  768780 O_PATH is a non-standard flag which may be unavailable on non-Lin...
2164  768806 gdbus tool must swallow -- argument
2165
2166 Translation updates:
2167  Chinese (Taiwan)
2168  French
2169  Hebrew
2170  Indonesian
2171  Lithuanian
2172  Portuguese
2173  Spanish
2174
2175
2176 Overview of changes in GLib 2.49.2
2177 ==================================
2178
2179  * GMainContext and GTask have gained more systemtap probes
2180
2181 Bugs fixed:
2182  673101 resource compiler dependency generation not working for gen...
2183  700756 GFile.new_for_path arguments misses (type filename) annotation
2184  730187 glocalfileoutputstream: Fix an FD leak in an error path
2185  755439 Memory leak in gdbusproxy.c
2186  759813 Add more SystemTap/DTrace probes for main context and GTask
2187  761810 gio: Support using GDBusObjectManagerServer at path ‘/’
2188  767172 docs: Move GIO_USE_VFS to "okay for production" section
2189  767218 Remove a UTF-8 ellipsis from gsignal.h
2190  767245 Add filename type annotations
2191  767824 Some UTC timezones incorrectly recognized on Windows 7
2192
2193 Translation updates:
2194  Occitan
2195
2196
2197 Overview of changes in GLib 2.49.1
2198 ==================================
2199
2200  * GDesktopAppInfo now allows bus activation with dashes. This is
2201    not technically allowed per the Desktop Entry specification, but
2202    it happens in the wild. Rather than forcing people to go through
2203    another traumatic desktop file rename, accept it and translate - to _.
2204
2205  * The support for giving names to threads has been improved. Thread names
2206    are now supported on Solaris as well, and the Linux support no longer
2207    uses prctl() but the pthread api.
2208
2209  * GIO resources can now be overridden at runtime, using the G_RESOURCE_OVERLAYS
2210    environment variable.
2211
2212  * gdbus-codegen can now generate autocleanup definitions for the types
2213    it generates. Use the --c-generate-autocleanup option to control this
2214
2215 Bugs fixed:
2216  665446 Use g_abort() instead of abort()
2217  731988 glocalfile: Avoid a potential NULL pointer dereference
2218  742898 g_value_type_transformable() description differs from the code
2219  747107 GVariant varargs documentation: g_variant_get() example
2220  747478 g_system_thread_set_name() is not implemented for gthread-win32
2221  748474 g_get_language_names() is not thread-safe
2222  748530 gthread: W32 implementation of g_get_num_processors() has lame fallback
2223  748806 GVariant: Better introduction to the concepts and its uses
2224  749583 GSequence performance improvements
2225  749606 tests: always remove app.desktop
2226  755898 [PATCH] settings: add get/set uint64
2227  758174 Fix documentation typos
2228  758738 Usage of GType properties causes crashes due to gulong/gpointer mismatch
2229  760186 namespace clash with gdb pretty-printing code
2230  762994 Race condition in GIO/AppFileChooser crashes Firefox/Gtk3
2231  763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
2232  763821 build: Also dist Systemtap files always for gobject/
2233  764092 gstrfuncs: Document the behaviour of g_strjoinv()
2234  764163 g_task_had_error doesn't remember the error after g_task_propagate_*
2235  764415 Very High CPU usage in g_poll() Windows implementation
2236  764574 build: Fix all statfs() tests failing
2237  764575 tests: Fix compilation errors due to Y2K format problems
2238  764685 GApplication documentation about handling command-line options is confusing
2239  764754 '-' in application id: unbreak bus activation and notifications
2240  765173 documentation of g_main_context_push_thread_default() regarding GIO...
2241  765668 GResources: add support for resource overlays
2242  765710 gdbus-tool: only print note about expected argument types if that...
2243  765712 tests: Fix compilation
2244  765861 task: avoid context lock when setting source name
2245  765900 Add g_drive_is_removable() support
2246  765924 Improve external drives detection
2247  765959 socket: set fd field to -1 after closing socket
2248  765990 Visual Studio: Define inline only when necessary
2249  765991 Compilation of gresource.c is broken due to S_ISDIR
2250  766092 Incorrect locale handling in g_date_time_format_locale()
2251  766211 Fix the upper bound in g_unichar_iswide_bsearch
2252  766407 Some build-related defects in glib testsuite
2253  766570 build: Fix a misnamed variable in glib-tap.mk
2254
2255 Translation updates:
2256  Basque
2257  Catalan
2258  Chinese
2259  Occitan
2260  Portuguese
2261  Turkish
2262  Vietnamese
2263
2264
2265 Overview of changes in GLib 2.48.0
2266 ==================================
2267
2268  * a minor build fix in the name of determinism
2269
2270  * a few coverity fixes
2271
2272 Bugs fixed:
2273  763617 giotypefuncs.c: Sort _get_type functions in the 'C' locale
2274
2275 Translations updated:
2276  Danish
2277  Italian
2278
2279 Overview of changes in GLib 2.47.92
2280 ===================================
2281
2282  * gdbus-codegen now supports g_autoptr()
2283
2284  * g_get_user_runtime_dir() now reliably returns an existing directory
2285
2286  * g_array_remove_range() can now remove 0 items from the end of an array
2287
2288  * Many fixes for Windows
2289    * build fixes
2290    * file monitoring
2291    * gsettings backend
2292    * streams
2293    * random numbers
2294    * wide character support
2295
2296  * documentation improvements
2297
2298  * other small bugfixes
2299
2300 Bugs fixed:
2301  724847 Segmentation fault on "gsettings list-recursively"
2302  743933 gapplication: add --app-id command line option
2303  756706 [PATCH] gio/gtestdbus.c: don't use non-standard %m printf modifier
2304  757506 gsettings: schema_list should use the passed schema's source
2305  760694 W32: Apps linked with -mwindows make cursor busy sometimes
2306  762202 g_win32_error_message improvements
2307  762637 build: Unconditionally dist tapset files
2308  762748 Undefined behavior
2309  762937 Mention that g_clear_error can be used with an "empty" GError
2310  763339 array: Support clearing an empty array with g_array_remove_range()
2311  763344 g_get_user_runtime_dir(): ensure directory exists
2312  763379 codegen: Add support for g_autoptr to gdbus-codegen–generated objects
2313
2314 Translations updated:
2315  Brazilian Portuguese
2316  Czech
2317  Finnish
2318  French
2319  Galician s
2320  German
2321  Greek
2322  Hebrew
2323  Hungarian
2324  Italian
2325  Kazakh
2326  Korean
2327  Latvian
2328  Lithuanian
2329  Occitan
2330  Polish
2331  Russian
2332  Serbian
2333  Slovak
2334  Slovenian
2335  Spanish
2336  Swedish
2337
2338 Overview of changes in GLib 2.47.6
2339 ==================================
2340
2341 * Windows usupport:
2342  - Fixes and improvements to the GSettings registry backend
2343  - Handle readability and writability of registry keys
2344  - Use Unicode registry APIs
2345
2346 * Bugs fixed:
2347 760852 744772 761126 747927 761337 744570 761504 761550 761843
2348  744570 GString is missing (transfer none) annotations on many of its methods
2349  744772 systemtap and gdb scripts install in wrong place
2350  747927 Documentation: various small improvements
2351  760852 gdbusobjectmanagerserver: Clarify recommended ObjectManager paths
2352  761126 winiconv: update to upstream version
2353  761337 Fix some annotations
2354  761504 W32 registry GSettings backend does not use Unicode
2355  761550 Cannot build with default flags under Fedora rawhide (-Werror=format-...
2356  761843 gmacros.h is testing attributes with __has_feature (when compiling wi...
2357
2358 * Translation updates:
2359  Brazilian Portuguese
2360  Bulagarian
2361  Chinese (Taiwan)
2362  Hungarian
2363  Polish
2364  Slovak
2365  Slovenian
2366  Spanish
2367  Swedish
2368
2369
2370 Overview of changes in GLib 2.47.5
2371 ==================================
2372
2373 * the system copy of PCRE is now used by default to implement GRegex.
2374   Configure with --with-pcre=internal if a system PCRE version
2375   is unavailable or undesired.
2376
2377 * interfaces for DTLS support have been added.  A new version of
2378   glib-networking will also be required.
2379
2380 * GDBusMethodInvocation now drops replies if the sender set the
2381   NO_REPLY_EXPECTED flag
2382
2383 * several GApplication fixes, including fixes for commandline arguments
2384   in interpreted languages on Windows
2385
2386 Bugs fixed:
2387  624186 Deprecate glib-gettext macros
2388  734095 gtk-demo.py of PyGObject fails to run on Windows (and likely other binding scripts using g_application_run())
2389  735754 Implement close on TLS GOutputStream
2390  748064 gnulib vfprintf returns desired (not actual) number of bytes, ignores errors
2391  752240 Add DTLS support to GIO
2392  755421 GDBus ignores NO_REPLY_EXPECTED flag in messages, leading to warnings on system bus
2393  756875 Include ntdef.h for NTSTATUS
2394  759554 g_application_run() calls g_main_context_default() repeatidly
2395  760199 gsettings: Install gettext ITS rules
2396  760215 G_LIKELY/_UNLIKELY macros need more parentheses
2397  760683 regex test: Check the expected PCRE exceptions at runtime
2398
2399 Translations updated:
2400  Brazilian Portuguese
2401  Czech
2402  German
2403  Lithuanian
2404  Swedish
2405
2406 Overview of changes in GLib 2.47.4
2407 ==================================
2408
2409 * The GApplication documentation has been improved in several areas.
2410
2411 * Bugs fixed:
2412  749092 gdb pretty-printers fail on Python 3 with a TypeError...
2413  757374 macros: clean up "inline" mess
2414  758641 Memory leak in g_dbus_proxy_new_for_bus_sync()
2415  759134 Add missing checks for gnulib vasnprintf()
2416  759408 Do not use uninitialized var 
2417  756475 Stop supporting non-POSIX getpwuid_r, getgrgid_r
2418  757372 GApplication: destroy the impl on shutdown
2419  728099 macros: add G_GNUC_CHECK_VERSION() for compiler checks
2420  757299 glib-compile-resources: do not leak c_name
2421  758553 Fix gettext use
2422  758823 file monitors: reorder some code to avoid segfault
2423  756214 gsettings: Don't translate ""
2424  710243 Add GParamSpec object ref management annotations
2425  735696 xdgmime: Finer handling for cases where mmap() is not available
2426  752983 gapplication: Acquire the main context before running
2427
2428 * Translation updates:
2429  Swedish
2430
2431
2432 Overview of changes in GLib 2.47.3
2433 ==================================
2434
2435 The inline cleanup in the last release accidentally removed three
2436 symbols from libglib-2.0.so.  It is unlikely that this will have caused
2437 any problems because these symbols were only backup symbols for
2438 definitions exported as inlines in the header files, but ABI is ABI.
2439
2440 This release corrects only this problem.
2441
2442 Overview of changes in GLib 2.47.2
2443 ==================================
2444
2445 * We have formalised the assumption that all compilers that are
2446   interested in support 'static inline' and simplified the macros around
2447   this considerably.  Please watch for and report unintentional fallout.
2448
2449 * New API: hardware-assisted helpers for overflow-checked integer math.
2450
2451 * other fixes
2452
2453 Bugs fixed:
2454  696324 gtester-report doesn't work with Python 3.x
2455  719966 glib: Add missing (nullable) and (optional) annotations
2456  752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer works with Win 10 UCRT (VS 2015)
2457  755364 make gtkdoc-check happy again
2458  756134 Segmentation fault on calling g_simple_action_group_add_action with bad action constructor call
2459  756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to API deprecation
2460  756988 GSequence should document each function's complexity
2461  757294 Move G_POLLFD_FORMAT to glibconfig.h
2462  757374 macros: clean up "inline" mess
2463  757451 doc: fix g_task_attach_source() example
2464  757628 gio tests fail to build when cross compiling 2.46.1
2465  757693 Invalid free in g_local_file_trash()
2466  757742 Fix up annotations in ghash.c
2467  758181 GTask: fix wrong example code
2468
2469 Translations updated:
2470  Greek
2471  Hebrew
2472  Hungarian
2473  Norwegian bokmål
2474  Portuguese
2475  Scottish Gaelic
2476  Simplified Chinese
2477  Spanish
2478
2479 Overview of changes in GLib 2.47.1
2480 ==================================
2481
2482 * The Unicode support has been updated to version 8.0 of the Unicode standard
2483
2484 * GDesktopAppInfo no longer sets the DISPLAY environment variable when
2485   launching apps. This is now done in the GAppLaunchContext implementations
2486   when appropriate
2487
2488 * Bug fixes:
2489  664740 Key-value file parser, space after integer
2490  687223 cleverer GThreadPool management
2491  692085 stderr and stdout are not always file descriptors 1 and 2
2492  697907 Add interface for socket-like things (GSocket, DTLS, etc)
2493  735754 Implement close on TLS GOutputStream
2494  737116 Add functions to print GSocketConnectables and addresses as strings
2495  743011 Minor additions to GError documentation
2496  749161 undefined reference to `__imp__stat32i64'
2497  749314 Cannot restore a just-trashed file
2498  751924 Add recvmmsg()-like API on GSocket
2499  752240 Add DTLS support to GIO
2500  752837 gobject and glib-compile-resources rely on .CRT$XCU section, no longer...
2501  753310 Remove `#pragma GCC system_header` from gmessages.h
2502  753935 Update example namespace and class names in GObject tutorial
2503  754855 Object instantiation documentation refers to example that no longer ex...
2504  754983 Wayland: g_desktop_app_info_launch_uris_with_spawn() forces DISPLAY va...
2505  754994 g_date_time_get_second () sometimes returns an off-by-one result
2506  755083 Clarify in G_ADD_PRIVATE that it is safe to call _get_instance_private...
2507  755351 Example still contains g_autoptr(gchar)
2508  755355 Move GStrv to glib.h so it can be used with g_auto()
2509  755374 g_variant_get_child(): flatten-first logic on '&'
2510  755496 glib 2.46 fails GStreamer test suite
2511  755609 glib 2.46.0 breaks Sun Java JVM 1.8.0.60
2512  755766 gvalue: The g_auto cleanup function assert if value is G_VALUE_INIT
2513  755795 2.46 considers empty files as octet-stream rather than text (leads to...
2514  755961 Fix up annotations in gbytes.c
2515  756053 MSVC doesn't understand the symbol 'msghdr'
2516  756054 MSVC linker error due to 'g_socket_send_message_with_timeout()'
2517  756077 testutils: remove internal ABI comment
2518  756099 g_main_context_query(): Annotate @n_fds as (in) parameter
2519  756139 musl: ctors called in the wrong order
2520  756179 gwin32.c: Replace VerifyVersionInfoW() with RtlGetVersion() due to AP...
2521  756251 The documentation of G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is confusing
2522  756255 GOutputStream swallowing errors in splice with G_OUTPUT_STREAM_SPLICE...
2523  756316 GSequence should provide fast api to check if empty
2524  756382 snprintf used on Windows with VS2015 doesn't support %n
2525  756477 gio/gthreadedresolver.c has outdated copy of bionic headers (for android)
2526  756550 gtypes.h: Make G_MININTn literals negative
2527  756875 Include ntdef.h for NTSTATUS
2528  756952 giomodule: return a copy of module name
2529
2530 * Translation updates:
2531  Basque
2532  Czech
2533  Serbian
2534  Serbian Latin
2535  Vietnamese
2536
2537
2538 Overview of changes in GLib 2.46.0
2539 ==================================
2540
2541 * Disable runtime-deprecation warnings
2542
2543 * Fix marshalling of flags on bigendian 64bit architectures
2544
2545 * Translation updates
2546  Brazilian Portuguese
2547  Danish
2548  German
2549  Latvian
2550  Russian
2551  Turkish
2552
2553
2554 Overview of changes in GLib 2.45.8
2555 ==================================
2556
2557 * utf8 validation and utf8-to-ucs4 conversion are faster
2558
2559 * Small speedups to property change notification
2560
2561 * Various other small optimizations for GQuark, GData
2562
2563 * Bugs fixed:
2564  696426 GParamSpecTypeInfo do not need to be static
2565  735429 Cleanup MSVC Project Files Generation
2566  738504 Optimize UTF-8 decoding by unrolling branches and expressions
2567  742903 Add missing (transfer) annotation to GString
2568  748633 g_set_object order of operations
2569  754431 Fix build of glib/gstrfuncs.c on Windows
2570  754560 gioerror: Add more mappings for WinSock error codes
2571  754582 Glib cannot compile
2572  754601 Make g_strerror work with non-glibc POSIX systems
2573  754636 tests/unicode-encoding test fails for glib 2.45.7 on x86-64
2574  754788 more g_strerror stuff
2575  754831 autocleanups: Add GString type
2576  754924 Improve test coverage of g_utf8_validate() by added known-...
2577  754986 Avoid unnecessary signal emission during draw
2578
2579 * Translation updates:
2580  Italian
2581  Kazakh
2582  Korean
2583  Lithuanian
2584  Slovenian
2585  Swedish
2586
2587
2588 Overview of changes in GLib 2.45.7
2589 ==================================
2590
2591 * Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like
2592   backends (e.g. cloud storage).
2593
2594 * GFileMonitor: Make the inotify backend work with atomic renames again
2595
2596 * GSettings: change notification is again working unconditionally
2597
2598 * GListStore has a sort function now
2599
2600 * Test infrastructure:
2601  - Tests are now required to have unique names
2602  - TAP support has been improved
2603  - A macro for asserting that two memory regions have identical content
2604    has been added
2605
2606 * Bugs fixed:
2607  708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"...
2608  742849 inotify: send paired events to both sides
2609  744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T...
2610  747364 Fix GError leak in g_file_query_writable_namespaces()
2611  749492 Support file creation time on FreeBSD and NetBSD
2612  752769 (g_socket_receive_message | g_socket_send_message) performance
2613  753745 glib-genmarshal still needed for cross-compilation
2614  754152 Add g_list_store_sort
2615  754211 Memory leak in g_file_enumerator_iterate ()
2616  754264 GLib 2.44 certificate chain construction fails if the PEM incl...
2617  754283 gtestutils: add g_assert_cmpmem()
2618  754284 gtestutils: print the TAP test plan first, not last
2619  754286 misc gtestutils fixes
2620  754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg...
2621
2622
2623 * Translation updates:
2624  Chinese (Taiwan)
2625  French
2626  Galician
2627  Greek
2628  Hebrew
2629  Hungarian
2630  Indonesian
2631  Polish
2632  Portuguese
2633
2634
2635 Overview of changes in GLib 2.45.6
2636 ==================================
2637
2638 * Fix a test failure and a build failure
2639
2640 Overview of changes in GLib 2.45.5
2641 ==================================
2642
2643 * GNetworkMonitor now provides information about metered networks
2644
2645 * g_mem_set_vtable has been deprecated; it has not been working for
2646   quite a while. The recommendation is to use valgrind, or replace
2647   malloc itself.
2648
2649 * Bugs fixed:
2650  656325 Make GDBusInterfaceVTable binding friendly
2651  741779 Documentation tweaks addressing real-world API misuses
2652  741822 Fails to build with VS 2015
2653  742386 gdbusconnection: Don't g_printerr() when exiting
2654  743018 gobject: Add more cross-links between documentation pages
2655  750282 Add g_network_monitor_get_network_metered() to get if the connection...
2656  751358 GFileMonitor doesn't react to "mv some-file watched-file"
2657  751592 Stop using GMemVtable
2658  751598 Stop 'handle-local-options' propagation when callback reports an err...
2659  751610 g_str_hash produces collisions with strings of length 2
2660  751751 Wrong docs of g_async_queue_remove
2661  752210 gdbus command crashes with SIGSEGV
2662  752656 gdbusconnection: Fix signal subscription documentation
2663  752767 Fix typo in g_hash_table_replace() documentation
2664  753278 gdbus: Don't use g_assert_no_error() GDBusObjectManagerServer
2665  753285 g_menu_item_set_icon fails if called with NULL icon
2666
2667 * Translation updates:
2668  Catalan
2669  Czech
2670  French
2671  Indonesian
2672  Lithuanian
2673  Norwegian bokmål
2674  Slovak
2675  Spanish
2676  Thai
2677  Turkish
2678
2679
2680 Overview of changes in GLib 2.45.4
2681 ==================================
2682
2683 * Bugs fixed:
2684  727829 win32: glibconfig.h.win32 updates
2685  741901 Clang cannot know that g_error don't return
2686  746339 GSocket kills process when fd is not a socket
2687  747676 gio/tests/socket fails: test_fd_roundtrip
2688  748610 Some tests fail with non-English locales
2689  749911 g_inet_address_to_string broken on XP/2003
2690  749912 g_inet_address_new_from_string broken on XP/2003
2691  750625 Should dismiss Software Updates Available notification after...
2692  750807 G_BREAKPOINT doesn't work as intended on Darwin
2693  751160 gtask does unnecessary work
2694  751672 -Wduplicate-decl-specifier in glib/tests/keyfile.c
2695  751731 GFile/DirectoryMonitor emit move events with other_file=NULL
2696  751737 gio/tests/appmonitor test fails in 2.45.3
2697  751798 Wrong enum type used in some test-cases
2698  752089 make gsocketservice::active a property
2699  752293 small cleanup: use list_free_full
2700
2701 * Translation updates:
2702  Greek
2703  Hebrew
2704  Portuguese
2705
2706
2707 Overview of changes in GLib 2.45.3
2708 ==================================
2709
2710 * Improve performance of g_signal_handler_disconnect for signals
2711   with many handlers
2712
2713 * GDBus has gained a new call flag to allow interactive authorization
2714
2715 * GSettings:
2716  - New API: g_settings_schema_list_keys
2717  - Deprecated: g_settings_list_keys
2718
2719 * OS X:
2720  - Implement GNotification
2721  - Bump the OS X requirement to 10.9
2722
2723 * Windows:
2724  - Add registry reading API
2725  - Reimplement GAppInfo using registry information
2726
2727 * Bugs fixed:
2728  666831 Support URI opening on W32
2729  728489 property action with inverted boolean state
2730  730168 Incorrect annotation on g_action_group_get_action_state_type return...
2731  733325 Several regex tests fail with pcre3 8.35
2732  734888 GLib has no helper functions to work with W32 Registry
2733  737009 signal handler lookup doesn't scale
2734  738185 Misleading language about "file name encoding" in the docs on g_env...
2735  738504 Optimize UTF-8 decoding by unrolling branches and expressions
2736  739122 glib not handling -1 return ("no limit") from sysconf (_SC_THREAD_S...
2737  739424 gnome-shell crashes when files are added, deleted, or modified in $...
2738  739616 DBus; Add new call flag to allow interactive authorization
2739  740308 Add g_settings_schema_list_keys() method
2740  740516 RFE: please provide an introspectible version of g_log_set_handler
2741  741788 Document GSettings build system integration
2742  745013 GBinding not thread safe
2743  747146 Implement GNotification on OSX
2744  747941 try XDG_RUNTIME_DIR/bus before falling back to X11 autolaunch (dbus...
2745  748727 Filechooser dialog shows no icons for directories on W32
2746  749693 GActionGroupExporter: flush queue on requests
2747  750203 GNetworkMonitorNetlink hangs in user namespace
2748  750322 gapplication: Make sure --help output is translated
2749  750344 GTlsInteractionClass is missing from doc
2750  750369 Various GBinding cleanups
2751  750386 Race condition in g_io_condition_get_type
2752  750399 Typo "equilalent" in glib documentation's glib-Error-Reporting.html...
2753  750573 GTlsDatabaseClass is not documented
2754  750918 genmarshal: silence register storage class warnings
2755  751122 gsocket: avoid unnecessary g_socket_cond_wait() in _send_messages()
2756  479730 The "g_key_file_set_comment" interface prepends '#' character to...
2757
2758 * Translation updates:
2759  Hungarian
2760  Spanish
2761
2762
2763 Overview of changes in GLib 2.45.2
2764 ==================================
2765
2766 * Improve error reporting in glib-compile-schemas.
2767
2768 * Add introspection annotations to GListStore.
2769
2770 * Bugs fixed:
2771  696749 win32 : failed to compile because of careless mistake in the code
2772  723394 const parameter to GtkPopover gtk_popover_set_pointing_to
2773  724113 gdbus-connection-loss test can fail on slow machines
2774  725981 tap-driver.sh: internal error getting exit status
2775  733325 Several regex tests fail with pcre3 8.35
2776  744895 Unknown or unsupported transport 'this-should-not-be-used-and-will...
2777  747882 gtype: Bump allowed number of children
2778  748534 gtest: if a subprocess assertion fails, print its stdout and stderr
2779  748612 de_DE locale used in option-context test is not supported by FreeBSD
2780  748614 Double unref in g_socket_listener_add_inet_port
2781  748834 glocalfilemonitor: Emit notification on rate limit change
2782  749079 gdbus-peer test: TCP tests can fail with ECONNRESET due to a race...
2783  749080 gdatetime test: fails if close to rollover between seconds
2784  749180 gnetworkaddress: add return type annotation to parse methods
2785  749352 g_binding_unbind() fails when source is also the target
2786  749353 GBinding does not connect to the detailed notify signal
2787
2788 * Translation updates:
2789  Catalan
2790  French
2791  Slovak
2792  Thai
2793
2794
2795 Overview of changes in GLib 2.45.1
2796 ==================================
2797
2798 * The GSettings schema compiler, glib-compile-schemas has been changed
2799   to reject schema xml that has duplicate <summary> or <description>
2800   elements. Such elements typically occur when translations are merged
2801   into the schema, with xml:lang attributes. This is not the correct
2802   way to translate schemas. Instead keep the translations in the .mo
2803   file and set the gettext-domain attribute on the <schemalist> element.
2804
2805 * The file monitoring infrastructure has been rewritten, and all backends
2806   have seen major improvements.
2807
2808   The inotify backend is reporting events with less delay (no event will
2809   be delayed more than 10ms) and wakeups due to file monitoring have been
2810   significantly reduced. A CHANGES_DONE event will also be sent when new
2811   files appear.
2812
2813   The poll implementation is now using the thread default main context.
2814
2815   The fam implmentation is now running in the worker thread.
2816
2817   The fen implementation has been removed, since it was unmaintained.
2818
2819 * The GSettings schema compiler, glib-compile-schemas, is more strict
2820   about rejecting schemas with xml:lang style merged translations.
2821   Schema translations should be done by specifying the gettext domain
2822   in the xml, and keeping the translations in gettext. To avoid breaking
2823   already-installed schemas, this change is only taking effect when
2824   you use the --strict option.
2825
2826 * The hardcoded 10-thread limit of GTask's thread pool has been removed,
2827   since it was prone to causing deadlocks. The thread pool is now allowed
2828   to grow dynamically and will shrink back over time.
2829
2830 * GSimpleAsyncResult has been deprecated in favor of GTask.
2831
2832 * The algorithm used by GAppInfo to find default handlers for mime types
2833   has been tweaked to prefer apps that handle the specific subtype over
2834   default handlers for a generic supertype.
2835
2836 * Bug fixes:
2837  627285 inotify file monitor hardwired delay
2838  631597 Segmentation fault in append_escaped_text
2839  661767 merge/improve various bits of run-in-thread functionality
2840  687223 cleverer GThreadPool management
2841  711547 win32: silence some build warnings
2842  719966 glib: Add missing (nullable) and (optional) annotations
2843  726447 Possibly an error in text string
2844  728663 W32: wrong stat struct is used when built with MinGW-w64
2845  728669 W32: GLocalFile can't measure size of files larger than 2^32...
2846  730188 gsocket: Document FD ownership with g_socket_new_from_fd()
2847  733325 Several regex tests fail with pcre3 8.35
2848  738207 Add a way to set SO_SENDBUF and SO_RECVBUF on listener (and...
2849  739850 GClosure: add valgrind hints
2850  741791 gmain: Save errno when handling unix signals
2851  744282 gvfs-open for application/x-virt-viewer changed behaviour bet...
2852  745255 Add support for copying sessions between GTlsClientConnections
2853  745745 gdbus: fix out-of-bound array access
2854  745821 Don't use __alloc_size__ attribute with clang
2855  746749 GLib-GIO:ERROR:inotify-kernel.c:327:ik_source_dispatch: ass...
2856  746753 Glib-compile-resources --generate-header not using ".h" as ...
2857  747209 glib-compile-schemas ought to reject repeated <summary> and...
2858  747349 Conversion of gdbus to use GTask causes deadlocks
2859  747363 gatomic: Add missing new line in API doc comment
2860  747472 Don't ignore already-installed schemas with multiple <summa...
2861  747541 gdbus segfaults with invalid --dest
2862  747772 Having hardcoded utf8 strings in the source code does not p...
2863  748019 gsocketconnection: Fix copy-pasto in documentation
2864  748177 not all test schemas are distributed, "make distcheck" fails
2865
2866 * Translation updates:
2867  Basque
2868  Czech
2869  Danish
2870  Finnish
2871  German
2872  Hebrew
2873  Icelandic
2874  Norwegian bokmål
2875  Russian
2876  Turkish
2877
2878
2879 Overview of changes in GLib 2.43.92
2880 ===================================
2881
2882 GLib is now considered frozen.  We do not expect any major changes
2883 before the release of 2.44.0.
2884
2885  * GUnixMountMonitor now properly supports multiple main contexts
2886
2887  * many documentation improvements and cleanups.  We are now
2888    approaching a point where the documentation is 100% complete and the
2889    xml will build without warnings.  This will probably be enabled by
2890    default in the next cycle.
2891
2892  * new support for HTTP proxies in GIO
2893
2894  * new GTask:completed property
2895
2896  * use "private" futexes in order to further improve the performance of
2897    the contended case of GMutex and g_bit_lock()
2898
2899 Bugs fixed:
2900  614684 Make various parts of GObject const-correct
2901  730352 Use inet_pton(), if_nametoindex() and if_indextoname() for newer versions of Windows
2902  733876 Proxy protocol 'http' is not supported.
2903  741442 threads: use FUTEX_WAIT_PRIVATE and FUTEX_WAKE_PRIVATE if possible
2904  742599 Clean up GUnixMountMonitor
2905  743636 gtask: Add a GTask:completed property
2906  743661 g_win32_check_windows_version() is missing from doc
2907  744722 docs: Expand introduction to mention using async calls over sync ones
2908  745589 [Patch] gio: add some missing autocleanup
2909  745634 [GNotifications] Use themed icon as icon-name
2910
2911 Translations updated:
2912  Bosnian
2913  Bulgarian
2914  Catalan
2915  Czech
2916  French
2917  German
2918  Greek
2919  Hungarian
2920  Italian
2921  Kazakh
2922  Korean
2923  Latvian
2924  Lithuanian
2925  POTFILESin
2926  Polish
2927  Russian
2928  Serbian
2929  Slovak
2930  Slovenian
2931  Spanish
2932  Swedish
2933  Vietnamese
2934  pa  for Gnome
2935
2936 Overview of changes in GLib 2.43.91
2937 ===================================
2938
2939 We have now added 'g_autofree' as a libgsystem-style autocleanup macro
2940 that calls g_free() on the content of a local variable when it leaves
2941 scope (working only on GCC and clang).
2942
2943 GApplication now has an "is-busy" property, allowing one to query the
2944 effective busy state.
2945
2946 There have been various other bugfixes and cleanups.
2947
2948 Bugs fixed:
2949  661554 GIO's use of GError is wrong
2950  744263 Fix format specifier for __LINE__ in G_OBJECT_WARN_INVALID_PSPEC
2951  744565 gapplication: add bind_busy_property()
2952  744747 Add g_autofree
2953  744756 Can't find out if gapplication is marked as busy
2954  744830 autocleanups: Add GArray and GPtrArray
2955  744876 Unclean exit from from g_application_run
2956  745239 g_property_action_new missing type annotation
2957
2958 Translations updated:
2959  Chinese (Taiwan)
2960  French
2961  Galician
2962  Lithuanian
2963  Slovak
2964
2965 Overview of changes in GLib 2.43.90
2966 ===================================
2967
2968 * new GSimpleIOStream class to construct a GIOStream from an arbitrary
2969   GInputStream and GOutputStream
2970
2971 * GApplication: new API for marking 'busy' state according to the value
2972   of a boolean property on another object
2973
2974 * GOptionGroup: add binding support (boxed type, annotation fixes, etc.)
2975
2976 Bugs fixed:
2977  739724 Test functions should have async scope
2978  741024 glist: Mention that g_list_length() is bad for checking list emptiness
2979  741630 Add GSimpleIOStream class
2980  743349 goption: Add boxed type for GOptionGroup
2981  743990 GDBus connection closing is broken
2982  744565 gapplication: add bind_busy_property()
2983
2984 Translations updated:
2985  Greek
2986  Italian
2987  Norwegian bokmål
2988  Russian
2989  Slovenian
2990  Swedish
2991
2992 Overview of changes in GLib 2.43.4
2993 ==================================
2994
2995 * GType now has type declaration macros G_DECLARE_DERIVABLE_TYPE,
2996   G_DECLARE_FINAL_TYPE and G_DECLARE_INTERFACE, which significantly reduce
2997   the boilerplate needed for GObject types and interfaces.
2998
2999 * g_autoptr and g_auto are macros for declaring variables with automatic
3000   cleanup. They only work with gcc and clang.
3001
3002 * GListModel is a new interface that represents a dynamic list of GObjects.
3003
3004 * GListStore is a GSequence-based implementation of GListModel.
3005
3006 * Support thread names on OS X
3007
3008 * g_simple_action_set_state_hint: New function to set the state hint
3009   of GSimpleActions
3010
3011 * g_win32_check_windows_version: New function to check Windows version
3012
3013 * g_settings_schema_list_children and g_settings_schema_key_get_name
3014   are new functions to complete the GSettingsSchema API.
3015
3016 * Bugs fixed:
3017  389585 G_DEFINE_TYPE hack for header files
3018  729351 Add GListModel
3019  736914 Docs: various fixes and improvements
3020  741807 Add thread name support on OS X and iOS
3021  741895 gwin32: Add Simple API to check whether we are on at least a v...
3022  742456 object: Add g_steal_pointer() convenience function to mark own...
3023  743508 polkitd fails to start: patch for gio/gcredentialsprivate.h
3024  743517 GSettings API is missing some introspection functions
3025  743521 GSimpleAction: add g_simple_action_set_state_hint
3026  743596 G_DECLARE_DERIVABLE_TYPE() should allow additional typedef for...
3027  743640 add __attribute__((cleanup)) support
3028  743827 Fix build of GListModel (on Visual Studio)
3029  743927 GListStore: add sorted insert function
3030  743936 glib: handle unsigned modifier for long long in internal printf
3031  744012 Add GMutexLocker
3032  744190 Fix build on Compilers That Do Not Use inline for Plain C Code
3033
3034
3035 Overview of changes in GLib 2.43.3
3036 ==================================
3037
3038 * add g_set_object() convenience function
3039
3040 * GNetworkMonitor: check if NM is not running and don't crash
3041
3042 * fix some races with g_mkdir_with_parents
3043
3044 * fix some warnings in MSVC
3045
3046 * avoid use of G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC in order to save
3047   on static strings
3048
3049 * fix some content type vs. mime issues
3050
3051 * documentation improvements
3052
3053 * Bugs fixed:
3054  719455  g_file_make_directory_with_parents() can erroneously throw G_IO_ERROR_EXISTS
3055  732439  GSocket: avoid unnecessary g_socket_wait_condition() for blocking sockets
3056  734946  Implement GContentType on OSX
3057  741589  gobject: Add g_set_object() convenience function to set GObject pointers
3058  741653  gnetworkmonitornm: Check if network-manager is running
3059  741654  [patch] gobject: don't use G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC() macro
3060  741707  Gsocket blocks trying to send data
3061  741788  Document GSettings build system integration
3062  742548  configure.ac: stay out of autoconf's namespace
3063  742851  avoid MSVC warnings in G_STMT_END
3064  742972  ggettext: Include an example of setlocale() and friends in the i18n docs
3065  743014  gtestutils: Add an example of using test fixtures 
3066
3067 * Translations updated:
3068  Basque
3069  Brazilian Portuguese
3070  Spanish
3071
3072 Overview of changes in GLib 2.43.2
3073 ==================================
3074
3075 * New function: g_strv_contains
3076
3077 * New function: g_network_address_new_loopback
3078
3079 * New function: g_socket_send_messages
3080
3081 * A new GNetworkMonitor implementation using NetworkManager provides
3082   more detailed connectivity information
3083
3084 * Bugs fixed:
3085   11059 Linux poll issue
3086  664562 captive wifi portal support for GNetworkMonitor
3087  685880 Add g_strv_contains()
3088  712570 Hang in g_threaded_socket_service_func
3089  719646 GSocket: add g_socket_send_messages() to send multiple messages...
3090  728928 Provide separate error code for "Connection reset by peer"
3091  732317 Support GSocketConnectable for loopback addresses
3092  740814 "make check" should ensure that every symbol is documented
3093  740848 Backend subscription fails when connecting to a signal with a d...
3094  741016 gio: add G_IO_ERROR_NOT_CONNECTED
3095  741226 keyfile: Add "in group" to GError message consistently
3096
3097 * Translation updates:
3098  Gujarati
3099  Hebrew
3100  Hungarian
3101  Kannada
3102  Turkish
3103  Vietnamese
3104
3105
3106 Overview of changes in GLib 2.43.1
3107 ==================================
3108
3109 * GQueue now accepts NULL as a sibling in g_queue_insert_before() and
3110   g_queue_insert_after()
3111
3112 * Bugs fixed:
3113   11059 Linux poll issue
3114  726037 Add G_PARAM_READWRITE value to the GParamFlags enumeration
3115  727988 GMemoryOutputStream hangs when writing more than 1GiB
3116  729739 tlscertificate: add support for loading certificate chains
3117  733791 GSettings: delay backend subscription
3118  736286 Clarify g_file_replace behavior with etags
3119  736620 GQueue: accept NULL sibling for insert_before() and insert_after()
3120  737150 GLib-GIO-WARNING **: Failed to parse translated string 'visible-name...
3121  737160 unhelpful error message
3122  738259 GDBusInterfaceVTable: clarify memory handling for the method() virt...
3123  738551 'interface' variable conflicts with Windows defines
3124  738633 Need to disable SSLv3 in glib-networking
3125  740157 <app> --help doesn't work even when options were added
3126  740309 Fix docs in g_strfreev
3127  740413 Fix the GSettings Registry Backend 
3128
3129 * Translation updates:
3130  Norwegian bokmål
3131
3132
3133 Overview of changes in GLib 2.43.0
3134 ==================================
3135
3136 * GObject gained a debug option to provide instance counts. To use it,
3137   set GOBJECT_DEBUG=instance-count and call g_type_get_instance_count().
3138
3139 * GOption now has a strict POSIX mode in which it stops parsing arguments
3140   as soon as a non-option argument is encountered.
3141
3142 * Bugs fixed:
3143  354457 Feature Proposal: Per-Type Statistics for Instantiable GTypes
3144  695082 g_hash_table_remove_all is not save against a call to g_hash_table_remove
3145  723160 GOption: add strict posix mode
3146  728256 gcredentials: add NetBSD support
3147  729739 tlscertificate: add support for loading certificate chains
3148  733338 Don't segfault in GNetworkMonitor when IPv6 support is unavailable
3149  736273 gdesktopappinfo: Use symbolic names in the code
3150  736284 Keep only one list of signal emissions
3151  736806 gtask: Fix reference count loop causing leaks
3152  736914 Docs: various fixes and improvements
3153  737143 Include <stdint.h> in glib/valgrind.h
3154  737259 gcancellable: Clarify that GSources hold references to GCancellables
3155  737338 gmain: Unref child sources when finalising a GSource
3156  737446 tests: Fix some minor leaks in the unit tests
3157  737451 Provide api to read_all_async
3158  737741 g_datalist_id_get_data assertion fails for non-existant keys
3159  737869 GApplication command line handling breaks --help
3160  738170 g_byte_array_new_take() doesn't initialize array->alloc
3161  738197 g_cond_timed_wait() doesn't time out on Mac OS X
3162  738374 gfile: g_file_equal (x, x) is TRUE
3163  738675 GSubprocessLauncher is missing some data on the docs 
3164
3165 * Translation updates:
3166  Bengali (India)
3167  Bulgarian
3168  Gujarati
3169  Italian
3170  Telugu
3171
3172
3173 Overview of changes in GLib 2.42.0
3174 ===================================
3175
3176 All changes in this release are trivial in nature.
3177
3178  - introspection warning fixes
3179
3180  - g_application_add_main_option now uses an enum instead of an 'int'
3181    for the type of a parameter
3182
3183  - added a G_OPTION_FLAG_NONE so that people don't need to use 0
3184
3185  - gresource: Use GError in more places
3186
3187  - gresource commandline tool: improve extraction from multiple sections
3188
3189  - GSource now takes the context lock (if any) in g_source_set_name()
3190
3191  - new documentation to clarify the use of some APIs related to
3192    GVariant, GSource, GApplication
3193
3194  - other minor updates to docs
3195
3196 * Bugs fixed
3197  736683 Thread safety issues with g_main_context_find_source_by_id
3198  736975 [patch] please document that GVariant serialization needs an
3199         out-of-band length field
3200
3201 * Translation updates
3202  Danish
3203  Hindi
3204  Marathi
3205  Punjabi
3206  Serbian
3207  Simplified Chinese
3208
3209 Overview of changes in GLib 2.41.5
3210 ==================================
3211
3212 * Bug fixes:
3213  735819 single native credential struct used for two purposes
3214  735915 glib-building.html uses --enable-gcov instead of --enable-coverage
3215  736350 GDesktopAppInfo: avoid polling on missing desktop dirs
3216  736351 Don't use issetugid() on Android
3217         Fix the default application logic in GDesktopAppInfo
3218  736458 Only use rand_s() when targetting Visual Studio >= 2005
3219
3220 * Translation updates
3221  Galician
3222  Hungarian
3223  Indonesian
3224  Kannada
3225  Latvian
3226  Polish
3227  Russian
3228  Slovenian
3229  Tamil
3230
3231
3232 Overview of changes in GLib 2.41.4
3233 ==================================
3234
3235 * GApplication now has binding-friendly API to handle
3236   commandline options: g_application_add_main_option
3237
3238 * G_GNUC_BEGIN_IGNORE_DEPRECATIONS works with clang
3239
3240 * Bugs fixed:
3241  583330 poll list of mounted file systems (no mtab support)
3242  727455 Command line option parsing from bindings
3243  734126 add G_GNUC_BEGIN_IGNORE_DEPRECATIONS macro for clang
3244  735179 gsocketclient: Handle cancellation between CONNECTING...
3245  735297 Docs claim that GThread struct is deprecated 
3246
3247 * Translation updates:
3248   Assamese
3249   Catalan
3250   Catalan (Valencian)
3251   Czech
3252   French
3253   German
3254   Greek
3255   Hebrew
3256   Korean
3257   Oriya
3258   Traditional Chinese
3259
3260
3261 Overview of changes in GLib 2.41.3
3262 ==================================
3263
3264 * g_clear_pointer and g_clear_object no longer use atomics
3265
3266 * Bugs fixed:
3267  711547 win32: silence some build warnings
3268  725511 Compiled resource files should have the same /-separators everywhere
3269  725513 Some tests fail to build on W32
3270  725514 W32: gfileutils does not preserve errno correctly
3271  725515 test-printf fails on W32
3272  728730 gsocket: Set SO_NOSIGPIPE on sockets on Darwin
3273  729703 Leaks a GError in g_file_move
3274  730932 statically assert that reasonable assumptions about enums are true
3275  732085 gtype: Fast-path for g_type_is_a
3276  732754 GDBusMessage: optimise (de)serialisation of fixed arrays
3277  733345 ginetaddress: Add a precondition to g_inet_address_new_from_string()
3278  733576 Patches from static analysis run on 2.40
3279  733715 glib's configure.ac makes accidentally use of nested function
3280  733934 win32: improve the package installation dir lookup
3281  733960 W32: spawning a console process creates a new window when stdout...
3282  733969 Remove atomic aspects of g_clear_pointer/object
3283  733982 Do not crash when checking whether an instance type is of a given...
3284  734035 gedit hangs up when there's no GSettings key in the registry 
3285
3286 * Translation updates:
3287  Basque
3288  Brazilian Portuguese
3289  Lithuanian
3290  Slovenian
3291  Spanish
3292
3293
3294 Overview of changes in GLib 2.41.2
3295 ==================================
3296
3297 * The Unicode support has been updated to version 7.0
3298   of the Unicode standard
3299
3300 * GNotification now supports priorities for notifications
3301
3302 * GCredentials has gained NetBSD support
3303
3304 * GMutex now uses a faster, native implementation on Linux
3305
3306 * Bugs fixed:
3307  699132 Pluggable event loop backends
3308  720708 g_assert_warning(): number of arguments doesn't match for...
3309  722092 Add GtkApplication resources support
3310  724986 Change gio/data-to-c.pl to /usr/bin/env perl.
3311  727974 Fix up failure-to-see-expected-message logging
3312  728256 gcredentials: add NetBSD support
3313  728401 GDateTime: Add guards to g_date_time_new()
3314  729825 Formatting of g_alloca documentation
3315  729914 instead of DEBUG_CODE and IF_DEBUG, provide a common macro...
3316  730293 clang++-3.4: error: 'register' storage class specifier is ...
3317  731339 giochannel: avoid setting uninitialised length
3318  731424 #ifdef spaghetti for load_user_special_dirs() implementations
3319  731623 GNotification: add support for a priority setting
3320  731929 update tables to unicode 7.0.0
3321  731950 gvalue: New g_value_from_instance
3322  731986 GLib: implement GMutex natively on Linux
3323  732184 GObject: warn on use of deprecated properties
3324  732357 Docs: various fixes and improvements
3325  732429 GActionEntry: improve documentation
3326  732465 Fix build on x64 Visual C++ builds
3327  732704 Docs: various fixes and improvements
3328  732739 ginetsocketaddress: Explicitly initialise flags for getaddr...
3329  732754 GDBusMessage: optimise (de)serialisation of fixed arrays
3330  732984 g_object_ref(NULL) in g_dbus_object_manager_client_finalize
3331  733084 Typos in g_bytes_hash() and g_time_zone_find_interval() docs
3332  733146 spawn helper does not use correctly the parameters 
3333
3334 * Translation updates:
3335  Lithuanian
3336
3337
3338 Overview of changes in GLib 2.41.1
3339 ==================================
3340
3341 * Bug fixes:
3342  697229 Custom Interface implementations will be broken with glib 2.37/38
3343  698614 GObject: prevent installing properties after init
3344  729269 gvariant: Fix confusion between type and format strings in the docs
3345  730198 broken valgrind.h leads to crashes in g_type_free_instance on mingw64
3346  730807 GMutex performance regression
3347  730963 gconvert: mention that the g_convert len should be in bytes
3348  730984 Faster instance type check for fundamentals
3349  731050 <structname> tags appear in documentation
3350  731200 unconditional 'notify' during g_object_set() is problematic
3351  731335 gtype: guard uses of new fundamental type check
3352  731341 gparam: change value of G_PARAM_EXPLICIT_NOTIFY
3353  731366 run-assert-msg-test.sh gdb leaves assert-msg-test zombie
3354  731425 giomodule protects function-call with different token than function...
3355  731513 clang: build failure: implicit declaration of function '__atomic_load_4'
3356  731584 gbookmarkfile: Cleaner error handling code to pacify static analysis
3357  731657 Prevent an invalid @CARBON_LIBS@ from appearing in the .pc files
3358  731979 docs: Correct param to interface's default_init()
3359  731996 Return folder as icon for directories
3360  732002 gwakeup: Clarify buffer sizing in g_wakeup_signal()
3361  732005 Remove unused assignments
3362  732019 gtestdbus: Don’t close stdout for dbus-daemon
3363  732068 gsignal: Add an example to the g_signal_connect_swapped() documentation
3364  732081 gsocket: Document that g_socket_create_source() holds a socket ref
3365  732107 gsocketlistener: Reconsider closing sockets on listener finalisation
3366
3367
3368 Overview of changes in GLib 2.41.0
3369 ===================================
3370
3371 * Many bugfixes found by static analysis, including potential fd leaks
3372   and NULL pointer dereferences.
3373
3374 * Increased use of (nullable) attribute on out values and return types
3375   now that it is supported (mostly from porting Vala metadata).
3376
3377 * use XDG_CURRENT_DESKTOP for OnlyShowIn/NotShowIn handling of desktop
3378   files, deprecating g_desktop_app_info_set_desktop_env()
3379
3380 * add support for g_desktop_app_info_get_implementations() to find
3381   desktop files that have an Implements= line for a given interface
3382
3383 * GHmac has gained SHA-512 support
3384
3385 * support the new mimeapps specification (most notably, moving the
3386   assoications/defaults configuration to ~/.config/mimeapps.list).
3387
3388 * libgobject is now linked -Wl,-z,nodelete when possible to avoid errors
3389   when gobject is used from a module for a program that does not itself
3390   use gobject and that module is unloaded/reloaded
3391
3392 * ... and many other bug fixes.
3393
3394  623552 glib warns if backtrace.py is not present
3395  667468 glib-2.30.2: ipv6 tests fail when no ipv6 support is available
3396  668152 -framework Carbon linker flag not passed to pkg-config .pc files
3397  707298 libgobject should be linked with -Wl,-z,nodelete
3398  712391 Add g_desktop_app_info_get_implementors()
3399  722723 Infinite recursion when calling g_io_stream_close_async() from libsoup
3400  724741 hmac: Fix support for SHA-512 in GHmac
3401  726040 networkaddress: fix parsing of uri with @ after authority
3402  726318 gio: Document that GSocket is not thread safe
3403  726611 socketclient: Leak on cancellation
3404  726872 gio: Add names to idles and timeouts
3405  727119 wrong IN6_IS_ADDR_MC_LINKLOCAL usage break android build
3406  727123 GNotification: Some small documentation fixes
3407  727320 docs: Remove escaping '\' from literals
3408  727551 Check use_count of GApplication in g_application_release()
3409  727559 g_file_copy: Don't set GError when we intend to ignore errors
3410  727692 gio/gtlscertificate.c -- broken PEM-file processing (affects local CA root stores, for starters)
3411  727890 soup_content_sniffer_real_sniff segfault
3412  727900 gio: Add newer dbus UnknownXxxx and PropertyReadOnly errors
3413  727928 gapplication-tool fixes
3414  727939 INTLLIBS are always appended in configure checks
3415  727964 g_io_extension_point_get_extension_by_name: Warn, but don't crash, for NULL inputs
3416  728040 Implement new mimeapps spec
3417  728066 Deal with startup notify id being NULL
3418  728280 platform_get_argv0: fix sysctl(3) use on OpenBSD
3419  728285 docs: Use markdown links in .h files, too
3420  728350 gaction: Minor clarifications in the GAction documentation
3421  728380 docs: Remove <!-- --> comment before plural s
3422  728565 gfile: More explicitly document the context for GFileProgressCallback
3423  728983 Docs: various fixes and improvements
3424  729167 gobject: Document that classes/objects/interfaces are zero-filled
3425  729563 GOption: A short option's value is included in G_OPTION_REMAINING
3426  729813 AppInfo: use XDG_CURRENT_DESKTOP for OnlyShowIn
3427  729875 gio: cleanup gdbusmessage.c file
3428  730045 Avoid overeager warning about deprecated properties
3429  730189 gtestutils: Fix a very unlikely FD leak in test fork handling
3430  730190 gsocket: Add missing preconditions to g_socket_send_message()
3431  730277 gthread: Fix use of a local variable after it went out of scope
3432  730278 gsubprocess: Add a missing va_end() call
3433  730295 gdbus-tool: Remove dead variables
3434  730493 Port annotations from Vala metadata
3435
3436 Translations updated:
3437  Basque
3438  Brazilian Portuguese
3439  Catalan
3440  Czech
3441  Danish
3442  Greek
3443  Hebrew
3444  Hungarian
3445  Punjabi
3446  Serbian
3447  Slovenian
3448  Spanish
3449  Ukrainian
3450
3451 Overview of changes from GLib 2.39.91 to GLib 2.39.92
3452 =====================================================
3453
3454 This is a release candidate for 2.40.0.
3455
3456 There are no major changes in this release, but a few serious bugs have
3457 been fixed.
3458
3459 * Bugs fixed:
3460  710367 Crash in g_settings_backend_dispatch_signal()
3461  723899 G_DEFINE_TYPE() causes compiler warnings with clang due to foo_get_instance_private
3462  724859 Let the test_wait_until() test also run on non-*nix
3463  724916 gio unmount code makes XFCE's Thunar crash
3464  725651 GSubprocessLauncher: Does not copy the calling process environment.
3465  725656 Unskip GVariantDict
3466  725891 gio tests: add codegen to BUILT_SOURCES
3467  726046 Recent commit created symbolic icons issues
3468
3469 * Translations:
3470  Chinese
3471  French
3472  Korean
3473  Latvian
3474  Norwegian bokmål
3475  Portuguese
3476  Russian
3477  Traditional Chinese
3478
3479 Overview of changes from GLib 2.39.90 to GLib 2.39.91
3480 =====================================================
3481
3482 This release introduces a hard dependency on present and functioning
3483 clock_gettime() and CLOCK_MONOTONIC.  It also introduces a dependency on
3484 pthread_condattr_setclock() unless your system happens to have
3485 pthread_cond_timedwait_relative_np() (as do Mac OS and Android).  This
3486 release is known to be broken with at least GNU/Hurd, pending addition
3487 of working pthread_condattr_setclock(CLOCK_MONOTONIC) there.
3488
3489 New API: g_str_to_ascii()
3490
3491 * Fixed bugs:
3492  670144 unconditional use of CLOCK_MONOTONIC is broken
3493  673607 invalid assumption in g_cond_wait_until() / g_get_monotonic_time() API
3494  710142 Add more impressive transliteration to GLib
3495  722360 make check fails
3496  722604 (partial) Various tests are failing with 2.39.3
3497  723316 g_hash_table_iter_remove() should be explicit whether or not it is safe while iterating the table
3498  724609 Fix build of GIO on Windows
3499  724687 gmain: make monotonic time really monotonic, everywhere
3500  724706 gsource: document priority of child sources
3501  724707 some GSocket source improvements
3502  724839 GMainContext: some source ID cleanups
3503  724858 Dist gtranslit-data.h
3504  724994 Missing icons for bookmarks in file chooser
3505  725023 Can no longer find apps by executable/desktop file name
3506
3507 * Translations:
3508  Lithuanian
3509  Polish
3510  Thai
3511
3512 Overview of changes from GLib 2.39.4 to GLib 2.39.90
3513 ====================================================
3514
3515 * Fixed bugs:
3516  625408 make GVariant dictionaries more useful
3517  660809 document that if you fail a precondition check, documented guarantees do not apply
3518  661576 fix handling of constructors that destroy half-constructed objects
3519  679957 g_inet_address_new_from_string is not able to handle dots and numbers IPv4 addresses
3520  712837 gvariant: Document the need to cast varargs when constructing GVariants
3521  721458 g_simple_async_result_is_valid has a NULL check for the wrong source_tag
3522  721977 improve split handling of command line arguments
3523  722033 win32: fixup lib.exe invocation
3524  723422 Fix g_socket_get_available() with TCP on Windows
3525  723616 gio/tests: fix race when generating code
3526  724001 gsubprocess: Fix a broken link in the documentation
3527  724124 glib/tests/collate.c fails if no en_US locale
3528  724126 intermittent GApplication test failure: /gapplication/local-actions: lines of output permuted
3529  724233 gsocketservice: Note g_socket_listener_close() for closing open sockets
3530  724239 soup_session_queue_message - Connection terminated unexpectedly
3531  724278 gsocketconnection: Document closing connections with g_io_stream_close()
3532  724330 configure.ac: tweak inotify check
3533  724385 gtestutils: make the new assert messages more detailed
3534  724401 gsubprocess: Mutex leak
3535  724417 glib master build broken on OpenBSD
3536  724434 Build failure in gio/gresolver.c
3537
3538 * Updated translations:
3539  Brazilian Portuguese
3540  Galician
3541  Indonesian
3542  Italian
3543  Kannada
3544  Norwegian bokmål
3545  Spanish
3546  Thai
3547
3548 Overview of changes from GLib 2.39.3 to GLib 2.39.4
3549 ===================================================
3550
3551 * Fixed Bugs:
3552  139699 Correction for g_main_context_unref()
3553  583036 g_strchomp and g_strchug are not declared const
3554  683388 improve documentation for application developers
3555  685204 ./configure fails to add the '-g' flag to CFLAGS
3556  688406 GStaticMutex broke ABI on at least ARM EABI during 2.31.x
3557  693299 cannot compile on Solaris: error in gbitlock.c
3558  707111 Clarify type transformability and compatibility
3559  711547 win32: silence some build warnings
3560  719344 Fix the various test programs (or GLib itself) on Windows
3561  722025 cleanup/clarify command line argument encoding on Windows
3562  722323 remove unused include 'gslist.h' in 'gbookmarkfile.c'
3563  722326 gstringchunk: Use g_slist_free_full() where possible
3564  722357 gio: fix small memory leak on local xattr
3565  722436 Adjust doc to Makefile.decl renaming
3566  722503 GSimpleAction: add default activate handler
3567  722526 glib/deprecated/gthread.h error on FreeBSD
3568  722591 [documentation] broken link to GtkAction from GAction.html
3569  722973 Broken example in GApplication reference
3570  723048 'network-access' test can fail to guess interface index
3571  723360 gmain: Note that g_source_destroy() can be called multiple times 
3572
3573 * Updated Translations:
3574  Assamese
3575  Tamil
3576  Traditional Chinese
3577
3578
3579 Overview of changes from GLib 2.39.2 to GLib 2.39.3
3580 ===================================================
3581
3582 No major changes this release -- mostly lots of small fixes and
3583 improvements in test coverage.
3584
3585  * fix a crasher in code from gdbus-codegen
3586
3587  * improvements to gobject gdb helper script
3588
3589  * portability:
3590
3591    - fix a deadlock issue with kqueue on FreeBSD
3592
3593    - work around a quirk in the sunstudio compiler
3594
3595    - rename a variable to avoid clashing with a macro definition of
3596      'environ' on some platforms (like mingw)
3597
3598    - use POSIX-specified <poll.h> over <sys/poll.h>
3599
3600    - many improvements to Visual Studio projects and and some build
3601      fixes for Windows
3602
3603  * tests
3604    - a very large number of improvements in test coverage
3605
3606    - don't report skipped tests as failures
3607
3608    - return 77 if we skip all tests in an executable
3609
3610    - improve gtest documentation and fix some minor issues
3611
3612    - fix g_test_trap_reached_timeout() return value
3613
3614    - remove some dead code uncovered during test coverage expansion
3615
3616    - Use tap mode for installed tests too, when using tap
3617
3618  * fix races in unix signal handling
3619
3620  * make our GVariant-based commandline tools (glib-compile-schemas,
3621    gdbus, gapplication) print out GVariant parse errors in context
3622
3623  * GApplication now has a --gapplication-service command line switch to
3624    turn any GApplication into a service
3625
3626  * improve compatibility of GApplication and GOptionContext
3627
3628  * fix gsettings.m4 wrt. builddir != srcdir with non-recursive make
3629
3630  * use a directory monitor in GKeyfileSettingsBackend
3631
3632  * improve robustness of some GIcon classes
3633
3634 Bugs fixed
3635  141251  poll(2) is in <poll.h>, not <sys/poll.h> per SUS standard
3636  613732  [PATCH] gobject.py: Don't install frame filters when GDB does not support them
3637  708212  g_variant_parser_error_get_quark() has unexpected name.
3638  710965  GApplication: add --gapplication-service switch
3639  711090  periodic failure of spawn-multithreaded async testcase
3640  712171  gsettings.m4: @GSETTINGS_RULES@: Support srcdir != builddir with nonrecursive make
3641  712630  Revert "gsettings m4: check for .xml in src/builddir"
3642  715028  GVariant: add way to print context of parse errors
3643  719344  Fix the various test programs (or GLib itself) on Windows
3644  720263  gtestutils: skipping a test should count as success, not failure
3645  720539  gdbus-codegen: Fix crasher in goa-using apps
3646  720635  Make gdb pretty-printers compatible with Python3
3647  720891  g_settings_get_child does not inherit the backend
3648  721034  glib 2.38.2 cannot be compiled with SunStudio Compiler under Solaris
3649  721059  g_subprocess_launcher_set_environ vs "environ"
3650  721074  kqueue: deadlock
3651  721087  Missing -lselinux in pkg-config --libs --static gio-2.0
3652  721324  Error message is printed to stdout
3653  721624  Regression in GTest framework reorders existing test cases
3654  721625  backwards NEWS entry about g_source_remove change
3655  721796  insufficient escaping in g_dbus_annotation_info_generate_xml()
3656  721947  Improve GApplication ⇔ GOptionContext compatibility 
3657
3658 Translations updated:
3659  Brazilian Portuguese
3660  Galician
3661  Greek
3662  Hebrew
3663
3664 Overview of changes from GLib 2.39.1 to GLib 2.39.2
3665 ===================================================
3666
3667 * Portability
3668
3669   - Remove alleged support for OS/2
3670
3671   - Remove alleged support for BeOS
3672
3673   - Remove alleged support for last-millennium Unixes
3674
3675   - Require C90 compliance
3676
3677   - Require POSIX.1 (1990) compliance on Unix
3678
3679   - Require GNU make
3680
3681 * Bugs fixed:
3682  113075 support "nonnull" attribute
3683  159528 g_ptr_array_remove_range()
3684  307947 The check for growing stack pointer in configure can fail
3685  607016 docs should mention property notification order
3686  671557 Fun with integers and g_key_file_load_from_data()
3687  676761 don't use g_critical for a runtime error
3688  690525 g_file_replace_contents_async doesn't copy its @conten...
3689  691608 Support compilation with clang 3.2
3690  697585 g_variant_builder_add's doc example is leaking
3691  697828 g_hash_table_add() should return a boolean
3692  702862 gdbus-codegen : look for deps in default install path
3693  703522 Reference leak in GvariantBuilder documentation
3694  705902 g_get_current_dir() should check PWD env var and retur...
3695  708274 Added GObject Introspection annotations to genums.c
3696  710519 Portability schmortability
3697  710741 some mainloop instrumentation
3698  710983 Test failures on powerpc
3699  711047 Enable the build of the various test programs on Windo...
3700  711051 Add basic test for the GNotification gtk backend
3701  711088 gbacktrace: Don't close stderr when running gdb
3702  711103 gmessages: Add g_info macro for G_LOG_LEVEL_INFO
3703  711178 appinfo test problems
3704  711546 utf8: report allocation error
3705  711640 gdesktopappinfo: Rank Keywords matches higher than Gen...
3706  711751 Fix memory leaks in libglib tests
3707  711753 gthread-posix: Don't use gslice allocated GRecMutex
3708  711796 glib-tap.mk: fix to actually use the TAP driver
3709  711800 fix g_test_set_nonfatal_assertions()
3710  711801 giomodule: Allow overriding source directory gio modul...
3711  711805 gdbus-connection: Fix race condition in test
3712  711806 gtestdbus: Don't destroy GSource twice
3713  711807 gtestdbus: Properly close server connections
3714  711871 Broken and misleading configure check for growing stack
3715  712136 'O_CLOEXEC' undeclared (first use in this function)
3716  712148 Add system bus support to GTestDBus
3717  712171 gsettings.m4: @GSETTINGS_RULES@: Support srcdir != bui...
3718  712314 AIX port: splice(); major()/minor(); libtool library order
3719  712315 GSettings: More docs for deprecated _list_schemas()
3720  712393 gobject: Box GMappedFile
3721  712547 GSocketClient "event" not useful for determining resol...
3722  715164 Clang static analysis fixes
3723  719395 GPtrArray add g_ptr_array_insert
3724  719402 Crashes when startup
3725  719472 leak in generated proxy-side property-setter
3726  719687 fix or remove g_trap_object_ref
3727  719809 Signal connection ids are always > 0 if successful
3728  719837 gdbus-connection: Work around race in connection tests
3729  719884 Fix documentation typos in GTask and GCancellable examples
3730  719979 g_settings_get: check validity of format string
3731  720080 Truncating a GMemoryOutputStream to a larger size cause...
3732  720210 gdataset: Remove unused define
3733  720236 Allow clean simple use of g_test_trap_subprocess() 
3734
3735 * Translations updates:
3736  Italian
3737  Lithuanian
3738  Simplified Chinese
3739  Spanish
3740
3741
3742 Overview of changes from GLib 2.39.0 to GLib 2.39.1
3743 ====================================================
3744
3745  * GSettings fixes/improvements
3746
3747    - GSettingsSchema API is now more powerful and consistent
3748
3749    - new GSettingsSchemaKey API allows accessing metadata for keys:
3750      type, default value, range and the long-awaited support for summary
3751      and description
3752
3753    - GSettingsSchemaSource gains support for listing schemas within a
3754      source.  Deprecate the global API that did this for the default
3755      source.
3756
3757    - 'gsettings list-schemas' now works properly with --schemadir
3758
3759    - deprecate a bunch of now-redundant functionality on GSettings
3760
3761    - add API to GSettings for getting the default value of a key (as set
3762      by the sysadmin)
3763
3764    - add API to GSettings for determining if the user has assigned a
3765      particular value to a key (ie: we are not just reading the default)
3766
3767    - ignore qualified tags and attributes appearing in schema files
3768
3769  * Applications/Actions
3770
3771    - make GSimpleAction a bit more strict with respect to state changes
3772      that would violate the interface (ie: by changing the state type
3773      after construction)
3774
3775    - throw an error when attempting to 'Describe' a non-existent action
3776      via D-Bus instead of returning a bogus description
3777
3778    - throw an error when attempting to invoke unsupported methods on an
3779      Application (eg: 'Open' on an app that doesn't HANDLES_OPEN)
3780      instead of emitting a g_critical() in context of the app (which is
3781      not itself at fault for the errant call)
3782
3783  * Appinfo
3784
3785    - substantially rework GDesktopAppInfo to reduce the amount of disk
3786      accesses that are performed in common situations
3787
3788    - add a new class: GAppInfoMonitor for discovering when applications
3789      are installed/removed
3790
3791    - add a new g_desktop_app_info_search() API for searching for
3792      installed applications by name, keywords, etc.
3793
3794  * GMarkup: add new G_MARKUP_IGNORE_QUALIFIED flag for skipping over
3795    "qualified" tags and attributes (those with a colon in the name, such
3796    as 'my:tag')
3797
3798  * GDBus
3799
3800    - ignore qualified tags, as above
3801
3802    - GTestDBus: unset all D-Bus addresses (such as STARTER) to ensure
3803      that test programs don't pick them up
3804
3805    - add new session_bus_run() convenience in the tests and use it
3806
3807  * GRand: use real random data as a seed on win32 and use the
3808    timestamp/pid/uid fallback only on UNIX machines where we can't open
3809    '/dev/urandom'.  This may cause issues with older mingw32 releases
3810    due to a missing prototype for the rand_s() API.
3811
3812  * Many win32 (and particularly MSVC) portability fixes.  Many
3813    additional tests are now runnable when building with MSVC.
3814
3815  * Due to early testing of the (soon to land) GCleanup framework, a very
3816    large number of memory errors have been found and fixed (mostly in
3817    the testcases, but some in glib itself).
3818
3819  * GIO:
3820
3821    - some more seeking cleanups: particularly on GLocalFileInputStream
3822
3823    - don't leave a .trashinfo file around if trashing a file fails
3824
3825    - Add a request_certificate virtual method to GTlsInteraction
3826
3827 Translations updated:
3828  Assamese
3829  Galician
3830  Greek
3831  Spanish
3832  Tamil
3833
3834 Bugs fixed:
3835  635641 schema compiler should ignore unknown attributes
3836  637257 g_tls_client_connection_gnutls_retrieve_function needs to be able to block
3837  637956 GKeyfileSettingsBackend should ignore file deletions
3838  645453 keys from base schema missing from extended schema
3839  665634 g_dbus_node_info_new_for_xml() errors on unknown attributes in XML files
3840  668232 Unable to get description and summary for a key
3841  668233 Unable to determine if a key is set to the default / what the default value is
3842  680838 Need g_settings_schema_source_get_schemas()
3843  683017 API for accessing GSettings Schema metadata
3844  687185 org.gtk.Actions.Describe doesn't return an error for non-existing action names
3845  687202 If trashing fails, the ".trashinfo" file is not removed
3846  695558 The --schemadir option has no effect
3847  696424 GSimpleAction.state property is not right
3848  697348 GTestDBus should unset DBUS_STARTER_ADDRESS, DBUS_STARTER_BUS_TYPE
3849  710133 Emit backward compatible code with gdbus-codegen
3850  710691 glib-networking: locking during implicit handshake
3851  710738 GRand has lame fallback for Windows
3852  710859 Typo in gio docs
3853  710885 Two fixes for GApplication
3854  710962 error: 'F_DUPFD_CLOEXEC' undeclared (first use in this function)
3855  710964 Add g_hash_table_get_key_array()
3856  710991 test: g_debug messages shouldn't affect g_assert_expected_messages
3857  711016 g_settings_list_keys () segfaults for empty schemas
3858  711048 glocalfileinputstream.c allows skip past end of file
3859  711049 Fix build of GLib-GIO 2.39.x on Windows/MSVC
3860  711064 Adding child source to blocked source can cause a segfault
3861  711070 Copying a symlink over another one segfaults
3862  711099 gapplication test failure
3863  711520 GDesktopAppInfo: allow more than one level of legacy folder prefixes
3864  711556 Add GAppInfoMonitor
3865  711557 Add g_desktop_app_info_search()
3866  711600 trivial portability fix
3867  711632 The desktop-app-info test fails during make check
3868  711754 gmain: Fix use of uninitialized memory in sigaction structure
3869  711755 private: Use threading primitives correctly in private test
3870  711756 gthreadpool: Don't pass bad data to GThreadPool sorter
3871  711768 Fix memory leaks in libgmodule tests
3872  711775 utils: Don't free memory owned by glib in test
3873  711782 boxed: Fix double free in boxed unit tests
3874  711803 gsubprocess: Fix a number of leaks and a segfault
3875  711808 gtestdbus: Fix leak of GMainLoop 
3876
3877 Overview of changes from GLib 2.38.0 to GLib 2.39.0
3878 ====================================================
3879
3880  * prep for the 2.40 series (version macros, docs index, etc.)
3881
3882  * GNotification
3883
3884    - new API for sending persistent notifications via the desktop shell
3885
3886    - notifications persist when the application has quit and clicking on
3887      them can restart the application with an action (via
3888      DBusActivatable)
3889
3890  * GSubprocess
3891
3892    - new API for launching subprocesses
3893
3894    - nice GIO integration like async functions, cancellability, etc.
3895
3896    - a convenient communicate() API inspired by the same API in Python
3897
3898    - related: the gspawn API now has a CLOEXEC flag for the created
3899      pipes for stdin/stdout/stderr
3900
3901  * New gapplication(1) commandline tool
3902
3903    - intended to be used with DBusActivatable apps
3904
3905    - can be used for launching apps, opening files, invoking application
3906      actions and listing apps and actions
3907
3908    - bash tab completion is supported
3909
3910  * GDesktopAppInfo changes:
3911
3912    - g_file_get_path() can implicitly cause a FUSE mount so don't call
3913      it until we know we need it (for an app that doesn't support URIs)
3914
3915    - don't crash when trying to load from a keyfile with
3916      DBusActivatable=true
3917
3918    - remove some dead code, refactor the search path handling a bit and
3919      do a large-scale whitespace cleanup (prep work for the pending
3920      desktop file index)
3921
3922  * File monitors
3923
3924    - fix broken handling of mount point monitoring
3925
3926    - remove some strange use of GObject::constructor() from the base
3927      class and inotify backend
3928
3929    - fix GFileMonitor to work in the non-default main context even when
3930      the main context is not running (or is blocked)
3931
3932    - add internal private API for easily creating a file monitor in the
3933      GLib worker thread
3934
3935  * GSettings
3936
3937    - g_settings_list_children: only list viable schemas.  This fixes a
3938      longstanding issue where 'gsettings list-recursively' will crash
3939      when there are invalid schemas installed
3940
3941    - don't accept invalid paths on g_settings_new_with_path, etc.
3942
3943  * GIO
3944
3945    - GFile now has a thumbnail::is-valid attribute to check if the
3946      thumbnail in thumbnail::path needs to be regenerated
3947
3948    - GDBusProxy now has a flag to control autostarting of services at
3949      construction time
3950
3951    - for GSeekable, properly introduce the concept of "resizable" vs.
3952      "fixed-sized" streams in the docs, explaining the expected
3953      semantics of the interface in each case
3954
3955    - fix some cases in GMemoryOutputStream that were violating the above
3956      expectations (which may cause a slight API incompatibility)
3957
3958    - clean up GCredentials code and add support for Hurd and Solaris
3959
3960    - improve splicing by using different codepaths for the case where we
3961      have real _read_async() and _write_async() implementations on the
3962      stream vs. the case where they are internally emulated (via
3963      dispatching the sync variant of the call in a thread)
3964
3965  * GKeyFile
3966
3967    - fix a leak in g_key_file_get_(u)int64 when we fail to parse the
3968      value as an integer
3969
3970    - add long-requested API g_key_file_save_to_file()
3971
3972  * Portability improvements
3973
3974    - avoid using O_DIRECTORY on platforms that don't have it
3975
3976    - be careful about systems that define SOCK_CLOEXEC but don't
3977      actually support it (like Hurd)
3978
3979    - only use SA_RESTART if it exists
3980
3981  * Other small API changes/additions
3982
3983    - a pair of functions to support matching strings for the type of
3984      search functionality that you'd expect to have with things like
3985      GtkSearchBar.  This will also be used by the desktop file index.
3986
3987    - g_str_is_ascii() with obvious purpose
3988
3989    - g_test_expect_message() no longer appears to allow you to catch
3990      G_LOG_ERROR messages
3991
3992  * GMainContext/GSource
3993
3994    - fix handling of overflowing the 'next source id' counter
3995
3996    - g_source_remove() will now throw a critical in the case that you
3997      try to remove a non-existent source.  We expect that there is some
3998      code in the wild that will fall afoul of this new critical but
3999      considering that we now reuse source IDs, this code is already
4000      broken and should probably be fixed.
4001
4002    - simplify handling of the 'current dispatching source' to not
4003      require use of a linked list
4004
4005  * GObject
4006
4007    - the long-broken (and leaky) pattern of destroying a just-allocated
4008      object from inside of a custom GObject::constructor is now
4009      officially completely illegal and will abort the program
4010
4011  * Unicode: update to 6.3.0
4012
4013  * Bug fixes
4014
4015    - g_file_copy() now falls back to pathname queryinfo.  This should
4016      clear up the bugs with copying from some GVfs backends (afp,
4017      gphoto, archive, at least).
4018
4019    - fix an out-of-bounds read in the xdgmime code
4020
4021    - fix a typo in the /org/freedesktop/DBus path on the object manager
4022      client
4023
4024    - skip emitting path_namespace='/' in match rules in order to
4025      workaround a bug in the D-Bus daemon and fix our own implementation
4026      (which shared exactly the same bug)
4027
4028    - fix crashes on precondition violations for GParamSpec constructors
4029
4030    - many other small fixups (see bug list)
4031
4032   * Many documentation improvements
4033
4034 Bugs fixed:
4035  309224 g_key_file_save_to_file missing
4036  583321 QNX: no SA_RESTART
4037  661576 fix handling of constructors that destroy half-constructed objects
4038  672102 GSubprocess class
4039  684842 Seeks on GMemoryOutputStream don't have opaque semantics
4040  688492 Add a notification API
4041  691581 g_output_stream_real_splice_async doesn't use overriden read/write_async functions
4042  702516 gfileutils: Make -Werror=format-nonliteral happy
4043  704218 New gapplication(1) tool
4044  704593 g_setenv: on some systems (BSD, OSX…), setting a variable to NULL crashes the system
4045  704882 GLocalDirectoryMonitorClass mount_notify field is useless
4046  704887 file monitoring improvements
4047  705029 Support for Solaris credentials
4048  705688 g_settings_list_children: only list viable schemas
4049  706254 Afp backend cannot copy files
4050  707887 Attempting to create GObject Property with underscore prefix segfaults
4051  708042 gapplication: don't rely on cmdline being finalized immediately
4052  708265 add support for GNU/Hurd in GLib D-Bus Library
4053  708266 fix error code checks when SOCK_CLOEXEC is defined but not supported
4054  708529 xdgmime: valgrind warns about invalid reads
4055  708677 incorrect object path 'deskop' used in gio/gdbusobjectmanagerclient.c
4056  708714 Typo in docs of GLIB_VERSION_2_40 macro.
4057  708753 gdesktopappinfo: Call g_file_get_path() on demand
4058  708793 glib build fails with clang < 3.1: error: expected ';' after top level declarator
4059  708828 GDBusProxy: add the ability to call methods on non autostarted proxies
4060  708860 glib-2.38.0 doesn't build on Solaris 10
4061  708972 gnetworking.h in tarball screws up out-of-source builds
4062  709113 [PATCH] Main loop dispatch path has needless linked list
4063  709227 Update to unicode 6.3.0
4064  709301 goutputstream: Add clear warning about short writes to _write_bytes() and async version
4065  709326 GDesktopAppInfo crashes creating a DBusActivatable app without a filename
4066  709440 Fix overloading of "source" and "target" terminology in GBinding
4067  709615 Cannot use g_test_expect_message with g_error
4068  709753 Add helpers for string matches when using GtkSearchBar-like widget
4069  709898 Expose thumbnail validity in GFile attributes
4070  709966 Remove outdated documentation
4071  709994 Minor fix for HACKERS doc to direct hackers to proper help file
4072  709995 Obsolete makefile rules
4073  710002 G_MAXUINT may be assigned as duplicate source id
4074  710313 Memory leak in g_key_file_get_(u)int64 with invalid integer values
4075  710345 [Patches] Fix some redundant-decls
4076  710496 g_locale_to/from_utf8() doc updated.
4077  710625 g_file_error_from_errno: Remove unneeded breaks
4078  710666 Frame clock related bug fixes
4079  710724 gmain: Warn when g_source_remove() fails
4080  710726 Work around D-Bus bug with path_namespace='/' match rules
4081
4082 Translations:
4083  Assamese
4084  Brazilian Portuguese
4085  Indonesian
4086  Russian
4087  Tamil
4088  Traditional Chinese
4089
4090 What's new in Glib 2.38
4091 ========================
4092
4093  * Application support
4094
4095   - GIO now provides an implementation of Desktop Actions from the
4096     desktop entry specification
4097
4098   - GApplication now implements the org.freedesktop.Application
4099     interface as per the desktop entry specification, allowing for
4100     standards-based D-Bus launching of GLib-based applications
4101
4102   - GDesktopAppInfo now supports DBusActivatable as per the desktop
4103     entry specification, allowing GLib-based applications to use D-Bus
4104     to launch other applications
4105
4106   - GApplication now has a "busy" flag that can be set on an application
4107     to allow the shell to show that it is busy
4108
4109  * GObject
4110
4111   - the private offset for a given class type is now always constant.
4112     This was done by reorganising the memory layout of instances so that
4113     the private data comes before the "official" pointer for the object
4114     (ie: at a negative offset).  Valgrind macros were added to mitigate
4115     any problems that this may have caused.
4116
4117   - a new G_DEFINE_TYPE_WITH_PRIVATE has been added along with a
4118     generated function *_get_instance_private() that can now serve as an
4119     equally-performing alternative to ->priv pointers in instances
4120     (allowing memory savings)
4121
4122   - new G_PRIVATE_FIELD, G_PRIVATE_FIELD_P and G_PRIVATE_OFFSET macros
4123     provide a convenient method of converting between named variables in
4124     private structures and their (now constant) offsets
4125
4126   - installing properties on a GObjectClass must now be done from
4127     class_init.  It is no longer valid to install them after class_init
4128     has returned.
4129
4130   - it is now possible to manually break a GObject property binding
4131     without destroying one of the objects involved
4132
4133  * Icons
4134
4135   - the requirements for implementing the GIcon interface have changed
4136     in order to make it possible to consume all implementations of GIcon
4137     with a finite number of cases
4138
4139   - a new GBytesIcon type was added for an icon represented by an
4140     in-memory binary blob in a known image format (ideally png).
4141
4142   - new APIs g_icon_serialize() and g_icon_deserialize() replace the old
4143     to/from_string APIs and will always work, irrespective of which
4144     types have been initialised in the calling process, allowing for a
4145     serialised GdkPixbuf to be deserialised in a process that doesn't
4146     have GdkPixbuf
4147
4148   - support for icons has been added to GMenuModel using the new APIs
4149
4150  * Actions and menus
4151
4152   - GPropertyAction provides a convenient way of creating a stateful
4153     property corresponding to a property on a GObject, such as the
4154     "visible-child-name" property of a GtkStack
4155
4156   - new API g_menu_remove_all()
4157
4158   - we now have established rules about what is a "valid" action name
4159     and an API to check them
4160
4161   - a new API for converting detailed action names to and from the
4162     split-out name and parameter value (as GVariant)
4163
4164   - for backwards compatibility, invalid action names can still be used
4165     with most functions, but this is not recommended
4166
4167  * Other GIO
4168
4169   - GDBus now supports services that wish to handle some of all
4170     properties on an interface asynchronously, without requiring the
4171     service to reimplement the entire org.freedesktop.DBus.Properties
4172     interface
4173
4174   - GFile now has a new _measure_disk_usage() (and async) API for
4175     recursively determining the amount of disk space used by a
4176     particular directory (akin to 'du').
4177
4178   - asynchronous version of g_file_trash() and g_file_make_directory()
4179     have been added
4180
4181  * Other new API
4182
4183   - GRegex has a new function to query the maximum lookbehind length to
4184     allow for regexp matching on streams
4185
4186   - GVariant has two new APIs for constructing strings that allow
4187     avoiding copies in some cases: g_variant_new_take_string() and
4188     g_variant_new_printf()
4189
4190  * Testing
4191
4192   - we can now generate TAP output
4193
4194   - new support functions for simplifying the process of dealing with
4195     data files for srcdir != builddir and installed test cases
4196
4197   - g_test_trap_subprocess() provides a portable alternative to
4198     g_test_trap_fork()
4199
4200  * Other
4201
4202   - GLib now builds on Android against the bionic C library
4203
4204 Overview of changes from GLib 2.37.93 to 2.38.0
4205 ================================================
4206
4207 * fix the documentation for GSourceFuncs
4208
4209 * fix compilation on OS X/ppc64
4210
4211 Bugs fixed: 708445, 647145
4212
4213 Translations updated:
4214  Danish
4215  French
4216  Portuguese
4217  Punjabi
4218
4219 Overview of changes from GLib 2.37.92 to 2.37.93
4220 ================================================
4221
4222 * a couple of bugfixes in the new g_file_measure_disk_usage() API
4223
4224 * updated Traditional Chinese translation
4225
4226 Overview of changes from GLib 2.37.7 to 2.37.92
4227 ===============================================
4228
4229 * new API g_file_measure_disk_usage() similar to du(1)
4230
4231 * minor fixes
4232
4233 * Translation updates:
4234  Assamese
4235  Belarusian
4236  Brazilian Portuguese
4237  Catalan
4238  Czech
4239  Galician
4240  German
4241  Hungarian
4242  Indonesian
4243  Italian
4244  Korean
4245  Korean
4246  Latvian
4247  Lithuanian
4248  Polish
4249  Serbian
4250  Slovenian
4251  Spanish
4252
4253 Overview of changes from GLib 2.37.6 to 2.37.7
4254 ==============================================
4255
4256 * GDateTime now supports %:z formatting variations
4257   for timezones. This is a GNU date extension.
4258
4259 * Bugs fixed:
4260  685387 Segfault with GObject.signal_handler_is_connected()...
4261  686786 g_socket_get_available_bytes() returns wrong value ...
4262  705027 GSocket GSource not threadsafe on Windows
4263  706469 Fix G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE documentation
4264  706706 Fix Gir annotations on g_loadable_icon_load_finish
4265  706888 gtype: fix a no-op assertion
4266  706958 configure.ac: fix atomic opts detection
4267  707092 "File Utilities" page for GLib documentation doesn'...
4268  707151 gdatetime: Extend the '%z' timezone format
4269
4270 * Translation updates:
4271  Catalan
4272  Hungarian
4273  Japanese
4274  Polish
4275  Slovak
4276  Tamil
4277
4278
4279 Overview of changes from GLib 2.37.5 to 2.37.6
4280 ==============================================
4281
4282 * Tests using the g_test facilities can now generate TAP output
4283
4284 * Bugs fixed:
4285  680926 generic type fallback logic is broken for -symbolic
4286  684327 setting null icon to icon list
4287  689245 GSocket unable to reuse (address,port) on Mac OS X
4288  692125 Support TAP as GTest output format
4289  693335 build: fix dtrace-related warnings
4290  696633 gdbus-codegen trips over unicode chars when using python 3.x
4291  696970 Compiling 2.36.0 for win64 fails
4292  697185 GSocket – Allow specifying the multicast interface from...
4293  700268 Add support for using the clang analyzer
4294  701318 Add G_SPAWN_DEFAULT to GSpawnFlags
4295  701529 glib/tests/gdatetime: use UTC time in test_GDateTime_diff()
4296  701800 a new approach to reporting critical errors
4297  702674 g_date_time_new_utc crash
4298  704165 GLib.IOChannel read_unichar() fails
4299  705075 Simplify g_get_tmp_dir()
4300  705152 Race in glib/task.test
4301  705398 gtype: Fix typo in g_type_class_add_private() error message
4302  705570 Check ref_count in g_object_notify_by_pspec
4303  705600 Deprecate GSimpleActionGroup functions?
4304
4305 * Updated translations:
4306  Assamese
4307  Brazilian Portuguese
4308  Czech
4309  Dutch
4310  Galician
4311  Gujarati
4312  Hebrew
4313  Italian
4314  Lithuanian
4315  Marathi
4316  Norwegian bokmål
4317  Russian
4318  Slovenian
4319  Spanish
4320  Thai
4321  Traditional Chinese
4322
4323
4324 Overview of changes from GLib 2.37.4 to 2.37.5
4325 ==============================================
4326
4327 * Implement the Desktop Action specification: In the case that the
4328   application is a GApplication and DBusActivatable, actions from the
4329   desktop file are translated into GActions that have been added to
4330   the  application with g_action_map_add_action().
4331
4332 * GPropertyAction is a new type of GAction that represents the value
4333   of a property on an object, and allows to change the value when
4334   activated.
4335
4336 * GNetworkMonitorNetlink can now handle default routes via a device.
4337
4338 * The gsettings tool now reports failure to write a key (e.g. because
4339   the key was locked down)
4340
4341 * Miscellaneous new api:
4342  - g_variant_new_printf
4343  - g_action_print_detailed_name
4344  - g_regex_get_max_lookbehind
4345
4346 * Bugs fixed:
4347  664444 Support additional application actions in .desktop files
4348  684123 glib build only tries -D_GNU_SOURCE if glibc is detected
4349  689794 support incremental matching
4350  699259 add org.freedesktop.Application support to GIO
4351  700460 rewrite tests to not rely on precise timing of timeouts
4352  701511 updates to various GSource types
4353  701609 gnetworkmonitornetlink: handle default route via device
4354  703270 add GPropertyAction
4355  704157 GAction: add function for printing detailed names
4356  704250 Doc: various fixes
4357  704267 regression gsourceclosure: segfault in gedit file chooser
4358  704322 glib-unix: fix handling of multiple signal source for the...
4359  704424 No error when failing to override a locked key
4360  704447 Fix build/use of g_child_watch_closure_callback on Windows
4361  704523 g_thread_create_full() can dereference NULL pointer
4362  704543 Add implementations for G_GNUC_*_IGNORE_DEPRECATIONS for ...
4363  704567 gdbusnameowning: Don't spew an error if we're releasing a...
4364  704585 libc printf can give mixed-case strings for NaN and Inf
4365  704587 FTBFS: statfs_result is undeclared for statvfs()
4366  704699 gmain: Reset signal handlers to default when source is
4367  704704 AI_NUMERICSERV cannot be used with ai_socktype = 0
4368  704873 inotify: don't assume mainloop is running
4369  704999 glib/convert.test crashing due to lack of iconv cache
4370  704931 GMenuModel: add annotations to virtual functions
4371
4372 * Translation updates:
4373  Assamese
4374  Czech
4375  German
4376  Gujarati
4377  Spanish
4378  Tamil
4379
4380
4381 Overview of changes from GLib 2.37.3 to 2.37.4
4382 ==============================================
4383
4384 * Bugs fixed:
4385  701283 g_source_add_child_source() segfault
4386  702147 inconsistency of G_STRFUNC
4387  703191 new private macros interact poorly with versioning macros
4388  703254 Doc: various fixes
4389  703407 g_spawn_async() keeps child_pid_report_pipe open in child process
4390  703437 GDBusConnection: be more careful with async GetAll
4391  703478 Missing G_BEGIN/END_DECLS in gsettingsschema.h
4392
4393 * Translation updates:
4394  Catalan
4395
4396 Overview of changes from GLib 2.37.2 to 2.37.3
4397 ==============================================
4398
4399 * add a new API for instance private data: G_DEFINE_TYPE_WITH_PRIVATE
4400
4401 * fix timestamps in tarball to prevent automake from being required to
4402   build the unmodified source
4403
4404 * add new D-Bus API for async property handling
4405
4406 * add back fsync() on ext4 for g_file_set_contents() after it was
4407   discovered that despite statements in the ext4 documentation
4408   suggesting that this is safe, it is not safe.
4409
4410 * Translations:
4411  Italian
4412  Norwegian bokmål
4413
4414 * Bugs fixed:
4415  698375 - D-Bus async properties
4416  700350 - timestamp issue
4417  701560 - fsync issue (fixed again)
4418  700035 - new API for instance private data
4419
4420 Overview of changes from GLib 2.37.1 to 2.37.2
4421 ==============================================
4422
4423 * The GLib test utilities have grown some file-related APIs
4424   to support tests that can be used installed and uninstalled.
4425
4426 * Installing properties after class initialization is deprecated,
4427   and will trigger a warning.
4428
4429 * GApplication:
4430  - Support org.freedesktop.Application, including D-Bus activation
4431    from desktop files
4432  - Set prgname to appid for services
4433
4434 * Bugs fixed:
4435  549783 gtester lacks framework for tests with data files
4436  692848 Fix property example in gobject tutorial
4437  698018 Add an explicit g_binding_release()
4438  698614 GObject: prevent installing properties after init
4439  699259 add org.freedesktop.Application support to GIO
4440  699959 g_file_copy(): Ensure we create private files by default
4441  700123 Test failure: g_inet_socket_address_get_scope_id
4442  700725 GIcon: NULLify the `type' out param in the sync methods too
4443  701401 gtest: add function for testing for WINE
4444  701456 Error in gnome/glib/gio/tests/file.c
4445  701474 Error building glibmm due to extra comma in glib/gtestutils.h
4446  701560 various improvements for g_file_set_contents()
4447  701680 GFileEnumerator: Add some documentation about ordering
4448  701878 Check wakeup() before iteration(TRUE) doesn't block
4449
4450 * Translations:
4451  Assamese
4452  Czech
4453  Galician
4454  Gujarati
4455  Kannada
4456  Marathi
4457  Odia
4458  Polish
4459  Slovenian
4460  Spanish
4461  Telugu
4462
4463
4464 Overview of changes from GLib 2.37.0 to 2.37.1
4465 ==============================================
4466
4467  * add support for installed tests:
4468    https://live.gnome.org/GnomeGoals/InstalledTests
4469
4470  * add a new g_test_trap_subprocess() that works on Windows as a
4471    replacement for the (now deprecated) g_test_trap_fork()
4472
4473  * support for explicitly cancelling a gobject property binding
4474
4475  * performance improvements for signal argument handling
4476
4477  * stop using `quotes' in very many log messages generated by GLib, for
4478    favour of 'this style'.  This may cause testcases in other packages
4479    to fail if they were matching on the previous text.
4480
4481  * improve manpages: add missing arguments and flags
4482
4483 Translations: 
4484  Aragonese
4485  Assamese
4486  Gujarati
4487  Hindi
4488  Kannada
4489  Norwegian bokmål
4490  Odia
4491  Slovenian
4492  Spanish
4493  Tamil
4494  Telugu
4495
4496 Bugs fixed:
4497  679683 replace g_test_trap_fork()
4498  694380 Improve signal argument collection performance
4499  695233 Strings require plural forms
4500  697849 spelling fixes in cross.xml and running.xml
4501  698877 GProxyAddressEnumerator calls g_network_address_parse_uri without port
4502  698981 [PATCH] test /gdbus/connection/large_message could hang forever
4503  699079 Prototype support for installed tests
4504  699485 [PATCH] tests/mappedfile: Also handle ENOMEM
4505  699493 SOCKS5 proxy code crashes if it cannot authenticate
4506  699500 gbitlock: fix this to not unconditionally use futex emulation
4507  699779 [PATCH] G_GNUC_FORMAT: documentation error
4508  700263 m4macros/glib-gettext.m4: Don't use AC_HEADER_STDC
4509  700714 [PATCH] gtestutils: Ensure test subprocesses don't dump core
4510  700746 Use 'dumb quotes' rather than `really dumb quotes'
4511
4512 Overview of changes fron GLib 2.36.0 to 2.37.0
4513 ==============================================
4514
4515 * The syntax for detailed action names has been documented,
4516   and a parser API for them is now provided
4517
4518 * GApplication has gained a busy state. This feature is intended for
4519   clients that want to signal a desktop shell their busy state, for
4520   instance because a long-running operation is pending.
4521
4522 * GLib can now be built with the bionic C library
4523
4524 * GIcon can now be serialized to a GVariant
4525
4526 * Bugs fixed:
4527  548353 Finish implementing GFile interface (mostly asynchron...
4528  645881 Full port of glib-2.28.1 onto Android-ARM
4529  665445 Glib mistakes nl_langinfo() from plibc for the real t...
4530  672018 Need API to set global application state (busy, count...
4531  687659 drop support for adding interfaces after class_init
4532  688820 GIcon is a bad interface
4533  688954 extend 'detailed action' syntax, provide parser
4534  689223 Fix compilation on Android with the bionic C library
4535  695156 Add support for arg0namespace matching in signal_subs...
4536  696108 gdbus-codegen: avoid warnings in generated code
4537  696629 fix sed(1) usage
4538  696652 GTask won't free its error member variable on finalize
4539  696857 GThreadedResolver: set an error if no records could b...
4540  696973 Compiling 2.36.0 for win64 fails in gdbusmessage.c
4541  697131 No --version
4542  697160 [PATCH] gmacros: Mark G_UNAVAILABLE() functions as de...
4543  697229 Custom Interface implementations will be broken with ...
4544  697250 Documentation glitch of G_DEFINE_TYPE_EXTENDED causes...
4545  697365 Fix usage of hasmntopt in gunixmounts.c
4546  697367 Remove warning on gio/gunixmounts.c
4547  697386 Except const argument with atomic is not lock free
4548  697595 g_main_context_unref unlocks a mutex twice
4549  697601 reduce GMenuModel D-Bus traffic
4550  697626 Allow posix threads to be used on w32
4551  697652 Help options generated even when help disabled
4552  697771 fix a typo of "fo" to "of" in building.xml
4553  697887 GVariant: fix transfer annotation
4554  697942 abicheck.sh fails on mips
4555  698056 rewrite g_object_new()
4556  698081 Pidgin hangs in g_spawn_command_line_sync
4557  698455 GVariant: add new g_variant_new_take_string() API
4558  698457 g_variant_get_data_as_bytes() always returns toplevel...
4559  698478 gactionmap: don't require GActionGroup
4560  698595 the valgrind/priv-before-instance bug
4561  698655 desktop-app-info test relies on true being in /usr/bin/
4562  698686 GUnixSocketAddress: fix construct parameter issue
4563  698716 Use of g_mem_set_vtable() breaks after gobject automa...
4564  698999 bytesicon: fix a memory leak
4565  699001 bytesicon: don't use g_object_unref() on GBytes
4566  699361 gio: fix small leak
4567
4568 * Translation updates:
4569  Assamese
4570  Gujarati
4571  Hungarian
4572  Italian
4573  Kannada
4574  Norwegian bokmål
4575  Polish
4576  Spanish
4577  Tamil
4578
4579
4580 Overview of changes fron GLib 2.35.9 to 2.36.0
4581 ==============================================
4582
4583 This release contains only small bugfixes and translations updates.
4584
4585  - g_file_copy(): fix bug where attributes were not applied properly to
4586    the destination file
4587
4588  - fix some 'available since' annotations
4589
4590  - fix gdbus-codegen to produce more pedantically-correct code
4591
4592 * Bugs fixed:
4593  696108 gdbus-codegen: avoid warnings in generated code
4594  696014 g_file_copy(): Ensure G_FILE_COPY_OVERWRITE preserves permissions
4595
4596 * Translations updated:
4597  Basque
4598  Czech
4599  Gujarati
4600  Hindi
4601  Hungarian
4602  Japanese
4603  Malayalam
4604  Marathi
4605  Odia
4606  Punjabi
4607  Russian
4608  Tadjik
4609  Tamil
4610  Telugu
4611
4612 Overview of changes from GLib 2.35.8 to 2.35.9
4613 ==============================================
4614
4615 This release drops the old codepage ABI from gutils.c. This is a
4616 source-compatible change and only breaks ABI with respect to truly
4617 ancient binaries (and those binaries are already broken for other
4618 reasons).  This change only affects Windows.
4619
4620 * Bugs fixed:
4621  682896 glib doesn't build on mingw32
4622  693204 split up g_get_{hostname,username,realname,home_dir} etc.
4623  694181 Handle GNetworkAddress better in g_network_monitor_base_...
4624  694253 occasional /gdbus/unref-pending test failure
4625  694350 Add type names to gsignal warnings
4626  694757 Use separate GLIB_WARN_CFLAGS that can be overridden ext...
4627  568405 Which is the correct replacement for g_strncasecmp, if...
4628  630284 g_hash_table_get_keys docs
4629  659428 docs: Small clean-up of howto subsection headers
4630  675333 Cannot forget association in Open With dialog: program...
4631  694669 consider unicode corrigendum #9
4632  694843 g_base64_decode_step () produces invalid data
4633  695147 Don't use PATH_MAX as it's not guaranteed to be defined
4634  695191 Commit f641699 broke /appinfo/mime/api test case
4635  695339 Swapped msgid plural forms for translation
4636  695376 GDBusMethodInvocation leak and potential crash
4637  695425 Untranslatable message in gsettings-tool
4638  695887 Improvements to GObject API documentation
4639  695925 GUINT32/64_SWAP_LE_BE macros do not enclose val argume...
4640  696015 PATCH Add doc warning to g_base64_decode()
4641
4642 * Translation updates:
4643  Assamese
4644  Belarusian
4645  Brazilian Portuguese
4646  Catalan
4647  Catalan (Valencian)
4648  Danish
4649  French
4650  Galician
4651  German
4652  Greek
4653  Gujarati
4654  Italian
4655  Korean
4656  Latvian
4657  Lithuanian
4658  Polish
4659  Portuguese
4660  Punjabi
4661  Serbian
4662  Simplified Chinese
4663  Slovak
4664  Slovenian
4665  Spanish
4666  Thai
4667  Traditional Chinese
4668  Uyghur
4669  Vietnamese
4670
4671
4672 Overview of changes from GLib 2.35.7 to 2.35.8
4673 ==============================================
4674
4675 This release contains one major change that may cause problems: type
4676 modules are now never unloaded.  This is implemented by (effectively)
4677 leaking the last reference on dynamic types.  Some testcases that check
4678 for unloading of types have been observed to be broken by this change,
4679 but we know of no actual cases of "real code" breaking.  Please report
4680 any problems.
4681
4682 Other changes:
4683  * A couple of build fixes for Solaris
4684  * Fix signal emission for GDBusObjectManagerClient
4685  * annotations fixes
4686  * new API: g_dbus_address_escape_value()
4687  * GSocketClient: add proxy-resolver property
4688  * GSimpleProxyResolver: new simple GProxyResolver class
4689  * documentation fixes
4690  * gnetworkaddress: preserve IPv6 scope ID in IP literals
4691
4692 Bugs fixed:
4693  691105 Allow GSocketClient to override GProxyResolver for per client proxy settings.
4694  692827 configure test fails for arpa_nameser.h
4695  692829 new Btrfs support causes build failure on Solaris
4696  693285 GDBusObjectManagerClient: won't emit object-added|removed if name-owner arrives later
4697  693502 Cross-compiling documentation: typo (np -> no)
4698  693673 add g_dbus_address_escape_value()
4699  693694 gio: Fix annotations on g_[async_]initable_new() and friends 
4700
4701 Translations:
4702  Dutch
4703  Galician
4704  Polish
4705  Serbian
4706
4707 Overview of changes from GLib 2.35.6 to 2.35.7
4708 ==============================================
4709
4710 This is a quick follow-up release with a few bug fixes.
4711
4712 * Fix the build on systems with strict linkers by adding -pthread back
4713   to the LDFLAGS for a testcase.
4714
4715 * Re-enable native atomic operations on some buggy versions of clang
4716   that ship as part of the MacOS X SDK.
4717
4718 * Make G_IO_FLAG_IS_WRITEABLE an enum again (the #define broke bindings)
4719
4720 * a small docs fix
4721
4722 * Bugs fixed:
4723  657045
4724  636683
4725  682818
4726  693105
4727
4728 * Translations:
4729  Italian
4730
4731 Overview of changes from GLib 2.35.4 to 2.35.6
4732 ==============================================
4733
4734 * GUnixFdSource is a new way to add file descriptors
4735   to the mainloop
4736
4737 * g_source_set_ready_time lets you mark a source to become
4738   ready at a specified monotonic time
4739
4740 * The internal visibility handling of GLib has been reworked
4741
4742 * GFileMonitor will now automatically use fam instead of inotify
4743   if $HOME is on NFS
4744
4745 * The file monitor implementation can now be overridden with
4746   the GIO_USE_FILE_MONITOR environment variable
4747
4748 * Bugs fixed:
4749  570572 2 make check errors on
4750  592211 No monitoring over NFS mounts
4751  625552 wrong behaviour of GVolume GVolumeMonitor related func...
4752  657729 modernise GMainLoop
4753  658020 GSource for a single GPollFD
4754  678223 g_mutex_free
4755  682560 leak fixes
4756  682819 EINTR-harden all the things
4757  684404 When using g_network_address_address_enumerator_next()...
4758  686853 new GSource fd API
4759  688169 G_DISABLE_DEPRECATED doesn't cover deprecated/gthread....
4760  688681 build: Make .symbols file canonical on all platforms
4761  690118 Crash when closing last tab of a window using Ctrl-w
4762  691624 glib/gtester.c: missing include
4763  691812 gioinputstream - give task as callback_data not task_data
4764  691866 fails out of source build directory - gnetwork.h not f...
4765  692029 Add new API checking utility
4766  692034 Install an invalidation notifier for GClosure in g_sou...
4767  692058 Broken makefile for gio tests
4768  692079 build failure in gmarkup.c when using gcc 4.8 and buil...
4769  692201 inotify: fix a memleak
4770  692202 gfile: don't report completion twice on g_file_load_co...
4771  692229 Incorrect string formatters in a translation string
4772  692332 GNetworkMonitorNetlink: make the netlink socket cloexec
4773  692360 possibly non-threadsafe code in g_content_type_guess()?
4774  692404 tester: Use FD_CLOEXEC when creating pipes
4775  692408 nautilus SIGSEGV in g_file_info_get_size()
4776  692544 [PATCH] gfile: Ensure we create internal pipe with FD_C...
4777  692583 atomic get doesn't accept a const argument on architect...
4778  692618 Use g_timeout_add_seconds
4779  692815 Using g_hash_table_insert() when using a hash table as ...
4780  692865 Invalid docbook generated by gdbus-codegen
4781  692928 Document G_MENU_{ATTRIBUTE,LINK}_*
4782
4783 * Translation updates:
4784  Hebrew
4785  Kannada
4786  Lithuanian
4787  Norwegian bokmål
4788  Polish
4789  Serbian
4790  Slovenian
4791  Spanish
4792  Uyghur
4793
4794
4795 Overview of changes from GLib 2.35.3 to 2.35.4
4796 ==============================================
4797
4798 * New features:
4799  - New API: g_get_num_processors
4800  - New API: g_application_command_line_get_stdin
4801  - New GFileMonitor flag: G_FILE_MONITOR_WATCH_HARD_LINKS
4802  - Parse more timezone offset formats
4803  - Better timezone support on Windows
4804  - Make GParamSpec constructors introspectable
4805
4806 * Removed or deprecated features:
4807  - Disallow adding interfaces after class_init
4808
4809 * Bug fixes:
4810  532815 gio + inotify support for hardlinks
4811  614930 add g_get_num_processors (), return the max concurrent...
4812  626497 Btrfs clone/reflink ioctl support in g_local_file_copy
4813  633117 glib fails stests if /etc/localtime is not properly set
4814  661767 merge/improve various bits of run-in-thread functionality
4815  668210 Add g_application_command_line_get_stdin()
4816  675856 Use GDbus via gobject-introspection instead dbus-python
4817  684103 make glib work with python3
4818  684723 run-assert-msg-test.sh fails
4819  686058 OpenBSD: disable ipv6_v4mapped test
4820  686128 GTimeZone should be able to parse POSIX format for...
4821  687223 cleverer GThreadPool management
4822  687659 drop support for adding interfaces after class_init
4823  687920 GCredentials should have an accessor for the process ID
4824  688681 build: Make .symbols file canonical on all platforms
4825  688829 Variable overflow in utils.c test on 32-bit machine
4826  689324 Variable scoping in gunixmounts.c
4827  689810 Include guard optimization
4828  690043 Broken link for gsettings tutorial: gnome-utils in...
4829  690084 gmarkup: Make GMarkupParseContext a boxed type
4830  690388 Check if CMSG_FIRSTHDR() returns NULL when there is...
4831  690538 gschema DTD is invalid
4832  690543 Add test coverage for testing in-tree DBus services...
4833  690670 local_command_line not introspectable/annotated
4834  690902 G_END_DECLS needs to be at the end of gutils.h
4835  690970 Unhelpful deprecation message for g_value_array_get_nth
4836  691001 building docs is broken on master branch
4837  691011 Automake-1.13 errors on obsolete AM_PROG_CC_STDC
4838  691077 gio-querymodules crashes with SIGSEGV
4839  691110 g_cond_wait() docs incomplete
4840  691489 Crash in Oscars 2013 page
4841  691558 Only check for .hidden files if standard::is-hidden...
4842  691608 Support compilation with clang 3.2
4843
4844 * Translation updates:
4845  Assamese
4846  Bulgarian
4847  Estonian
4848  Galician
4849  Greek
4850  Hebrew
4851  Norwegian bokmål
4852  Polish
4853  Slovak
4854  Slovenian
4855  Spanish
4856  Tamil
4857
4858
4859 Overview of changes from GLib 2.35.2 to 2.35.3
4860 ==============================================
4861
4862 * This release contains an incompatible change to the g_get_home_dir()
4863  function. Previously, this function would effectively ignore the HOME
4864  environment variable and always return the value from /etc/password.
4865  As of this version, the HOME variable is used if it is set and the
4866  value from /etc/passwd is only used as a fallback.
4867
4868 * We now install a public "gnetworking.h" header that can be used to
4869  include the relevant OS-dependent networking headers. This does not
4870  really abstract away unix-vs-windows however; error codes, in
4871  particular, are incompatible.
4872
4873 * Bugs fixed in this release:
4874  142568 Allow $HOME to override passwd entry if the user really wants
4875  587806 The file selector should honor .hidden files
4876  602715 [GChecksum] Please add support for SHA512
4877  623187 provide some support for arbitrary setsockopt()s?
4878  629301 .goutputstream files left behind when cancelling I/O
4879  652650 Optimize GDBusMessage serialization
4880  664627 /gapplication/basic test intermittently fails: cmdline re-or...
4881  675516 Win32: Don't start a DBus server when built as static library
4882  679683 replace g_test_trap_fork()
4883  684145 Current Git sources fails to cross-compile for Windows in Li...
4884  686895 file-info: catch thumbnail files in large directory as well
4885  687092 IPv6 <-> IPv4 mismatch when subscribing to multicast (send)
4886  688180 GObject: Minor error in description of floating reference
4887  688319 gthread: add missing AVAILABLE_IN_2_32 annotations
4888  688377 configure: add missing square bracket in AS_IF for memmove
4889  688419 gtask: source_object arguments and return values not annota...
4890  688497 AppInfo: Add sufficient api to port gnome-session from Egg...
4891  688681 build: Make .symbols file canonical on all platforms
4892  688704 Add boxed GType for GThread
4893  688886 Improve the i18n documentation
4894  688931 GMemoryOutputStream: Add new _resizable() constructor usab...
4895  689037 need helper for creating a GFile from a remote commandline...
4896  689377 Fix a compiler warning in GDBus
4897  689538 Source object tag set too late in gsocketlistener
4898  689800 Treat lost+found directory as a hidden file
4899  689847 Add fast repeated typename -> GType resolver
4900  689982 Make GChecksum more fully introspectable
4901  690069 g_unix_open_pipe: Add missing F_SETFD
4902  690083 gfileenumerator: Add a g_file_enumerator_get_child method
4903  690163 Add a pre-configured gio/gnetworking.h for Visual C++ builds
4904  690346 Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE
4905  690348 Fix g_type_add_class_private() name in g_warning
4906
4907 * Translation updates:
4908  Assamese
4909  Galician
4910  Hebrew
4911  Hindi
4912  Kannada
4913  Odia
4914  Polish
4915  Spanish
4916
4917
4918 Overview of changes from GLib 2.35.1 to 2.35.2
4919 ==============================================
4920
4921 Note that the incompatible change to the ->constructed() vfunc that was
4922 made in the last unstable release (2.35.1) has been reverted due to
4923 causing regressions in applications.
4924
4925 A new incompatible change has been introduced in this version: it is no
4926 longer permitted to add interfaces to a class after the first
4927 instantiation (or more strictly: after g_type_class_ref()).  Bug #687659
4928 is tracking this.
4929
4930 Two private symbols (g_menu_{attribute,link}_hash_iter_get_type) which
4931 were accidentally exported have also been properly hidden.  This may
4932 cause some tools to issue warnings about ABI mismatch.
4933
4934 The remaining changes should be relatively harmless: 
4935
4936  * GIO now has kqueue support for GFileMonitor (BSDs, Mac OS)
4937
4938  * New g_variant_new_from_bytes() API
4939
4940  * UNIX signal sources now allow watching SIGUSR1 and SIGUSR2
4941
4942  * Many pedantic cleanups to adhere to a higher level of -W use
4943
4944  * GTask changes to avoid a deadlock
4945
4946  * many cleanups/fixes for Windows
4947
4948  * Boxing for GPollFD, GIOChannel, GBytes, GByteArray
4949
4950  * Fix URL-encoding of trashed files
4951
4952  * Many other docs and annotations fixes
4953
4954 Translations:
4955
4956  Galician
4957  Gujarati
4958  Lithuanian
4959  Serbian
4960  Slovak
4961  Slovenian
4962
4963 Bugs closed:
4964
4965  649302 Add support for GNU/FreeBSD
4966  668842 [GSocket] Add caching for the sender address in g_socket_receive_from()
4967  672924 Add annotations for g_filename_from_uri()
4968  673229 glib: Use Returns:, not @returns
4969  677062 (partial) GVariant: Make g_variant_new_from_bytes() public, add more GBytes API
4970  686185 g_date_time_format Transcoding Fails on OSX      
4971  686191 g_mutex_get_impl() should use g_atomic_pointer_get()
4972  686797 Box GPollFD to make it introspectable
4973  686810 [regression] Infinite wait in g_task_run_in_thread_sync()
4974  686822 possible dlopen()/dlclose() issue with automatic g_type_init()
4975  686839 mkinstalldirs: Move to glib-mkinstalldirs
4976  686895 file-info: catch thumbnail files in large directory as well
4977  686898 g_unix_signal_source_new: Allow SIGUSR1 and SIGUSR2
4978  686920 gdbus: Allow GDBusObjectManagerClient to work on peer connections
4979  686921 Remove some of the repetition from gio/tests/Makefile.am
4980  687075 g_spawn_sync diagnostic incorrectly complains about SIGCHLD
4981  687089 g_dbus_connection_export_menu_model(): fix a crash
4982  687098 Repeated g_timeout_add* use can lead to guint overflow
4983  687385 Add some stricter CFLAGS, fix up the code
4984  687441 ABI break in master: g_menu_attribute_hash_iter_get_type, g_menu_link_hash_iter_get_type removed
4985  687516 typo in string: KB should be kB
4986  687540 In Trash folder, Nautilus misinterprets "\n" in filename as a line break
4987  687541 GSignalQuery param_types field needs array annotation
4988  687600 gfileutils.c performs invalid cast of (varargs) open to non-vararg type
4989  687698 plural forms needed
4990  687700 ending spaces
4991  687742 Add support for internal linkage to glib-compile-resources
4992  687801 tests/buffered-input-stream: Fix size of parameter passed
4993  688109 win32 warning/error fixes
4994  688255 'make check' regressed in 138f4c1 because GMarkup error messages changed
4995  688338 [PATCH] gobject/gtype.c: Fix spelling of »exceed«
4996  688370 GDBusError documentation improvement for client-side
4997  688378 g_socket_join_multicast_group not working
4998  688518 gio-kqueue: use O_EVTONLY on MacOS
4999
5000
5001
5002 Overview of changes from GLib 2.34.0 to 2.35.1
5003 ==============================================
5004
5005 These two changes in particular may be slightly incompatible.  Please
5006 give feedback if they cause trouble:
5007
5008   * Signal handlers connected with g_signal_connect_object() are now
5009     automatically disconnected on target object destruction
5010
5011   * The ->constructed vfunc is now called after all properties are set
5012
5013 The remaining changes should not cause problems.
5014
5015   * g_type_init() is no longer necessary and has been deprecated
5016
5017   * GTask (the new GAsyncResult implementation) has landed 
5018
5019   * GLib version macros updated
5020
5021   * Update to Unicode 6.2
5022
5023   * Thread safety fixes for GFileMonitor in non-default main contexts
5024
5025   * GTimeZone support for old-format zoneinfo database (as on Mac OS)
5026
5027   * g_settings_bind() now works with non-canonical property names
5028
5029   * Fix crashes related to NULL connection passed to
5030     GBusNameVanishedCallback and document this situation
5031
5032 * Bugs fixed:
5033  118536 Make g_signal_connect_object'ed handlers disconnect when the data object is destroyed
5034  661767 merge/improve various bits of run-in-thread functionality
5035  682950 GFileMonitor crashing on high event count when running in different thread
5036  683642 Missing g_content_type_get_symbolic_icon
5037  684882 Gsettings should spaw a warning when binding against a low_underscored_property
5038  684909 codegen: Explicitly close output
5039  684912 Update to Unicode 6.2
5040  685037 g_strcmp0: Returns shall include values less and greater than zero
5041  685069 Leak in glib-compile-resources
5042  685208 missing g_return_if_fail
5043  685608 [Patch] Port gio tests from pygobject to pygi
5044  685697 Documentation typo in g_dbus_interface_skeleton_has_connection()
5045  685733 Call ->constructed() after all properties are set
5046  685787 gtestdbus: correct documentation typos
5047  685995 Crash in g_menu_exporter_name_vanished
5048  686091 Invalid reads in g_bytes_unref_to_data
5049  686119 dtrace, gobject_probes.d, the last three probes - semicolon missing
5050  686161 Deprecate g_type_init()
5051  686231 GBusNameVanishedCallback: document NULL connection
5052  686458 slightly increase poll duration in test_timed_wait 
5053
5054 * Translations updated
5055   Catalan (Valencian)
5056   Czech
5057   Danish
5058   Italian
5059   Lithuanian
5060   Norwegian bokmål
5061   Slovenian
5062
5063 Overview of changes from GLib 2.33.14 to 2.34.0
5064 ===============================================
5065
5066 * Bug fixes:
5067  654239 g_type_init()'s docs have no statement about how to...
5068  674620 Update GSettings migration guide for intltool updates
5069  676034 Fix doc annotation for g_ptr_array_ref()
5070  684278 Fix GIO build on Windows
5071
5072 * Translation updates:
5073  Brazilian Portuguese
5074  British English
5075  Bulgarian
5076  Catalan
5077  Galician
5078  German
5079  Hebrew
5080  Hindi
5081  Hungarian
5082  Kannada
5083  Latvian
5084  Marathi
5085  Spanish
5086  Telugu
5087
5088
5089 Overview of changes from GLib 2.33.12 to 2.33.14
5090 ================================================
5091
5092  * CVE-2012-3524: don't run dbus-launch from setuid binaries
5093
5094  * g_content_type_get_generic_icon_name():
5095      new API for getting the icon name for a mime type
5096
5097  * Introspection fixes:
5098   - GDBusConnection nullability fixes
5099   - give a box type to GTimeZone
5100
5101  * Drop GVFS_INOTIFY_DIAG
5102
5103  * Add a new "Writing GLib Applications" section to the reference
5104    documentation with general info on security, threads, etc.
5105
5106  * gwin32mount.c: Fix syntax error
5107
5108  * gresource tests: srcdir != builddir fixes
5109
5110  * tests/gvariant: Fix test on big endian architectures
5111
5112  * Fix regression in g_shell_parse_argv()
5113
5114 Bugs fixed:
5115  562907 g_shell_parse_argv() mishandles # (hash)
5116  683167 g_time_zone_new not introspectable
5117  683384 /gvariant/checksum-basic failure on big endian machines
5118  683641 Typo in gwin32mount.c
5119  683744 have a way to get the generic icon name for a mime type
5120
5121 Translation updates:
5122  Assamese
5123  Belarusian
5124  British English
5125  Czech
5126  Danish
5127  French
5128  Galician
5129  German
5130  Greek
5131  Hebrew
5132  Indonesian
5133  Indonesian
5134  Korean
5135  Lithuanian
5136  Marathi
5137  Marathi
5138  Polish
5139  Portuguese
5140  Punjabi
5141  Russian
5142  Serbian
5143  Slovenian
5144  Traditional Chinese
5145
5146 Overview of changes from GLib 2.33.10 to 2.33.12
5147 ================================================
5148
5149 * Add a G_DEFINE_QUARK macro
5150
5151 * Add symbolic icon support to drive, volume, and mount, file
5152   and content types
5153
5154 * Add API to allow thread-safe access to the same qdata item
5155
5156 * Bugs fixed:
5157  562907 g_shell_parse_argv() mishandles # (hash)
5158  627240 add G_DEFINE_QUARK
5159  672329 memory leaks in gutils.c and glib tests
5160  673012 Stable byte-level specification for normal form
5161  674805 gdbusproxy async test is broken
5162  679835 gvariant format string parsing (and assertions)...
5163  682075 gdbus: Fix double free and use after free of ob...
5164  682101 Provide a way to get a symbolic icon for a device
5165  682222 test_method_calls_on_proxy: assertion failed (e...
5166  682284 mount-op: use gint64 instead of guint64 for tim...
5167  682386 "make check" fails due to sys/resource.h not be...
5168  682560 leak fixes
5169  682586 gsettings-tool: make list-recursively really re...
5170  682819 EINTR-harden all the things
5171  682833 Handle EINTR for open()
5172  682849 drop the global lock for g_object_weak_ref
5173  682965 gdbus-tool: Check return value of strrchr()
5174  683088 gdbus-codegen: fix error when wrong interface n...
5175         Fix the build with gtk-doc-stub
5176         Don't crash if set_app_info is called before ad...
5177
5178 * Translation updates
5179  Assamese
5180  Galician
5181  Greek
5182  Indonesian
5183  Japanese
5184  Latvian
5185  Lithuanian
5186  Norwegian bokmål
5187  Polish
5188  Portuguese
5189  Punjabi
5190  Russian
5191  Spanish
5192  Traditional Chinese
5193  Vietnamese
5194
5195
5196 Overview of changes from GLib 2.33.8 to 2.33.10
5197 ===============================================
5198
5199 * New GTest API for testcases where log output is expected:
5200   g_test_expect_message()
5201
5202 * GMenuItem now has 'get' accessors and a construct-from-GMenuModel API
5203
5204 * GVariant now has a function to check a format-string for type
5205   compatibility
5206
5207 * win32: We now use overlapped IO to support multiple asynchronous
5208   operations (ie: reading and writing) at the same time.
5209
5210 * GMappedFile: Add g_mapped_file_get_bytes()
5211
5212 * The problems with g_file_make_directory_with_parents() should be
5213   resolved.
5214
5215 * The long-standing issues with placeholder generation of manpages are
5216   now resolved.
5217
5218 * gtlscertificate: Add GBytes based certificate and private-key props
5219
5220 * build: Switch back to using AS_IF for conditionals
5221
5222 * test coverage improvements, documentation improvements, leak fixes
5223
5224 * Bugs fixed
5225  326931 Better docs for G_GNUC_*
5226  550433 g_test_init doesn't recognize --help
5227  600751 GCompletion should better document if and how items memory is managed
5228  628193 Miscellaneous string fixes
5229  637460 man glib-genmarshal is hard to use
5230  674483 broken configure results when cross-compiling with gcc >= 4.5
5231  677065 GMappedFile: Add g_mapped_file_get_bytes()
5232  679288 win32: use overlapped events for streams
5233  679556 it's hard to use gtest when g_warning() is expected
5234  680823 g_file_make_directory_with_parents: Fix error propagation
5235  681319 gtlscertificate: Add certificate-bytes and private-key-bytes props
5236  681336 man pages not built if --enable-gtk-doc not specified
5237  681413 build: Switch back to using AS_IF for conditionals
5238  681501 gmem: array only partially filled with memcpy
5239  681854 Documentation fix for Howto compile a program with glib
5240  682025 Documentation correction
5241  682067 Fix problems with CLEANFILES and automake-1.11.1 
5242
5243 * Translations updated:
5244  Lithuanian
5245  Spanish
5246  Galician
5247  Telugu
5248  Serbian
5249  Assamese
5250  Marathi
5251  Indonesian
5252  Traditional Chinese
5253
5254 Overview of changes from GLib 2.33.6 to 2.33.8
5255 ==============================================
5256
5257 * GIO now has a g_file_delete_async function
5258
5259 * The defaults for GThreadPools max_unused_threads
5260   and max_idle_time values have been changed to
5261   2 and 15*1000, respectively.
5262
5263 * Bugs fixed:
5264  661767 merge/improve various bits of run-in-thread functionality
5265  680074 undefined symbol "get_C_locale"
5266  680121 g_cancellable_source_new: don't use a file descriptor
5267  680148 gthread: check for definition of PR_SET_NAME
5268  680310 Sorting of access points by strengh not working
5269  680704 g_utf8_strup() crash
5270  68076a0 GFile: Add g_file_delete_async()
5271  680787 Add .dir-locals.el to tell Emacs users not to use tabs...
5272  680823 g_file_make_directory_with_parents: Fix error propagation
5273  680994 STATIC_ASSERT in GDBusError docs don't have much utility
5274  681116 gtlscertificate: Add g_tls_certificate_equal() function
5275  681118 gtlsdatabase: Don't complain if no callbacks for async...
5276  669331 try to get gio tests working a little better on win32
5277  674314 Make gtk-doc not a hard dependency of GLib
5278  674800 gclosure: generic marshaller leaks return value
5279  675524 gsocket: FIONREAD undeclared (needs sys/filio.h)
5280  679509 use after free in g_dbus_action_group_describe_all_done()
5281  679996 gobject docs minor cleanup
5282  680459 Extra newline char in local implementation of g_applic...
5283  680505 object_path memory leak in gdbusobjectproxy.c
5284  680831 Deprecate and remove g_slice_[sg]et_config.*
5285  680912 gchecksum: Add g_compute_checksum_for_bytes()
5286  681151 checksum: Use functions instead of macros when buildin...
5287  681158 gtlscertificate: Don't confuse certificate and public ...
5288
5289 * Translation updates:
5290  Galician
5291  German
5292  Gujarati
5293  Hebrew
5294  Norwegian bokmål
5295  Serbian
5296  Slovenian
5297
5298
5299 Overview of changes from GLib 2.33.4 to 2.33.6
5300 ==============================================
5301
5302 * GAsyncInitable: partially revert the init_finish changes,
5303   some applications were found to rely on behaviour that
5304   was broken by these changes
5305
5306 * Bugs fixed:
5307  679617 win32: fix g_get_environ()
5308  679968 Add some annotations to GBytes, GVariantType...
5309  680111 GIOScheduler assumes GCancellable "cancelled...
5310
5311 * Translation updates:
5312  Spanish
5313
5314 Overview of changes from GLib 2.33.3 to 2.33.4
5315 ==============================================
5316
5317 * GMainContext: the source list has been reorganzied to
5318   avoid O(n) behaviour
5319
5320 * GRegex: Update included PCRE to 8.31 and expose new
5321   functionality in 8.x versions of PCRE
5322
5323 * GMountOperation gained a ::show-unmount-progress signal
5324   which provides information about slow unmount operations
5325
5326 * Bugs fixed:
5327  616892 gio: Add a boxed type for GFileAttributeMatcher
5328  619329 g_source_attach() O(n) in number of sources
5329  639771 g_dir_read_name() can also return NULL on error
5330  661767 merge/improve various bits of run-in-thread fun...
5331  667375 GAsyncInitable subclassing (and async subclassi...
5332  671545 Constify collect and lcopy strings in GTypeValu...
5333  674452 SEGFAULT in gio contenttype test
5334  674898 Deal with GLIB_VERSION_MIN_REQUIRED/MAX_ALLOWED...
5335  675504 Fix up GObject interface documentation
5336  677064 GString: Tweak documentation, add g_string_free...
5337  677578 error in PCRE error code conversion
5338  677579 update GRegexError for newer PCRE error codes
5339  678066 gdbus codegen does not work with python3
5340  678273 unicode othercasing is wrong in gregex
5341  678576 GIOScheduler performance enhancements
5342  678758 GTlsInteraction unlocks an unlocked mutex
5343  678808 GTestDBus issues
5344  678881 Test failures in /socket/timed_wait in some cas...
5345  678941 /contenttype/guess test case failure
5346  678944 gio returns the wrong default applications for ...
5347  678949 wrong definition of ulong_bool for 64 bit big e...
5348  678959 /mainloop/timeouts race condition: assertion fa...
5349  679193 update included pcre to 8.31
5350  679258 The 'Since' tag for G_SOURCE_CONTINUE and G_SOU...
5351  679473 Don't generate invalid property names
5352  679691 Add g_spawn_check_exit_status()
5353  679671 GDBusNodeInfo: the XML string must contain exac...
5354  676111 mount-operation: add show-unmount-progress signal
5355  679691 win32: fix build g_spawn_check_exit_status() wi...
5356  679813 Documentation bug on http://developer.gnome.org...
5357
5358 * Translation updates:
5359  Assamese
5360  Belarusian
5361  Bulgarian
5362  Galician
5363  Greek
5364  Norwegian bokmål
5365  Polish
5366  Spanish
5367  Traditional Chinese
5368  Vietnamese
5369
5370
5371 Overview of changes from GLib 2.33.2 to 2.33.3
5372 ==============================================
5373
5374 This release contains mostly bugfixes, cleanups and performance
5375 improvements (including many fixes contributed by Colin on the advice of
5376 Coverity).  There are a few notable externally-visible changes:
5377
5378 * Thumbnails are now in XDG_CACHE_HOME
5379
5380 * new GDBus API: per-thread g_dbus_connection_get_last_serial()
5381
5382 * GUnixOutputStream now has a can_poll() implementation
5383
5384 * New deep copy APIs for G(S)List: g_(s)list_copy_deep
5385
5386 * Bugs fixed:
5387  518309 Incorrect data*dir path in glib-gettextize output
5388  566994 Safer passing of -framework flag
5389  672889 GLib.utf8_validate does segfault
5390  673253 Not strict enough autconf test for libelf
5391  675024 adds g_list_copy_deep() and g_slist_copy_deep
5392  675168 prepare for thumbnails to move to XDG_CACHE_HOME
5393  675966 gresolver: More robust parsing of DNS responses
5394  676594 [Patch] fix g_reload_user_special_dirs_cache
5395  676825 Implement g_dbus_connection_get_last_serial ()
5396  677235 Clarify the comment at the top of gmarshal.list
5397  677527 OS X: gthread/spawn-async selftest failure
5398  677718 GDBusProxy: treat org.freedesktop.systemd1.Masked error as non-fatal
5399  677770 GUnixOutputStream does not implement can_poll
5400  677782 Install bash completion files in /usr/share
5401  677817 g_key_file_to_data adds extra blank lines in some cases
5402  677952 Missing annotation for GDBusConnection signal "closed"
5403  678052 g_wakeup_acknowledge is called too often.
5404  678273 unicode othercasing is wrong in gregex
5405  678333 gdbus-codegen code causes warnings under -Wfloat-equal
5406
5407 * Translations updated:
5408  Arabic
5409  Assamese
5410  Galecian
5411  Greek
5412  Spanish
5413  Telugu
5414
5415 Overview of changes from GLib 2.33.1 to 2.33.2
5416 ==============================================
5417
5418 * GLIB_VERSION_MIN_REQUIRED now defaults to the current stable version
5419
5420 * GIO input and output stream classes have grown GBytes-based methods
5421
5422 * GApplication now has hooks to register D-Bus objects before the bus
5423   name is taken
5424
5425 * Bugs fixed:
5426  605976 add g_type_ensure(), to ensure that a type has...
5427  660851 Breakage of code due to changes in the GThread...
5428  666386 Empathy doesn't open Redirect URI with particu...
5429  671139 need (transfer async) for io stream buffers
5430  672329 memory leaks in gutils.c and glib tests
5431  672548 g_utf8_validate: @str shouldn't end up annotat...
5432  674111 Provide an accessor for MimeType desktop entry...
5433  674483 broken configure results when cross-compiling ...
5434  674634 Add g_clear_pointer()
5435  674777 What's the (transfer) of g_variant_lookup()?
5436  675309 gkeyfile: Fix annotations for g_key_file_load_...
5437  675446 gfile: Plug memory leak in g_file_make_directo...
5438  675509 add extra dbus hooks
5439  675832 Incomplete gsettings bash auto-completion
5440  676208 The tmpl parameter to g_file_new_tmp can be NULL
5441  676265 GNetworkMonitor leaks a lot of memory
5442  676277 Document that g_app_info_create_from_commandli...
5443  676397 g_environ_* should work with NULL envp
5444  676398 g_spawn_* should take PATH from the passed env...
5445  676478 Broken gzip decoding
5446  676594 [Patch] fix g_reload_user_special_dirs_cache
5447  676816 Add more GLIB_AVAILABLE_IN_*
5448  676937 Document notify signal deduplication with free...
5449
5450 * Translation updates:
5451  Czech
5452  French
5453  German
5454  Greek
5455  Japanese
5456  Russian
5457  Slovenian
5458  Spanish
5459
5460
5461 Overview of changes from GLib 2.32.1 to 2.33.1
5462 ==============================================
5463
5464 * GApplication
5465  - can now have a NULL application ID
5466  - add accessors for determining dbus connection and object path
5467
5468 * g_clear_object: fix warnings when using it on C++ (due to lack of
5469   ability to implicitly cast void*)
5470 * add g_clear_pointer as a generic form of g_clear_object
5471
5472 * GDBus:
5473  - add our own implementation of the message bus for use on Windows only
5474  - fix up a few bugs that use of this bus uncovered in GDBus
5475  - escape nonce files in dbus addressess (think 'c:\')
5476  - support initial underscores in dbus codegen namespace (for private)
5477  - add GTestDBus for bringing up a session bus for testing purposes
5478  - gdbus-codegen: Avoid warnings in generated code
5479  - GDBusAuthObserver: Add a way to control what authentication mechanisms to use
5480  - 
5481
5482 * Fix misdetection of GNUstep as Cocoa (for the MacOS GSettings backend)
5483
5484 * make sure configure fails if AC_CHECK_ALIGNOF cannot detect the alignment
5485
5486 * GAppInfo
5487  - overwrite the DISPLAY only if it is set in the launch context
5488  - add accessor for StartupWMClass
5489
5490 * glib/tests/date: force US locale running the GDateTime tests
5491
5492 * Resources:
5493  - fix broken use of GVDB on big endian machines
5494  - set a 'display name' so that pretty file names appear in Gtk CSS
5495    warning messages
5496
5497 * GMainContext:
5498  - block child sources when blocking the parent
5499  - introduce more testcases for child sources
5500
5501 * GResolver: add support for MX, TXT, NS and SOA records
5502
5503 * GSocketControlMessage: Don't warn about unknown messages
5504
5505 * GIO:
5506  - implement GSeekable for the data and buffered stream classes
5507  - implement GPollable for many more classes as well
5508  - fix GConverterInputStream infinite loop when fill_buffer returns an error
5509  - fileinfo: document the correct type for trash::orig-path
5510
5511 * test coverage improvements and general fixes
5512
5513 * new 2.34 stuff: version macros, docs index section, etc.
5514
5515 * Build:
5516  - add --disable-modular-tests build option
5517  - don't require host binaries if tests are not enabled for cross-builds
5518
5519 * Translations updated
5520  Brazilian Portuguese
5521  Bulgarian
5522  Czech
5523  French
5524  Galician
5525  German
5526  Hebrew
5527  Hindi
5528  Italian
5529  Norwegian bokmål
5530  Polish
5531  Russian
5532  Russian
5533  Serbian
5534  Simplified Chinese
5535  Slovenian
5536  Spanish
5537  Telugu
5538
5539 Overview of changes from GLib 2.32.0 to 2.32.1
5540 ==============================================
5541
5542 * Bugs fixed:
5543  670254 glib-2.30.2: Fails /GDateTime/new_from_unix test
5544  672541 glib-compile-resources prepends --sourcedir to absolute paths
5545  673139 URL to mailing lists in README incorrect
5546  673174 g_input_stream_read[_finish]: document returning 0 on EOF
5547  673191 glib/gchecksum.c warning: dereferencing type-punned pointer...
5548  673216 [W32] gtestutils does not use path separators consistently
5549  673439 Properly deprecate g_value_{set,get}_char
5550  673612 Fails to decode dictionaries wrapped in two layers of array
5551  673803 gclosure: Support return values of GVariants
5552  669285 glib/tests/markup-parse fails under non-english locale
5553  673911 gio-2.0.pc lists full path to executables, breaking cross com..
5554  673762 gnextstepsettingsbackend.c:343: error: parse error before 'in'
5555
5556 * Updated translations:
5557  Belarusian
5558  British English
5559  Bulgarian
5560  Catalan
5561  Czech
5562  French
5563  German
5564  Hebrew
5565  Hindi
5566  Hungarian
5567  Italian
5568  Japanese
5569  Kannada
5570  Latvian
5571  Lithuanian
5572  Marathi
5573  Norwegian bokmål
5574  Odia
5575  Polish
5576  Serbian
5577  Slovenian
5578  Spanish
5579  Swedish
5580  Telugu
5581
5582
5583 Overview of changes from GLib 2.31.22 to 2.32.0
5584 ===============================================
5585
5586 * Bugs fixed:
5587  671988 Quickly registering / unregistering objects on bus...
5588  672095 glib needs stable sort function
5589  672406 glib/tests/include.c fails to build on FreeBSD
5590
5591 * Updated translations:
5592  Telugu
5593
5594
5595 Overview of changes from GLib 2.31.20 to 2.31.22
5596 ================================================
5597
5598 * Bugs fixed:
5599  531901 Use __builtin_bswap* for GUINT*_SWAP_LE_BE if building...
5600  653167 Out of tree build is broken on windows
5601  668973 Test /gvariant/parser fails on Solaris 10
5602  669797 gvfs now lists its fuse mounts
5603  670846 deadlock: GStreamer-WARNING **: wrong STREAM_LOCK count 0
5604  671664 gio-querymodules: unlink instead of writing empty cache
5605  671676 Glib can't be cross-compiled any more after merge of...
5606  671918 gnome-shell is inaccessible unless started while an AT...
5607  671942 GSocketMsgFlags: annotate as a flags
5608  671997 Unix signal handling assumes that volatile 1-byte writes...
5609  672013 GSimpleAsyncResult: support reliable cancellation
5610  672026 default log output should include pid and/or prgname
5611  672095 glib needs stable sort function
5612  672201 G_SPAWN_SEARCH_PATH should continue on ENODEV and ETIMEDOUT
5613  672239 request NO_REPLY from g_dbus_connection_call() with no as...
5614  672249 gdbusproxy leaks asyncresult in an error case instead of...
5615
5616 * Translation updates:
5617  Assamese
5618  British English
5619  Catalan
5620  Catalan (Valencian)
5621  Danish
5622  Esperanto
5623  Finnish
5624  French
5625  German
5626  Hungarian
5627  Korean
5628  Lithuanian
5629  Norwegian bokmål
5630  Polish
5631  Portuguese
5632  Russian
5633  Traditional Chinese
5634
5635
5636 Overview of changes from GLib 2.31.18 to 2.31.20
5637 ================================================
5638
5639 * Update to Unicode 6.1
5640
5641 * Update PCRE to 8.30
5642
5643 * Deprecations are now versioned, and new API is
5644   marked with the version it was introduced.
5645   Use these with GLIB_VERSION_{MIN,MAX}_REQUIRED
5646
5647 * The performance of signal emissions has been
5648   improved for simple cases
5649
5650 * Bugs fixed:
5651  529806 Cannot build in 64-bit Mac OS X due to libiconv
5652  580873 Documentation of register type functions incomplete
5653  592666 Document how to unset an attribute
5654  597785 g_type_class_add_private code snippet is a bad example
5655  621368 glib-2.24.1: FAIL: run-assert-msg-test.sh when updating...
5656  622149 --disable-regex breaks glib2 build
5657  639873 GBinding: Crash when binding two properties on the same...
5658  640202 For GLIB v. 2.23.6 and above: impossibility to build mu...
5659  668295 Need a way to classify GVolume instances
5660  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
5661  670542 Add version information for deprecations
5662  670557 gvaluetransform: Fix an infinite loop with GFlagsValue...
5663  670721 global variable for signal ID should be hidden
5664  670751 IceWM build fails due to the G_DEPRECATED_FOR macro
5665  670909 g_dbus_connection_call leaks when it receives an error...
5666  670922 Include path to gdbus-codegen in the pkgconfig file
5667  670969 GSequence lookup may fail if there was no sort prior to...
5668  671025 Constants and identifiers starting with a number are no...
5669  671270 make distclean failures
5670  671281 glib-compile-resources.xml is missing from the dist tar...
5671
5672 * Translation updates:
5673  Basque
5674  Belarusian
5675  Brazilian Portuguese
5676  Bulgarian
5677  Galician
5678  Hebrew
5679  Lithuanian
5680  Persian
5681  Punjabi
5682  Serbian
5683  Simplified Chinese
5684  Slovenian
5685  Telugu
5686  Traditional Chinese
5687  Uyghur
5688  Vietnamese
5689
5690
5691 Overview of changes from GLib 2.31.16 to 2.31.18
5692 ================================================
5693
5694 * GDBusProxy has now a flag, G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES,
5695   which can be set to make GDBus automatically reload
5696   changed properties even if the propertychanged signal
5697   does not contain the new values.
5698
5699 * GApplication puts non-unique applications on the bus
5700
5701 * GApplication now has g_application_quit()
5702
5703 * g_async_queue_timed_pop has been deprecated in favor of
5704   the new g_async_queue_timeout_pop, which uses relative
5705   delays in microseconds instead of a GTimeVal.
5706
5707 * a huge number of API documentation fixes
5708
5709 * Bugs fixed:
5710  647986 put non-unique apps on D-Bus
5711  658484 vpn connection vs NetworkSecretDialog
5712  664237 GDateTime falls back to UTC if TZ is set
5713  669329 gthread-win32: update for g_get_monotonic_time() changes
5714  669330 glocalfile: fix error code when opening a directory on win32
5715  669372 glib/tests memory leaks.
5716  669412 mem leak in g_environ_unsetenv
5717  669538 Fix compilation of glib-compile-resources.c on Windows
5718  669544 gdbus-codegen example introspection XML is not complete
5719  669595 glib-mkenums: fix handling of forward enum declarations
5720  669670 gasyncqueue: don't use deprecated g_cond_timed_wait()
5721  669671 gobject: use #pragmas to avoid deprecated function warnings
5722  669689 Retrieve cwd and environ in local GApplicationCommandLine
5723  669810 socket/win32: flush pending read before signaling HUP
5724  669865 g_regex_fetch()
5725  670085 memory leak in g_output_stream_write_async
5726  670138 gbytes.h is missing the G_BEGIN/END_DECL guards
5727  670485 Simplify session API (shared bug with gtk+)
5728
5729 * Updated translations:
5730  Belarusian
5731  Danish
5732  Galician
5733  Serbian
5734  Telugu
5735  Hebrew
5736
5737
5738 Overview of changes from GLib 2.31.14 to 2.31.16
5739 ================================================
5740
5741 * GResource:
5742  - The resource compiler can now convert pngs into
5743    pixel data that can be used without parsing at runtime
5744    (requires gdk-pixbuf-pixdata to be present)
5745
5746 * Bugs fixed:
5747  669123 resource compiler: failing to-pixdata should...
5748  669173 resource: fix xml preprocess entity handling
5749  669224 Cross-compilation broken by data-to-c
5750  669253 gsettings set buggy on array values
5751  669334 fix memory leak in bookmark file parser
5752
5753 * Translation updates:
5754  Norwegian bokmål
5755  Spanish
5756
5757
5758 Overview of changes from GLib 2.31.12 to 2.31.14
5759 ================================================
5760
5761 * GResource:
5762  - GLib now includes a commandline utility, gresource,
5763    to explore resources in ELF files
5764  - The resource compiler can now optionally strip
5765    ignorable whitespace from XML resources
5766  - The resource compiler can now generate build dependencies
5767  - The resource compiler will now autoselect output formats
5768
5769 * GApplication:
5770  - The menu markup parser API has been dropped, the
5771    menu XML support lives in GTK+ now
5772
5773 * GValueArray has been deprecated
5774
5775 * Bugs fixed:
5776  626258 N-ary Trees - 'nodes' can be inserted before and after...
5777  634232 Core Dump / Aborted using g_key_file_to_data
5778  639099 schema compiler chokes on valid schema
5779  667228 Deprecate GValueArray
5780  667243 Add an element clear function to GArray
5781  667929 glib-compile-resources: xml resources doesn't need to...
5782  668250 g_date_time_format() produces a non-UTF8 string
5783  668468 'IP_ADD_SOURCE_MEMBERSHIP' undeclared
5784  668532 resources: add dependency generator to the resource compiler
5785  668539 resources: compiler should autoselect output format...
5786  668561 gresource-tool not internationalized
5787  668572 glib_cv_g_atomic_lock_free config.cache setting not honored...
5788  668650 GRealArray->clear_func should be initialized
5789  668756 GKeyFile: allow loading from empty strings
5790  668857 fix couple of typos in comments
5791  669024 goption: implement platform_get_argv0() for OpenBSD
5792
5793 * Updated translations:
5794  Galician
5795  Norwegian bokmål
5796  Spanish
5797  Traditional Chinese
5798
5799 Overview of changes from GLib 2.31.10 to 2.31.12
5800 ================================================
5801
5802 * GApplication:
5803  - Drop support for exporting menus - this functionality
5804    will be provided in GtkApplication
5805  - Add a way to create actions that change settings
5806
5807 * Bugs fixed:
5808  629503 Add async versions of g_unix_connection_{receive,send}_credentials
5809  656301 glib-compile-schemas should not create an empty file
5810  668071 mingw-gcc build fails on gio/gsocket.[c|h]
5811  668118 the big appmenu switcheroo
5812  668158 base64 encode and line termination
5813  668163 GDBusConnection: note that exit-on-close is sometimes TRUE
5814  668269 gsignal: add g_signal_handlers_disconnect_by_data
5815  668279 create GAction from GSettings
5816
5817 * Translation updates:
5818  Norwegian bokmål
5819
5820
5821 Overview of changes from GLib 2.31.8 to 2.31.10
5822 ===============================================
5823
5824 * GResource:
5825  - A new facility to allow linking data files into binaries
5826    and make them available as resources
5827  - Resources are compiled using glib-compile-resources
5828  - GIO supports resource:/// uris to access resources
5829
5830 * Bugs fixed:
5831  619126 Missing dependency libs
5832  658315 g_key_file_get_keys() should set length to 0...
5833  660371 is it ever valid to have 0 as a GError domain?
5834  666700 Add some missing (allow-none) annotations
5835  667375 GAsyncInitable subclassing (and async subclassing...
5836  667447 Missing many introspection annotations
5837  667790 Protect call to pthread_condattr_setclock with define
5838  667938 wrong gtypes generated for empty flags enums
5839
5840 * Translation updates:
5841  Hebrew
5842  Spanish
5843
5844
5845 Overview of changes from GLib 2.31.6 to 2.31.8
5846 ==============================================
5847
5848 * GObject:
5849  - The type checks for overriding properties have been loosened.
5850    In particular, it is now possible to add the CONSTRUCT flag
5851    to an overridden property
5852  - GWeakRef is a new API for weak references; unlike g_object_weak_ref
5853    and g_object_add_weak_pointer, it is thread-safe.
5854
5855 * GHashTable has grown new convenience api for use as a set:
5856   g_hash_table_add, g_hash_table_contains
5857
5858 * GSocketConnection has gained API for managing connection status
5859
5860 * GSettings: a native OS X backend has been added, under the
5861   name 'nexstep'
5862
5863 * Bugs fixed
5864  455640 Something fishy with GRegex and unicode
5865  548954 weak references are not threadsafe
5866  625751 Add G_FILE_ATTRIBUTE_FILESYSTEM_USED
5867  658871 gbacktrace: g_get_prgname () isn't called for a NULL argu...
5868  664069 gvariant: Never break out of g_variant_iter_loop
5869  664830 g_strescape doesn't natively handle \v (vertical tab)
5870  665211 GDBusConnection singleton access can race with disposal
5871  665805 Add GSocketClient::action, for tracking socket client status
5872  666116 some tests provoke undefined behaviour, which is undesira...
5873  666422 Unreachable code in gio gnetworkmonitornetlink.c
5874  666551 Crash in g_thread_xp_SleepConditionVariableSRW
5875  666595 menu parser disallows id='' on submenu and section
5876  666615 loosen property override flag restrictions
5877  666616 gobject: fix property override type checks
5878  666803 g_utf8_validate() fails to validate strings with known size
5879  666804 g_ateaxit deprecation warning in devhelp points in wrong ...
5880  666951 g_mkdtemp: Since version incorrect in docs
5881  666978 Fails to compile glib applications with ISO C90 compiler
5882  667098 ginetaddressmask leaks its address property
5883  667225 GSocket: add missing type checks to public methods
5884  667226 GSocket: fix an error return value
5885  667279 Sometimes crashes when launching commandline-crea...
5886  667285 Wrong keyname listed in documentation for g_deskt...
5887  667331 Use g_queue_free_full() convenience function
5888  667420 GHashTable GDB pretty printing is broken
5889
5890 * Updated translations
5891  Belarusian
5892  Bulgarian
5893  Hebrew
5894  Norwegian bokmål
5895  Norwegian Nynorsk
5896  Spanish
5897  Vietnamese
5898
5899
5900 Overview of changes from GLib 2.31.4 to 2.31.6
5901 ==============================================
5902
5903 * GApplication no longer has APIs for setting menus.  Those have been
5904   moved to GtkApplication.
5905
5906 * the GActionGroup import/export functionality has been decoupled from
5907   GApplication by the introduction of a new interface for the purpose of
5908   handling platform data: GRemoteActionGroup.  This allows Gtk to
5909   properly deal with platform data (and gdk threads) on window actions.
5910
5911 * lots of documentation improvements
5912
5913 * bug fixes and a huge number of memory leak fixes
5914
5915 * the test suite now passes on ARM and some of the GDBus testcase hangs
5916   we've been seeing have been resolved (although others could remain)
5917
5918 * g_bytes_get_data() API changed: now includes 'size' out parameter
5919
5920 * new g_queue_free_full() API similar to g_[s]list_free_full()
5921
5922 * desktop files: use standard "Keywords" now, not "X-GNOME-Keywords"
5923
5924 * gsettings commandline tool now has --schemadir option for schemas not
5925   installed in the usual place (ie: as part of plugins)
5926
5927 * Bugs fixed:
5928  643736 GApplication doesn't emit dbus signals on action updates
5929  657433 g_queue_free_full() missing
5930  664699 glib: documentation fixes
5931  665737 acquire/release gdk threads lock on incoming dbus
5932  665879 GBytes: add a size argument to g_bytes_get_data
5933  666113 various leaks in GLib, GIO are visible in the regression tests
5934  666115 various tests leak memory, obscuring real leaks in the library
5935  666145 Doc could be more explicite that g_thread_init calls can be droped
5936  666173 Configure warning - linux/netlink.h usability... no
5937  666296 Race condition in g_thread_xp_get_srwlock
5938  666415 Settings tools should allow specifying a schema directory 
5939
5940 * Translations updated:
5941  French
5942  Spanish
5943
5944 Overview of changes from GLib 2.31.2 to 2.31.4
5945 ==============================================
5946
5947 * EXPERIMENTAL: Menu support has been added to GApplication.  Menus
5948   are exported on the bus, alongside the actions that are already there.
5949   There have also been many related improvements to action group
5950   functionality.
5951
5952   These new APIs are subject to changes in the coming releases.  In
5953   particular, it seems somewhat likely that the APIs for registering
5954   menubars may change in order to accommodate windows with different
5955   types of menubars.
5956
5957 * GDBusConnection previously directly dispatched destroy notifies when
5958   unregistering objects if the current main context was the same context
5959   the object was exported on.  It now unconditionally dispatches these
5960   through an idle on the context.
5961
5962 * Clean up Requires in pc files. Linking against GIO no
5963   longer drags in gmodule. This may require dependency
5964   fixes here and there.
5965
5966 * Introduce GBytes, a data type for immutable, fixed-size
5967   byte sequences. This makes the pre-existing GBuffer
5968   API available outside GLib
5969
5970 * GDBusInterfaceSkeleton can now be exported on multiple
5971   connections
5972
5973 * Bugs fixed:
5974  600161 Do not use static GTypeInfo and GInterfaceInfo
5975  640077 GFileMonitor: Always send CHANGES_DONE_HINT after a move...
5976  641720 Misleading definition for local_command_line() in GApplic...
5977  648516 Little comment error and 2 useless lines of code
5978  651997 Dummy backend for gapplication
5979  652560 Test for g_ascii_strtod is failing
5980  662208 failure to initialize a GInitable should be considered...
5981  662718 GDBusInterfaceSkeleton should be able to export on multi...
5982  663291 GBytes: Immutable, refcounted sequence of bytes
5983  664406 Need context for a proper translation
5984  664455 Build fixes for GLib GIT master (2.31.x)
5985  664558 GDBusWorker.frozen has a value > 1 in a gboolean
5986  664559 sys/wait.h not available on windows
5987  664617 gdbus segfault error 4 in libgio-2.0.so.0.3102.0
5988  664635 GMemory{Out,In}putStream _async functions break sub-class...
5989  664809 Add command line option to gtester to allow skipping tests
5990  665067 cryptic assertion failure if nonsensical flag combinations...
5991  665184 Check ref. count before reffing/unreffing
5992  665298 Add 'Requires.private: libpcre' to glib-2.0.pc
5993  665391 update documentation around mainloops
5994  665607 ./configure is there for fiddling with cross-compile enviro...
5995  665634 g_dbus_node_info_new_for_xml() errors on unknown attributes...
5996  665685 Add a #define for the max length of a Unicode decomposition
5997  665733 GDBusConnection holds lock while calling destroynotify
5998
5999 * Translation updates:
6000  Norwegian bokmål
6001  Spanish
6002
6003
6004 Overview of changes from GLib 2.31.0 to 2.31.2
6005 ==============================================
6006
6007 * Monotonic time is now properly supported on Windows
6008
6009 * glib-mkenums: fix @ENUMPREFIX@ with /*< underscore_name=... >*/
6010
6011 * EXPERIMENTAL: introduce new GSettingsSchema and GSettingsSchemaSource
6012   APIs for the convenience of plugin system authors and those who wish
6013   to introspect the contents of schemas.  This API may change.
6014
6015 * Improve the performance of GObject property notifies.
6016
6017 * GDBus:
6018  - fix a race when unowning a name immediately after owning it
6019  - thread safety improvements on GDBusConnection
6020  - fixes for exit-on-close functionality
6021
6022 * Deprecations:
6023  - add G_SIGNAL_DEPRECATED
6024  - don't use G_DISABLE_DEPRECATED masking for functions anymore
6025
6026 * docs
6027  - tmpl/ is finally dead for glib
6028
6029 * GIO:
6030  - GInetAddressMask: new type for internet address range matching
6031  - various GIO file and stream fixes
6032  - improvements to attribute and fileinfo handling
6033
6034 Overview of changes from GLib 2.29/2.30 to 2.31.0
6035 =================================================
6036
6037 This release contains a huge number of changes (500 commits worth).  The
6038 list below attempts to summarise, but not every change is listed.
6039
6040 * Major changes to threading and synchronisation
6041  - threading is now always enabled in GLib
6042  - support for custom thread implementations (including our own internal
6043    support for errorcheck mutexes) has been removed
6044  - a whole lot of dead code (to deal with the non-threaded case) has
6045    been ripped out.  This includes the racy path of GMainContext that
6046    caused deadlocks with respect to child process exits in
6047    single-threaded programs (such as gtester).
6048  - libgthread is now an empty shell and g_thread_init() is no longer
6049    required (and has been deprecated)
6050  - GMutex and GCond can now be statically allocated without explicit
6051    initialisation.  Dynamic allocation for these types is deprecated.
6052  - new types GRecMutex and GRWLock can also be statically allocated
6053    without explicit initialisation.
6054  - GPrivate can now be statically allocated and has an improved API.
6055    Dynamic allocation of GPrivate is deprecated.
6056  - GStaticMutex, GStaticRecMutex, GStaticRwLock, GStaticPrivate are
6057    deprecated.
6058  - GCond now uses monotonic time internally and a new API takes
6059    monotonic time for timed waits, deprecating the wallclock API
6060  - removal of the insane macro indirection used in the previous
6061    implementation of threading and synchronisation APIs
6062  - use SRWLock and CONDITION_VARIABLE APIs when available on Windows
6063    (Vista and later) and emulate them on XP
6064  - leaks of G(Static)Private-allocated data on some cases of thread exit
6065    have been fixed
6066  - simplified new thread creation API with the old API deprecated.  The
6067    concept of joinability has disappeared (all threads are joinable) as
6068    have priority levels, 'bound'ness (ie: kernel vs. userspace threads)
6069    and ability to manipulate the stack size.
6070  - GThread is now a refcounted type
6071  - other implementation details changed
6072
6073 * Move headers for some deprecated functionality to a separate
6074   deprecated/ directory.
6075
6076 * New support for attribute-based deprecations to issue compiler
6077   warnings instead of breaking the build and/or giving warnings about
6078   implicit declarations (and possibly miscompiling).
6079
6080 * GCache has been deprecated (after its last use was removed from our
6081   platform over a year ago).
6082
6083 * It is no longer possible to include individual headers (like
6084   "ghash.h") -- you must #include <glib.h>.
6085
6086 * The misguided experiment of allowing the program to stumble along with
6087   missing GSettings schemas is now over -- the abort is back.
6088
6089 * Clarify that fork() is not valid while using GMainContext.  This is
6090   because the internal resources of the GMainContext end up being shared
6091   by both processes.  We had an assert here but it was breaking existing
6092   (valid) use cases as well, so it has been removed for now.
6093
6094 * GApplication
6095   - add ::shutdown signal as logical dual to ::startup
6096   - don't use a GMainLoop: iterate the GMainContext directly (improves
6097     quit logic)
6098
6099 * Several portability fixes for Windows, OpenBSD, Solaris
6100
6101 * Add new GValue API to specifically deal in signed chars (in case the
6102   platform defines 'char' as unsigned)
6103
6104 * some new API to mitigate the problems associated with calling setenv()
6105   in a multi-threaded program
6106
6107 * Use CLOCK_MONOTONIC unconditionally if the libc has support at compile
6108   time (ie: stop checking for kernel support at runtime).
6109
6110 * pkg-config files:
6111   - drop -uninstalled variants
6112   - remove gobject dependency on gthread
6113
6114 * New macro G_ATOMIC_LOCK_FREE is defined if the atomic operations are
6115   implemented without use of a mutex.  Cleaned up atomic-related
6116   compilation issues with mingw compilers on win32 systems.
6117
6118 * SOCKS proxy and resolver improvements
6119
6120 * Fix the spelling of G_IO_FLAG_IS_WRITABLE (was WRITEABLE) and
6121   introduce a macro for backwards compatibility.
6122
6123 * GDBus:
6124   - many code generation updates and improvements
6125   - some race condition fixes, including testcase hangs
6126
6127 * GVariant:
6128   - new g_variant_new_from_fixed_array() API
6129   - substantial docs improvements/clarifications
6130
6131 * GKeyFile is now refcounted and boxed
6132
6133 * mount monitoring is now based on /proc/mounts (where available)
6134   instead of mtab
6135
6136 * new macros G_SOURCE_CONTINUE and G_SOURCE_REMOVE for returning from
6137   GSourceFunc (so you don't have to remember what TRUE and FALSE mean)
6138
6139 * use xlocale functions where available to avoid too much heavy lifting
6140   in functions like g_ascii_strtod()
6141
6142 * GMappedFile can now be created from an fd
6143
6144 * error message strings grammar/i18n fixes
6145
6146 * many docs updates
6147
6148 * Partial list of bugs closed:
6149  70598  Unify GStaticMutex and GMutex.
6150  320888 optimization for g_main_context_wakeup
6151  398418 GChildWatch race condition?
6152  527214 g_timer_elapsed() returns random values
6153  580505 add a way to set/get name for a thread
6154  583511 race condition means g_main_loop_quit() does not work
6155  590808 GKeyFile should have a refcount and a boxed type in GObject
6156  592715 Document that g_str_hash() and g_int_hash() are not NULL safe
6157  631413 Add macros for GSourceFunc return values
6158  632049 not immediately clear what g_variant_get_fixed_array expects
6159  640212 "Error stating file" is not a friendly message
6160  640293 Use xlocale functions to implement g_ascii_strtod()
6161  640975 Check that error exists before trying to set it
6162  643934 GApplication lacking a logical dual for the ::startup signal
6163  651268 assertion failed in GDBus worker thread
6164  653987 g_key_file_get_integer cannot interpret trailing spaces
6165  654412 Documentation for g_variant_get_child_value unclear
6166  654563 info capplet: Failed to calculate disk space
6167  655366 missing GSettings schemas lead to obscure crashes
6168  656621 g_spawn_*() calls executables in current directory
6169  656679 [gi] Add two annotations to gio
6170  657992 Add glib__private__() API to share between glib,gio
6171  658188 _set_as_last_used_for_type generates a broken mimeapps.list
6172  658206 gsocks5proxy.c has invalid gettext use
6173  658207 glib-compile-schemas says "can not"
6174  658558 simpleaction: Fix documentation of :enabled
6175  658683 clean up charset/language threading issues
6176  658692 add introspection annotations to g_time_val_from_iso8601()
6177  658715 Duplicite strings
6178  658769 Invalid reuse of GError in GThreadedResolver
6179  658806 sign error in string hash implementation
6180  658976 gdbus-codegen's C namespace option needs to support Ugly_Case
6181  659070 gdbus-codegen generated code segfaults when property changes
6182  659082 gdbus-codegen: Single letter namespaces get dropped from names
6183  659212 GMappedFile should fail on non-regular files
6184  659324 _SPLICE_CLOSE_TARGET doesn't mark the output stream as closed
6185  659423 Use adaptive mutexes when available
6186  659427 Move deprecated code to a separate directory
6187  659646 gdbus-codegen produce code that warnings at build
6188  659690 Possible build warning in code generated by gdbus-codegen
6189  659699 property name collision when generating code for "Connection"
6190  659754 Add API to GMappedFile that allows to pass FD
6191  659838 incorrect types in introspection for g_object_bind_property
6192  659866 pthread_rwlock_t requires defined __USE_UNIX98
6193  659870 gvalue: Fix signedness of g_value_get_char()
6194  659889 glib-2.29.92/gio-2.0.pc.in has a wrong line.
6195  659916 GObject size of 64K is not actively enforced
6196  659920 Missing setter for read/write property 'closed' of GIOStream
6197  659923 Add g_variant_new_fixed_array() function
6198  660013 Remove old g_atomic configure cruft
6199  660096 glib/rwlock tests failure (tests asserted)
6200  660130 Possible loss of user data when updating mimeapps.list
6201  660147 tracker causes g_critical in "gsettings list-recursively"
6202  660413 Make G_ASSERT_STATIC work with clang
6203  660498 Generated test code fails when the codegen changes
6204  660511 Use /proc/mounts for monitoring mounts, not /etc/mtab
6205  660536 Expose options for /etc/fstab entries
6206  660635 Deprecate g_thread_foreach
6207  660637 Pending dbus method calls not canceled on connection loss
6208  660739 kill off g_{mutex,cond}_{new,free}()
6209  660740 make GThread more standard
6210  660741 g_cond_timedwait is a disaster
6211  660743 macro wrappers for g_once_init_enter/leave
6212  660744 finish killing g_thread_init()
6213  660745 GPrivate leaks on Windows
6214  660791 [gio] Improve doc for g_file_make_directory_with_parents()
6215  660843 asyncqueue-test is broken
6216  660849 Remove cruft from g_strerror and g_strsignal
6217  660886 GDBusProxy: don't drop/complain about unknown props/signals
6218  660887 g_slice_set_config() is broken
6219  660994 Add g_main_context_ref_thread_default()
6220  661255 gio: enable test_peer regression test for OpenBSD
6221  661257 giomodules.c uses ":" instead of G_SEARCHPATH_SEPARATOR_S
6222  661318 tests use pthread without appropriate compiler/linker flags
6223  661421 Applications fail to initialize on GNU Hurd - commit
6224  661438 Implement G_GNUC_DEPRECATED/G_GNUC_DEPRECATED_FOR on Visual C++
6225  661711 Sorting keys for GDrive, GVolume and GMount instances
6226  661763 desktop-app-info: Add support for X-GNOME-Keywords
6227  661896 /gdbus/connection/life-cycle is racy
6228  661914 Gstreamer/Totem locks up
6229  662100 regression: g_dbus_connection_close() triggers exit-on-close logic
6230
6231 * Translations updates:
6232  Belarusian 
6233  Brazilian Portuguese
6234  British English 
6235  Bulgarian 
6236  Catalan 
6237  Catalan (Valencian)
6238  Czech 
6239  Danish 
6240  Esperanto
6241  French 
6242  Gujarati
6243  Hebrew 
6244  Hungarian 
6245  Italian 
6246  Japanese
6247  Lithuanian
6248  Norwegian bokmål
6249  Oriya
6250  Polish 
6251  Russian 
6252  Serbian
6253  Simplified Chinese
6254  Slovak 
6255  Slovenian
6256  Spanish 
6257  Tamil
6258  Vietnamese
6259
6260 Overview of changes from GLib 2.29.18 to 2.29.90
6261 ================================================
6262
6263 * API/ABI changes:
6264  - unix signal watches now match the API of all of the other sources
6265  - revert the addition of g_date_time_source_new () from last release
6266
6267 * networking and other fixes for Solaris
6268  - we no longer support symbolic port names (ie: from /etc/services)
6269  - check if -lsocket is needed
6270  - fix g_socket_details_from_fd()
6271  - avoid getmntinfo
6272  - fix some harmless warnings
6273
6274 * GDateTime improvements:
6275  - generally improved standards compliance (with C99)
6276  - support C99-specified format strings: %g, %G, %V, %c, %C, %w
6277  - consult the locale for the preferred 12-hour time format (%r)
6278  - drop support for non-standard %N and broken %W
6279  - better support for formatting non-POSIX (eg: Arabic) numerals
6280  - locale-related test case fixups, and fix some leaks
6281
6282 * GTlsInteraction: add interaction method invocation guarantees
6283
6284 * gdbus-codegen: post-process all interfaces when parsing >1 file
6285
6286 * make GMainLoop, GMainContext and GSource boxed types
6287
6288 * fix a race condition in the first use of g_get_monotonic_time()
6289
6290 * lots gtk-doc cleanups
6291
6292 * better intltool compatibility when generating pot file
6293
6294 * avoid GCC-specific compiler options when not using GCC
6295
6296 * Translation updates:
6297  Belarusian
6298  Brazilian Portuguese
6299  Canadian English
6300  Galician
6301  Indonesian
6302  Korean
6303  Lithuanian
6304  Norwegian bokmål
6305  Portuguese
6306  Spanish
6307  Swedish
6308
6309 Overview of changes from GLib 2.29.16 to 2.29.18
6310 ================================================
6311
6312 * GDateTime is now respecting LC_TIME when formatting
6313
6314 * GTimeZoneMonitor has been removed again
6315
6316 * A new API for wallclock functionality has been added:
6317   g_date_time_source_new(). This API is still experimental
6318   and may be changed or removed before 2.30.
6319
6320 * Bugs fixed:
6321  628904 Add credential support for FreeBSD and fix a socket issue
6322  650763 gdbus-codegen is broken with python 2.7
6323  655129 GDateTime could provide api for implementing wall clocks
6324  656341 gtlsconsoleinteraction.c uses getpass() which isn't avail...
6325  656387 GCancellable can be used concurrently
6326  656443 Make GTlsInteraction ask_password cancellable
6327  656675 void functions should not return in glib 2.29.16
6328  656772 g_variant_compare for uint64 incorrect
6329  656914 Load GIO_EXTRA_MODULES first, and ignore duplicates
6330  657083 The header langinfo.h is not available on all systems
6331  657084 gfileutils: fix docs/annotations for temp file methods
6332  657138 Some files missing in POTFILES.in
6333  657206 GInputStream leaked in g_file_icon_load_async()
6334  657243 g_cancellable_set_error_if_cancelled() documentation
6335  657274 Use detected PYTHON variable as shebang for gdbus-codegen
6336  657336 Speling fixes for glib found with codespell
6337  657452 plural forms needed
6338  657454 Translation comment needed
6339  657540 Print out file:// URL to coverage HTML report after building
6340  657593 g_test_trap_fork calls close(-1)
6341  646082 Addresses from GSocket should be normalized before returning
6342  657517 fix gio/tests/gdbus-peer on bsd
6343
6344 * Translation updates:
6345  Brazilian Portuguese
6346  Galician
6347  Norwegian bokmål
6348  Punjabi
6349  Russian
6350  Serbian
6351  Spanish
6352  Swedish
6353  Traditional Chinese
6354  Uighur
6355
6356
6357 Overview of changes from GLib 2.29.14 to 2.29.16
6358 ================================================
6359
6360 * GTlsDatabase: an abstract class that provides support
6361   or certificate and key lookup. An implementation will
6362   be provided in glib-networking
6363
6364 * GHmac: Support or HMAC digests
6365
6366 * Misc new API:
6367  - g_ptr_array_add_full: creates a GPtrArray with
6368    a preallocated size and a destroy function
6369  - g_desktop_app_info_get_show_in: checks if a GDesktopAppInfo
6370    should be shown in a given desktop environment
6371  - g_mkdtemp, g_mkdtemp_full, g_dir_make_tmp: create
6372    temporary directories
6373
6374 * Unify thread wakeup implementations of GMainContext
6375   and GCancellable, and use eventfd for it when available
6376
6377 * Show mounts in $XDG_USER_DIR in addition to /media and $HOME
6378
6379 * Bugs fixed:
6380  636572 GTlsCertificateDB
6381  644601 Some tests need a running dbus session
6382  652284 deal with small key lengths
6383  652827 glib-2.29.8 no longer builds with mingw.org's toolchain
6384  653063 PEM parser fails parsing private key when put first
6385  654078 Fail to static linking with Glib library
6386  654450 New functions: g_ptr_array_new_full()
6387  654793 Add G_VALUE_INIT
6388  655044 GDesktopAppInfo: Add g_desktop_app_info_get_show_in()
6389  655148 gdbusconnection is broken when compiling with mingw
6390  655241 glocalfile.c no longer compiles with MinGW GCC
6391  655598 g_cancellable_get_fd: silently return -1 for NULL cancellable
6392  655664 gdbus should not abort if no dbus session is available
6393  655769 Use ZLIB_CFLAGS when compiling gio
6394  656031 Improve GVariant annotations
6395  656048 glib-codegen requires Python >= 2.5
6396  656151 configure test logic inverted, doesn't match comments
6397  656152 GCC only syntax used, yet other compilers allowed by configure.
6398  656162 allow use of lcov 1.9 for coverage
6399  656282 GDBusProxy: uninitialized local variables can be freed
6400  656283 Failing tls connection cause assertion
6401  118563 Add g_mkdtemp in the spirit of g_mkstemp
6402  636405 Add g_return_if_fail() to g_settings_bind_with_mapping()
6403  656039 race condition between GDBusProxy signals and public API
6404  656492 g_io_channel_new_file failure (open(2) behavior wrt POSIX)
6405
6406 * Translation updates:
6407  Bulgarian
6408  Esperanto
6409  French
6410  Galician
6411  German
6412  Hebrew
6413  Indonesian
6414  Italian
6415  Norwegian bokmål
6416  Russian
6417  Spanish
6418  Swedish
6419
6420
6421 Overview of changes from GLib 2.29.12 to 2.29.14
6422 ================================================
6423
6424 * Unicode improvements
6425  - add g_unicode_script_{to,from}_iso15924
6426  - add G_UNICODE_SPACING_MARK define
6427  - more normalisation improvements
6428  - stop using deprecated g_unicode_canonical_decomposition()
6429
6430 * GParamSpec:
6431  - mark the 'name' field as 'const' and add a comment to the header to
6432    help avoid future problems caused by bad hacks
6433
6434 * Merge some (modified) patches from Debian:
6435  - 03_blacklist-directories.patch
6436    - add some blacklisted mount directories
6437  - 60_wait-longer-for-threads-to-die.patch
6438    - sleep longer in a test case, if needed to avoid failing
6439
6440 * Units policy change: prefer use of SI units
6441  - deprecate g_format_size_for_display, add g_format_size(_full)
6442
6443 * GSettings: don't call g_error() when the schema is missing
6444
6445 * GVariant support for arrays of object paths:
6446  - new g_variant_{new,get,dup}_objv API
6447  - support for g_variant_{new,get} '^ao' and '^a&o' similar to '^as'
6448
6449 * GDBus:
6450  - use new improved array-of-objects support and pass 'ao' as char**
6451    instead of GVariant*
6452  - improve handling of 'h' type (Unix file descriptor index)
6453
6454 * GIO:
6455  - fix compilation without USE_STATFS and USE_STATVFS
6456
6457 * Documentation fixes
6458
6459 * Bugs fixed:
6460  622921 Migrate from dbus-glib to glib's GDBus
6461  648271 Add g_unicode_script_to_iso15924()
6462  654948 Stop using deprecated g_unicode_canonical_decomposition()
6463  654988 g_atomic_int_add should document behaviour change
6464  655025 #define G_UNICODE_SPACING_MARK G_UNICODE_COMBINING_MARK
6465  655076 normalization misses some Full_Composition_Exclusion=True. 
6466
6467 * Translations updated:
6468  Spanish
6469
6470 Overview of changes from GLib 2.29.10 to 2.29.12
6471 ================================================
6472
6473 * Add new API to do Unicode (de-)composition in atomic steps,
6474   for use in Harfbuzz.
6475
6476 * Bugs fixed:
6477  615895 (indirectly) support non-NULL-terminated regexes in GRegex
6478  617949 glib trunk fails to compile on Solaris w/ Studio 12...
6479  620423 Document the possibility to unset attributes
6480  627974 Floating reference headaches
6481  644687 Not finding cross-links in current doc set
6482  649246 g_output_stream_splice() cannot be used on 32-bit machines...
6483  653841 a helper script to build glib from git master on win32
6484  653935 g_slist_free_full/g_list_free_full iterates twice in the list
6485  654017 tests: fix glib_translations_work() in gsettings unit test
6486  654085 Don't needlessly use "echo -e" when creating .def files
6487  654195 Add g_unichar_compose() and g_unichar_decompose()
6488  654232 GCancellable eventfd problems
6489  654394 suspicious use of floating references in GDBusInterfaceSkeleton
6490  654536 GSettings: lift key name length restriction to 64
6491  654627 GParamSpec: intern property names
6492  654651 Better g_unicode_canonical_decomposition()
6493  654917 Make g_cclosure_marshal_generic the default signal handler
6494
6495 * Translation updates:
6496  Belarusian
6497  Finnish
6498  Korean
6499  Latvian
6500  Lithuanian
6501  Norwegian bokmål
6502  Turkish
6503
6504
6505 Overview of changes from GLib 2.29.8 to 2.29.10
6506 ===============================================
6507
6508 * New features:
6509  - g_desktop_app_info_get_nodisplay: a function that is required
6510    to port gnome-menus to GDesktopAppInfo
6511  - g_hash_Table_iter_replace: new function to replace a value
6512    while iterating over a hash table
6513  - g_utf8_substring: convenience API to extract substrings from
6514    UTF-8 strings
6515  - g_action_group_add_entries: convenience API for creating lots
6516    of actions quickly
6517  - Use eventfd instead of pipes for waking up main contexts and
6518    for cancellation when available
6519  - GMatchInfo is now a refcounted boxed type
6520
6521 * API changes in GAction:
6522  - the 'set_state' entry in the GActionInterface vtable has been
6523    renamed to 'change_state
6524  - g_action_set_state has been renamed to g_action_change_state
6525  - the 'state' property has been changed to read-only
6526  - GSimpleAction can no longer be subclassed
6527
6528 * Bug fixes
6529  647796 g_variant_new_variant is not marked as constructor
6530  652072 gmain: make use of signalfd()
6531  652168 Crosscompiling Fails if build<=2.24 and host >2.24
6532  652750 make dist fails
6533  652758 GDataInputStream: Clarify g_data_input_stream_read_line docs...
6534  652822 Add a g_hash_table_iter_replace
6535  652897 tiny docs clarification for g_utf8_to_ucs4_fast
6536  653140 gmain: use Linux eventfd() for main context wake up
6537  653429 drop AM_MAINTAINER_MODE or enable it by default
6538  653484 GAsyncCallbacks should default to allow-none
6539         Add missing fundamental types to the generic marshaller
6540
6541 * Translation updates
6542  Belarusian
6543  Galician
6544  Russian
6545
6546 Overview of changes from GLib 2.29.6 to 2.29.8
6547 ==============================================
6548
6549 * Bug fixes
6550  646608 export_symbols variable for gio dynamic library is wrong
6551  646635 Fix introspection of GLib
6552  647930 Documentation: GDataInputStream _read_upto() version
6553  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
6554  651920 Improve qsort_r detection
6555  651959 gbitlock: "asm goto" is not available in gcc < 4.5
6556  651998 gdbus-codegen: Use relative Python imports
6557  652000 Fix for gatomic.c on Windows/MSVC
6558  652002 Proposal to clean up gvaluetransform.c for MSVC
6559  652025 g_dbus_connection_register_object: error is not set...
6560  652081 Typos in a GBinding warning message
6561  652197 Improper handling of double values in GDBusMessage
6562         Fix a deadlock in gobject finalization
6563
6564 * Translation updates:
6565  Czech
6566  Galician
6567  German
6568  Hebrew
6569  Norwegian bokmål
6570  Spanish
6571  Uighur
6572
6573
6574 Overview of changes from GLib 2.29.4 to 2.29.6
6575 ==============================================
6576
6577 * Atomic operations have been rewritten from scratch to make use
6578   of gcc builtins where possible. As a side-effect of this, calls
6579   to g_atomic_ API with explicit casts may now be problematic; if
6580   that happens to you, try first to remove the casts. Another
6581   side-effect of the rewrite is that g_atomic_int_exchange_and_add
6582   has been deprecated in favor of g_atomic_int_add.
6583
6584 * A full set of atomic operations on pointers has been added,
6585   including bit locks in pointer-size locations.
6586
6587 * Access to quarks is now lockless
6588
6589 * GObject data scalability has been greatly improved
6590
6591 * g_data_time_format now supports alternative digits and padding
6592
6593 * Introspection improvements:
6594  - Add a boxed type for GVariantBuilder
6595  - Annotation fixes in GDBus, GVariant, g_base64_
6596
6597 * Bugs fixed:
6598  502560 g_rand_double_range returns 'inf'
6599  612729 g_mkdir_with_parents can fail if the directory already exists
6600  617491 g_once() implementation is inefficient
6601  619418 Add a performance test for UTF-8 decoding functions
6602  619435 Make g_utf8_to_ucs4_fast() yet faster
6603  626549 G_STATIC_ASSERT_EXPR
6604  631231 bitlock: Fix detection and usage of futexes with Bionic
6605  632294 g_queue_remove() should return a boolean
6606  640518 GMainLoop has quadratic complexity when all pollfd's...
6607  642026 Race condition in g_static_private_free
6608  646635 Fix introspection of GLib
6609  648678 g_date_time_format(): support %O flags for localized numbers
6610  649480 Use MSG_CMSG_CLOEXEC in recvmsg in gio/gsocket.c
6611  649506 GTestFunc et al lacking Since tag
6612  649657 Don't return gboolean for functions that throw
6613  649775 glib-gio-gdbuscodegen-Makefile.patch
6614  649915 gsettings accepts unquoted strings longer than two characters
6615  649973 gthread: build unix tests only on unix
6616  649988 gdbus-codegen: Drop dependency on argparse
6617  650078 forkbomb building glib/tests/protocol
6618  650211 Optimization in key file parsing
6619  650236 Application over DBus implements action state incorrectly
6620  650345 g_key_file_has_key_full: New function to fix g_key_file_has_key...
6621  650458 reduce overhead in g_object_set/get_data
6622  650459 hash table consistency while calling destroy notify funcs
6623  650688 enforce rules about hash table modification
6624  650823 expand the set of atomic ops
6625  650874 codegen chokes on docs
6626  650882 use stdout instead of stderr for informational messages
6627  650884 fix compilation with gcc2
6628  650885 implement glib credentials on OpenBSD (hackish)
6629  650935 G_GNUC_MAY_ALIAS and atomic ops
6630  651009 minor documentation fix
6631  651034 Regarding g_cond_wait after g_thread_pool_push in gthreadedresolver
6632  651133 race condition in GDBusConnection's emit_signal_instance_in_idle_cb
6633  651141 hashtable infinite loop
6634  651219 fix path to true(1) on OpenBSD
6635  651223 Fix some compile warnings on OpenBSD
6636  651327 Minor fixes for the gsocket API
6637  651467 Add pointer sized bitlocks
6638  651650 gdbus: Avoid busy wait loop
6639  651725 gmain: Cleanups and a new test case
6640  651745 Switch to _ prefixing rather than G_GNUC_INTERNAL
6641
6642 * Updated translations:
6643  Catalan (Valencian)
6644  Esperanto
6645  Hebrew
6646  Hungarian
6647  Russian
6648  Spanish
6649
6650
6651 Overview of changes from GLib 2.29.2 to 2.29.4
6652 ==============================================
6653
6654 * GDBus:
6655  - Includes several new types to support modeling D-Bus
6656    objects and interfaces more fully, and also introduces
6657    an 'object manager' pattern:
6658    GDBusInterface, GDBusObject, GDBusObjectManager
6659    These interfaces have client-side implementations:
6660    GDBusProxy, GDBusObjectProxy, GDBusObjectManagerClient
6661    And server-side implementations:
6662    GDBusInterfaceSkeleton, GDBusObjectSkeleton, GDBusObjectManagerServer
6663  - The new gdbus-codegen utility uses these new classes
6664    to generate C code and documentation from D-Bus interface
6665    descriptions in XML
6666
6667 * GTest:
6668  - There is now a g_test_fail() function to mark
6669    tests as failed
6670
6671 * GDesktopAppInfo
6672  - Now has a binding-friendly filename property
6673  - Other new API to more fully expose desktop file contents:
6674    g_desktop_app_info_get_categories(),
6675    g_desktop_app_info_get_generic_name()
6676
6677 * GHashTable:
6678  - Several optimizations to reduce space consumption of
6679    large hash tables, in particular tables that are used
6680    to store sets.
6681
6682 * Unix-specific APIs:
6683   GLib now installs a separate header, glib-unix.h, that is
6684   meant to collect Unix-specific APIs. For now, it contains
6685   g_unix_open_pipe(), g_unix_set_fd_non_blocking() for dealing
6686   with pipes and fds, as well as APIs to create mainloop
6687   sources which can trigger callbacks on certain Unix
6688   signals (SIGTERM, SIGHUP, SIGINT).
6689
6690 * Bugs fixed:
6691  631379 GDBus nonce-tcp test failing
6692  632631 GLib-CRITICAL **: g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed
6693  635694 gdbus aborting due to unauthorized socket in DBUS_SESSION_BUS_ADDRESS
6694  637561 Crash when using G_DBUS_SERVER_FLAGS_RUN_IN_THREAD
6695  642935 g_date_time_format() prints wrong value for %z and timezone -0800
6696  643134 g_dbus_message_copy
6697  644941 glib-unix: New Unix-specific API
6698  646013 g_hash_table_remove_all_nodes optimization
6699  646309 glib cannot be cross-compilled for mingw32
6700  646435 GTimeZone doesn't seem to be thread-safe
6701  646957 GIO chained calls don't work with a thread default context
6702  647594 README link to mailing list is broken
6703  647602 Cannot connect to remote message bus via TCP
6704  647746 The GSocketService documentation is incomplete.
6705  647826 API: gtester: Add g_test_fail()
6706  647903 GDesktopAppInfo: Add g_desktop_app_info_get_categories()
6707  648416 g_app_info_create_from_commandline ignores SUPPORTS_STARTUP_NOTIFICATION
6708  648423 Support G_DEBUG=trap-warnings
6709  648425 GDesktopAppInfo: Add "filename" property for bindings
6710  648966 Update g_unichar_iswide and g_unichar_iswide_cjk
6711
6712 * Updated translations
6713  Norwegian bokmål
6714  Spanish
6715  Turkish
6716  Uighur
6717
6718
6719 Overview of Changes from GLib 2.28.0 to 2.29.2
6720 ==============================================
6721
6722 * GApplication
6723  - The documentation has been enhanced and clarified
6724  - An opt-out for uniqueness has been added: G_APPLICATION_NON_UNIQUE
6725  - GApplication now syncs settings before g_application_run() returns
6726
6727 * GDBus
6728  - Interface lookups are now happening in constant time
6729  - Signature checking and handling of various unexpected
6730    situations has been improved
6731
6732 * GVariant
6733  - The format accepted by the GVariant parser has beend documented
6734  - GVariant accepts G_VARIANT_TYPE_VARDICT for a{sv}
6735
6736 * GDateTime:
6737  - The return value of g_datetime_compare() has been fixed to
6738    match strcmp() semantics
6739  - In order to handle problems with changing timezones, a GTimeZoneMonitor
6740    has been added to GIO, and g_time_zone_refresh_local() can be
6741    called to update the cached information about the local timezone
6742
6743 * GOption now uses /proc/self/cmdline to set the program name instead
6744   and only falls back to "<unknown>" if that is unavailable
6745
6746 * GSettings:
6747  - The schema compiler now warns about references to non-existing schemas
6748
6749 * Commandline utilities are now fully translated
6750
6751 * Signals can now indicate that collecting their arguments must
6752   always happen, even in the absence of connected signal handlers,
6753   using the G_SIGNAL_MUST_COLLECT flag.
6754
6755 * Bugs fixed:
6756  635099 Memory leak in gdbus introspection when parsing xml
6757  640489 $ and ^ do not match lines if G_REGEX_MULTILINE|G_R...
6758  642042 Overriding GDBus org.freedesktop.DBus.Properties im...
6759  642052 g_timeout_add(_seconds) cannot handle large intervals
6760  642490 notify_desktop_launch() "g_variant_new_bytestring:...
6761  613269 g_type_get_qdata() doesn't work as I expected on subtypes
6762  624943 G_VALUE_NOCOPY_CONTENTS is undocumented
6763  637738 object_interface_check_properties never actually executes
6764  638185 GIOCondition should be annotated as "flags"
6765  639478 GDBusServer's g_dbus_server_new_sync() function should just...
6766  641755 Add g_settings_get/set_uint() helpers
6767  641768 dconf gsettings backend silently drops writes if it can't...
6768  642797 g_app_info_get_default_for_type() broken for subtypes
6769  642825 Unnecessary assertion failure in g_option_context_parse()
6770  642944 NULL key lookup using g_hash_table_lookup_extended()
6771  643074 Incorrect documentation for g_socket_receive() and g_socket...
6772  643197 g_application_id_is_valid docs imply no valid ids
6773  643468 GApplication docs: Warn that handling "command-line" means...
6774  643478 GApplication::local_command_line vfunc documentation seems wrong
6775  643624 Can g_variant_unref() on an already free'd variant
6776  643649 g_application_run() should say that argc/argv can be NULL
6777  643780 shouldn't need to create an action group to use actions...
6778  643795 g_timeout_add_seconds fires with intervals 1 second longer...
6779  644309 Program name is not set when using GtkApplication
6780  644428 Crash in failure section of g_markup_collect_attributes()
6781  644465 undefined reference to `_usleep'
6782  644552 g_timeout_add_seconds(1, ...) may have a latency of up to 2...
6783  644607 Correct internal definition of C_()
6784  645789 annotations for g_file_*_contents
6785  646039 g_settings_list_children() returns child that cannot be opened
6786  646310 Accept range with only min or max
6787  646420 g_dbus_method_invocation_get_parameters() docs should say...
6788  646843 occasional abort on autologin
6789  646985 add G_APPLICATION_NON_UNIQUE flag
6790  647579 gsettings: Implement reset-recursively
6791  647600 gsettings description has typo
6792
6793 * Translation updates
6794  Afrikaans
6795  Bulgarian
6796  Bengali India
6797  British English
6798  Bulgarian
6799  Catalan
6800  Czech
6801  Danish
6802  French
6803  Galician
6804  German
6805  Greek
6806  Gujarati
6807  Hebrew
6808  Hungarian
6809  Italian
6810  Japanese
6811  Korean
6812  Lithuanian
6813  Polish
6814  Portuguese
6815  Romanian
6816  Serbian
6817  Simplified Chinese
6818  Spanish
6819  Swedish
6820  Traditional Chinese
6821  Uighur
6822  Vietnamese
6823
6824
6825 Overview of Changes from GLib 2.27.93 to 2.28.0
6826 ===============================================
6827
6828 * Bugs fixed:
6829 641363 GInitable documentation isn't clear about that finalize...
6830 641395 Add more data about the origin application to the "Lau...
6831 641411 gdesktopappinfo signals lost if it's the session bus...
6832 641477 glib-mkenums uses unportable #! line
6833 641572 Add @EXEEXT@ to pkgconfig binary name
6834 641688 glib installs GSettings.html and gsettings.html
6835
6836 * Translation updates:
6837  Galician
6838  Italian
6839  Korean
6840  Punjabi
6841
6842
6843 Overview of Changes from GLib 2.27.92 to 2.27.93
6844 ================================================
6845
6846 * Bugs fixed:
6847  637013 gio/gdbusmessage.c fails to compile on Solaris
6848  640192 Error creating a Gio.Settings object through py...
6849  640261 Minimum version for external pcre needs to be..
6850  640262 GActionGroup contains redundant TYPE macros
6851  640436 Make load_user_special_dirs() resistant to non...
6852  640695 g_key_file_load_from_file() mishandles a CR-LF...
6853  640724 can't compile gio due to format string issues
6854  640725 can't compile tests due to format string issue
6855  640807 improve GVariant behaviour with invalid pointers
6856  640823 wrong documentation for g_source_add_child_source
6857
6858 * Translation updates:
6859  Bulgarian
6860  Galician
6861  Hebrew
6862  Norwegian bokmål
6863  Spanish
6864  Traditional Chinese
6865
6866
6867 Overview of Changes from GLib 2.27.91 to 2.27.92
6868 ================================================
6869
6870 * Update to Unicode 6.0
6871
6872 * Update PCRE to 8.12
6873
6874 * Bugs fixed:
6875  637696 g_unix_connection_send_fd() doesn't work
6876  638872 null settings backend bug
6877  640042 GtkApplication's warning about not connecting...
6878
6879 * Translation updates:
6880  Arabic
6881  Basque
6882  Estonian
6883  Greek
6884
6885 Overview of Changes from GLib 2.27.90 to 2.27.91
6886 ================================================
6887
6888 * Bugs fixed:
6889  638838 gdesktopappinfo: Don't crash if we don't have a desktop filename
6890  638894 Splitting on \s* gives no result
6891  639064 Update gschema.dtd
6892  639084 Copy/paste error in GSettings::writable-changed signal
6893  639177 SIGSEGV for GApplications with G_APPLICATION_IS_SERVICE
6894
6895 * Translation updates:
6896  Estonian
6897  Galician
6898  Indonesian
6899
6900
6901 Overview of Changes from GLib 2.27.5 to 2.27.90
6902 ===============================================
6903
6904 * Test reports created by gtester-report can now
6905   include revision information
6906
6907 * The g_desktop_app_info_launch_* family of functions
6908   now emit a DBus signal when an application is launched.
6909   Additionally, there is a new variant
6910   g_desktop_app_info_launch_uris_as_manager(), which
6911   gives more control over the launched process.
6912
6913 * The memory and null GSettings backends are now available
6914   as public API
6915
6916 * g_get_locale_variants() is a new function that returns a
6917   list of variants of a locale identifier
6918
6919 * Bugs fixed:
6920  587898 I/O timeouts for GSocket
6921  606960 gio: Add extension point for informing parties...
6922  631980 Handle an optional <revision> node in the report...
6923  634569 Document that g_variant_builder_add_value consumes...
6924  635998 Make _g_compute_locale_variants public
6925  636806 Add g_{memory,null}_settings_backend_get_default
6926  637262 Need a binary DER version of ::accepted-cas
6927  637544 Skip fsync() on btrfs
6928  637720 void functions should not return a value.
6929  637738 object_interface_check_properties never actually...
6930  637759 GIOChannel: fix a crash in g_io_channel_read_chars()
6931  637852 Updates to glib.vsprops file for MSVC 2008 builds...
6932  637858 Updates to test/testglib.c...
6933  638349 parameter name of g_variant_new_* may conflict...
6934
6935 * Translation updates:
6936  Hebrew
6937  Norwegian bokmål
6938  Simplified Chinese
6939  Spanish
6940  Swedish
6941  Uyghur
6942  Vietnamese
6943
6944
6945 Overview of Changes from GLib 2.27.4 to 2.27.5
6946 ==============================================
6947
6948 * Network support:
6949  - Add g_tls_certificate_verify() to verify a certificate
6950  - Add GTlsConnection:use-system-certdb
6951  - Other TLS api additions
6952
6953 * GIO:
6954  - Add g_io_stream_splice_async()/_finish() to splice two iostreams
6955  - Add g_emblemed_icon_clear_emblems() and make GEmblemedIcon derivable
6956  - Remove GPeriodic; it did not receive the necessary review and
6957    integration work to declare it stable
6958
6959 * GSequence:
6960  - New methods g_sequence_lookup() and g_sequence_lookup_iter()
6961
6962 * Bugs fixed:
6963  617254 Missing g_sequence_lookup
6964  632544 g_dbus_connection_send_message can not send a locked message...
6965  633350 g_hostname_to_ascii() ignores non-ascii dots
6966  634583 Better error reporting for g_variant_parse()
6967  635007 gsetting enum rule don't work for out-of-srcdir builds
6968  635626 GDBus message idle can execute while flushes are pending
6969  636100 Can't read GSettings:backend property
6970  636305 Typo on g_queue_remove_all() function description
6971  636311 appinfo: tweak application positioning for content-types
6972  636351 g_simple_async_result_is_valid lacks a version tag
6973  636387 gdb autoload files shadow the "dir" builtin
6974  636673 g_simple_async_report_error_in_idle should allow object...
6975  637147 Add a "delay-apply" property to GSettings
6976  637171 emblemedicon: add g_emblemed_icon_clear_emblems()
6977  637237 gapplication: plug a memory leak
6978
6979 * Translation updates:
6980  Estonian
6981  Galician
6982  Hebrew
6983  Norwegian bokmål
6984  Simplified Chinese
6985  Spanish
6986  Traditional Chinese
6987  Vietnamese
6988
6989
6990 Overview of Changes from GLib 2.27.3 to 2.27.4
6991 ==============================================
6992
6993 * GIO
6994  - Mounts are treated as hidden if they have a path element
6995    that starts with a dot
6996  - GAppInfo gained API to differentiate between recommended
6997    and fallback mime handlers
6998  - g_cancellable_create_source: creates a GSource that triggers
6999    when the GCancellable is canceled
7000  - GPollableInput/OutputStream: Interfaces for pollable streams
7001  - TLS support has landed, with an extension point that is
7002    implemented in glib-networking
7003
7004 * GLib
7005  - Mainloop sources can now have 'child sources'
7006  - g_get_runtime_dir: New function to return the XDG_RUNTIME_DIR
7007
7008 * Bugs fixed:
7009  530786 GFileMonitor "changed" signal underdocumented
7010  588189 TLS support for GSocket*
7011  630357 g_object_new_valist uses uninitialized memory
7012  630559 typo in public string in gsocks: 'The SOCKSv5 require...
7013  632445 Documentation refers to removed GNOME 2.0 porting guide
7014  634239 Child GSources
7015  634241 Add pollable input/output streams
7016  634504 allow passing a NULL emblem to g_emblemed_icon_new()
7017  634613 unsufficient g_get_user_runtime_dir() documentation
7018  635640 schema should inherit gettext-domain from schemalist
7019  635768 Protect g_file_monitor_set_rate_limit() against negative...
7020  635882 Fix the wrong-category schema test
7021  635187 Wrong type of GVariant received in an action...
7022
7023 * Updated translations:
7024  Galician
7025  Italian
7026  Norwegian bokmål
7027  Uyghur
7028
7029
7030 Overview of Changes from GLib 2.27.2 to 2.27.3
7031 ==============================================
7032
7033 * The GTimeSpec type that was introduced in the 2.27.2 has been
7034   dropped again in favour of APIs that return microseconds as
7035   64-bit integer.
7036   Affected functions:
7037   g_source_get_time
7038   g_periodic_unblock
7039   g_get_monotonic_time
7040   g_get_real_time
7041   The similar GTimeVal struct is still around, but its use is
7042   discouraged.
7043
7044 * GTimer is now using monotonic time unconditionally
7045
7046 * There are some new functions to facilitate error reporting
7047   in async GIO APIs:
7048   g_simple_async_result_take_error
7049   g_simple_async_result_new_take_error
7050   g_simple_async_report_take_gerror_in_idle
7051
7052 * There is new convenience API to us GVariant dictionaries:
7053   g_variant_lookup
7054
7055 * It is now possible to delay sending match rules to the
7056   D-Bus daemon in GDBus:
7057   G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE
7058
7059 * Support has been added for XDG_RUNTIME_DIR:
7060   g_get_user_runtime_dir
7061
7062 * Various fixes for Win64/MSVC builds have been committed
7063
7064 * Bugs fixed:
7065  620263 Add g_clear_object, g_clear_pointer, g_clear_boxed
7066  633075 update Project Files and sources for MSVC 2008/C89
7067  633381 gsettings Makefile rules should handle empty list...
7068  633685 Use g_simple_async_result_{new_,}take_error
7069  633686 Add g_simple_async_report_take_gerror_in_idle
7070
7071 * Translation updates:
7072   Belarusian
7073   Galician
7074   Hebrew
7075   Punjabi
7076   Spanish
7077
7078
7079 Overview of Changes from GLib 2.27.1 to 2.27.2
7080 ==============================================
7081
7082 * GApplication
7083  - Export actions over DBus and support activating them from remote instances
7084  - Support environment passing
7085
7086 * GSettings
7087  - The gsettings utility has a list-recursively command
7088  - The gsettings utility has commandline completion for enum values
7089
7090 * GLib is now linked against librt and uses monotonic time for
7091   timeouts and GPeriod sources. GSource has a new g_source_get_time()
7092   which returns monotonic time, and g_source_get_current_time() has
7093   been deprecated
7094
7095 * Bugs fixed:
7096  158725 free linked list with data
7097  626320 GVariant: Avoid locking in g_variant_get_child_value() if possible
7098  629247 add gsimpleasyncresult methods to take over a GError
7099  629274 GNetworkService does not do fallback when there is no SRV record
7100  631264 gsettings-tool choice/range support
7101  631482 g_date_time_from_instant: 1000000000000000000
7102  632169 docs for manual use of gsettings-data-convert
7103  632571 Add equivalent to gconftool-2's -R option
7104  633115 GSettings m4 doesn't fail the build for broken schemas
7105  633206 Default g_application_local_command_line() doesn't set exit_status...
7106  633339 support more complex gapplication setups
7107  633356 Make timeout G_MAXINT mean "no timeout"
7108
7109 * Translation updates:
7110  Catalan (Valencian)
7111  Indonesian
7112  Japanese
7113
7114
7115 Overview of Changes from GLib 2.27.0 to 2.27.1
7116 ==============================================
7117
7118 * GDateTime now has full week number support.
7119   New API: g_date_time_get_week_numbering_year
7120
7121 * The GSettings schema compiler will now skip over
7122   broken .xml schema files instead of aborting altogether
7123
7124 * GSettings now works properly on bigendian systems
7125
7126 * GSettings has more complete support for ranges
7127   New API:
7128     g_settings_get_range
7129     g_settings_range_check
7130   The gsettings commandline tool supports ranges too.
7131
7132 * GApplication has been rewritten; see the API docs for details
7133   and examples. The action support is not complete yet.
7134
7135 * The GLib mainloop has gained 'dispatch to context' functionality,
7136   which can replace manually created idles in many cases.
7137   New API:
7138     g_main_context_invoke
7139     g_main_context_invoke_full
7140
7141 * The gio-desktop-app-info-lookup extension point has been
7142   removed from GIO. GIO now uses x-scheme-handler mimetypes when
7143   looking for default applications.
7144
7145 * On win32, make g_get_user_data_dir() return the CSIDL_LOCAL_APPDATA
7146   folder on Windows, and not CSIDL_PERSONAL. This matches what Qt does,
7147   and has been widely requested. Also make g_get_user_config_dir() return
7148   this and not the (roaming) CSIDL_APPDATA folder.
7149
7150 * A periodic event clock has been added in GIO: GPeriodic. Note that this
7151   API is still experimental and expected to undergo changes before it
7152   will be incorporated into a stable GLib release. Use at your own risk.
7153
7154 Bug fixes:
7155  613822 gobject signal connect/disconnect not thread safe
7156  618737 "dispatch to context" functionality
7157  620710 g_get_user_data_dir() uses CSIDL_PERSONAL and not CSIDL_APPDATA
7158  623400 acquire context before dispatching
7159  627126 gsettings schema files don't get installed on FreeBSD
7160  627171 g_socket_new_from_fd() doesn't set the right protocol
7161  628876 Wrong error description
7162  628937 gracefully handle broken schemas
7163  629274 GNetworkService doesn't fallback when there is no SRV record
7164  629289 g_error() used wrong, produces core dump
7165  629687 leaks class refcount in gsocketcontrolmessage
7166  629849 GLib-CRITICAL **: g_source_get_context: assertion `!SOURCE_...
7167  629945 GDBus deadlock in g_bus_get_sync()
7168  630000 g_date_time_difference
7169  630077 GDateTime week number support
7170  630185 Allow NULL strings in g_quark_try_string()
7171  630797 docs mention non-existent g_object_dispose()
7172  630968 gschema-compile problems on power g5
7173  631263 GSettings needs range/choice APIs
7174  631264 gsettings-tool choice/range support
7175  631379 GDBus nonce-tcp test failing
7176  631410 Port gapplookupgconf.c to using x-scheme-handler/
7177  632884 Possible deadlock in g_object_remove_toggle_ref()
7178
7179 Transation updates:
7180  Basque
7181  Brazilian Portuguese
7182  British English
7183  Bulgarian
7184  Czech
7185  Dutch
7186  Estonian
7187  French
7188  Galician
7189  German
7190  Greek
7191  Hebrew
7192  Hungarian
7193  Japanese
7194  Lithuanian
7195  Polish
7196  Portuguese
7197  Romanian
7198  Simplified Chinese
7199  Slovenian
7200  Spanish
7201
7202
7203 Overview of Changes from GLib 2.25.15 to GLib 2.27.0
7204 ====================================================
7205
7206 Build:
7207   - massive restructuring to reduce #include abuse
7208   - tweaks to silence some harmless compiler warnings
7209   - rename gschema-compile.c to glib-compile-schemas.c
7210   - Windows fixes
7211   - fix building with zlib < 1.2.4 on win32
7212
7213 GDateTime:
7214   - better msgctxt for translating month and weekday names
7215   - API is changed quite a lot, implementation is improved
7216   - GTimeZone is now exposed
7217
7218 GObject:
7219   - make ordering for overridden interface properties consistent
7220   - ->priv structures are limited to 64k but this was not documented,
7221     and exceeding this limit produced bad results.  Add docs and enforce
7222     the limit properly.
7223   - add g_object_class_install_properties() to install multiple
7224     properties in one go
7225   - improve debugging output for GValue containing G_TYPE_STRV
7226
7227 GIO:
7228   - fix priority sorting of GIO extensions
7229   - add GCredentials support on FreeBSD
7230   - fix support for IPv6 addresses in URI parsing functions
7231   - GSocketClient fixes for when g_socket_connect succeeds immediately
7232   - clarify string encoding for GFile constructors in docs
7233   - new functions g_data_input_stream_read_upto{,async,finish}
7234   - tweak confusing documentation for g_output_stream_write()
7235
7236 GDBus:
7237   - GDBusMessage can now be locked and copied (like in libdbus)
7238   - GDBusConnection filter function API has changed again
7239   - GDBusServer: ::new-connection now declares if the connection was claimed
7240   - add a partial workaround for GObject bug 627724.
7241   - very many memory leaks fixed
7242
7243 GVariant:
7244   - check for size == 0 in g_variant_get_bytestring to avoid a crash
7245     when attempting to get_bytestring() from an empty array
7246   - improve gobject-introspection annotations
7247
7248 GSettings:
7249   - add GSettings Windows registry backend
7250   - some internal tweaks to the backend API
7251   - remove g_settings_list_items
7252   - add g_settings_list_children and _list_keys to replace it
7253   - add schema compiler restrictions for dealing with lists
7254   - don't automatically emit value changed signals on writability
7255     changes
7256
7257 Other:
7258   - constify the 'parser' vtable param to g_markup_parse_context_push()
7259   - plug many memory leaks in test cases
7260
7261 Bugs closed:
7262   50076 Time API to go with date API
7263  584284 g_data_input_stream_read_until_async different from sync version
7264  624546 Modification of GDBusMessage in filter function
7265  626919 Let g_object_class_install_property() return the installed GParamSpec*
7266  628029 GDateTime missing get_week_of_year method
7267  628253 Interface properties not listed in a consistent order
7268  628331 Plug lots of mem leaks in gio test suite
7269  628345 Plug a mem leak
7270  628436 Plug a mem leak
7271  628505 Fix building with zlib < 1.2.4 on win32
7272  628839 [PATCH] datetime: Rename shadowing variables
7273  628904 [PATCH] Add credential support for FreeBSD and fix a socket issue
7274  628952 incorrect glib_major_version and other variables on cygwin.
7275  629192 g_strdup_value_contents(): dump GStrv more usefully
7276  629251 g_socket_client_async_connect_complete: assertion failed
7277  629259 Failed to connect to "::1"
7278  629328 g_markup_parse_context_push doesn't respect const structs
7279  629429 month "May" short and full form same with "GDateTime" msgctxt
7280  629689 GDBusConnection leaks its GCredentials
7281  629698 Segfault in g_variant_get_bytestring() 
7282
7283 Updated translations:
7284   Arabic
7285   Armenian
7286   Basque
7287   British English
7288   Czech
7289   Finnish
7290   Galician
7291   German
7292   Hungarian
7293   Indonesian
7294   Japanese
7295   Lithuanian
7296   Norwegian bokmål
7297   Polish
7298   Portuguese
7299   Punjabi
7300   Simplified Chinese
7301   Slovenian
7302   Spanish
7303   Swedish
7304   Swedish
7305   Traditional Chinese
7306
7307 Overview of Changes from GLib 2.25.14 to GLib 2.25.15
7308 =====================================================
7309
7310  * GIO
7311   - Memory leak fixes
7312   - The GZip(De}Compressor can now process header information
7313   - Support for network proxies has been added, with the GProxy
7314     interface and the gio-proxy-resolver extension point. GIO
7315     includes SOCKSv4 and SOCKSv5 implementations, and libproxy
7316     is also going to provide an implementation of this extension
7317     point.
7318   - There are GAction and GActionGroup interfaces now, which will
7319     be used in GApplication in the near future.
7320
7321  * GObject
7322   - There are now convenience macros for defining boxed and
7323     pointer types
7324
7325  * GDBus
7326   - Memory leak fixes
7327   - GDBusProxy for well-known names can now auto-restart
7328     the service if the name owner disapperas
7329   - Filter functions are now allowed to modify messages
7330
7331  * GLib
7332   - GDateTime is a replacement for GDate that supports time
7333     and timezone information.
7334
7335  * Bugs fixed:
7336   50076 Time API to go with date API
7337  449565 Add G_DEFINE_BOXED_TYPE()
7338  617691 Add GZIP header processing to GZlibCompressor/GZlibDecompressor
7339  622184 add g_memory_output_stream_steal_data
7340  624546 Modification of GDBusMessage in filter function
7341  627088 Build failure in gdbus-peer.c on FreeBSD
7342  627181 save a memdup
7343  627182 Plug a mem leak in the gdbus-connection test
7344  627187 Plug some gdbus mem leaks
7345  627188 gdbus-non-socket test occasionally fails
7346  627252 G_OPTION_FLAG_NO_ARG is only for callback options
7347  627392 gdbus commit 8a3a4596 breaks win32 compile
7348  627407 FTBFS on !linux UNIX platforms
7349  627604 String error: 'that' twice in a row
7350  627969 ABR in g_file_open_tmp
7351  628084 gdbus-peer fails with assertion
7352  628193 Miscellaneous string fixes
7353  628296 abort() in gsocketconnection.c
7354  628309 Plug a mem leak in GConverterOutputStream
7355  628317 GEmblemedIcon:equal implementation is buggy
7356  628323 Fix invalid reads
7357  628327 Plug a mem leak
7358  628328 Plug a mem leak
7359  628329 Don't leak the FD list
7360  628324 Invalid reads in gdbus-export test
7361
7362  * Updated translations:
7363   British English
7364   Danish
7365   Galician
7366   Hebrew
7367   Punjabi
7368   Serbian
7369   Spanish
7370   Traditional Chinese
7371
7372
7373 Overview of Changes from GLib 2.25.13 to GLib 2.25.14
7374 =====================================================
7375
7376 * GDBus
7377  - Make the closure variants of GDBus apis work
7378  - Make error unregistration work
7379  - Use async IO in the IO thread (626748)
7380
7381 * GIO
7382  - Make g_simple_async_result_is_valid work without source (626208)
7383  - GSocketClient: add a timeout property
7384  - Fix memory leaks in GSocketClient
7385  - Handle async vs. sync correctly in GSocketConnection stream (616458)
7386  - Declare stream base classes as abstract
7387  - Clarify semantics of g_output_stream_write() (627071)
7388
7389 * Other
7390  - Improve test coverage for GDBus, GRegex, GAsyncResult
7391  - Drop dead code in pcre, xdgmime
7392  - Fix a race condition in gtester (578295)
7393  - Avoid an extra allocation in GAsyncQueue (626704)
7394  - Add test case for non-socket GIOStream (626841)
7395  - More explicit GVariant docs (622770)
7396  - Imroved docs for GAsyncInitable and GSimpleAsyncResult (602417)
7397
7398 * Translation updates:
7399  - Galician
7400  - Norwegian bokmål
7401  - Punjabi
7402  - Simplified Chinese
7403  - Swedish
7404
7405
7406 Overview of Changes from GLib 2.25.12 to GLib 2.25.13
7407 =====================================================
7408
7409 +-------------------------------------------------------------------+
7410 |   WARNING: There have been no breaks in API or ABI.  Weird, eh?   |
7411 +-------------------------------------------------------------------+
7412
7413 The primary purpose of this release is to fix a serious problem with
7414 glib 2.25.12: glibconfig.h (as generated on a Fedora amd64 system) was
7415 being distributed in the tarball.  It was being used to build some parts
7416 of glib on other systems (eg: 32bit ones).  This was causing some very
7417 serious problems.
7418
7419 There have been many other improvements, however:
7420
7421  Build and testing:
7422   - vastly improved test coverage
7423   - old tests moved to the gtester framework
7424   - gtester Makefile modified so that the tests only run once
7425   - cleanup of how we handle includes while building glib
7426
7427  GVariant:
7428   - add a g_return_if_fail (utf8) to g_variant_new_string()
7429
7430  GDBus:
7431   - perform extra sanity checks when serialising messages
7432   - add API to query and set the byteorder of a GDBusMessage
7433   - improve debug output, add some extra options
7434   - if exiting due to the bus disconnecting us, print an error message
7435     explaining why
7436   - sort property names correctly
7437   - don't bother sending RemoveMatch when we will close the connection
7438     anyway
7439   - use effective uid/gid for credential passing
7440
7441  GSettings:
7442   - add G_SETTINGS_BIND_INVERT_BOOLEAN for inverting boolean bindings
7443     without mapping functions
7444   - mark all strings in the schema compiler for translation
7445
7446  Binding:
7447   - improve closure support for bindings
7448   - copy GSettings INVERT_BOOLEAN flag
7449
7450  Other:
7451   - fix another complicated GCancellable deadlock possibility
7452
7453 Bugs closed:
7454  599590 glib build doesn't look for correct pkg-config
7455  619026 avoid warning in gutils.h when using gcc with -Wconversion
7456  624739 Please fix POTFILES.in
7457  625472 Valgrind claims uninitialized bytes used
7458  625500 g_date_set_time_val documentation doesn't mention local time
7459  625628 GDBusProxy: wrong property name sorting
7460  625753 Incorrect flags used in g_dbus_connection_call_sync()
7461  625827 Expand documentation about error quark naming
7462  625988 builddir != srcdir issues
7463  626107 glibconfig.h is being disted
7464
7465 Updated translations:
7466  French
7467  Galician
7468  Hebrew
7469  Norwegian bokmål
7470  Spanish
7471
7472
7473 Overview of Changes from GLib 2.25.11 to GLib 2.25.12
7474 =====================================================
7475
7476 +-------------------------------------------------------------------+
7477 | WARNING: There have been many API changes in GDBus -- sending     |
7478 | messages, subscribing to signals, closing connections and         |
7479 | registering subtrees are affected.  The ABI for GSettingsBackend  |
7480 | has also been changed.  For both reasons, a new dconf release is  |
7481 | required (and will be along soon).                                |
7482 +-------------------------------------------------------------------+
7483
7484 Build:
7485   - cleanup automake setup
7486   - rename configure.in to configure.ac
7487   - various docs fixups
7488   - move glibconfig.h to glib/
7489   - disable dtrace support on Mac OS (which has incompatible 'dtrace')
7490
7491 GSettings:
7492   - add support for vendor override files (to change the default values
7493     in a schema)
7494   - change GSettingsBackend vtable
7495   - add g_settings_reset()
7496   - support binding to G_TYPE_STRV properties
7497
7498 GDBus:
7499   - many bug fixes, including a serialisation fix
7500   - stop handling incoming connections as soon as stop() is called
7501   - proper support for file descriptor passing
7502   - new flags parameter for sending messages
7503   - new flags parameter for subscribing to signals
7504   - always reset the message serial when sending a message unless
7505     G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL is given
7506   - constness fixes for introspection structures
7507   - clean ups to subtree registration API
7508
7509 Other:
7510   - fix divide by zero bug in g_malloc_n functions
7511   - GIO: don't blindly assume that SOCK_CLOEXEC is supported
7512   - make GObject property notify freezes threadsafe
7513   - GIO: clean up credentials passing
7514   - GApplication: make default-quit not apply if register=FALSE
7515   - GIO: add annotations for gobject-introspection
7516
7517 Bugs closed:
7518  166020 use GAtomic for refcounting
7519  617483 Credentials passing
7520  622005 [GApplication] no way to modify the "default-quit" property
7521  623293 vendor override files
7522  623810 Message serialization bug
7523  623815 Don't check sender for GDBusProxy objects where name is not set
7524  624473 GDBusSubtreeIntrospectFunc return type
7525  624483 GDBusSubtreeEnumerateFunc clarification
7526  624484 GDBusSubtreeDispatchFunc clarification
7527  624754 gdbusaddress.c missing sys/wait.h
7528  624968 div by zero in g_malloc_n family
7529  624991 GSettings mapping for G_TYPE_STRV 
7530  625383 Add missing GI annotations
7531
7532 Updated Translations:
7533  Armenian
7534  Galician
7535  German
7536  Hebrew
7537  Kazakh
7538  Romanian
7539  Simplified Chinese
7540  Spanish
7541
7542 Overview of Changes from GLib 2.25.10 to GLib 2.25.11
7543 =====================================================
7544
7545 +-------------------------------------------------------------------+
7546 | WARNING: There have been minor API changes in GDBus and GVariant. |
7547 | These API changes will not affect many users, but they do require |
7548 | a new version of GTK+ to be installed.                            |
7549 +-------------------------------------------------------------------+
7550
7551 Build:
7552   - add a --disable-Bsymbolic configure flag to disable linking with
7553     -Bsymbolic-functions
7554   - this release sees the complete removal of the old 'g*alias' hacks
7555   - honour the NOCONFIGURE environment variable from autogen.sh
7556   - use proper feature test macros for isnan
7557   - use pkg-config to check for zlib
7558   - add ACLOCAL_AMFLAGS to Makefile.am
7559
7560 GDBus:
7561   - hide Class and instance structures for all GDBus types except
7562     GDBusProxy.  This breaks API by preventing subclassing, but probably
7563     nobody was doing that.
7564   - add new GDBusConnection call to support flushing all pending
7565     outgoing messages
7566   - change the register_object API to add a reference to the
7567     GDBusInterfaceInfo object so the caller need not keep it alive
7568     themselves
7569   - don't rewrite the serial number when sending messages that already
7570     have a serial number
7571   - better error checking for DBUS_SESSION_BUS_ADDRESS environment
7572     variable
7573   - switch to g_parse_debug_string for G_DBUS_DEBUG and add a lot of new
7574     flags
7575   - add support for temporarily freezing a freshly created
7576     GDBusConnection.  Do this until after the ::new-connection signal
7577     has finished running on GDBus services.
7578   - never require non-closed connections (the user is incapable of doing
7579     this due to the obvious race)
7580   - remove weird/misleading redundant check on NameOwnerChanged signal
7581   - emit GDBusProxy::g-properties-changed on NameOwnerChanged
7582
7583 GVariant:
7584   - the 'g_variant_{new,get}_byte_array' APIs have been removed
7585   - g_variant_{new,get,dup}_bytestring has been added, with different
7586     arguments and different behaviour
7587   - g_variant_{new,get,dup}_bytestring_array has been added, doing
7588     essentially the same thing as the 'strv' functions, but with byte
7589     strings instead of utf8 strings
7590   - G_VARIANT_TYPE_BYTESTRING ('ay'), BYTESTRING_ARRAY ('aay') and
7591     STRING_ARRAY ('as') constants have been added
7592   - the undocumented behaviour that g_variant_get_strv() deserialised
7593     arrays of object paths or signature strings has been dropped
7594   - additional varargs support for converting bytestrings or bytestring
7595     arrays with ^ay ^aay ^&ay and ^a&ay
7596   - improved gobject-introspection annotation
7597   - fix a problem with GBuffer calling g_slice_free for the wrong type
7598   - fix leaks in the type inferencing code of the parser
7599
7600 GSettings:
7601   - improved documentation
7602   - updated schema XML DTD, now xincluded into the docs
7603   - added support for schemas that extend other schemas (using the
7604     'extends=' attribute).  Values of keys in the base schema can be
7605     overridden using <override>.
7606   - added theoretical support for lists (using the 'list-of=' attribute)
7607   - lots of new tests
7608   - add support for flags (implemented similarly to enums)
7609   - add support for generating .enums.xml files to gsettings.m4:
7610       gsettings_ENUM_NAMESPACE = org.example.myapp
7611       gsettings_ENUM_FILES = ../path/to/*.h
7612     will generate org.example.myapp.enums.xml with mappings for all
7613     enums and flags in the specified .h files.
7614   - warn with g_message() if the 'memory' backend is used by default
7615     (ie: because no other GSettings backends are installed)
7616   - fix get_property() for GSettings::schema
7617   - command line tool: fix a bug that prevented non-basic values from
7618     being set due to a premature free
7619   - command line tool: bash completion support
7620   - chain up in _finalize
7621   - add a new g_settings_get_mapped API to read settings that require
7622     post-processing
7623   - retry with the translated or schema default value if the
7624     GSettingsBindGetMapping function fails
7625   - schema compiler: never fail due to empty schema directories (but
7626     warn)
7627   - peek rather than ref/unref the GEnumClass in the mapping function
7628   - schema compiler: compile *.enums.xml before *.gschemas.xml to ensure
7629     that we have all the enums that the schemas may reference
7630   - schema compiler: improve accuracy of line numbers in error reports
7631   - fix crashes in the keyfile backend caused by invalid group names in
7632     the keyfile
7633
7634 Other:
7635   - always intern GBinding prop names
7636   - base64: remove asserts preventing conversion of empty strings
7637   - document NULL special-cases for GValueArray
7638   - GNode docs improvements
7639   - improve detection of 'system internal' mounts
7640   - fix leaks in the inotify GFileMonitor implementation
7641   - annotate all custom GIO GSources to improve debugging (e.g. using
7642     SystemTap)
7643
7644 Tests:
7645   - Turn on glibc malloc checking features for make check
7646   - improvements for GSettings tests, plus new tests
7647   - improved tests for GKeyfile
7648   - new tests for GDir, GSList, GSList, GAppLaunchContext,
7649     CharsetConverter, GIcon, ...
7650   - move some tests to GTester (tree tests, uri tests)
7651   - generally, really an awful lot of new tests
7652   - don't try to allocate 2gigs of memory anymore for the array test
7653
7654  552363 g_value_array_{insert,prepend,append}'s special cases for NULL
7655  561248 Improve return value description from g_node_prev/next_sibling()
7656  570036 Add ACLOCAL_AMFLAGS to Makefile.am
7657  576833 g_sprintf add a reference to g_strdup_printf
7658  576854 g_strconcat() documentation should provide a hint about bad l10n
7659  582227 reference: add other URI functions to 'URI Functions' section
7660  599223 should provide g_spawn_* variants that take a GAppLaunchContext
7661  610784 array test failing
7662  613057 Leak in inotify GFileMonitor implementation
7663  620536 Annotate all custom GIO GSource using g_source_set_name
7664  620913 More control with G_DBUS_DEBUG
7665  622124 implement flags
7666  622127 GSettings extended key validation
7667  622128 retry with default value for failed mapping
7668  622294 More annotations for GVariant
7669  622565 glib-compile-schemas fails when no schemas
7670  622600 Fix missing prototype warning
7671  622813 gsettings mapping & enum buglet
7672  623142 Ensure ::new-connection runs before processing D-Bus messages
7673  623143 Never require non-closed connections
7674  623319 use g_parse_debug_string for dbus debug flags
7675  623401 process enums first
7676  623402 schema compiler reports wrong line numbers
7677  623407 g_keyfile_settings_backend_new crashes with the key "/"
7678  623473 zlib should be checked with pkg-config
7679  623537 GDBusProxy has weird checking on NameOwnerChanged
7680  623538 GDBusProxy::g-properties-changed emission for corner cases
7681  623692 directory with file at multiple MLS levels may display empty
7682  623720 gschema.dtd does not contain enum definitions
7683  623770 quoting of expand_macro in gdesktopappinfo.c
7684  623772 gdesktopappinfo.c, function child_setup
7685  623780 g_unix_is_mount_path_system_internal
7686  623954 g_settings_finalize
7687  623955 Dubious return values
7688
7689 Updated translations:
7690  Galician
7691  Hebrew
7692  Norwegian bokmål
7693  Spanish
7694
7695 Overview of Changes from GLib 2.25.9 to GLib 2.25.10
7696 ====================================================
7697
7698 +----------------------------------------------------------------+
7699 | WARNING: There have been API changes in GDBus. Users of these  |
7700 | APIs will need to be adapted.  In particular, a new release of |
7701 | dconf is required to go along with this one.  There has also   |
7702 | been a change in the GSettings backend API used for keyfiles.  |
7703 +----------------------------------------------------------------+
7704
7705 * GDBus:
7706  - add direction parameter to filter functions (API change)
7707  - allow calling other interfaces with a GDBusProxy
7708  - padding added to class struct fields (ABI change)
7709  - fixes for closures-based functions
7710
7711 * GVariant:
7712  - new is_floating() call
7713  - add g_value_take_variant() call (required for marshallers)
7714
7715 * GSettings:
7716  - support for binding GParamSpecEnum properties
7717  - ifelse-style condition support for GLIB_GSETTINGS m4 macro
7718  - remove gsettings-schema-convert tool (now in GConf)
7719  - allow introspection of all installed schemas
7720  - allow introspection of the keys in a schema
7721  - rewrite keyfile backend (API change)
7722
7723 * GNIO:
7724  - don't implicitly close GSocket until it is destroyed
7725  - windows fixups
7726
7727 * Other:
7728  - allow GChecksum to take (NULL, 0) for data/length
7729  - GRelation and GCompletion are now deprecated
7730  - introduce G_PARAM_DEPRECATED and G_ENABLE_DIAGNOSTIC
7731  - add working directory to GApplication platform data
7732  - lots of documentation cleanups
7733  - PCRE updated to 8.02
7734
7735 * Build:
7736  - the IA__g_* style symbol aliasing has been disabled and replaced with
7737    the -Bsymbolic-functions linker flag on platforms that support it.
7738    Please be on the watch for portability issues and report them to us.
7739  - many test cases have been moved to the GTester framework
7740  - lcov support has been added for tests
7741  - many windows fixes
7742
7743 * Bugs fixed:
7744  501057  lcov coverage suite and GLib integration
7745  551271  deprecate GRelation
7746  601686  Implement diagnostic mode
7747  603309  GSocketOutputStream broken on Windows (?)
7748  616718  GLIB_GSETTINGS macro can't be used conditionally
7749  616855  GSocketConnection: don't close the socket if it's still reffed
7750  618866  g_ptr_array_remove_index_fast memory leak
7751  619878  keyfile backend calls keys_changed with invalid argument
7752  619879  keyfile backend doesn't make use of expected_type
7753  621092  Add with_closures() variants for bindings
7754  621172  Cross compiling fails
7755  621838  Actually add cwd to platform data
7756  621945  Filter outgoing messages in GDBusConnection
7757  621947  add g_value_take_variant
7758  622038  GSettings: "It is a programmer error" documentation is unclear
7759  622154  [patch] update documentation for g_application_new
7760  622281  binding: Add SYNC_CREATE to the flags
7761  622480  Improve documentation for g_strcmp0()
7762  622554  g_error called if schema not installed
7763  622601  Return interned strings from g_settings_list_keys
7764
7765 * Translation updates:
7766  - Galician
7767
7768 Overview of Changes from GLib 2.25.8 to GLib 2.25.9
7769 ===================================================
7770
7771 +----------------------------------------------------------------+
7772 | WARNING: There have been API changes in GDBus, GSettings and   |
7773 | GApplication. Users of these APIs will need to be adapted. In  |
7774 | particular, a new release of GTK+ is required to go along with |
7775 | this one.                                                      |
7776 +----------------------------------------------------------------+
7777
7778 * GDBus
7779  - Use Gio's default async implementation
7780  - Fix proxy construction for objects with no properties
7781  - Fix error handling in synchronous initialization
7782  - Do not dispatch calls to unregistered objects
7783  - Add _with_closures alternative functions
7784  - Allow constructing GDBusProxy with well-known names
7785  - Remove GType parameters from GDBusProxy constructors
7786  - Nuke g_bus_watch_proxy API
7787  - Add --xml to gdbus-tool to print raw introspected XML
7788
7789 * GSettings
7790  - schema file format change: store (default, options) in gvdb
7791  - Add g_settings_sync()
7792  - Add support for enums and ranges
7793  - 'context' support has been replaced by direct use of
7794    GSettingsBackend
7795
7796 * GApplication
7797  - Switch to using variants for timestamps
7798  - Use GInitable
7799
7800 * GObject
7801  - Introduce g_object_notify_by_pspec
7802  - Add GBinding
7803  - The GVariant gtype G_TYPE_VARIANT was changed from boxed
7804    to fundamental. We believe there were no existing users
7805    of the boxed type, so this should not cause any applications
7806    to break.
7807
7808 * Test framework
7809  - Add package and version to the test report XML
7810  - Use optparse to parse gtester-report commandline
7811  - Add subunit support to gtester-report
7812  - Prevent division by zero if no tests
7813
7814 * Bugs fixed:
7815  621782 Crash using gbinding
7816  619945 GConverterOutputStream triggers assertion and corrupts data
7817  621319 more leaked GVariants in GSettings
7818  621168 GKeyFile memory leak on Windows platform
7819  621002 Switch to using variants for timestamps, split out signals
7820  620953 tiny docs addition
7821  618904 Lies in gunixmounts documentation
7822  621702 Correctly initialize GError
7823  611778 minor cleanup of gtester-report
7824  621213 GDBusProxy and well-known names
7825  621034 Rewrite apps test to ensure children are killed
7826  620954 gapplication gvariant simplifications
7827  611869 add subunit out feature to gtester-report
7828  621119 GDBusProxy and objects with no properties
7829  620990 Use Gio's default async implementation again
7830  620952 g_application_register_with_data is an ugly API
7831  621252 GSettings leaks context
7832  618715 fork() in GSettings test cases is problematic 618715
7833  621905 Assume a ref when doing async work
7834  621266 GSettings "context" clarification
7835
7836 * Translation updates:
7837  Chinese
7838
7839
7840 Overview of Changes from GLib 2.25.7 to GLib 2.25.8
7841 ===================================================
7842
7843 * Initial support for dtrace and systemtap profiling:
7844  - mainloop sources can be named
7845  - probes for memory allocation with g_malloc and gslice
7846  - gquark name tracking
7847  - type creation
7848  - object life-cyle (creation, finalization, ref, unref)
7849  - signal creation and emission
7850
7851 * GVariant
7852  - has been fixed to work with the FreeBSD malloc
7853  - added introspection annotations
7854  - new function: g_variant_builder_add_parsed
7855
7856 * GSettings:
7857  - g_settings_set/get_strv functions have lost their length parameter
7858  - g_settings_set_strv accepts NULL
7859  - added introspection annotiations
7860
7861 * GPermission: an abstract interface for representing permissions,
7862   with a minimal implementation named GSimplePermission
7863
7864 * GApplication: a basic application support class, with a D-Bus based
7865   implementation
7866
7867 * Bugs fixed:
7868  619585 glib-compile-schemas asserts on FreeBSD
7869  620384 Annotate GVariant and GSettings _strv() functions
7870  606044 Add support for dtrace/systemtap static markers
7871  620350 add g_variant_builder_add_parsed() API
7872  620349 utf8ify GVariant printer
7873  620767 Typo in GSettings documentation: "INTLTOOL_NOMERGE_RULE"
7874  620312 Fix g_settings_[gs]et_strv() API
7875  620519 GPermission
7876  620582 GPermission needs a simple implementation
7877  620496 GSettings schema compiler should reject invalid paths
7878  620173 missing single header inclusion guards
7879  620265 g_assertion_message_error should take const GError *
7880
7881 * Translation updates:
7882  Esperanto
7883  Galician
7884  Hebrew
7885  Indonesian
7886  Norwegian bokmål
7887  Slovenian
7888  Spanish
7889
7890
7891 Overview of Changes from GLib 2.25.6 to GLib 2.25.7
7892 ===================================================
7893
7894 * NOTE: API/ABI breaks since 2.25.6 release:
7895   - g_dbus_connection_sync{,_sync} takes a new 'reply_type' argument
7896   - GSettingsBackendClass 'list' virtual function changed
7897
7898   GSettings backends and things using GDBus may need to be rebuilt.
7899
7900 * GDBus: many build-related fixes
7901
7902 * GDBus (service): return a DBus error when receiving a method call for
7903   an unknown interface.
7904
7905 * GSettings: fix 'make install' bug in gsettings.m4 for generated schema
7906   files
7907
7908 * GSettings: avoid non-portable use of LC_MESSAGES
7909
7910 * better approach to handling man pages
7911
7912
7913 * Bugs fixed:
7914  619527 please improve docs on g_file_make_symlink
7915  619391 send-with-reply should have expected result signature
7916  618616 Use stack-allocated GVariantBuilders
7917  617004 Build with "--disable-nls" fails under MinGW/Win32
7918  619142 Build fixes (GDBus)
7919
7920 * Updated translations:
7921  Estonian
7922  Galician
7923  Norwegian bokmål
7924
7925 Overview of Changes from GLib 2.25.5 to GLib 2.25.6
7926 ===================================================
7927
7928 * GDBus: introspection improvements
7929 * GDBus: build fixes
7930
7931 * GSettings: GSettingsBackend ABI changed               **** NOTE ****
7932 * GSettings: --uninstall option for schema compiler
7933 * GSettings: new m4 macro with more power
7934 * GSettings: thread support
7935
7936 * rework of file notification on Solaris
7937 * fixes for gold linker
7938
7939 * Bugs fixed:
7940  619038 increase gsettings.m4 power
7941  619031 method-calls-in-thread test failing
7942  618839 Typo at translation message
7943  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
7944  618730 gunixcredentialsmessage.c doesn't compile on GNU/kfreebsd
7945  616314 Make GSettings (partially) threadsafe
7946
7947 * Updated Translations:
7948  Indonesian
7949  Galician
7950  Spanish
7951
7952 Overview of Changes from GLib 2.25.4 to GLib 2.25.5
7953 ===================================================
7954
7955 * GDBus: Fix serialization of empty arrays
7956
7957 * GDBus: Plug various memory leaks
7958
7959 * GSettings: Fix problems with GSETTINGS_CHECK_RULE
7960
7961 * Bugs fixed:
7962  616731 GSETTINGS_CHECK_RULE doesn't work in non-srcdir builds
7963  616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
7964  618615 mem leaks in parse_value_from_blob
7965  618622 Plug some mem leaks in gdbus
7966  618650 Plug a mem leak in gdbusauth
7967  618663 Plug mem leaks in gdbus tests & examples
7968
7969 * Updated translations:
7970  Spanish
7971
7972
7973 Overview of Changes from GLib 2.25.3 to GLib 2.25.4
7974 ===================================================
7975
7976 * GDBus D-Bus support has been merged. This provides an API
7977   to replace dbus-glib
7978
7979 * GVariant no requires strings to be UTF-8. You can use byte
7980   arrays for non-UTF-8 strings.
7981
7982 * GSettings allows to bind string properties to byte arrays
7983
7984 * The schema compiler supports range restrictions
7985
7986 * Bugs fixed:
7987  618051 socket-server|client.c fail to compile under AIX...
7988  616102 GSettings ignores <choice> and <range>
7989  616720 Chunked quark allocation
7990  616877 Several issues with g_socket_receive_message
7991  616892 gio: Add a boxed type for GFileAttributeMatcher
7992  616967 Add g_regex_get_compile_flags() and g_regex_get_match_flags()
7993  617767 g_settings_[gs]et_strv() 'length' argument has missing docs...
7994  617914 gtester-report: cope with binaries with no test cases
7995  617937 output_stream_close vs output_stream_close_async semantics
7996  615494 Connction timeouts produce partially invalid error messages
7997  617823 glib-compile-schemas problems with an out of source build
7998  617947 glib-mkenums: add @valuenum@ support
7999
8000 * Translation updates:
8001  Galicaian
8002  Norwegian bokmål
8003  Shavian
8004  Spanish
8005
8006
8007 Overview of Changes from GLib 2.25.2 to GLib 2.25.3
8008 ===================================================
8009
8010 * New macro: G_GNUC_DEPRECATED_FOR, a variant of G_GNUC_DEPRECATED
8011   that lets you add replacement information (requires gcc 4.5)
8012
8013 * Rename AM_GSETTINGS autoconf macro to GLIB_GSETTINGS
8014
8015 * Rename gschema-compile utility to glib-compile-schemas
8016
8017 * Add support for timeouts in GSocket
8018
8019 * Bugs fixed:
8020  589989 Compilation error on Solaris 9
8021  616648 Change AM_GSETTINGS macro to GLIB_GSETTINGS
8022  587898 I/O timeouts for GSocket
8023  614541 Add G_TYPE_ERROR boxed type for GError
8024
8025
8026 Overview of Changes from GLib 2.25.0 to GLib 2.25.2
8027 ===================================================
8028
8029 * Include a 'gsettings' utility, for commandline access to GSettings
8030
8031 * Install a AM_GSETTINGS autoconf macro similar to AM_GCONF
8032
8033 * GSettings can bind the writability of a key explicitly
8034
8035 * There is now a predefined boxed type for GError
8036
8037 * Bugs fixed:
8038  615379 g_new macros crash if sizeof(struct_type) == 0
8039  616312 Add m4 rule equivalent to GCONF_SCHEMAS_INSTALL
8040  616295 mapping bug for uint64
8041  616216 glib compile from remote directory fails
8042  615960 Fix size passed to connect() for abstract sockets
8043  616432 Crash in gschema-compile
8044  616331 gsettings-schema-convert uses imaginary types
8045  616309 gsettings-schema-convert should output gettext-domain
8046  616384 Add mention of GConfBridge in conversion docs
8047  616311 gschema-compile outputs in current directory
8048  616276 simplify gschema-compile test setup
8049  616156 keys with unnecessary empty options arrays
8050  616405 gsettings missing g_return_if_fail's
8051  616245 Use G_DEFINE_INTERFACE macro
8052  614541 Add G_TYPE_ERROR boxed type for GError
8053
8054 * Updated translations:
8055  Catalan (Valencian)
8056  Galician
8057  Kannada
8058  Spanish
8059
8060
8061 Overview of Changes from GLib 2.24.0 to GLib 2.25.0
8062 ===================================================
8063
8064 * The GSettings framework has been merged. This provides the API to
8065   replace GConf. DConf will provide a backend implementation for it.
8066   GConf will also provide a backend implementation to ease the
8067   transition. We provide utilities to assist with schema conversion
8068   and data migration, as well as a porting guide.
8069
8070 * Translation updates:
8071  Bengali
8072  Catalan
8073  Danish
8074  Gujarati
8075  Marathi
8076  Thai
8077  Traditional Chinese
8078
8079
8080 Overview of Changes from GLib 2.23.6 to GLib 2.24.0
8081 ===================================================
8082
8083 * Bug fixes:
8084  613601 buglet in dup_close_on_exec_fd
8085  584284 g_data_input_stream_read_until_async behaves confusingly
8086  613748 Write errors in middle of copy cause hang
8087  613923 splice_stream_with_progress: wrong error handling
8088  613667 Typo in GObject documentation
8089  613618 gvariant format string docs unclear
8090
8091 * Translation updates:
8092  Basque
8093  Ukrainian
8094  Vietnamese
8095
8096
8097 Overview of Changes from GLib 2.23.5 to GLib 2.23.6
8098 ===================================================
8099
8100 * Class private data:
8101   - support for private data associated with a GTypeClass
8102
8103 * GVariant merge is now complete:
8104   - loading functions and parser merged
8105
8106 * Windows improvements:
8107   - socket fixes
8108   - various build improvements
8109   - removal of GCC/C99isms in favour of portable code
8110   - drop unmaintained Visual Studio 8 support
8111
8112 * Minor API addition:
8113   - g_desktop_app_info_get_filename()
8114
8115 * Bugs fixed:
8116  521707 Class private data
8117  612502 build fails on glib/tests/gvariant.c
8118  612832 [GDesktopAppInfo] New function g_desktop_app_info_get_filename
8119  612702 [PATCH] Fix GSocket-related crash on Windows
8120  612736 Improve the documentation about single include
8121  610858 gvariant test fails sometimes
8122  612327 uninitialized variable
8123
8124 * New translations:
8125  Afrikaans
8126  LowGerman
8127
8128 * Updated translations:
8129  Czech
8130  Finnish
8131  Galician
8132  Greek
8133  Punjabi
8134  Romanian
8135  Serbian
8136
8137
8138 Overview of Changes from GLib 2.23.4 to GLib 2.23.5
8139 ===================================================
8140
8141 * New API addition: g_malloc_n() and friends used to implement an
8142   overflow-safe family of g_new() macros.
8143
8144 * GVariant:
8145  - GVariantBuilder and GVariantIter are now merged.
8146  - The variable arguments API is now merged.
8147  - The parser will be in a future release.
8148
8149 * GIO:
8150  - Remove GUtf8InputStream (which never appeared in a stable release)
8151    for now since it doesn't satisfy the needs of its main intended use
8152    case.  We hope to reimplement this feature in a better form in a
8153    future release.
8154
8155 * Bugs fixed:
8156  609531 missing licence headers
8157  612107 Missing G_FILE_ATTRIBUTE_TRASH_ORIG_PATH
8158  611897 g_io_modules_scan_all_in_directory leaks
8159  608196 Overflow-safe g_new family
8160  611696 gio uses GetAddrInfo which requires special handing on windows 2k
8161  605667 Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid
8162  610860 test_g_file_open_readwrite fails if $HOME is unwritable
8163  552912 glib-2.18 /live-g-file/test_copy_move failed when run as root
8164  609813 Renaming a file discards file notes
8165
8166 * Updated translations:
8167  Basque
8168  Brazilian Portuguese
8169  British English
8170  Bulgarian
8171  Catalan
8172  Danish
8173  Estonian
8174  French
8175  German
8176  Hungarian
8177  Italian
8178  Lithuanian
8179  Norwegian bokmål
8180  Portuguese
8181  Russian
8182  Slovenian
8183  Spanish
8184  Swedish
8185  Traditional Chinese
8186
8187
8188 Overview of Changes from GLib 2.23.3 to GLib 2.23.4
8189 ===================================================
8190
8191 * GVariant: The core of GVariant has been merged now, with some
8192  API still to follow.
8193
8194 * GIO:
8195  - There is a new interface GFileDescriptorBased for file descriptor
8196    based IO. GLocalFile{Input,Output}Stream implement it
8197  - Use splice(2) to transfer data between file descriptors without
8198    extraneous copies
8199  - Add a way to request move events from file monitors
8200
8201 * Bugs fixed:
8202  609143 *result_uncertain is never assigned in g_content_type_guess
8203  604086 Use splice(2) when doing local file copies
8204  547890 No move events for GFileMonitorEvent?
8205  568760 nautilus freezes due to a bug in garray.c:322
8206  609962 Add info about the use of G_DEFINE_INTERFACE
8207  609564 g_base64_encode_close docs should mention outbuf size...
8208  610484 g_variant_equal bug
8209  610131 libasyncns does not compile on Solaris 8
8210  609530 missing single header include guards
8211
8212 * Updated translations:
8213  Czech
8214  Estonian
8215  Galician
8216  German
8217  Korean
8218  Polish
8219  Slovenian
8220  Spanish
8221  Traditional Chinese
8222
8223
8224 Overview of Changes from GLib 2.23.2 to GLib 2.23.3
8225 ===================================================
8226
8227 * GLib now has a facility for locks that consume only one bit of
8228   storage inside an integer: g_bit_lock()
8229
8230 * GVariant: The serializer has been merged, with more API to follow
8231
8232 * Bugs fixed
8233  548967 1 bit mutex lock
8234  604967 2.22.3 libasyncns build fails on HP-UX 11.11
8235  608602 G_VALUE_COLLECT_INIT variables shadow those in G_VALUE_COLLECT
8236  608743 Crash in g_hostname_to_ascii visiting certain website in epiphany
8237  599197 array ref and unref functions crash on NULL array.
8238  608159 mem leak in g_io_modules_scan_all_in_directory
8239
8240 * Translation updates
8241  Brazilian Portuguese
8242  Czech
8243  French
8244  Norwegian bokmål
8245  Slovenian
8246  Spanish
8247  Thai
8248
8249
8250 Overview of Changes from GLib 2.23.1 to GLib 2.23.2
8251 ===================================================
8252
8253 * We are now using gcc builtins for atomic operations when available
8254
8255 * g_assert() grew the ability to store assertions in core dumps
8256
8257 * GIO supports lazy loading of GIO modules, and there is a new
8258   gio-querymodule utility that goes along with this.
8259   Packagers will need to adapt to this.
8260
8261 * Threading changes:
8262  - The requirements for g_thread_init() have been relaxed slightly,
8263    it can be called multiple times, and does not have to be the first
8264    call.
8265  - GObject now links to GThread and threads are enabled automatically
8266    when g_type_init() is called.
8267  - Thread-safety issues with boxed types in GObject have been fixed.
8268
8269 * GObject:
8270  - Another bunch of performance work has landed
8271
8272 * GVariant:
8273  - GVariantType has been merged, with the rest of the GVariant
8274    API to follow.
8275
8276 * Bugs fixed:
8277  568760 nautilus freezes due to a bug in garray.c:322
8278  602417 Document lifecycles of GSimpleAsyncResult and friends
8279  604824 crash in Epiphany: Selecting my Slashdot bo...
8280  448888 don't init g_slice for always-malloc
8281  531902 Use GCC atomic buildins for g_atomic*
8282  554887 boxed type registration is not thread safe
8283  586150 unresolved symbols when building glib 2.21.2 on OS X Tiger
8284  589176 row gvalue transform array exponentially
8285  594872 Support storing assertion messages into core dump
8286  602240 Upgrade libasyncns to 0.8
8287  603590 Speed up G_VALUE_COLLECT
8288  604457 gutf8inputstream.c: increasing unknown size pointer
8289  605686 GCharsetConverter doesn't flush
8290  605733 g_memory_output_stream_new violates GObject standards
8291  605883 g_object_new() processes varargs even when there are none
8292  605977 invalid utf-8 conversion in g_local_file_get_parse_name(...
8293  606775 Enable threads by default in gobject
8294
8295 * Translation updates:
8296  Asturian
8297  Basque
8298  Bengali
8299  Bulgarian
8300  Estonian
8301  Norwegian bokmål
8302  Spanish
8303  Thai
8304  Ukrainian
8305
8306
8307 Overview of Changes from GLib 2.23.0 to GLib 2.23.1
8308 ===================================================
8309
8310 * GObject performance work has landed:
8311  - Construction of simple objects is much faster
8312  - Interface lookup is lock-free and constant-time now
8313  - Reduced locking overhead when dealing with types
8314
8315 * GType now has a G_DEFINE_INTERFACE convenience macro
8316
8317 * GIO gained GUtf8InputStream, an input stream that
8318   performs utf-8 validation
8319
8320 * GLib now has byte-swap macros for gsize and gssize
8321
8322 * Bugs fixed:
8323 557151 Determining the newly_constructed boolean in gobject.c...
8324 557100 Performance improvements for GObjectClasses that don't...
8325 501166 Warning message says IA__g_type_init instead of g_type_init
8326 585375 Performance and Contention problems with g_type_class_ref...
8327 587892 Race in GType when instantiating the same class for the...
8328 603270 Input Stream validating utf8
8329 603476 gioenums.h:62: error: comma at end of enumerator list
8330 603540 g_time_val_from_iso8601 uses uninitialised variable
8331 603982 Stack overflow when reading file async with filter
8332 604645 G_DEFINE_INTERFACE_* documentation is not generated
8333 604875 Use of sa_len conflicts with system header
8334 320482 provide G_DEFINE_TYPE like macros for interfaces
8335
8336 * Updated translations:
8337  Estonian
8338  Hebrew
8339  Norwegian bokmål
8340  Vietnamese
8341  Welsh
8342
8343
8344 Overview of Changes from GLib 2.22.x to GLib 2.23.0
8345 ===================================================
8346
8347 * GIO:
8348  - GConverter: a generic interface for stateful conversions of data,
8349    suitable for charset conversion, compression, decompression, regexp
8350    replacement. Concrete implementations are GCharsetConverter,
8351    GZlibCompressor and GZlibDecompressor. GConverterInputStream,
8352    GConverterOutputStream are stream implementations that convert data
8353    while loading or saving it.
8354  - GMounts can now have a 'default location': a path that reflects
8355    the main entry point for the user (e.g. the home directory).
8356  - As a consequence of the compression support, GIO depends on zlib now.
8357
8358 * GObject:
8359  - G_IMPLEMENT_INTERFACE_DYNAMIC: a convenience macro for adding
8360    interfaces to dynamic types.
8361
8362 * GModule:
8363  - The -pthread flag has been added to all gmodule .pc files, because
8364    it is not generally permissible to load modules that are linked
8365    against libpthread if the program has not been compiled with threading
8366    support.
8367
8368 * Bugs fixed:
8369  601637 GUnixFDMessage should contain a GUnixFDList
8370  585566 GSocketListener API issues
8371  572252 Bug in g_file_test() function.
8372  600550 g_app_info_create_from_commandline doesn't treat arguments properly
8373  541236 not detecting exact content type
8374  350200 [PATCH] GTypeModule derived class unref does not unload plugin
8375  589631 Please enclose literal values with double quotes
8376  577711 cross compile check for g++ broken
8377  600620 Support X-GNOME-FullName in GAppInfo
8378  598899 GWin32DirectoryMonitor is broken
8379  593809 Nautilus does not restore the position of the icons on the desktop...
8380  563627 g_get_prgname() threadsafety
8381  600141 Add -pthread to gmodule pkg-config
8382  593856 file and directory monitors don't work when glib is compiled...
8383  324930 Nautilus should disallow copying of symlink to FAT drive early
8384  587300 Deadlock when calling g_cancellable_disconnect in a...
8385  595138 GFile not robust with invalid input
8386  591216 Warning building resolver.o
8387  590016 Does not compile under MinGW32 + Wine
8388  591214 Warnings building gcancellable.o
8389  561998 Have specific entry points (paths) for mounts...
8390  508157 Add G_IMPLEMENT_INTERFACE_DYNAMIC
8391  535159 g_file_has_parent
8392
8393 * Updated translations:
8394  Brazilian Portuguese
8395  Catalan
8396  Estonian
8397  Galician
8398  Norwegian bokmål
8399  Shavian
8400  Slovenian
8401  Spanish
8402  Swedish
8403
8404
8405 Overview of Changes from GLib 2.22.1 to GLib 2.22.2
8406 ===================================================
8407
8408 * GIO:
8409  - Support case-sensitive globs in the shared mime database,
8410    including support for the newer cache format that allows these.
8411    Case-sensitive globs have been introduced in shared-mime-info
8412    version 0.70
8413
8414 * GObject:
8415  - Speed up creation of simple objects
8416
8417 * Bugs fixed:
8418  597194 Typo in _G_TYPE_CVH macro
8419
8420 * Updated translations:
8421  Russian
8422
8423
8424 Overview of Changes from GLib 2.22.0 to GLib 2.22.1
8425 ===================================================
8426
8427 * Bugs fixed:
8428  596064 Test file marked for translation
8429  595972 possibly invalid search in mime_info_cache_dir_add_...
8430  596561 C99 style of declaration of variable in gmessages.c
8431  596314 g_utf16_to_utf8 returns an invalid UTF8 string
8432  596748 g_async_result_get_source_object returns a new ref
8433  593809 Nautilus does not restore the position of the icons...
8434  593775 uses inotify_init1 unconditionally
8435
8436 * Updated translations:
8437  Bengali
8438  Hebrew
8439
8440
8441 Overview of Changes from GLib 2.21.6 to GLib 2.22.0
8442 ===================================================
8443
8444 * Add gdb python macros to make gobject debugging more pleasant
8445
8446 * Bugs fixed:
8447  579050 Allow making selected critical and warning messages non-fatal
8448  594759 g_socket_send_message fails due to invalid sendmsg params
8449  593941 GNetworkAddress skipping addresses when enumerating
8450  594597 Fix build with srcdir != builddir
8451  595619 Include gdb pretty printers
8452
8453 * Changes that might affect bindings:
8454  - The error parameter of g_simple_async_result_set_from_error has been
8455    made const.
8456
8457 * Updated translations:
8458  Assamese
8459  Bengali India
8460  British English
8461  Bulgarian
8462  Catalan
8463  Czech
8464  Danish
8465  Finnish
8466  Galician
8467  Greek
8468  Gujarati
8469  Hindi
8470  Japanese
8471  Kannada
8472  Malayalam
8473  Marathi
8474  Norwegian bokmål
8475  Oriya
8476  Polish
8477  Punjabi
8478  Romanian
8479  Serbian
8480  Simplified Chinese
8481  Slovenian
8482  Spanish
8483  Tamil
8484  Telugu
8485  Thai
8486  Traditional Chinese
8487  Ukrainian
8488  Vietnamese
8489
8490
8491 Overview of Changes from GLib 2.21.5 to GLib 2.21.6
8492 ===================================================
8493
8494 * Minor API additions:
8495   g_mkstemp_full is a variant of g_mkstemp that allows to specify flags
8496   and permissions
8497
8498 * Bugs fixed:
8499  593232 g_rand_new: read no more than requested from /dev/urandom
8500  591995 use saved errno
8501  589491 g_time_val_from_iso8601 doesn't handle some cases
8502  593406 Permissions set to 777 after copying via Nautilus
8503  594034 Add g_mkstemp_full()
8504
8505 * Updated translations:
8506  Assamese
8507  Basque
8508  Brazilian Portuguese
8509  Czech
8510  Estonian
8511  French
8512  German
8513  Hungarian
8514  Italian
8515  Kannada
8516  Malayalam
8517  Marathi
8518  Norwegian bokmål
8519  Oriya
8520  Portuguese
8521  Swedish
8522  Tamil
8523  Turkish
8524
8525
8526 Overview of Changes from GLib 2.21.4 to GLib 2.21.5
8527 ===================================================
8528
8529 * A performance problem with trashing of many files has been fixed
8530
8531 * GResolver now invalidates the libc resolv.conf cache as needed
8532
8533 * Minor api additions:
8534  - g_cancellable_make_pollfd returns a boolean now. And there is a
8535    new function g_cancellable_release_fd that can be used to released
8536    the resources used by a GCancellable.
8537
8538 * Bugs fixed:
8539  589988 Compilation error on Solaris 9 (missing stdint.h)
8540  588901 gtcpconnection.c won't compile
8541  584246 GResolver needs to call res_init() when network state changes
8542  591714 Figure out failure handling for g_cancellable_make_pollfd()
8543  591532 redundent '/' returned from g_file_resolve_relative_path
8544  591378 Use MSG_NOSIGNAL in GSocket if it's available
8545  589649 API documentation migration for Base64 Encoding
8546  591840 configure fails with autoconf 2.64
8547
8548 * Updated translations:
8549  Basque
8550  Brazilian Portuguese
8551  Bulgarian
8552  Danish
8553  Estonian
8554  Finnish
8555  Galician
8556  Gujarati
8557  Hndi
8558  Irish
8559  Japanese
8560  Korean
8561  Norwegian bokmål
8562  Polish
8563  Portuguese
8564  Punjabi
8565  Spanish
8566  Swedish
8567  Telugu
8568  Traditional Chinese
8569  Thai
8570
8571
8572 Overview of Changes from GLib 2.21.3 to GLib 2.21.4
8573 ===================================================
8574
8575 * GTree is now refcounted
8576
8577 * Bugs fixed:
8578  587938 Undocumented limitation for g_str_equal
8579  587773 refcounts for GTree
8580
8581 * Updated translations:
8582  French
8583  Hebrew
8584  Norwegian bokmål
8585  Spanish
8586  Swedish
8587  Traditional Chinese
8588  Ukrainian
8589
8590
8591 Overview of Changes from GLib 2.21.2 to GLib 2.21.3
8592 ===================================================
8593
8594 * GMappedFile is refcounted now
8595
8596 * Mainloop: It is now possible to set per-thread default contexts,
8597   with g_main_context_push_thread_default.
8598
8599 * glib-mkenums supports a @basename@ substitution, in addition
8600   to @filename@.
8601
8602 * GIO:
8603  - Vfs implementations can support storing of per-file metadata.
8604  - GCancellable can now be subclassed.
8605  - Unmount and eject methods now optionally allow interaction, via
8606    variants that take a GMountOperation object.
8607
8608 * Bugs fixed:
8609  556706 Inconsistent help arguments -h, -?
8610  579449 FileChoosers no longer work if an idle handler is active
8611  579933 mainloop FD_CLOEXEC has a race condition
8612  579984 alternate GMainContext support
8613  585937 gio/gsocket.c (glib 2.21.2) does not compile (Windows/mingw)
8614  586675 Runtime library location
8615  586797 Add GCancellables to GSocket ops
8616  586868 g_filename_complete_get_completions doesn't always return...
8617  587415 g_resolver_lookup_by_name_finish returns a freed list
8618  587434 regression tests fail, at least on x86_64
8619  586928 Avoid g++ warning in g_error()
8620
8621 * Updated translations:
8622  Estonian
8623  Hebrew
8624
8625
8626 Overview of Changes from GLib 2.21.1 to GLib 2.21.2
8627 ===================================================
8628
8629 * GIO:
8630   - g_socket_speaks_ipv4 is a new function to check if a socket can
8631     speak IPv4.
8632   - g_socket_listener_add_address gained a new effective_address out
8633     parameter.
8634   - GIO now returns special icons for XDG user directories, by the
8635     name folder-music, folder-documents, etc.
8636   - GIO gained support for starting/stopping of drives, which can be used
8637     in connection with external hard disk enclosures, disk arrays, iSCSI
8638     devices, etc. See g_file_start/stop_mountable.
8639
8640 * GLib:
8641  - g_reload_user_special_dirs_cache is a new function to force GLib to
8642    reload the XDG user directory mapping from disk.
8643
8644 * Bug fixes:
8645  584574 glib compile failure on Mac OS X with gunixresolver.c and...
8646  585566 GSocketListener API issues
8647  584255 Incorrect freeing of thread pool in GThreadedSocketService
8648  585088 g_string_chunk_insert_len stops at nul bytes
8649  585360 Monitor fontconfig configuration files using gio causes m...
8650  580103 Terminal starts on Display :0.0 when started on :0.1 in D...
8651  580301 network: a few issues on old darwin
8652  583398 SRV weight sorting is incorrect
8653  584176 build fixes on FreeBSD
8654  585189 g_cancellable_reset() must be called in same thread as g_...
8655  585280 compilation dies on gio/gsocket.c, needs sys/uio.h to con...
8656  585281 gio/gunixfdmessage.c needs sys/types.h for platforms that...
8657  585478 don't leak the inotify fd
8658  585575 g_socket_listener_add_inet_port() doesn't do the right thing
8659  585599 g_socket_listener_add_socket() consumes the socket
8660  585676 GEmblem doesn't reference its 'icon' if that is set as a ...
8661  585717 "bytes" nautilus translation to french is not shown in th...
8662  541276 XDG directories should have their own icons
8663  585726 Grammatical error in GList documentation
8664  585520 Wrong warning option in documentation
8665  585673 GNOME Goal: Remove deprecated glib symbols
8666  585591 Starting/stopping drives
8667
8668 * Updated translations:
8669  Bengali India
8670  Norwegian bokmål
8671
8672
8673 Overview of Changes from GLib 2.21.0 to GLib 2.21.1
8674 ===================================================
8675
8676 * GIO:
8677  - Support for network IO has been added, including a low-level
8678    socket API and a high-level API for network connections and
8679    services.
8680  - Support for read-write access with GIOStream and its subclasses.
8681  - GMount gained a pre-unmount signal.
8682
8683 * Bug fixes:
8684  576104Implement GMount::pre-unmount
8685  578769 implement GWinHttpFileInputStream::close_fn
8686  582856 gsocket.c doesn't compile on Solaris
8687  569375 g[u]intptr undocumented
8688  573246 [FIX] g_desktop_app_info_dup() can access NULL pointer
8689  575013 g_cancellable_push_current() does not allow NULL
8690  577884 live-g-file.c:461: error: format ‘%d’ expects type ...
8691  578499 g_output_stream_splice and stream closing with gnio strea...
8692  579558 Application employing gvfs crashes with only libgvfscommo...
8693  583001 SIGPIPE (grr!)
8694  583061 Please add convenience function to connect to machines by...
8695  583198 typo in error message
8696  583206 use g_set_error_literal where appropriate
8697  583229 void function g_async_initable_init_async returns value
8698  583324 locking problem in g_main_context_iterate()
8699  583408 void function g_socket_control_message_serialize returns ...
8700  578786 wrong and confusing error message
8701  583205 g_inet_address_to_bytes has no length outparam
8702  583196 mem leak in keyfile test
8703  583663 GSocketType enum ends with a comma
8704  569024 Make g_error_new_valist public
8705  569376 missing G_G[U]INTPTR_FORMAT
8706  580347 off-by-1 bug in GWinHttpFile
8707
8708 * Updated translations:
8709  Oriya
8710  Spanish
8711  Valencian-Catalan
8712
8713
8714 Overview of Changes from GLib 2.20.x to GLib 2.21.0
8715 ===================================================
8716
8717 * GIO:
8718  - New helper functions g_cancellable_connect/disconnect to avoid
8719    race conditions when connecting to the "cancelled" signal on
8720    GCancellable.
8721  - New types and methods for dealing with IPv4 and IPv6 addresses (and
8722    UNIX domain socket addresses under UNIX). This does not include code
8723    for actual socket I/O.
8724  - GResolver provides asynchronous and cancellable APIs for resolving
8725    hostnames, reverse lookup of IP addresses and resolving SRV records.
8726
8727 * Glib now provides hash and comparison functions for int64 and double
8728   types, suitable for use with GHashTable.
8729
8730 * GArray, GPtrArray and GByteArray can be ref counted now, and have
8731   boxed types.
8732
8733 * Bugs fixed:
8734  572844 Helper for GCancellable::cancelled connect/disconnect
8735  578363 goption docs should be improved
8736  548466 async/cancellable DNS resolver
8737  579830 param spec strings should use P_()
8738  579862 requesting xattr::foo ends up calling getxattr(..., user...
8739  580453 Hash and equal functions for gint64 and gdouble
8740  580450 Reference counting and boxed types for arrays
8741  580194 gresolver doesn't build on Solaris
8742  580301 network: a few issues on old darwin
8743  580299 network: include sys/types.h before sys/socket.h to insur...
8744  572508 gmarkup speedup
8745  580546 g_strtoull() referenced in documentation...
8746  580656 g_key_file_set_string_list erroneously asserts list != NULL
8747  579272 leaks in g_simple_async_result_set_op_res_gpointer
8748
8749
8750 * Updated translations:
8751  Catalan (ca)
8752  Pashto (ps)
8753  Spanish (es)
8754
8755
8756 Overview of Changes from GLib 2.20.0 to GLib 2.20.1
8757 ===================================================
8758
8759 * Bug fixes:
8760  575555 Use fsync() when replacing files to avoid data loss on
8761  575708 runaway inotify madness
8762  575270 GVolumeMonitor::mount-pre-unmount not being emitted
8763  577128 glib make check Failed to execute child process...
8764  573673 Always show "backup" directories
8765  578369 g_time_val_from_iso8601() parses timezones incorrectly
8766  578002 Fix a small typo in GFile docs
8767  578017 G_DEFINE_TYPE_EXTENDED docs
8768
8769 * Updated translations:
8770  Arabic
8771  Assamese
8772  Basque
8773  Bularian
8774  Brazilian Portuguese
8775  British English
8776  Catalan
8777  Danish
8778  French
8779  Galician
8780  German
8781  Greek
8782  Hungarian
8783  Italian
8784  Japanese
8785  Kannada
8786  Lithuanian
8787  Malayalam
8788  Norwegian bokmål
8789  Oriya
8790  Polish
8791  Punjabi
8792  Russian
8793  Simplified Chinese
8794  Slovenian
8795  Spanish
8796  Swedish
8797  Tamil
8798
8799
8800 Overview of Changes from GLib 2.19.9 to GLib 2.20.0
8801 ===================================================
8802
8803 * Base64 support: Avoid integer overflows. CVE-2008-4316
8804
8805 * Bugs fixed:
8806  574019 GChecksum: document and guarantee hex characters in lower case
8807  573454 Unable copy/move files to directories symlinked to gvfs share
8808  561172 gnome-open fails on local URIs with anchors
8809  573970 crash in gunixvolumemonitor:update_mounts when unmounting
8810  573843 g_get_current_dir returns non-absolute path
8811
8812 * Updated translations:
8813  Assamese (as)
8814  Bengali (bn_IN)
8815  Czech (cs)
8816  Hindi (hi)
8817  Italian (it)
8818  Japanese (ja)
8819  Lithuanian (lt)
8820  Malayalam (ml)
8821  Marathi (mr)
8822  Oriya (or)
8823  Polish (pl)
8824  Romanian (ro)
8825  Telugu (te)
8826
8827
8828 Overview of Changes from GLib 2.19.8 to GLib 2.19.9
8829 ===================================================
8830
8831 * GMarkup:
8832  - Considerable speedup
8833
8834 * GIO
8835  - Add G_FILE_CREATE_REPLACE_DESTINATION flag to allow replacing
8836    the destination of a copying operation as if it did not exit before.
8837  - Be more careful when classifying files as desktop files
8838  - Support desktop file key X-GIO-NoFuse which disables the use
8839    of fuse pathnames for %u and %U arguments
8840
8841 * Bugs fixed:
8842  572672 glib/gthread.c: argument is different type
8843  572464 Doc for g_file_get_contents
8844  572151 “it's” and “its” confused in docs and comments
8845  570501 g_win32_get_system_data_dirs uses invalid conversion...
8846  167569 g_string_append_printf crashes on win32 when used...
8847  572508 gmarkup speedup
8848  560564 Replacing a symlink with its linked file truncates... 
8849  549298 impossible to copy files with p (pipe) flag
8850  543183 Clarify docs for g_file_has_prefix
8851  540461 g_memory_output_stream_get_data_size() doesn't behave...
8852  573462 GEmblemedIcon leak
8853  573421 Clarify message format in GMountOperation
8854  573658 Deadlock in giomodule.c
8855  556706 Inconsistent help arguments -h, -?
8856  573527 Wrong shell to run config.status in Makefile.in.in
8857  573128 A couple of typos in GObject documentation
8858
8859 * Updated translations:
8860  Catalan (ca)
8861  British English (en_GB)
8862  Spanish (es)
8863  Basque (eu)
8864  Finnish (fi)
8865  French (fr)
8866  Gujarati (gu)
8867  Hebrew (he)
8868  Hungarian (hu)
8869  Korean (ko)
8870  Maithili (mai)
8871  Norwegian bokmål (nb)
8872  Dutch (nl)
8873  Portugese (pt)
8874  Swedish (sv)
8875  Thai (th)
8876  Traditional Chinese (zh_HK)
8877  Traditional Chinese (zh_TW)
8878
8879
8880 Overview of Changes from GLib 2.19.7 to GLib 2.19.8
8881 ===================================================
8882
8883 * GIO: Fix missing exports of new API
8884
8885 * Fix strict aliasing warnings and violations to make Glib work
8886   with gcc 4.4
8887
8888
8889 Overview of Changes from GLib 2.19.6 to GLib 2.19.7
8890 ===================================================
8891
8892 * GIO
8893  - GFile gained an attribute for the actual file size in bytes
8894  - GMountOperation gained an "aborted' signal that allows to abort
8895    a mount operation from the backend side
8896
8897 * Bugs fixed:
8898  523742 Use noinst for non-installable libraries
8899  566747 URIs opened with firefox %u load as local files
8900  541225 Can't compile gio on AIX duplicate case value in gioerror.c
8901  571598 GAsyncResult with NULL gobject
8902  505042 add file attribute for actually used file size in bytes
8903
8904 * Updates translations:
8905  Basque (eu)
8906  Gujarati (gu)
8907  Italian (it)
8908  Japanese (ja)
8909  Norwegian bokmål (nb)
8910  Dutch (nl)
8911  Portugese (pt)
8912  Thai (th)
8913  Vietnamese (vi)
8914
8915
8916 Overview of Changes from GLib 2.19.5 to GLib 2.19.6
8917 ===================================================
8918
8919 * New format macro to print goffset data: G_OFFSET_FORMAT
8920
8921 * GIO: 
8922  - Add a GFilter{Input,Output}Stream::close-base-stream properties which
8923    determine whether the base stream will be closed when the filter stream
8924    is finalized.
8925  - g_data_input_stream_read_line and ..._read_until have asynchronous
8926    variants now.
8927
8928 * Bugs fixed:
8929  568294 A wrong reference in the description of g_bookmark_file_...
8930  563141 RFE: define G_OFFSET_FORMAT
8931  569105 g_time_val_to_iso8601() assumes time_t==long
8932  568394 dropping the last reference to a stream filter closes...
8933  568741 g_buffered_input_stream_fill_async doesn't work
8934  568723 g_buffered_input_stream_fill_async doesn't take count == -1
8935  568575 _async functions for GDataInputStream
8936
8937 * Updated translations:
8938  Bulgarian (bg)
8939  Finnish (fi)
8940  Hungarian (hu)
8941  Oriya (or)
8942  Swedish (sv)
8943  Traditional Chinese (zh_HK)
8944  Traditional Chinese (zy_TW)
8945
8946
8947 Overview of Changes from GLib 2.19.4 to GLib 2.19.5
8948 ===================================================
8949
8950 * Update included PCRE to 7.8
8951
8952 * g_base64_decode_inplace: New function to do base64 decoding in place
8953
8954 * Bugs fixed:
8955  567138 get_package_directory_from_module() does not free ...
8956  566569 gregex docs clarification
8957  566573 g_match_info_fetch_pos docs
8958  564728 Add function to decode base64 encoded data in place
8959  567838 G_STRUCT_OFFSETOF fails to compile under icc 9.1
8960  567977 textdomain() macro should not return NULL ...
8961  512779 --disable-regex breaks compilation
8962  566770 error code 0 for Too many open files is useless
8963  565484 g_content_type_guess passes non-UTF8 text to XDG ...
8964
8965 * Updated translations:
8966  Catalan (ca)
8967  Spanish (es)
8968  Italian (it)
8969  Swedish (sv)
8970
8971  
8972 Overview of Changes from GLib 2.19.3 to GLib 2.19.4
8973 ===================================================
8974
8975 * GIO:
8976   - Use O_NOATIME when sniffing mimetypes
8977   - Add a convenience method to check if a GSimpleAsyncResult
8978     is valid
8979
8980 * Bugs fixed:
8981  560676 function access for g_threads_supported
8982  565905 There is no g_context_group_set_translation_domain
8983  564210 SUN Studio 12 has supported visibility attribute
8984  565136 GObject's "notify" signal parameters are wrong in gtk-doc
8985  565831 error in interface creation sample
8986  566348 g_file_open_tmp uses the wrong g_mkstemp on win32
8987  566064 Add NOATIME flag to query_info_flags
8988  566170 g_async_result_verify_source_object
8989
8990 * Updated translations:
8991  Spanish (es)
8992  Norwegian bokmål (nb)
8993  Brazilian Portugese (pt_BR)
8994  Simplified Chinese (zh_CN)
8995
8996
8997 Overview of Changes from GLib 2.19.1 to GLib 2.19.3
8998 ===================================================
8999
9000 * Bugs fixed:
9001  508021 Add support for the CRIS and CRISv32 architectures
9002  526320 should not list mounts that the user doesn't have permission to use
9003  558458 Cannot build gio tests on Solaris using SUN cc
9004  555465 GUnix{Input,Output}Stream lacks fd/close_fd_at_close property
9005  558298 Hide ecryptfs mounts
9006  515777 incorrect date&time on copy
9007  562452 Ensure we return G_IO_ERROR_CANCELLED if cancelling
9008         g_simple_async_result_run_in_thread
9009  473150 g_type_module_use inconsistently increases the use
9010         counter in case of error
9011  563150 G_GU?INT*_MODIFIER/FORMAT docs
9012  563156 Document printing and scanning gunichar values
9013
9014 * Updated translations:
9015  Hebrew (he)
9016  Italian (it)
9017  
9018
9019 Overview of Changes from GLib 2.19.0 to GLib 2.19.1
9020 ===================================================
9021
9022 * GIO: 
9023   - g_icon_to_string, g_icon_new_for_string: GIcon serialization support
9024   - G_FILE_ATTRIBUTE_PREVIEW_ICON: new file attribute for preview images
9025   - g_app_info_get_commandline: new function to get the full commandline
9026   - g_mount_shadow, g_mount_unshadow, g_mount_is_shadowed: New functions 
9027     to 'shadow' mounts (i.e. hide them from the UI when they already
9028     have a different representation, like a bookmark) 
9029
9030 * Bugs fixed:
9031  556186 gpoll.h breaks gmain.h inclusion
9032  557087 mem leak in g_content_types_get_registered
9033  556921 gpoll.h breaks hal compilation
9034  557210 g_compute_checksum_for_* asserts with less than 2 bytes
9035  558381 Add support for compile time assertions
9036  558185 'parent' variable in g_local_file_get_child_for_display_name()
9037         hits g_object_unref(NULL) assertion
9038  558513 g_warn_if_fail FIXME in gtestutils
9039  558672 NULL key lookup using g_hash_table_lookup_extended() 
9040  555740 gicon serialization
9041  557182 preview functionality
9042  528320 Incorrect icons displayed for files with custom mimetype icons
9043  556910 Memory leak: sub
9044  557592 Missing include in gwinhttpfile.c
9045  556415 Crash on Windows 2000 in g_winhttp_vfs_init()
9046  555935 Clarify the mechanism of overwriting properties
9047  552776 ac_cv_func_posix_getgrgid_r not mentioned
9048  559448 GObject Reference Manual (typo)
9049  561212 GFileReadMoreCallback API doc refers to non-existant function
9050  560569 gkeyfile doesn't use the set list_separator in some cases
9051  560568 gkeyfile docs buglet
9052  559413 g_option_group_set_error_hook docs buglet
9053  562378 callback return value not respected for callback option
9054         with no arg
9055  559110 Do not include libintl.h after glibintl.h
9056  557603 carbon check output misplaced
9057  562544 g_key_file_get_string and g_key_file_get_value
9058         documentation does not explain the difference
9059  547264 Missing "no flags" flag
9060  562638 GDebugKey key member should be const
9061  562639 g_parse_debug_flags() parsing "help"
9062  562549 g_byte_array_free should tell how free data
9063  559452 GObject Reference Manual (typo)
9064  559462 GObject Reference Manual (typo)
9065  559517 GObject Reference Manual (typo)
9066  562538 GObject interface tutorial shouldn't finalise with
9067         "Please forget everything"
9068  561352 Leak of icon description
9069  561375 Leaks mountpoint description
9070  561807 inotify_sub.c: dup_dirname() fails to remove trailing '/'
9071  562393 g_buffered_input_stream_read_byte broken if data available
9072  541715 win32 : patch for warnings and signature problems in recent code
9073  547481 g_data_input_stream_read_line behaves not as stated in the docs
9074  548163 Nautilus displays wrong error message for too long file names
9075  559633 gtk_image_new_from_gicon does not always work for .desktop files
9076  555486 – No way to recover command line from GAppInfo
9077
9078 * Translation updates:
9079  Spanish (es)
9080  Ukrainian (uk)
9081
9082
9083 Overview of Changes from GLib 2.18.1 to GLib 2.19.0
9084 ===================================================
9085
9086 * Rewrite GHashTable to use open addressing with quadratic probing instead 
9087   of chaining. This has the potential to reduce memory fragmentation 
9088   significantly, while being slightly faster due to better locality and 
9089   no need to call alloc/free functions for nodes. Benchmarks suggest it 
9090   also uses less memory overall.
9091
9092 * Make g_poll available as public api
9093
9094 * New macros g_assert_error and g_assert_no_error to assert 
9095   that a GError is set or unset
9096
9097 * g_cancellable_make_pollfd: New method to make a GPollFD for a cancellable
9098
9099 * g_app_info_can_delete, g_app_info_delete, g_app_info_reset_type_associations:
9100   New functions to clean up app infos and content types
9101
9102 * When launching applications, always pass fuse file:// uris when possible,
9103   and let gio convert such uris back to gio uris.
9104
9105 * Bugs fixed:
9106  505361 gunixinputstream.c assumes poll() available
9107  509446 portable blocking gio cancellation
9108  553820 gpoll.c: undeclared identifier
9109  553724 python interpretter path not patched in correctly
9110  553857 gbacktrace.h requires signal.h
9111  553447 g_assert_no_error()
9112  554092 glib doesn't return G_FILE_ERROR_NOENT et al on OS X
9113  528670 Always pass file:/// uri's in GAppLaunchContext
9114  555224 Improve g_format_size_for_display doc
9115  555309 giochannel breaks on error
9116  554790 g_convert() misbehaves with winiconv versions
9117  555314 mem leak in gmarkup
9118  555313 GFileAttribute boxed type get_type function should...
9119  552861 glib-2.0.m4 calls system(3) without storing its result
9120  554557 Patch to fix gcc warnings about missing format specifiers
9121  552107 Small libtool fixes
9122  551355 Make glib build with libtool 2.2
9123  555311 format not a string literal and no format arguments
9124  556101 static mutex yields warnings with g++
9125  556186 gpoll.h breaks gmain.h inclusion
9126  526456 Open addressing in GHashTable
9127  553426 cancellable clarifications
9128  545350 GAppInfo deletion
9129  545351 Reset associations for content type
9130  552168 volume's mount not mounted after g_volume_mount_finish
9131  554970 segfault when update-desktop-database is not available...
9132  554745 GFileAttributeInfoList should be boxed
9133  555121 Improved build-time handling of gio module-dir
9134  555711 Wrong fallback order of mimetype icons
9135  555331 Deprecate adoption of mounts
9136  556335 make check fails in abicheck.sh
9137  556334 Warning when building without selinux support
9138  556422 g_file_enumerator_next_file: unclear...
9139
9140 * Updated translations:
9141  Arabic (ar)
9142  Danish (da)
9143  Polish (pl)
9144  Brazilian Portugese (pt_BR)
9145  Romanian (ro)
9146  Russian (ru)
9147
9148
9149 Overview of Changes from GLib 2.18.0 to GLib 2.18.1
9150 ===================================================
9151
9152 * Bugs fixed:
9153  550433 g_test_init doesn't recognize --help
9154  523463 Core dump in gmain.c:2482:IA__g_main_context_check
9155  551228 G_STRFUNC on recent Sun compiler should be expanded...
9156  551410 gtestutils.c: using printf without prototype
9157  551731 g_date_set_time[_t] docs should mention what timezone
9158  548321 <string.h> is not included in gi18n-lib.h
9159  551149 xdgmime mem leak
9160  550647 synchronous pipe I/O when reading mount reply
9161  551887 Docs for g_desktop_app_info_new_from_filename aren't...
9162  551681 g_content_type_guess() too naive with filenames
9163  552352 g_app_info_launch doesn't work if "Path" key...
9164  551408 gmodule.def generated to builddir...
9165  552359 g_file_info_get_icon should return GThemedIcon, and...
9166
9167 * Updated translations:
9168  Arabic (ar)
9169  Bengali India (bn_IN)
9170  British English (en_GB)
9171  Hindi (hi)
9172  Croatian (hr)
9173  Korean (ko)
9174  Oriya (or)
9175  Turkish (tr)
9176  Telugu (te)
9177
9178
9179 Overview of Changes from GLib 2.17.7 to GLib 2.18.0
9180 ===================================================
9181
9182 * Win32:
9183   - rework the g_poll() implementation to match poll() semantics more closely
9184
9185 * Bugs fixed:
9186  324234 Using g_io_add_watch_full() to wait for connect() to return...
9187  548278 Async GETs connections are always terminated unexpectedly...
9188  500246 Bug fixes for giowin32
9189  523939 Example program for GValue
9190  550096 GBookmarkFile parser is not forward compatible
9191  550040 Move GString, rand and printf tests to the unit test framework
9192  550104 trivial documentation fix for g_get_home_dir
9193  548988 g_file_replace fails on Windows when the target file exists
9194  550059 Wrong docs for g_emblemed_icon_add_emblem
9195  548800 Missing a g_object_get_type function
9196  550056 Missing documentation for g_emblemed_icon_get_emblems
9197
9198 * Updated translations:
9199  Bulgarian (bg)
9200  Czech (cs)
9201  German (de)
9202  Estonian (et)
9203  Basque (eu)
9204  French (fr)
9205  Hebrew (he)
9206  Hungarian (hu)
9207  Italian (it)
9208  Japanese (ja)
9209  Lithuanian (lt)
9210  Maithili (mai)
9211  Dutch (nl)
9212  Swedish (sv)
9213  Thai (th)
9214  Ukrainian (uk)
9215  Vietnamese (vi)
9216
9217
9218 Overview of Changes from GLib 2.17.6 to GLib 2.17.7
9219 ===================================================
9220
9221 * More fixes for 64-bit Windows
9222
9223 * GIO
9224  - Add a vfs implementation for HTTP and HTTPS URIs on Windows
9225
9226 * Bugs fixed:
9227  546329 API docs for g_utf8_normalize() are incorrect
9228  546876 Modify GMarkup parser to accept &#x1; .. &#x1f;
9229  547200 g_utf8_find_next_char() issues
9230  547637 unconditional #include of sys/statfs.h in configure
9231  547337 G_DISABLE_DEPRECATED breaks tests build
9232  547832 gtk+-2.12.11 fails to build - AC_PROG_MMAP too strict
9233  502498 Test framework assertion failures should follow gcc
9234  546371 Improve docs re g_file_monitor
9235  546483 GThemedIcon:use-default-fallbacks is not readable without...
9236  546132 GFileIcon is bindings-unfriendly
9237  542156 zfs mount in home directory shown on nautilus desktop 
9238  535124 umask 002 not being applied for new directories...
9239  547080 g_file_copy leaks expected errors
9240  546582 Callbacks from GFileMonitor present a GFile...
9241  547262 Missing link in the docs
9242
9243 * Updated translations:
9244  Arabic (ar)
9245  Catalan (ca)
9246  Spanish (es)
9247  Basque (eu)
9248  Finnish (fi)
9249  Galician (gl)
9250  Hebrew (he)
9251  Marathi (mr)
9252  Norwegian bokmål (nb)
9253  Portugese (pt)
9254  Brazilian Portugese (pt_BR)
9255  Swedish (sv)
9256  Thai (th)
9257
9258
9259 Overview of Changes from GLib 2.17.4 to GLib 2.17.6
9260 ===================================================
9261
9262 * Fix problems on 64-bit Windows
9263
9264 * g_markup_context_get_user_data: New function to access
9265   the user_data outside of callbacks
9266
9267 * GIO
9268  - g_mount_guess_content_type_sync: synchronous version of
9269    g_mount_guess_content_type
9270  - GEmblem: A GIcon implementation that adds emblem-related
9271    metadata to icons
9272  - GEmblemedIcon: A GIcon implementation that can add emblems
9273    to icons
9274
9275 * Bugs fixed:
9276  544088 option_test_LDADD is left in tests/Makefile.am
9277  544465 gmarkup makes it hard to use pre-rolled parsers
9278  545485 Implicit declaration of utime()
9279  545798 "Since: 2.18" mark is missing in g_set_error_literal...
9280  544140 fam-helper 64-bit issue
9281  529694 SELinux context setting support
9282  545157 wrong/no list of "open with" applications for .cc...
9283  545203 gfile.c: argument is different type
9284  545457 gdmsetup crashed with SIGSEGV in g_unix_mount_guess...
9285  544177 Fix trivial cut and paste error in documentation
9286  545395 Language tweak for g_value_set_string* docs
9287  541036 Gnumeric crashes when trying to open Desktop...
9288  546079 leak in xdgmime
9289  545395 Language tweak for g_value_set_string* docs
9290  546017 Don't copy attributes when copying a symlink
9291
9292 * Updated translations:
9293  Arabic (ar)
9294  Estonian (et)
9295  Galician (gl)
9296  Italian (it)
9297  Japanese (ja)
9298  Korean (ko)
9299  Norwegian bokmål (nb)
9300  Pashto (ps)
9301  Portugese (pt)
9302
9303
9304 Overview of Changes from GLib 2.17.3 to GLib 2.17.4
9305 ===================================================
9306
9307 * GIO:
9308  - New API to handle content types: g_mount_guess_content_type,
9309    g_content_type_guess_for_tree.
9310  - Export the eject-button signal on the volume monitor class
9311  - New API to enable out-of-process volume monitors: 
9312    g_volume_get_activation_root
9313
9314 * GObject:
9315  - New API to handle signals without slots in the class structure:
9316    g_signal_new_class_handler, g_signal_override_class_handler   
9317
9318 * Internationalization:
9319  - Add an NC_ macro that is a no-op equivalent of C_
9320
9321 * GMarkup:
9322  - Add two new functions g_markup_parse_context_push,
9323    g_markup_parse_context_pop to support "subparsers"
9324
9325 * Bugs fixed:
9326  541208 Functions to easily install and use signals without...
9327  541507 Ambiguous description of assigned characters in the...
9328  543040 async reading on dummy file will crash on GIO_USE_VFS=local
9329  543560 enable gio-FEN back-end warnings on Solaris will crash...
9330  528317 GRegex does not allow recursion limit
9331  337518 GMarkup: Subparser support
9332  541794 drive-eject-button signal
9333  541793 activation root for volumes
9334  467707 test_iconv_state() in tests/convert-test.c fails on AIX 5.3
9335  428048 2 of 51 tests fail on Solaris
9336  542332 small fix for error message in GMarkup
9337  482413 get_contents_stdio -- overflow and memory corruption
9338  406120 g_ascii_strtod
9339  334234 "printf" format error
9340  536996 Missing noop i18n macro equivalent to C_
9341  540616 mem leak in filechooser button
9342  539229 gobject-query calls itself query
9343  521589 [RFC] gobject documentation should mention Vala
9344  543168 Description of G_SLICE=debug-blocks discourages its use
9345  543220 Case collision on gio-extension-points.html
9346  530759 update the gobject tutorial to the XXI century
9347  535223 gbookmark file inefficiency ...
9348  543504 crash in Epiphany Web Browser: Opening local file
9349
9350 * Updated translation:
9351  German (de)
9352  Estonian (et)
9353  Pashto (ps)
9354  Albanian (sq)
9355  Thai (th)
9356  Traditional Chinese (zh_HK)
9357  Traditional Chinese (zh_TW)
9358
9359
9360 Overview of Changes from GLib 2.17.1 to GLib 2.17.3
9361 ===================================================
9362
9363 * PCRE
9364  - fix for CVE-2008-2371 
9365
9366 * Bugs fixed:
9367  538119 glib's mainloop leaks a pipe to sub-processes
9368  537635 Corrections and improvements to g_time_val_{to,from}_iso8601
9369  539067 The document g_io_channel_win32_new_fd() says...
9370  535949 annotate g_strip_context and g_dpgettext with G_GNUC_FORMAT
9371  539123 annotate g_d[n]gettext with G_GNUC_FORMAT
9372  539074 Cannot get exit status with g_spawn_command_line_sync
9373  316221 G_LOCK warns about breaking strict-aliasing rules
9374  539770 migrate gstrfunc unit tests to gtest
9375  539626 Update docstrings for g_object_freeze_notify and g_object_thaw_notify
9376  538044 unconditional use of LC_MESSAGES
9377  540545 Monotonic time and timer offset
9378  535947 want g_set_error_literal
9379  539999 glibconfig.h: add GLIB_USING_SYSTEM_PRINTF 
9380  536252 GFileEnumerator should allow access to the containing GFile
9381  538362 Get Win32 icons back in the file chooser
9382  540802 g_list_prepend doesn't concat lists
9383  540423 unrecoverable error after g_seekable_truncate
9384  538836 make check failure on PPC and ALPHA: pltcheck.sh on g_atomic_pointer_get
9385  539090 g_content_type_from_mime_type() should unalias
9386  540331 g_file_append_to () documentation: can return NULL
9387  534639 add g_desktop_app_info_new_from_keyfile
9388  536733 gio build failure on Irix
9389  536160 Add g_file_monitor()
9390  538127 FileChooser broken on win32
9391  531476 /live-g-file/test_traverse_structure test fails on Mac HFS+
9392  538564 gio should have gio-types.h
9393  540047 glib-genmarshal.c: '#include <io.h>' is too before
9394
9395 Updated translations:
9396  Korean (ko)
9397  Occitan (oc)
9398
9399
9400 Overview of Changes from GLib 2.17.0 to GLib 2.17.1
9401 ===================================================
9402
9403 * New function: g_utime(), a gstdio wrapper for utime()
9404
9405 * New functions: g_dgettext() and g_dngettext(), wrappers
9406   for corresponding gettext functions with added functionaliy
9407
9408 * Support the latest version of the shared-mime spec, including
9409   icons for mime types 
9410
9411 * New function: g_themed_icon_prepend_name()
9412
9413 * Bugs fixed: 
9414  535418 Please document which glib version defines goffset
9415  528715 Misprint in the description of the interface g_type_class_add_private
9416  528714 Misprint in the description of the interface g_param_spec_flags
9417  537260 Doc bug in G_TYPE_INSTANCE_GET_CLASS()
9418  530527 Misprint in the description of the interface 
9419         g_cclosure_marshal_VOID__FLAGS
9420  530526 Misprint in the description of the fields 'class_init' and 
9421         'class_finalize' of the structure GTypeInfo
9422  528719 Improvement to the documentation of the "g_object_connect" interface
9423  528172 gtk_signal_handlers_unblock_* functions return value
9424         amount of matched signals, not amount of actually unblocked
9425  528717 Misprint in the description of the parameter 'type_id' for 
9426         the interface g_type_register_fundamental
9427  528716 Misprint in the description of the parameter 'iface_data' for 
9428         the callback types GInterfaceInitFunc and GInterfaceFinalizeFunc 
9429  537555 GObject instantiation not thread safe
9430  537546 'desktop' shortcut in file chooser looks like a generic folder
9431  537392 Additional colon in xattr name
9432  536641 Filesystem querying in gio does not list AFS and autofs file systems
9433  528600 g_dummy_file_get_parent("scheme://example.com/")
9434  503071 Application direction changes to right to left even if theres no 
9435         translation
9436  502511 g_assert_cmphex prints invalid message
9437  338162 Use po/LINGUAS
9438  314453 Nautilus crashes in Solaris when browsing the attached file
9439  529321 make check fails in glib/pcre
9440  455215 g_get_user_special_dir: no reference about G_USER_DIRECTORY_DOWNLOAD 
9441         fallback to $HOME/Desktop if xdg-user-dirs is not in use
9442  498732 g_key_file_to_data cannot fail
9443  511367 add g_file_make_directory_with_parents
9444  531900 Use __builtin_offsetof for G_STRUCT_OFFSET if building with 
9445         gcc 4.0 or newer
9446  536158 also bump GHashTable version when a node is removed via
9447         g_hash_table_iter_remove()/g_hash_table_iter_steal()
9448  531403 g_utf8_collate broken on Mac
9449  535628 test/patterntest.c still includes gpattern.h directly
9450  535625 alias.h:2648: error: 'utime' undeclared here (not in a function)
9451
9452 * Translation updates:
9453  Arabic (ar)
9454  German (de)
9455  Italian (it)
9456  Norwegian bokmål (nb)
9457  Thai (th)
9458
9459
9460 Overview of Changes from GLib 2.16.x to GLib 2.17.0
9461 ===================================================
9462
9463 * Update to Unicode 5.1
9464
9465 * Update included libcharset to the one shipped with libiconv 0.12
9466
9467 * Update included PCRE to 7.7
9468
9469 * Enforce that only toplevel headers are directly included.
9470   This is turned on by default for GObject and GIO. To turn
9471   it on for GLib, define G_DISABLE_SINGLE_INCLUDES.
9472
9473 * Fix library version of GIO.  GLib 2.16 shipped with libgio-2.0.so.0.0.0
9474
9475 * On Solaris, use FEN for file monitoring in GIO
9476
9477 * Use the GIO_EXTRA_MODULES environment variable to find
9478   additional GIO modules 
9479
9480 * G_GNUC_ALLOC_SIZE: New macro that wraps the gcc alloc_size
9481   function attribute
9482
9483 * g_checksum_reset: New function to reset the state of a GChecksum 
9484
9485 * g_unix_mount_monitor_set_rate_limit: New function to limit the 
9486   rate at which events are reported
9487
9488 * g_file_query_file_type: New utility function to query the type of
9489   a file
9490
9491 * g_memory_output_stream_get_data_size: New function to obtain the
9492   size of the written data.
9493
9494 * Bugs fixed:
9495  522292 Gives warnings in glib/gutils.h with GCC in C99 mode
9496  523298 win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
9497  518160 replace two g_strdup_printf calls in GBookmarkFile
9498  523877 gbookmarkfile: avoid using g_string_append_printf() and
9499         other optimizations 
9500  525192 100% CPU if run main loop with no IO sources
9501  315437 extern inline -> static inline
9502  524314 g_convert() on Win32 implicitly converts full width
9503         alphanumerics into half width
9504  525732 Error in documentation for g_list_first
9505  525674 A typo in gmarkup.c
9506  448943 g_timeout_add_seconds() problems
9507  525972 UCS-4 not in the new win_iconv implementation
9508  526619 make test-report crash
9509  491554 Update to Unicode 5.1.0
9510  519137 g_slice_dup macro needs cast for 64-bit platform
9511  528752 Win32 build and SSL not working
9512  530457 G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
9513  528667 Typos in testing module documentation
9514  459905 Bug in wcwidth data
9515  534085 g_unichar_iswide_cjk() has a totally wrong table
9516  501651 Update glib/libcharset
9517  519026 G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
9518  534319 GLib's .pc files could use Libs.private
9519  534137 Typo in g_spawn_async_with_pipes doc
9520  517419 gio win32 directory monitor
9521  526796 Wrong order of arguments in g_file_copy's fallback
9522  530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0
9523  532965 Should not return filesystem::free for certain file systems
9524  525553 fix typo and nitpicking in GArray documentation
9525  526572 Missing * in declaration of parent_class in Object
9526         Destruction section of GObject Reference Manual
9527  528648 Extra >s in Object Construction section
9528  535021 g_param_spec_internal documentation should
9529         describe purpose of nick and blurb
9530  521513 Firefox crash when using file picker
9531  528433 gdesktopappinfo snafu ...
9532  533369 API g_file_info_get_attribute_string () unables to get "...
9533  521045 glib f_fstypename miscellany
9534  521672 compile error
9535  521946 control rate limit on GUnixMountMonitor
9536  522335 Fails to build: glib/gtester.c:276: error: 'ARG_MAX' unde...
9537  523015 Implement sliding window based upload operation
9538  523019 Use new GCC 4 feature
9539  523338 list nfs4 as a nfs mount type
9540  524350 Make glib build without NLS again
9541  524579 g_file_copy reports wrong total on progress callback for ...
9542  524742 A typo in gtestutils.c.
9543  524950 Minor documentation typos.
9544  525866 the user directory should not be considered as a mount to...
9545  526320 should not list mounts that the user doesn't have permiss...
9546  527132 nautilus crash when making ftp connection
9547  532852 CRITICAL **: totem_pl_parser_parse_with_base: assertion `...
9548  534759 Build failure in gio
9549  534764 Typo in error produced by g_file_make_directory
9550  521851 Redudant tests in gunixmounts.c
9551  524344 glib/gthread.h still use G_GNUC_PRETTY_FUNCTION
9552  525060 glib fails to build with -DG_DISABLE_ASSERT in CPPFLAGS o...
9553  534177 Invalid description of the interface g_cclosure_marshal_S...
9554  520715 Add GFile method g_file_query_file_type
9555  523039 nautilus can't access to trash/computer/network if gvfs i...
9556  
9557 * Updated translations:
9558  Arabic (ar)
9559  Bulgarian (bg)
9560  Catalan (ca) 
9561  Czech (cs)
9562  Greek (el)
9563  Candian English (en_CA)
9564  British English (en_GB)
9565  Spanish (es)
9566  Estonian (et)
9567  Basque (eu)
9568  Galician (gl)
9569  Hebrew (he)
9570  Hungarian (hu)
9571  Japanese (ja)
9572  Lithuanian (lt)
9573  Norwegian bokmål (nb)
9574  Dutch (nl)
9575  Occitan (oc)
9576  Portugese (pt)
9577  Russian (ru)
9578  Slovak (sk)
9579  Albanian (sq)
9580  Swedish (sv)
9581  Turkish (tr)
9582  Vietnamese (vi)
9583
9584
9585 Overview of Changes from GLib 2.16.0 to GLib 2.16.1
9586 ===================================================
9587
9588 * Fix a crash in g_themed_icon_new
9589
9590 * Update the included PCRE to 7.6
9591
9592
9593 Overview of Changes from GLib 2.15.6 to GLib 2.16.0
9594 ===================================================
9595
9596 * Fix the definition of G_INLINE_FUNC to work with gcc 4.3.0
9597
9598 * GIO:
9599  - Add missing GMountMountFlags argument to g_unix_volume_mount
9600  - Fix the adopt_orphan_mount vfunc to take a volume monitor 
9601    reference
9602  - Add properties to GThemedIcon for bindings sake
9603
9604 * Bugs fixed:
9605  520484 gvfsd-trash crashed with SIGSEGV in g_path_is_absolute()
9606  510855 g_checksum_update(): Take -1 for length.
9607  517676 g_themed_icon_new*() do more than call g_object_new().
9608  518816 should handle rmdir returning EEXIST correctly
9609  519352 g_[s]list_delete_link() docs
9610  519489 Fixes for sparse warnings in gio
9611  520169 add monitor argument to vfunc for GVolumeMonitor
9612  520700 Add type check in g_file_query_exists
9613  521145 FILE_READ_ONLY_VOLUME not present on Mingw32
9614  518720 No MIME type for empty files
9615  521013 in documentation, goffset doesn't say "Since 2.x"
9616  521028 Missleading error messages from g_io_channel_set_encoding()
9617  517484 GMainLoop could set the thread "Alertable" for APCs to be... 
9618
9619 * Updated translations:
9620  Assamese (as)
9621  Bengali India (bn_IN)
9622  Czech (cs)
9623  German (de)
9624  Spanish (es)
9625  Estonian (et)
9626  Finnish (fi)
9627  French (fr)
9628  Gujarati (gu)
9629  Italian (it)
9630  Lithuanian (lt)
9631  Malayalam (ml)
9632  Marathi (mr)
9633  Norwegian bokmål (nb)
9634  Romanian (ro)
9635  Russian (ru)
9636  Slovak (sk)
9637  Ukrainian (uk)
9638
9639  
9640 Overview of Changes from GLib 2.15.5 to GLib 2.15.6
9641 ===================================================
9642
9643 * GIO:
9644  - New file attributes: trash::item-count, filesystem::use-preview
9645  - Rename g_file_contains_file to g_file_has_prefix
9646  - g_file_query_filesystem_info grew async variants
9647  - g_themed_icon_append_name: new convenience function
9648  - g_content_type_get_icon is implemented now
9649  - Only show mounts in /media and ~
9650  - g_file_contains_file has been renamed to g_file_has_prefix
9651
9652 * Win32:
9653  - g_win32_get_package_installation_directory_of_module: new function
9654    which supersedes g_win32_get_package_installation_directory
9655  - Use alertable wait functions so that I/O completion routines or 
9656    user-mode Asynchronous Procedure Calls can be run
9657  - Fix race conditions in g_spawn implementation on win32
9658
9659 * Other:
9660  - g_uri_get_scheme has been renamed go g_uri_parse_scheme
9661
9662 * Updated translations:
9663  Arabic (ar)
9664  Belarusian Latin (be@latin)
9665  Catalan (ca) 
9666  British English (en_GB)
9667  Finnish (fi)
9668  Galician (gl)
9669  Hebrew (he)
9670  Italian (it)
9671  Kannada (kn)
9672  Norwegian bokmål (nb)
9673  Dutch (nl)
9674  Brazilian Portugese (pt_BR)
9675  Vietnamese (vi)
9676
9677
9678 Overview of Changes from GLib 2.15.4 to GLib 2.15.5
9679 ===================================================
9680
9681 * Update the included PCRE to 7.6
9682
9683 * GIO:
9684  - g_volume_should_automount: new function to determine if a volume
9685    should be mounted automatically
9686  - g_file_query_default_handler: new convenience function to get
9687    the default handler for a file
9688  - g_app_info_launch_default_for_uri new convenience function to
9689    launch the default handler for a URI
9690  - Use mimeapps.list and defaults.list as discussed on xdg list
9691    recently
9692  - g_app_info_get_default_for_uri_scheme has a real implementation
9693    now (gvfs provides a GConf-based implementation)
9694  - There is the beginning of a test suite
9695  - standard::description:  new file attribute
9696  - GMountMountFlags flags argument added to mount calls
9697
9698 * GObject:
9699  - class initialization is now threadsafe
9700
9701 * Updated translations:
9702   Arabic (ar)
9703   Catalan (ca)
9704   Spanish (es)
9705   Basque (eu)
9706   Italian (it)
9707   Japanese (ja)
9708   Kannada (kn)
9709   Korean (ko)
9710   Macedonian (mk)
9711   Occitan (oc)
9712   Portugese (pt)
9713   Brazilian Portugese (pt_BR)
9714   Swedish (sv)
9715   Thai (th)
9716
9717
9718 Overview of Changes from GLib 2.15.3 to GLib 2.15.4
9719 ===================================================
9720
9721 * G_GNUC_PRETTY_FUNCTION has been deprecated
9722
9723 * GIO:
9724  - g_file_copy has an async variant now
9725  - Drives and volumes now have API to get identifiers
9726    like Hal UDIs or UUIDs.
9727  - There is now a registration API to let modules register
9728    extensions they provide, such as volume monitor implementations
9729
9730 * Bugs fixed:
9731   511807 g_time_val_to_iso8601() uses MT-unsafe gmtime() function
9732   316260 [patch] Doc patches for gnode (2.8.1)
9733   385132 solaris gettext support fix
9734   484261 ./configure check for system PCRE unicode support fails w...
9735   510292 GOption main help not shown
9736   511580 Implement g_file_copy_async
9737   511654 Compile errors due to C99 constructs
9738   487909 g_utf8_strreverse and combining marks
9739   512381 unused variable 'is_main_group' 
9740
9741 * Updated translations:
9742   Arabic (ar)
9743   Belarusian (be)
9744   Czech (cz)
9745   Spanish (es)
9746   French (fr)
9747   Galician (gl)
9748   Portugese (pt)
9749   Russian (ru)
9750   Swedish (sv)
9751   Thai (th)
9752
9753
9754 Overview of Changes from GLib 2.15.2 to GLib 2.15.3
9755 ===================================================
9756
9757 * GChecksum:
9758  - g_checksum_update can accept nul-terminated strings
9759  - The MD5 implementation works correctly on buffers 
9760    that are longer than 64 bytes
9761
9762 * GIO:
9763  - Don't include a copy of the inotify headers, rely on system headers
9764  - g_file_find_enclosing_mount has an async variant now
9765  - Reduntant seek API on file streams has been removed
9766
9767 * Bugs fixed:
9768   508602 gmemory{in|out}putstream.c: unknown pointer size
9769   508771 There is no g_file_test/exists() for GFile
9770   508773 g_uri_escape_string() documentation unclear.
9771   509465 AM_PATH_GLIB_2_0 doesn't support gio
9772   509626 async functions: Document allowed NULL callback?
9773   509990 GSeekable documentation unclear
9774   510448 No inotify support on ARM or SH5
9775   510855 g_checksum_update(): Take -1 for length. 
9776
9777 * Updated translations:
9778   Basque (eu)
9779   Marathi (mr)
9780   Swedish (sv)
9781   Ukrainian (uk)
9782
9783
9784 Overview of Changes from GLib 2.15.1 to GLib 2.15.2
9785 ===================================================
9786
9787 * GIO:
9788  - Mount operation API change: unhandled methods get reported via 
9789    the reply, rather than by the signal emission return value
9790  - File monitor API change: Add a GError argument to g_file_monitor_file
9791  - g_unix_mount_guess_should_display(): new function
9792
9793 * Bugs fixed:
9794   508224 [PATCH] FAM backend crashes due to double free
9795   508074 GAsyncResult documentation suggests g_freeing it.
9796   508108 GFile documentation slightly unclear.
9797   508309 rpc_pipefs mount points should be hidden
9798   508378 GFileInfo documentation implies that it changes attribute...
9799   508719 g_file_get_relative_path fails if parent is root
9800   508773 g_uri_escape_string() documentation unclear.
9801
9802 * Updated translations:
9803   Arabic (ar)
9804   Spanish (es)
9805   Hebrew (he)
9806   Italian (it)
9807   Korean (ko)
9808   Turkish (tr)
9809
9810
9811 Overview of Changes from GLib 2.15.0 to GLib 2.15.1
9812 ===================================================
9813
9814  * Portability fixes:
9815  - Assertion functions are marked as noreturn again
9816  - Handling of inline functions has been fixed to work with gcc 4.3
9817  - C99 comments have been removed from headers
9818  - The nonportable sed -i option is no longer used
9819
9820  * GIO:
9821   - Clarified the semantics of g_app_info_get_all()
9822   - API for memory input and output streams has been changed a bit
9823   - GDirectoryMonitor has been removed; GFileMonitor can monitor
9824     files and directories now
9825
9826  * Bugs fixed:
9827    504829 Invalid environment passed to g_spawn_async in g_desktop_...
9828    505258 crash in Users and Groups: Adding a user
9829    505815 g_content_types_get_registered should not g_free keys
9830    491218 g_timer_new() doesn't initialize timer->end
9831    315437 extern inline -> static inline
9832    476856 Inconsistency between standard and implementation of the ...
9833    480122 g_module_open fails to open modules with ".la" extension
9834    495589 gspawn.c failing to set FD_CLOEXEC
9835    500273 doesn't build with --disable-visibility
9836    504142 Do not show empty groups in --help output
9837    504879 giofam incorrectly linked
9838    505042 add file attribute for actually used file size in bytes
9839    505058 xattr namespace docs
9840    505674 Misprint in the definition of the macro G_CCLOSURE_SWAP_DATA
9841    505730 Fails to build on OSX 10.4: _NSGetEnviron not declared
9842    505887 older darwin lacks lchown
9843    506374 gmemoryinputstream api
9844    506461 Conversion of g_assert_not_reached() and friends into fun...
9845    503051 Small bug in glib interface
9846    506395 Updates to GIO documentation
9847    507628 Missing .pc entry for gio linking against glib
9848    505195 [patch] typo in g_try_new0 docs 
9849    507822 g{file,directory}monitor changes signal problem
9850    506377 gmemoryoutputstream write implementation
9851    507835 bug in gunixinputstream 
9852
9853  * Updated translations:
9854    Arabic (ar)
9855    Belarusian Latin (be@latin)
9856    Spanish (es)
9857    Basque (eu)
9858    Irish (ga)
9859    Hebrew (he)
9860    Occitan (oc)
9861    Vietnamese (vi)
9862
9863
9864 Overview of Changes from GLib 2.14.x to GLib 2.15.0
9865 ===================================================
9866
9867 Major new features:
9868
9869  * GIO: a VFS API, designed to replace GnomeVFS. The GIO implementation 
9870    in GLib has support for local filesystems. The new, separate gvfs 
9871    module contains various backend implementations (cifs, ftp, sftp,
9872    http, ...)
9873
9874  * GChecksum: provides various hash algorithms, such as MD5, SHA-1
9875    and SHA-256
9876  
9877  * GTest: a test framework 
9878  
9879 Smaller additions:
9880
9881  * GHash:
9882  - GHash has iterators, as an alternative to g_hash_table_foreach
9883
9884  * GMarkup: 
9885  - g_markup_parse_context_get_element_stack: New function to
9886    get the stack of open elements
9887  - G_MARKUP_PREFIX_ERROR_POSITION: New flag to improve error
9888    reporting
9889  - g_markup_collect_attributes: Convenience function for handling
9890    attributes
9891
9892 * GKeyFile: 
9893  - Functions that take a GError now return a boolean to indicate 
9894    success, instead of void
9895  - Various performance improvements
9896
9897 * GAsyncQueue:
9898  - g_async_queue_new_full: new function that allows to specify
9899    a free function for leftover elements
9900  
9901 * GError:
9902  - g_prefix_error and g_propagate_prefixed_error: New functions
9903    to ease error propagation
9904
9905 * Internationalization:
9906  - C_: A new 2-argument variant of the Q_() macro 
9907  - Use native character set conversion API on Windows
9908
9909 * GLib builds with automake 1.10
9910
9911 * Bugs fixed:
9912  455725 specific combination of g_utf8_strlen and g_pattern_match...
9913  467537 g_convert_with_iconv() not resetting iconv() state correc...
9914  497033 Commandline option parser should warn about missing optio...
9915  504527 gchecksum: Conditional jump or move depends on uninitiali...
9916  445362 Non-numeric local labels in gatomic.c are causing linker ...
9917  482313 gregex: no way to tell why compilation failed
9918  317775 main loops continues to run after g_main_loop_quit() has ...
9919  418778 Insufficient pkg-config version requirement
9920  436293 g_option_context_new() doc should mention that the string...
9921  466557 glib-mkenums shifts ARGV[0] to undefined
9922  468882 GKeyFile doesn't accept "True" as a true boolean value
9923  469551 application --help messages are garbaged on none UTF-8 lo...
9924  479724 Memory leak upon calling "g_main_loop_run" in the seconda...
9925  490061 outptrs uninitialized after g_parse_long_long
9926  490637 gobject documentation patch
9927  495294 glib-genmarshal prints warnings but returns 0
9928  496046 option to prefix location of errors for GMarkup
9929  498113 tests/regex-test fails on 64bit environment
9930  500506 Fails to build on OSX 10.4
9931  500638 gkeyfile speedup ...
9932  500875 Make check fails as there is no "test" target for "build"...
9933  502511 g_assert_cmphex prints invalid message
9934  502927 g_array_index triggers cast aligment warning
9935  503029 g_time_val_from_iso8601 parse non-ISO8601 dates
9936  503222 Need context to translate
9937  503420 gkeyfile leaks a hash table
9938  503470 Fix build when builddir != srcdir
9939  504227 Inverse variant for g_test_trap_assert_stdout, g_test_tra...
9940  71704  file include order
9941  491957 Misprint in the specification of the interface "g_main_co...
9942  491959 Misprint in description of the structure "GThreadPool"
9943  491965 Mistype in the specification of the function "g_hook_list...
9944  491966 Misprint in the specification of the interface "g_main_co...
9945  491968 The documentation does not mention the restriction for th...
9946  491970 The documentation for the interface "g_date_clamp" is inc...
9947  491974 The documentation of the interface "g_main_context_iterat...
9948  491975 The documentation for the interfaces "g_io_channel_read_u...
9949  491979 Misprint in the description of the interfaces g_key_file_...
9950  491982 Misprint in the description of the interface "g_key_file_...
9951  501107 EXTRA_DIST automake warnings
9952  501997 g_utf8_normalize() returns NULL on invalid string
9953  502590 C_/g_dpgettext efficiency
9954  464259 g_set_application_name() docs should say "Since 2.2"
9955  496518 gbase64.c API doc clarification
9956  498728 g_key_file_get_*_list should set length to 0 when returni...
9957  500361 Improve docs for g_array_free() and g_ptr_array_free()
9958  501853 g_checksum_get_digest docs
9959  503862 Allow NULL strings in g_parse_debug_string()
9960  142676 Q_
9961  367550 Add g_async_queue_new_full() with GDestroyNotify function
9962  375651 Minor enhancements to GKeyFile API
9963  443648 MD5 digest support
9964  449937 Upgrade auto* sources to be clean under automake1.9
9965  452887 gmarkup context "get element" function is useless when ca...
9966  491549 [PATCH] Eliminate libiconv dependency on Windows
9967  500507 GHashTableIter API 
9968
9969 * Translation updates
9970  Belarusian Latin (be@latin)
9971  Czech (cs)
9972  German (de)
9973  Spanish (es)
9974  Esperanto (et)
9975  French (fr)
9976  Korean (ko)
9977  Marathi (mr)
9978  Norwegian bokmål (nb)
9979  Brazilian Portugese (pt_BR)
9980  Slovenian (sl)
9981  Swedish (sv)
9982
9983
9984 Overview of Changes from GLib 2.14.2 to GLib 2.14.3
9985 ===================================================
9986
9987 * Update PCRE to 7.4
9988
9989 * Bugs fixed:
9990  487491 Fix some warnings from sparse
9991  488068 Small (one-time) memory leak in glib_gettext initialization
9992  493688 TYPE macro "_get_type ()" is documented wrong
9993
9994 * Updated translations:
9995  Arabic (ar)
9996  Belarusian Latin (be@latin)
9997  Estonian (et)
9998  Irish (ga)
9999  Slovenian (sl)
10000
10001  
10002 Overview of Changes from GLib 2.14.1 to GLib 2.14.2
10003 ===================================================
10004
10005 * Bugs fixed:
10006  476849 Invocation of the interface "g_hook_free" fails in certai...
10007  359165 marshallers can throw warnings with -Wunused
10008  477957 more discussion on g_value_set_object vs. g_value_take_ob...
10009  478459 G_DEFINE_DYNAMIC_TYPE_EXTENDED doesn't work with G_IMPLEM...
10010  483337 inline is disabled for MSVC when compiling C code
10011  478349 Broken link to gettext website
10012  469231 g_spawn optimization for setting all open fds to CLOEXEC 
10013
10014 * Updated translations:
10015 Arabic (ar)
10016 Galician (gl)
10017 Hebrew (he)
10018 Korean (ko)
10019
10020
10021 Overview of Changes from GLib 2.14.0 to GLib 2.14.1
10022 ===================================================
10023
10024 * Bugs fixed:
10025  476840 Invocation of the interface "g_utf8_strreverse" crashes f...
10026  444765 Fix FIXME in gregex.c when new pcre is out
10027  464145 g_markup_escape_text Produces Invalid XML
10028  465625 g_type_default_interface_ref() does not ensure working g_...
10029  466768 Clearify that comments can be put anywhere in a Key-file.
10030  474229 The GError documentation should give convention for the G...
10031  474899 G_BREAKPOINT() docs inaccurate
10032  475854 Overuse of -lpcre when using system pcre
10033  473879 Incorrect includes in gregex.c
10034  468694 Typoes in documentation
10035  469051 g_snprintf () talks about characters where it probably me...
10036  457601 Missing arch specific atomic implementation
10037  475923 Missing pcre flags when static-linking against glib
10038  475619 glibthread-2.0.la does not list -lpthread
10039
10040 * Updated translations:
10041  Bulgarian (bg)
10042  Catalan (ca)
10043  Danish (da)
10044  German (de)
10045  Canadian English (en_CA)
10046  British English (en_GB)
10047  Spanish (es)
10048  Estonian (et)
10049  Finnish (fi)
10050  French (fr)
10051  Gujarati (gu)
10052  Hungarian (hu)
10053  Italian (it)
10054  Georgian (ka)
10055  Kannada (kn)
10056  Lithuanian (lt)
10057  Makedonian (mk)
10058  Norwegian (nb)
10059  Dutch (nl)
10060  Polish (pl)
10061  Portugese (pt)
10062  Brazilian Portugese (pt_BR)
10063  Romanian (ro)
10064  Russian (ru)
10065  Albanian (sq)
10066  Serbian (sr, sr@Latn)
10067  Swedish (sv)
10068  Tamil (ta)
10069  Thai (th)
10070  Ukrainian (uk)
10071  Vietnamese (vi)
10072
10073
10074 Overview of Changes from GLib 2.13.7 to GLib 2.14.0
10075 ===================================================
10076
10077 * Last-minute API additions:
10078  - Make g_unichar_combining_class public
10079  - Add goffset type, add G_MAXSSIZE and G_MINSSIZE
10080
10081 * Update PCRE to 7.2
10082
10083 * Bugs fixed:
10084  453998 Make _g_unichar_combining_class() public
10085  462549 gregex.c: variable is declared at middle of block
10086  417068 g_file_test doc inconsistency
10087
10088 * Updated translations:
10089  Assamese (as)
10090  Basque (eu)
10091  Kannada (kn)
10092  Malayalam (ml)
10093  Dutch (nl)
10094  Polish (pl)
10095  Brazilian Portugese (pt_BR)
10096  Turkish (tr)
10097
10098
10099 Overview of Changes from GLib 2.13.6 to GLib 2.13.7
10100 ===================================================
10101
10102 * The memory corruption warning from the slice allocator that
10103   occurred when threads were initialized after the slice allocator
10104   has been removed, as the slice allocator now works fine
10105   in this scenario.
10106
10107 * New functions g_once_init_enter() and g_once_init_leave() make
10108   it easier to write threadsafe one-time initialization functions 
10109  
10110 * Bugs fixed:
10111  454473 Simple XML Subset Parser terminates on invalid XML
10112  445813 g_module_open error, add file name
10113  453796 errno gets clobbered by g_filename_display_name
10114  341988 don't use "-c" with msgfmt in Makefile.in.in
10115  447048 Please produce slightly more output during long tests
10116  454785 GModule documentation lists same block of code twice.
10117  454786 GModule documentation lists same paragraph twice.
10118  383155 small docs quirks in gobject/closure API documentation
10119  65041  _get_type() functions aren't thread safe
10120
10121 * Updated translations
10122  Assamese (as)
10123  Spanish (es)
10124  Gujarati (gu)
10125  Japanese (ja)
10126  Korean (ko)
10127  Macedonian (mk)
10128
10129
10130 Overview of Changes from GLib 2.13.5 to GLib 2.13.6
10131 ===================================================
10132
10133 * Reintroduce a GType typedef whose removal in 2.13.5
10134   caused trouble for C++ bindings
10135
10136 * Bugs fixed:
10137  450216 docs not explicit enough about g_free()
10138  451459 g_type_register_static_simple calls g_type_register_static
10139
10140 * Updated translations
10141  Norwegian bokmål (nb)
10142  Sinhala (si)
10143
10144
10145 Overview of Changes from GLib 2.13.4 to GLib 2.13.5
10146 ===================================================
10147
10148 * xdg-user-dirs support: 
10149  - the Desktop directory is guaranteed to be defined
10150  - user-dirs.dirs is no longer reloaded on changes
10151
10152 * Slice allocator: 
10153  - new api to duplicate slices
10154
10155 * Regular expression support:
10156  - GRegex is a boxed type now
10157
10158 * Bugs fixed:
10159  44793 make check failing in trunk
10160  354522 Small problem with PLT hiding 6 symbols
10161  363986 glib 2.12.4 does not compile with SGI IDO cc
10162  443869 g_type_class_add_private doesn't warn when adding 0-sized...
10163  446859 Legitimately return 0 for g_quark_from_string(NULL)
10164  447534 Small typo in g_timeout_add_seconds() doc
10165  447583 GStaticRWLock
10166  447935 g_get_current_dir SIGSEGV on long path
10167  448260 CLAMP has surprising result if low > high
10168  57693  g_string_vprintf()
10169  442029 add g_slice_dup()
10170  445065 Add GRegex boxed type
10171  448819 Add full version of g_timeout_add_seconds()
10172
10173 * Updated translations: 
10174  Swedish (sv)
10175  Oriya (or)
10176  Hebrew (he)
10177  Spanish (es)
10178  Estonian (et)
10179
10180  
10181 Overview of Changes from GLib 2.13.3 to GLib 2.13.4
10182 ===================================================
10183
10184 * Bugs fixed:
10185  444121 g_get_user_special_dir deadlocks
10186  444161 invalid UTF8 in key name shows up as valgrind error in g_...
10187  444130 g_option_context_get_help() is broken when there's a desc...
10188
10189
10190 Overview of Changes from GLib 2.13.2 to GLib 2.13.3
10191 ===================================================
10192
10193 * GKeyFile:
10194  - Added defines for easier handling of desktop files
10195
10196 * Unicode support:
10197  - Update g_unichar_iswide_cjk for Unicode 5.0
10198
10199 * Regular expression support:
10200  - GRegex structs can now be ref-counted
10201  - Some new functions for dealing with incremental 
10202    replacement have been added
10203  - The GRegexEvalCallback signature has been changed
10204
10205 * g_get_user_special_dir() has been added to support
10206   xdg-user-dirs
10207
10208 * Bugs fixed:
10209  419376 Functions using named subpatterns behave inconsistently w...
10210  434358 g_regex_fetch_named() and g_regex_fetch_named_pos() are b...
10211  423708 typo in the README.win32 file see patch below
10212  339225 Add new defines for easier handling of .desktop files 
10213  442265 API additions/changes for GRegex
10214  432651 Add a glib-ish xdg_user_dir_lookup
10215
10216 * Updated translations:
10217  Estonian (et)
10218  Norwegian bokmål (nb)
10219
10220
10221 Overview of Changes from GLib 2.13.1 to GLib 2.13.2
10222 ===================================================
10223
10224 * Unicode support:
10225  - Add g_unichar_ismark()
10226
10227 * GOption:
10228  - Allow to use callbacks for remaining args
10229
10230 * Updated translations:
10231   Belarusian Latin (be@latin)
10232   British English (en_GB)
10233   Galician (gl)
10234   Norwegian bokmål (nb)
10235   Oriya (or)
10236   Spanish (es)
10237   Thai (th)
10238
10239
10240 Overview of Changes from GLib 2.13.0 to GLib 2.13.1
10241 ===================================================
10242
10243 * GRegex:
10244  - Portability fixes
10245  - Split into immutable GRegex and GMatchInfo
10246  - Add g_regex_get_max_backref() and g_regex_get_capture_count()
10247    to obtain information about the compiled regex
10248
10249 * GKeyFile:
10250  - Fix roundtrip problems
10251  - Add g_key_file_load_from_dirs()
10252
10253 * Unicode support:
10254  - Fix corner cases in case conversion routines
10255
10256 * GOption:
10257   - Add a function to get the formatted help string
10258
10259 * GHash:
10260  - Add new functions g_hash_table_get_keys() and
10261    g_hash_table_get_values() to retrieve the keys and
10262    values in list form
10263
10264 * Updated transations:
10265   Simplified Chinese (zh_CN)
10266   Arabic (ar)
10267
10268
10269 Overview of Changes from GLib 2.12 to GLib 2.13.0
10270 =================================================
10271
10272 * Add GSequence, a list that is implemented using
10273   a balanced binary tree.
10274
10275 * Add GRegex, an implementation of Perl regular expressions,
10276   based on PCRE.
10277  
10278 * Use Posix monotonic clocks instead of gettimeofday()
10279   for GTimer when available.
10280
10281 * Support static initialization of GQeues with G_QUEUE_INIT,
10282   g_queue_init() and g_queue_clear().
10283
10284 * Add g_string_chunk_clear() for clearing a 
10285   GStringChunk.
10286
10287 * Add g_unichar_get_script() to obtain Unicode
10288   script information.
10289
10290 * Add g_unichar_iszerowidth() to obtain information
10291   about zero-width characters.
10292
10293 * Add G_GNUC_MAY_ALIAS which wraps the gcc may_alias 
10294   type attribute.
10295
10296 * G_GNUC_INTERNAL has a working definition for the
10297   Sun Studio compiler. This requires the macro to
10298   be positioned before the function declaration.
10299
10300 * The slice allocator can produce detailed debugging
10301   information with G_SLICE=debug-blocks.
10302
10303 * Modules support G_DEBUG flags resident-modules and
10304   bind-now-modules.
10305
10306 * Add G_DEFINE_DYNAMIC_TYPE() to make it easier
10307   to define types in modules.
10308
10309 * Bug fixes: too many to list them in detail here.
10310
10311 * New and updated translations (be,bg,bn,ca,cs,de,
10312   en_CA,en_GB,et,fa,fr,he,hu,it,ja,ku,lt,mg,mk,ml,
10313   nb,ne,nn,pt,pt_BR,ro,sr,sr@Latn,sv,ta,uk,vi,zh_CN,
10314   zh_HK,zh_TW)
10315
10316
10317 Overview of Changes from GLib 2.12.1 to GLib 2.12.2
10318 ===================================================
10319
10320 * Unicode updates:
10321  - Normalization is following Unicode TR #29
10322  - g_unichar_isxdigit() only accept characters
10323    for which g_unichar_xdigit_value() returns a value
10324  - g_unichar_toupper and g_unichar_tolower leave
10325    unconvertable characters in place instead of
10326    replacing them by NUL
10327
10328 * Bugs fixed
10329  348491 g_utf8_strup() and g_utf8_strdown() returns 
10330         string with NUL bytes
10331  349825 GKeyFile always inserts a newline before a group
10332  347842 g_unichar_isxdigit() is too general about what 
10333         it considers a digit
10334  348694 g_utf8_normalize() hasn't been updated to PR #29
10335  348785 Hint about G_DEBUG in Message Logging docs
10336  349792 Wrong english string (UI)
10337  349952 gparamspecs.c uses gcc feature
10338
10339 * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko,
10340   nl,pl,tr,uk,zh_HK,zh_TW)
10341
10342
10343 Overview of Changes from GLib 2.12.0 to GLib 2.12.1
10344 ===================================================
10345
10346 * Update to final Unicode Character Database 5.0.0
10347
10348 * Bugs fixed:
10349  346660 issues with base64 api documentation / g_base64_decode_cl...
10350  348136 Coverity reports allocation of wrong size CID #2839
10351  336281 Update to UCD 5.0
10352  346197 g_date_strftime %F option doesnt work for win32
10353  348011 Small optimization to real_toupper()
10354  246494 prototype mismatch in glib/gconvert.c
10355
10356 * New and updated translations (bg,bn_IN,ca,dz,eu,fi,
10357   fr,he,it,ja,mk,or,pt)
10358
10359
10360 Overview of Changes from GLib 2.11.4 to GLib 2.12
10361 =================================================
10362
10363 * Bugs fixed:
10364  344905 leap-year bug in g_time_val_from_iso8601 w/o HAVE_TIMEGM
10365
10366 * Updated translations (cy,nb,nl)
10367
10368
10369 Overview of Changes from GLib 2.11.3 to GLib 2.11.4
10370 ===================================================
10371
10372 * GBookmarkFile:
10373  - g_bookmark_file_remove_item returns a boolean
10374  
10375 * g_mkstemp accepts the XXXXXX in the middle of
10376   the template
10377  
10378 * Bugs fixed:
10379  344868 g_key_file_to_data should separate groups 
10380
10381 * Updated translations (de,es,fr,gu,hi,ko,th)
10382
10383
10384 Overview of Changes from GLib 2.11.2 to GLib 2.11.3
10385 ===================================================
10386
10387 * GBookmarkFile:
10388   - g_bookmark_file_move_item: Return TRUE in case of
10389     an empty target
10390
10391 * Bugs fixed: 
10392  343919 gunicollate.c: strxfrm bug on VC8
10393
10394 * Updated translations (fi)
10395
10396 Overview of Changes from GLib 2.11.1 to GLib 2.11.2
10397 ===================================================
10398
10399 * Add g_ascii_stroll to parse signed 64bit integers
10400
10401 * GMarkup: add a flag to treat CDATA as text
10402
10403 * GHashTable: add functions to remove all entries
10404
10405 * GMainLoop: add functions to find the currently
10406   running source, and determine if it is destroyed
10407
10408 * Bug fixes:
10409  342563  g_atomic_thread_init() needs to be called before 
10410          other _g_*_thread_init() functions
10411  343548  Potential use after free in callers of g_string_free() 
10412  168538  Wish: Clearing contents of GHashTables
10413  321886  GTK+ cannot be reliably used in multi-threaded 
10414          applications
10415  341826  goption.c: 'strtoll' is C99's function
10416  343899  g_ascii_formatd dosn't work as expected for all 
10417          format strings
10418  317793  Make GEnumValue strings const
10419  337129  Compile warnings in G_IMPLEMENT_INTERFACE
10420  303622  What is G_TYPE_CHAR?
10421
10422 * Updated translations (bg,dz,eu,gl,ja,ko,nl,th,vi)
10423  
10424
10425 Overview of Changes from GLib 2.11.0 to GLib 2.11.1
10426 ===================================================
10427
10428 * GOption  
10429   - Support 64-bit integers 
10430   - Allow optional text before and after the options
10431     in help output
10432
10433 * Bug fixes:
10434  340538 gbase64-test writes OOB 
10435  340816 GKeyFile set_string_list invalid memory reads 
10436  339105 g_key_file_parse_value_as_double
10437  340434 convert-test.c fails (function test_one_half)
10438  311043 Memory leaks (and potential infinite loops) 
10439         when using G_ERRORCHECK_MUTEXES
10440  335198 Error checking mutexes are fubar  
10441  341237 Add a G_OPTION_ARG_INT64
10442  341192 g_io_channel_set_flags not implemented on win32
10443  336120 Allow adding description before/after GOption 
10444         --help output body
10445  341191 misplaced check in g_relation_delete
10446  340530 mismatched calloc / g_free in win32 threads
10447
10448 * Updated translation (es)
10449
10450 Overview of Changes from GLib 2.10.x to GLib 2.11.0
10451 ===================================================
10452
10453 * GBookmarkFile: a parser for files containing bookmarks
10454   stored using the Desktop Bookmark specification.
10455
10456 * Base64 encoding support
10457         
10458 * Unicode 5.0 support
10459
10460 * GOption supports floating point numbers 
10461
10462 * GKeyFile supports floating point numbers
10463
10464 * Bug fixes:
10465  155884 gatomic.c should be based on new SDK
10466  157877 update-desktop-database doesn't handle duplicate entries
10467  164719 keyfile parser doesn't support floats
10468  327662 Import BookmarkFile from libegg
10469  329548 Add G_OPTION_ARG_DOUBLE
10470  329789 option-test.c type confusion
10471  332841 Segmentation Fault when %llu is passed to vasnprintf and 
10472         HAVE_SNPRINTF is not defined
10473  333879 gthread/gthread-win32.c: IsDebuggerPresent needs '#define 
10474         _WIN32_WINDOWS 0x0401'
10475  333916 g_timer_elapsed docs should mention that microseconds 
10476         may be NULL
10477  334440 dlerror() portability issue causes crash on (old) a.out 
10478         NetBSD platform
10479  334646 goption + error out params
10480  334799 g_remove() must check return value of remove()
10481  334943 make check FAIL: threadpool-test
10482  335215 Some breakages with GThreadPool
10483  336085 g_option_context_new parameter lacks better explanation
10484  336677 Documentation for g_object_ref_sink() is incorrect
10485  337027 gbookmarkfile.c: sys/time.h include error
10486  337553 Wrong escaping of URIs
10487  338572 Dereferencing NULL value in g_key_file_get_group_comment
10488  338845 g_completion_complete_utf8 crashes when NULL is passed to it
10489  339337 g_bookmark_file_set_description
10490  339338 gbookmarkfile.c, function expand_exec_line
10491  339340 gbookmarkfile.c, function bookmark_app_info_dump
10492
10493 * Translation updates (bg,en_GB,et,gl,gu,he,hi,ka,nb,nl,nn,
10494                        or,pt_BR,ro,tr,vi,zh_CN)
10495
10496
10497 Overview of Changes from GLib 2.10.0 to GLib 2.10.1
10498 ===================================================
10499
10500 * Bugs fixed:
10501  314794 Broken pthread detection on Darwin [Gregor Riepl]
10502  322476 Missing check for .dylib [Vladimir Panov]
10503  333651 Inconsistent _g_charset_get_aliases prototype [Julio 
10504         M. Merino Vidal]
10505  333761 GInitiallyUnowned breaks application code [Sven Herzberg]
10506
10507 * Win32 changes:
10508  - Fix g_listenv() implementation.
10509  - Allow up to 100 GPrivate structs
10510
10511 * Translation updates (fr,hu,lt,pl,sv)
10512
10513
10514 Overview of Changes from GLib 2.9.6 to GLib 2.10.0
10515 ==================================================
10516
10517 * Bugs fixed:
10518  328997 64bit pointer trunction in glib slab-allocator
10519         [Pascal Hofstee]
10520  331110 g_cond_broadcast(inform_cond) without holding 
10521         inform_mutex [Chris Wilson, Sebastian Wilhelmi]
10522  332093 Fix some leaks in the tests [Kjartan Maraas]
10523  332435 g_utf8_strlen returns wrong value if a maximum 
10524         number of bytes to check is specified 
10525         [Matthias Clasen]
10526  331367 gslice requires more POSIX-like semantics for 
10527         GPrivate destructors [Tor Lillqvist]
10528
10529 * Documentation improvements [Matthias, Kang Jeong-Hee,
10530   Tor Lillqvist, Stefan Kost]
10531
10532 * Translation updates (el,eu,ka,uk)
10533
10534 Overview of Changes from GLib 2.9.5 to GLib 2.9.6
10535 =================================================
10536
10537 * Bugs fixed: 
10538  329124 distclean removes README [Kjartan Maraas, Tim Janik]
10539  317679 GRelation field type not documented [Behdad Esfahbod]
10540  329123 Typo in GTime docs [Kjartan Maraas]
10541
10542 * Documentation improvements [Sven Herzberg, David
10543   Schleef, Kjartan Maraas, Behdad Esfahbod]
10544
10545 * Translation updates (cs,cy,it,ko,pt,sq,sr,sr@Latn,ru
10546
10547 Overview of Changes from GLib 2.9.4 to GLib 2.9.5
10548 =================================================
10549
10550 * Memory management: 
10551   Runtime debugging support: The slice allocator
10552   can be turned off by setting G_SLICE=always-malloc
10553   in the environment. Zeroing of freed memory can
10554   now be turned on at runtime by setting
10555   G_DEBUG=gc-friendly in the environment. [Tim Janik]
10556
10557 * Bugs fixed:
10558  328253 HP-UX/IA-64 uses ".so" as default shared library 
10559         extension [Albert Chin]
10560  143380 unicode-encoding test fails converting to UTF-16 
10561         with libiconv [Marc Moorcroft]
10562  328254 Build breakage (GSlice) [Jens Ganseuer]
10563  328705 C99ism in glib/gmem.c [Kazuki Iwamoto]
10564
10565 * Translation updates (da,et,zh_CN)
10566
10567 Overview of Changes from GLib 2.9.3 to GLib 2.9.4
10568 =================================================
10569
10570 * Type system:
10571   Fix a problem with g_object_compat_control() which 
10572   can lead to segfaults in GTK+ applications on 64bit 
10573   platforms. 
10574
10575 * Thread suppport: 
10576   Unused threads now fall back to the global pool after 
10577   500 milliseconds, where they wait for another 
10578   max-idle-time milliseconds. [Sebastian Wilhelmi]
10579
10580 * Fix a memory allocation problem in GKeyFile. [Morten 
10581   Welinder]
10582
10583
10584 Overview of Changes from GLib 2.9.2 to GLib 2.9.3
10585 =================================================
10586
10587 * GTree:
10588  - Replace the simple recursive implementation by
10589    a nonrecursive, threaded one  [Maurizio Monge]
10590
10591 * Change g_filename_display_name and
10592   g_filename_display_basename to use the Unicode
10593   replacement character U+FFFD instead of a question
10594   mark, and don't append "(invalid encoding)"  [Matthias]
10595
10596 * Documentation improvements [Sven Herzberg, Federico
10597   Mena Quintero, Stefan Kost]
10598
10599 * Bugs fixed:
10600  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X 
10601         [Bogdan Nicula]
10602  326558 Some test failures on IRIX 6.5 [Daichi Kawahata]
10603  169285 "threaded" tree implementation for GTree 
10604         [Maurizio Monge]
10605  326747 g_filename_display_basename adds (invalid encoding) 
10606         [Alberto Ruiz]
10607
10608 Other contributors: Christian Kellner, Murray Cumming
10609
10610 New and updated translations (bg,ca,de,es,et,gu,ja,nl,th,vi)
10611
10612
10613 Overview of Changes from GLib 2.9.1 to GLib 2.9.2
10614 =================================================
10615
10616 * Memory management:
10617  - Add tests for cache colorization [Tim Janik]
10618  - Minimize space consumption if small amounts of differently
10619    sized slices are allocated, at a small performance cost.  [Tim]
10620
10621 * Thread support:
10622  - Add g_atomic_pointer_set() and g_atomic_int_set() [Tim Janik,
10623    Sebastian Wilhelmi]
10624  - Add g_thread_pool_set_sort_function() to allow sorting the 
10625    tasks of a threadpool.  [Martyn Russell]
10626  - Add g_thread_pool_set_idle_time() to allow unused threads
10627    to exit after a certain time.  [Martyn]
10628
10629 * Type system:
10630  - introduce a new type GInitiallyUnowned, which has an initial
10631    floating reference. [Tim]
10632  - Add support for GType parameters. [Matthias]
10633
10634 * Main loop:
10635  - Add g_main_context_is_owner() to determine if the current
10636    thread is the owner of the context.  [Michael Meeks]
10637
10638 * Provide g_access(), g_chdir(), g_unlink(), g_rmdir() as 
10639   wrapper functions instead of macros.  [Manish Singh]
10640
10641 * Documentation improvements [Tim, Matthias, Federico Mena Quintero,
10642   Stefan Kasal, Dan Williams]
10643
10644 * New and updated translations (en_CA,fi,fr,gl,ml,nb,no,zh_HK,zh_TW)
10645
10646 * Bugs fixed:
10647  324179 g_allocator_new() returns pointer to const dummy which Gtk+ 2.8 
10648         tries to modify [J. Ali Harlow]
10649  324332 g_option_context_parse() returns false without setting error 
10650         [Tim-Philipp Müller]
10651  324950 GLIB 2.9.1 testcase errors [Dan Yefimov]
10652  325015 gslice.c: process.h is needed on Windows [Kazuki Iwamoto]
10653  321978 G_DATALIST_GET_FLAGS() macro is not casting datalist to 
10654         gpointer [Andrew Paprocki]
10655  316221 G_LOCK warns about breaking strict-aliasing [Michal Benes, 
10656         Stanislav Brabec]
10657  325273 Error in documentation for glib_check_version () [Declan Naughton]
10658  325310 g_spawn_sync hangs when catching both stdout and 
10659         stderr [Tor Lillqvist]
10660  325249 gcc warning when using g_rmdir from <glib/gstdio.h> [Jani Monoses]
10661  325864 glib/gthreadpool.c:"#define debug(...)" is C99 [Kazuki Iwamoto]
10662  325874 Should say somewhere that source IDs are > 0 [Dan Williams]
10663  325438 a typo (compatability) [Stefan Kasal]
10664  323937 gslice.c in glib 2.9.1 doesn't build on Mac OS X [Bogdan Nicula]
10665
10666
10667 Overview of Changes from GLib 2.9.0 to GLib 2.9.1
10668 =================================================
10669
10670 * Memory management
10671  - The slice allocator is implemented [Tim Janik]
10672  - g_slice_free_chain() has been renamed to 
10673    g_slice_free_chain_with_offset()  [Tim, Behdad Esfahbod]
10674  - Mem chunks are deprecated [Matthias Clasen]
10675
10676 * Data structures
10677  - Hash tables are refcounted, and have a boxed type [Tim]
10678
10679 * Thread support
10680  - Support for Solaris threads has been removed 
10681    [Sebastian Wilhelmi, Andrew Paprocki]
10682  - g_async_queue_sort(), g_async_queue_push_sorted() have 
10683    been added to allow GAsyncQueue to be used as a priority 
10684    queue, together with the corresponding _unlocked 
10685    variants  [Martyn Russell]
10686
10687 * GObject:
10688  - The concept of a floating initial reference has been
10689    moved from GtkObject to GObject [Tim]
10690
10691 * Win32 changes:
10692  - Make g_rename() replace existing files [Tor Lillqvist]
10693
10694 * Misc new API:
10695  - G_GUINT64_CONSTANT macro to define guint64 
10696    constants [Andrew Paprocki]
10697  - G_GNUC_WARN_UNUSED_RESULT macro to instruct the 
10698    compiler to emit a warning if the value returned
10699    by a function is ignored. [Arjan van de Ven, Alex Larsson]
10700  - GList and GSList now have sort functions which take an
10701    extra user data argument [Martyn Russell]
10702  - g_param_spec_ref_sink() has been added for consistency [Tim]
10703
10704 * $LOGNAME is respected when determining user data. [Laszlo Peter]
10705
10706 * Other changes and bug fixes [Tim, Matthias, Behdad, 
10707   Christian Persch, Benedikt Meurer, Andrew Paprocki, 
10708   Kazuki Iwamoto, Alexis S. L. Carvalho, Stanislav Brabec,
10709   Andreas Schwab, Kalle Vahlman]
10710
10711 * Documentation
10712  - Deprecation warnings carry version information [Matthias]
10713  - The slice allocator has been documented [Matthias, Tim]
10714  - Other improvements [Morten Welinder]
10715
10716 Overview of Changes from GLib 2.8.x to GLib 2.9.0
10717 =================================================
10718 * Unicode support:
10719  - The Unicode tables have been updated to Unicode 4.1, 
10720    adding several new values to the GUnicodeBreakType 
10721    enumeration. This breaks Pango <= 1.10 
10722    [Behdad Esfahbod]
10723  - The various Unicode character predicate functions 
10724    (g_unichar_isalpha, g_unichar_isdigit,...) have
10725    been optimized
10726    [Behdad]
10727  - g_utf8_pointer_to_offset, g_utf8_offset_to_pointer:
10728    These functions handle negative offsets now, and
10729    going backwards in g_utf8_offset_to_pointer uses
10730    "stutter stepping".
10731    [Larry Ewing, Matthias Clasen]
10732
10733 * Memory management:
10734  - Mem chunks are no longer used internally in GLib and
10735    GObject. GMemChunk will be deprecated in GLib 2.10
10736  - All APIs based on GAllocator (g_list_push/pop_allocator,
10737    and similar push/pop_allocator functions for other
10738    data structures) have been deprecated, since they
10739    never worked as intended.
10740  - The g_slice_* functions have been added as a 
10741    new API for fast allocation of small memory blocks. 
10742    The implementation in GLib 2.9.0 is just a simple 
10743    wrapper around malloc. GLib 2.10 will have an
10744    efficient and scalable implementation. 
10745    [Tim Janik, Matthias]
10746
10747 * Pattern matching:
10748  - g_pattern_match has been optimized to avoid
10749    unnecessary recursion.
10750    [Tim, Matthias]
10751
10752 * g_intern_string, g_intern_static_string: 
10753  - New functions to intern strings. These are now used 
10754    by GObject to avoid duplicating static strings 
10755    [Matthias]
10756
10757 * g_thread_foreach: 
10758  - New function to iterate over all GThreads 
10759    [Tim, Matthias]
10760
10761 * g_date_set_time_t, g_date_set_time_val:
10762  - New functions to set a GDate from a time_t or
10763    GTimeVal value. g_date_set_time has been deprecated 
10764    in favor of these.
10765    [Roger Leigh]
10766
10767 * g_snprintf and g_vsnprintf:
10768  - These functions are no longer declared in gprintf.h, 
10769    since they are in glib.h
10770    [Matthias]
10771
10772 Overview of Changes from GLib 2.8.0 to GLib 2.8.1
10773 =================================================
10774 * Optimize single-character insertions in GString [Ross Burton]
10775 * Fix build problems on OS X
10776 * Fix build problems on Win32 [Tor Lillqvist, Hans Breuer]
10777 * Other bug fixes [Matthew F. Barnes, Stepan Kasal] 
10778 * Documentation improvements [Tristan van Berkom, Behnam
10779   Esfahbod, Gustavo Carneiro, Stepan Kasal, Matthias]
10780 * New and updated translations (ca,cy,ko,ro,uk)
10781
10782 Overview of Changes from GLib 2.7.7 to GLib 2.8.0
10783 =================================================
10784 * Make g_value_transform() handle enum values
10785   correctly on ppc64.  [Michael Lorenz]
10786   (Third-party code accessing enumeration values 
10787   in GValues should also be changed to access 
10788   v_long, not v_int, in order to work on bigendian 
10789   64bit machines.)
10790 * Make g_flags_get_first_value() handle a value
10791   of 0 meaningfully. [Tim-Philipp Müller] 
10792
10793 Overview of Changes from GLib 2.7.6 to GLib 2.7.7
10794 =================================================
10795 * Make atomic operations on s390 work [Matthias]
10796 * Fix C++ guards in gstdio.h [Tor Lillqvist]
10797
10798 Overview of Changes from GLib 2.7.5 to GLib 2.7.6
10799 =================================================
10800 * Add native implementations of atomic operations 
10801   on s390 [Matthias]
10802 * Make atomic reference counting of closures
10803   work on s390 [Matthias]
10804 * Avoid an infinite loop in g_convert_with_iconv().
10805   [Sebastian Bacher]
10806 * Documentation improvements [Ross Burton]
10807
10808 Overview of Changes from GLib 2.7.4 to GLib 2.7.5
10809 =================================================
10810 * Thread-related changes
10811  - Fix build issues on HP-UX [Paul Cornett]
10812  - Threadsafe access to flags stored in datasets [Tim Janik]
10813  - Fix several issues with atomic refcounting for 
10814    closures, objects and paramspecs [Tim]
10815  - Improve tests for atomic refcounting changes [Tim]
10816 * Fix handling of stateful encodings in g_convert_* [Matthias]
10817 * Fix translation of GOption help output [Dan Winship]
10818 * Catch format errors in translations. This may cause 
10819   "make check" to fail when using older versions
10820   of gettext [Matthias]
10821 * Win32 bug fixes [Tor Lillqvist]
10822 * Documentation improvements [Ross Burton, Jochen Baier, 
10823   Matthias, Tim]
10824 * New and updated translations (de,fi,gu,pl,pt,tr,zh_TW)
10825
10826 Overview of Changes from GLib 2.7.3 to GLib 2.7.4
10827 =================================================
10828 * Fix g_atomic_pointer_compare_and_exchange 
10829   on Sparc64 [Gert Doering]
10830 * Fix a hang in g_thread_pool_free. [Hong Jen Yee]
10831 * Win32 bug fixes [Tor Lillquist]
10832 * Other bug fixes [Benoit Dejean, Manish Singh]
10833 * Documentation improvements [Bryan Silverthorn,
10834   Callum McKenzie] 
10835 * New and updated translations (de,lt,sq,zh_CN)
10836
10837 Overview of Changes from GLib 2.7.2 to GLib 2.7.3
10838 =================================================
10839 * GOption
10840  - Allow callbacks with optional arguments [Pawel Sliwowski]
10841  - Allow to turn off the automatic long option name
10842    disambiguation  [Adam McLaurin]
10843  - Only allow printable ASCII as short option names [Matthias]
10844 * Win32
10845  - Build fixes [Tor Lillqvist]
10846  - Rewrite iochannel socket implementation [Tor]
10847 * GObject
10848  - Threadsafety improvements; in particular, refcounting
10849    of objects is done atomically now. [Wim Taymans, Tim Janik]
10850 * Bug fixes [Morten Welinder, Matthias, Wim Taymans]
10851 * Documentation improvements [Richard Laager, Matthias]
10852 * New and improved translations (bf,cs,hu,nb,nl,no)
10853
10854 Overview of Changes from GLib 2.7.1 to GLib 2.7.2
10855 =================================================
10856 * Win32 build fixes [Hans Breuer]
10857 * Bug fixes [Mikael Magnusson]
10858 * Documentation improvements [Matthias Clasen]
10859 * New and updated translations (en_CA,es,et,ja,sr,sr@Latn,zh_TW)
10860
10861 Overview of Changes from GLib 2.7.0 to GLib 2.7.1
10862 =================================================
10863 * GOption 
10864  - Allow callback arguments without parameters [Dan Winship]
10865 * GMappedFile: an mmap wrapper [David Schleef, Behdad Esfahbod]
10866 * Misc new functions:
10867  - g_get_host_name [Tor Lillqvist]
10868  - g_mkdir_with_parents [Tor]
10869  - g_build_pathv, g_build_filenamev [Todd A. Fisher, 
10870    Matthias Clasen]
10871 * Bug fixes [Roger Leigh, Masatake YAMATO, Kjartan Maraas,
10872   Manish Singh, Tor, Murray Cumming, Kian Duffy, Morten Welinder]
10873 * Documentation improvements [Hong Gang XU, Dan Winship, Matthias]
10874 * New and updated translations (bg,cs,da,en_CA,es,et,nb,nl,no,
10875   sk,th,zh_TW)
10876
10877 Overview of Changes from GLib 2.6.x to GLib 2.7.0
10878 =================================================
10879 * GKeyFile
10880  - Add unit tests [Matthias Clasen, Suren A. Chilingaryan]
10881  - Accept \r\n as line end [Bastian Nocera]
10882  - Don't interpret leading zeros as octal numbers. [Matthias]
10883  - Make key and group removal work [David Hoover, Matthias Hasselmann]
10884 * GOption
10885  - Improve formatting of --help output [Matthias, Noah Levitt]
10886  - Accept -? [Matthias]
10887  - Warn about duplicate main groups [Jeff Franks]
10888  - Treat '-' as non-option argument [Tim Musson, Thomas Leonard]
10889  - Report missing arguments as errors [Björn Lindqvist]
10890  - Add a boxed type for GDate [Tim-Philipp Müller]
10891 * GTree
10892  - g_tree_remove() and g_tree_steal() return status information [Matthew F. Barnes]
10893 * Stdio wrappers
10894  - Work regardless of large file support [Manish Singh]
10895  - Add g_access(), g_chmod(), g_creat(), g_chdir [Tor Lillqvist]
10896 * GObject
10897  - Implement "toggle references" to help language bindings [Owen Taylor]
10898  - Allow to mark names, nicks and blurbs of pspecs as static [Ben Maurer, Matthias]
10899  - Make pspec lookup a bit faster [Morten Welinder]
10900 * Add g_listenv() to list all set environment variables [Hans Petter Jansson]
10901 * Add g_file_set_contents() to atomically write a file.  [Søren Sandmann,
10902   Sven Neumann, Manish, Alexis S. L. Carvalho]
10903 * Add g_try_malloc(), g_try_new(), g_try_new0() and g_try_renew() [Stefan Kost]
10904 * Add g_utf8_collate_key_for_filename() to sort filenames taking
10905   extensions and numeric suffixes into account.  [Ole Laursen, Alex Larsson]
10906 * Add G_GNUC_NULL_TERMINATED to mark varargs function with 
10907   NULL-terminated argument lists. [Marc Meissner]
10908 * Win32 changes
10909  - Improved debugability [Ulf Lamping, Hans Breuer]
10910  - Make filename handling more robust [Tor, Billy Skaggs]
10911  - Improve g_get_system_data_dirs() [Tor]
10912  - Use more precise timers [Tor]
10913  - Build fixes [Kazuki Iwamoto, Hans, Tor, Robert Ögren]
10914 * Other bug fixes [Roger Leigh, Owen, Matthias, Morten, Kjartan Maraas, 
10915   Pawel Sakowski, Tor, Simon Budig, Ed Avis, Manish, Nicolas Laurent, 
10916   Bastien, Fabrício Barros Cabral, Michael Banck, Daniel Atallah, 
10917   J. Ali Harlow, Tim Janik, Hazael Maldonado Torres, Sven, Jon-Kare Hellan,
10918   Dave Benson, Tommi Komulainen, Benjamin Otte, Brian Cameron, Changwoo Ryu, 
10919   Christian Biere, Noah, Benoît Carpentier]
10920 * Documentation improvements [Vincent Untz, Matthias, Tim-Philipp Müller,
10921   Morten, Matthew, Federico Mena Quintero, Sebastian Bacher, Oliver Sessink, 
10922   Stefan, Jared Lash, Tor, Owen, Daniel Vaillard, Mathieu Lacage]
10923 * New and updated translations (ca,cs,da,el,en_CA,en_GB,es,et,eu,fa,fr,gl,
10924   hu,id,it,lt,mn,ne,nl,pl,pt,pt_BR,ro,rw,sk,sq,sr,sr@Latn,tl,uk,xh,zh_CN)
10925
10926 Overview of Changes from GLib 2.6.0 to GLib 2.6.1
10927 =================================================
10928 * GOption
10929  - Make gtk_init(NULL, NULL) work again [Marcin Krzyzanowski]
10930  - Improve handling of -- [Matthias Clasen]
10931  - Don't show G_OPTION_REMAINING in --help output [Matthew F. Barnes]
10932 * g_find_program_in_path() doesn't return directories [Tommi Komulainen]
10933 * Add gmodule-export-2.0.pc [Matthias]
10934 * Win32 changes
10935  - Improve hangling of UNC paths [Tor Lillqvist]
10936  - g_getenv(), g_setenv(), g_unsetenv(), g_find_program_in_path()
10937    take and return UTF-8 now [Tor] 
10938  - Make g_file_test() work more reliably, and use PATHEXT
10939    when check for executables [Tor]
10940  - Build and cross-compilation fixes [J. Ali Harlow]
10941 * Other bug fixes [Jens Hatlak, Morten Welinder, 
10942   Tor, Kalpesh Shah, Adrian Bunk]
10943 * Documentation improvements [Marcin Krzyzanowski, Tor, Crispin
10944   Flowerday, Mariano Suárez-Alvarez, Christian Biere, Danny Milo,
10945   Vincent Untz, Bastien Nocera]
10946 * New and updated translations (cy,de,nl,ru,sq,sv)
10947
10948 Overview of Changes from GLib 2.4.x to GLib 2.6.0
10949 =================================================
10950
10951 * Major new APIs
10952   - GOption, a commandline option parser
10953   - GKeyFile, a parser/editor for the .ini like files 
10954   - Functions to support the XDG basedir specification
10955   - Wrappers for common POSIX pathname functions to handle filename
10956     encodings consistently. On Windows, these use UTF-8.
10957
10958 * Miscellaneous new functions
10959   - g_filename_display_name() converts filenames in displayable UTF-8 strings
10960   - g_uri_list_extract_uris() splits uri lists
10961   - g_date_get_iso8601_week_of_year() gets ISO 8601 week numbers
10962   - g_log_set_default_handler() installs an alternate default log handler
10963   - g_get_language_names() obtains a list of applicable locale names
10964   - g_strv_length() calculates the length of NULL-terminated string arrays
10965   - g_win32_get_windows_version() determines the Windows version 
10966   - G_GNUC_INTERNAL marks functions as non-exported
10967   - glib_check_version() checks the GLib version at runtime
10968   - g_debug() completes the family of logging functions
10969
10970 * Performance improvements
10971   - Optimize g_utf8_validate()
10972   - Optimize g_markup_parse_context_parse()
10973   - Reduce signal connection complexity from O(n) to O(1) 
10974   - Get rid of many PLT entries for internally used exported symbols
10975   - Reduce code size by removing literal strings from g_return_if_fail()
10976
10977 * Other changes
10978   - On Windows, GLib functions that take file name arguments now require
10979     those to be in UTF-8. Functions that return file names return UTF-8.
10980   - Use higher precision for mathematical constants
10981   - Don't convert to/from UTF-8 in g_filename_to_uri/g_filename_from_uri
10982   - Support ll as printf format modifier for long long on all platforms
10983   - Clean up the ABI and enforce the list of exported symbols
10984   - Add a .pc file for using gmodule in libraries
10985   - Require ngettext
10986
10987 Overview of Changes from GLib 2.5.7 to GLib 2.6.0
10988 =================================================
10989 * GOption: Don't list help options if group-specific
10990   options have been requested [Glynn Foster]
10991 * Make g_get_language_names() track locale changes [Christian Persch]
10992 * Win32 bug fixes [Tor Lillqvist]
10993 * Bug fixes [Philippe Blain, Owen Taylor, Sebastian Wilhelmi]
10994 * New and updated translations (da,es,ja,lt,zh_CN)
10995 Bugs fixed: 159530,100697,160271,160645,157255
10996
10997 Overview of Changes from GLib 2.5.6 to GLib 2.5.7
10998 =================================================
10999 * Optimize g_utf8_validate() [Owen Taylor, Matthias Clasen]
11000 * Optimize g_markup_parse_context_parse() [Havoc Pennington, 
11001   Morten Welinder]
11002 * Reduce signal connection complexity from O(n) to O(1) 
11003   [Sven Neumann]
11004 * Add a .pc file for using gmodule in libraries [Owen]
11005 * Add G_GNUC_MALLOC to mark functions returning newly 
11006   allocated memory  [Matthias]
11007 * Win32 bug fixes [Hans Breuer, Tor Lillqvist, Robert Ögren,
11008   Bruce Hochstetler]
11009 * Bug fixes [Kazuki IWAMOTO, Matthias, Manish Singh, Morten,
11010   Frederic Crozat, Tor]
11011 * Documentation improvements [Matthias, Tor, Owen]
11012 * New and updated translations (cs,da,de,en_CA,en_GB,es,nb,nl,sq,zh_CN)
11013
11014 Overview of Changes from GLib 2.5.5 to GLib 2.5.6
11015 =================================================
11016 * GOption
11017   - Add G_OPTION_FLAG_REVERSE to allow options 
11018     which unset a  boolean variable [Tor Lillqvist]
11019 * GChildWatch
11020   - Use sigaction instead of signal [Jonas Jonnson, 
11021   Archana Shah]
11022   - Make the very first SIGCHLD work [Gustavo Carneiro]
11023 * Bug fixes [Morten Welinder, Tor, David MacLachlan,
11024   Manish Singh, J. Ali Harlow]
11025 * Documentation improvements [Matthias Clasen, Tor]
11026 * Updated translations (da,ja,tr,zh_CN)
11027
11028 Overview of Changes from GLib 2.5.4 to GLib 2.5.5
11029 =================================================
11030 * GKeyFile
11031   - Cleanups, add more error checking [Ray Strode]
11032   - Fall back to the untranslated string when getting 
11033     locale strings [Mark McLoughlin]
11034 * GOption
11035   - Document GOption [Matthias Clasen]
11036   - Better support for rest arguments [Owen Taylor, Matthias]
11037   - Handle conflicts between groups [Matthias]
11038 * Add g_lstat() to the stdio wrappers [Tor Lillqvist]
11039 * Add g_filename_display_name() to convert filenames
11040   in displayable UTF-8 strings  [Alex Larsson, Matthias]
11041 * Win32 bug fixes [Kazuki IWAMOTO, Hans Breuer, Tor]
11042 * Bug fixes [Christophe Fergeau, Morten Welinder, 
11043   Owen, Kjartan Maraas, Mark]
11044 * Documentation improvements [Matthias, Tor]
11045
11046 Overview of Changes from GLib 2.5.3 to GLib 2.5.4
11047 =================================================
11048 Add GKeyFile, a parser/editor for the .ini like files used in various
11049    freedesktop.org specifications. [Ray Strode]
11050 Make the handling of filename encodings consistent across all
11051    GLib functions, introduce wrappers for common POSIX 
11052    functions which accept the same filename encoding. [Tor Lillqvist, 
11053    Owen Taylor]
11054 GOption
11055  - Rename g_context_option_error_quark() to a more language-binding
11056    friendly name [Murray Cumming]
11057  - Accept backslashes in filenames on Win32 [Tor Lillqvist]
11058 * Strip the internal aliasing prefix IA__ from function names in 
11059   assertions [Matthias Clasen]
11060 * Add a function to split uri lists. [Matthias]
11061 * Win32 bug fixes 
11062  - Don't open console windows [Tor]
11063 * Other bug fixes [Philippe Blain, Robert Ögren, Hidetaka Iwai, Matthias,
11064  Morten Welinder, Mats-Ola Persson, Tor, Nickolay V. Shmyrev, Kjartan Maraas,
11065   Anders Carlsson, Tim-Philipp Müller, Lucas Rocha, Andrea Campi, Manish
11066   Singh, Thomas Fitzsimmons, Kazuki IWAMOTO]
11067 * Documentation improvements [Matthias, Linus Walleij, Nickolay, Philippe, 
11068  Adam Hooper, Gustavo Carneiro]
11069 * New and updated translations (cs,en_CA,en_GB,ja,nb,nl,or,sr,sr@Latn,sq)
11070
11071 Overview of Changes from GLib 2.5.2 to GLib 2.5.3
11072 =================================================
11073 * GOption
11074  - set the program name from argv[0] [Masatake YAMATO] 
11075  - make contexts work without a main group [Anders Carlsson]
11076 * Performance 
11077  - Get rid of many PLT entries for internally used exported symbols,
11078    and clean up the ABI at the same time and make make check check the
11079    list of exported symbols.  [Matthias Clasen]
11080 * Add API to get ISO 8601 week numbers [Niklas Lundell]
11081 * Add API to install an alternate default log handler [Darin Adler]
11082 * Add API to obtain a list of applicable locale names [Hidetoshi Tajima]
11083 * Reduce code size bloat by removing literal strings from
11084  the g_return_if_fail() macros [Owen Taylor]
11085 * Add g_strv_length [Tim-Philipp Müller]
11086 * Win32 changes
11087  - Add API to determine the Windows version [Tor Lillqvist]
11088 * Other bug fixes [Stepan Kasal, Anders, Tor, Kazuki Iwamoto,
11089   Manish Singh]
11090 * Documentation improvements [Morten Welinder, Matthias]
11091 * New and updated translations (es,nn,ro)
11092
11093 Overview of Changes from GLib 2.5.1 to GLib 2.5.2
11094 =================================================
11095 * Add G_GNUC_INTERNAL macro [Arjan van de Ven]
11096 * Add GOption, a commandline option parser [Anders Carlsson]
11097 * Add glib_check_version [Michael Natterer]
11098 * Add XDG basedir API [Ray Strode]
11099 * Require ngettext [Danilo Segan]
11100 * Bug fixes [Manish Singh, Ray Strode, Vincent Noel, 
11101   Jon-Kare Hellan, Jody Goldberg]
11102 * Win32 bug fixes [Tor Lillqvist, Hans Breuer, Peter Zelezny]
11103 * Documentation improvements [Matthias Clasen, Vincent Untz, Christian Persch]
11104 * New and updated translations (bs,eu,fi,gu,ne,pa)
11105
11106 Overview of Changes from GLib 2.5.0 to GLib 2.5.1
11107 =================================================
11108
11109 * Bug fixes [Oliver Guntermann, Sven Neumann, James 
11110   Henstridge, Hiroyuki Ikezoe, Matthias Clasen, Robert 
11111   Ögren, Tommi Komulainen]
11112 * Documentation improvements [Soeren Sandmann, 
11113   Christophe Fergeau, Danek Duvall]
11114 * New and updated translations (eu,hi)
11115   
11116 Overview of Changes from GLib 2.4.1 to GLib 2.5.0
11117 =================================================
11118
11119 * New functions g_debug [Sven Herzberg]
11120 * Use higher precision for mathematical constants [Morten 
11121  Welinder]
11122 * Don't convert to/from UTF-8 in g_filename_{to,from}_uri 
11123  [Federico Mena Quintero]
11124 * Win32
11125  - Handle empty digit string in printf() functions 
11126    correctly [Tor Lillqvist]
11127  - Support ll as format modifier for long long [Tor]
11128  - Be more careful about HOME [Tor, Ivan Wong]
11129  - Bug fixes [John Ehresman]
11130 * Miscellaneous bug and portability fixes [Danilo Segan, 
11131  Owen Taylor, Nikolai Weibull, Benoît Carpentier, Morten 
11132  Welinder, Manish Singh, Sven Neumann, Julio M. Merino Vidal,
11133  Kaz Sasayama, Murray Cumming, Federico, Mariano Suarez-Alvarez]
11134 * Documentation updates [Matthias Clasen, Crispin Flowerday,
11135  Tommi Komulainen, Federico Mena Quintero, Ed Griffiths]
11136 * New and updated translations (ja,ne,no,wa)
11137  
11138 Overview of Changes from GLib 2.4.0 to GLib 2.4.1
11139 =================================================
11140
11141 * Win32 bug fixes [Tor Lillqvist, Roger Leigh, John Ehresman]
11142 * Miscellaneous bug and portability fixes [Owen Taylor,
11143   Matthias Clasen, Jonas Jonsson, Christian Krause,
11144   Nickolay V. Shmyrev, Christophe Saout, Philippe Blain,
11145   Piotr Klaban]
11146 * Documentation updates [Matthias]
11147 * New and updated translations (ca,cs,cy,el,en_CA,en_GB,es,eu,fi,
11148   fr,gu,he,id,nl,pt,pl,ru,sr,sr@ije,sr@Latn,sv,uk)
11149
11150 Overview of Changes from GLib 2.3.6 to GLib 2.4.0
11151 =================================================
11152
11153 * Handle invalid-UTF-8 in g_log() properly [Matthias Clasen]
11154 * Win32 bug fixes [Tor Lillqvist, Bruce Hochstetler]
11155 * Miscellaneous bug and portability fixes [Olivier Biot, David L. Cooper II, 
11156   Kjartan Maraas, Frédéric L. W. Meunier, Christof Petig, Manish Singh, 
11157   Sebastian Wilhelmi]
11158 * Documentation updates [Owen]
11159 * Updated translations (hr,ro)
11160
11161 Overview of Changes from GLib 2.3.5 to GLib 2.3.6
11162 =================================================
11163
11164 * GAtomic bug fixes [Sebastian Wilhelmi, Mark McLoughlin]
11165 * GMain threading fixes and improvements [Sebastian]
11166 * Win32 [Tor Lillqvist]
11167  - restore some symbols extraneously exported from gobject to maintain ABI compatibility
11168  - Misc build improvements and fixes [Tor, Cedric Gustin, Hans Breuer]
11169 * Documentation updates [Sebastian, Takeshi AIHANA, Matthias, Sven Herzberg]
11170 * New and updated translations (be,es,fi,ga,pa,sr@ije,zh_CN)
11171
11172 Overview of Changes from GLib 2.3.3 to GLib 2.3.5
11173 =================================================
11174
11175 * Make glib-mkenums parse initializers with macros. [Matthias Clasen, muppet]
11176 * Respect locale era in g_date_set_parse(). [Theppitak Karoonboonyanan] 
11177 * Add atomic operations and use it for the async queue and
11178   gonce implementation. [Sebastian Wilhelmi]
11179 * Documentation improvements [Sebastian, Matthias, Sven Herzberg]
11180 * Add g_main_depth() for finding the recursion depth of the main
11181   loop [Owen Taylor, Tim Janik, Stefan Westerfeld]
11182 * Add g_spawn_close_pid(), needed on win32 [J. Ali]
11183 * Win32 fixes. [Hans Breuer, J. Ali Harlow]
11184 * Misc bugfixes [Sebastian, Matthias, Balazs Scheidler, Owen]
11185 * Updated translations (cy,et,ga,sq)
11186
11187 Overview of Changes from GLib 2.3.2 to GLib 2.3.3
11188 =================================================
11189
11190 * Add a native AIX gmodule implementation. [Laurent Vivier]
11191 * Add g_node_copy_deep().  [James M. Cape, Matthias Clasen]
11192 * Extend GQueue API to match the GList API. [Soeren Sandmann]
11193 * Add g_hash_table_find().  [Tim Janik]
11194 * Add a G_MODULE_BIND_LOCAL flag. [David Schleef]
11195 * Inline g_string_append_c() when possible. [Owen Taylor, Tim]
11196 * Wrap waitpid() as a GSource. [Jonathan R. Blandford]
11197 * Add g_completion_complete_utf8(). [Theppitak Karoonboonyanan, 
11198   Matthias]
11199 * Add g_strsplit_set(). [Soeren]
11200 * Documentation improvements. [Vincent Untz, Sebastian Wilhelmi, 
11201   Soeren, Matthias]
11202 * Win32 build fixes. [Tor Lillqvist]
11203 * Misc bugfixes [Manish Singh, Noah Levitt, Simon Josefsson, 
11204   Morten Welinder, Damien Carbery, Julio M. Merino Vidal, Sebastian, 
11205   Matthias]
11206 * Updated translations (nn,cs,it,ko,sq,ms,az,hr,uk,sr,sr@Latn,sq,ta)
11207
11208 Overview of Changes from GLib 2.3.1 to GLib 2.3.2
11209 =================================================
11210
11211 * Add G_MAXSIZE. [Manish Singh]
11212 * Add g_rand_new_with_seed_array(), g_rand_set_seed_array(),
11213   implementing the init-by-array functionality of the 
11214   original mersenne twister. Add g_rand_copy(). Improve seeding. 
11215   [George Lebl]
11216 * Add a lowercase_name option to glib-mkenums. [Murray Cumming]
11217 * Add g_ptr_array_foreach(). [Matthias Clasen]
11218 * Add g_timer_continue(). [Tim-Philipp Müller]
11219 * Fix a threadsafety issue in mem chunks. [Matthias, Balazs Scheidler]
11220 * Fix g_filename_{to,from}_utf8() on Win32 and improve 
11221   g_file_test() there too [Hans Breuer] 
11222 * Add a boxed type for NULL-terminated string arrays.  [Matthias]
11223 * Add G_DEFINE_TYPE() plus variants to ease the constuction
11224   of GObject boilerplate code.  [Tim Janik]
11225 * Support & in password GECOS field [Matthias, Soeren Boll Overgaard]
11226 * Documentation improvements [Matthias, Manish]
11227 * Win32 build fixes [Hans]
11228 * Misc bug fixes [Damien Carbery, Matthias, Manish, Olivier Poncet, 
11229   Zack Rusin]
11230 * Updated translations (ar,de,fa,ga,mn,nn,no,sq)
11231
11232 Overview of Changes from GLib 2.3.0 to GLib-2.3.1
11233 =================================================
11234
11235 * Add glib/gi18n.h and glib/gi18n-lib.h for common
11236   gettext support, including a Q_() macro for translation
11237   with context [Matthias Clasen]
11238 * Add a more flexible G_FILENAME_ENCODING variable
11239   as a replacement for G_BROKEN_FILENAMES [Matthias]
11240 * Fix the return value g_main_context_iterate() for
11241   newly ready sources [Padraig O'Briain]
11242 * Handle Hangul composition for normalization [Noah Levitt]
11243 * Add G_{MIN,MAX,MAXU}INT{8,16,32}. [Mark Jones, Matthias]
11244 * Add G_GSIZE_FORMAT/G_SSIZE_FORMAT [Manish Singh]
11245 * Add G_STRFUNC as a portable wrapper for __func__ [Tim Janik]
11246 * Documentation improvements [Matthias]
11247 * GObject [Tim Janik]
11248  - Support '-' in g_signal_connect()/disconnect() names
11249    like 'swapped-signal'.
11250  - Add g_type_class_peek_static() and use to optimize
11251    g_object_new() for static types [Tim]
11252  - Allow setting construct-only properties from within
11253    init() implementations
11254  - Enforce readability/writeability in g_object_set/get()
11255 * Fix bug with g_ascii_strtod and multi-byte separator.
11256   [Behdad Esfahbod, Roozbeh Pournader]  
11257 * Misc bug fixes [Matthias, John Ehresman, Andrew Lanoix,
11258   Tor Lillqvist, Mark McLoughlin, Tim-Philipp Müller, Manish, 
11259   Morten Welinder]
11260 * Updated translations (ca,cs,da,es,fr,ja,nn,no,pt,ru)
11261
11262 Overview of Changes from GLib 2.2.x to GLib-2.3.0
11263 =================================================
11264
11265 * Replace Trio printf by gnulib vasnprintf [Matthias Clasen]
11266 * Update Unicode data to Unicode 4.0 [Noah Levitt]
11267 * Support XML-safe formatted output with 
11268   g_markup_[v]printf_escaped [Owen Taylor]
11269 * Add g_file_read_link to read symbolic links [Matthias]
11270 * Add g_unichar_get_mirror_char to obtain the 
11271   mirrored variant of a character [Noah]
11272 * Support for one-time initialization functions. 
11273   [Sebastian Wilhelmi]
11274 * Miscellaneous API additions: g_vasprintf
11275   g_string_chunk_insert_len, g_setenv, g_unsetenv [Matthias]
11276 * Docs improvements [Matthias]
11277 * Add support instance-private data on classed types
11278   [Mark McLoughlin, Tim Janik, Owen]
11279 * Optimize signal emissions [Soeren Sandmann, Tim]
11280 * Support a "default vtable" per interface [Tim]
11281 * Add support for properties on interfaces [Owen, Tim]
11282 * Miscellaneous API additions: g_value_take_string(),
11283   g_value_take_param(), g_value_take_object(), 
11284   g_value_take_boxed(). [Matthias]
11285 * Win32 build fixes [Tor Lillqvist]
11286
11287 Overview of Changes from GLib 2.1.5 to GLib-2.2.0
11288 =================================================
11289
11290 * Fix a problem with g_thread_init() on 64-bit problems
11291   [Alceste Scalas, Sebastian Wilhelmi]
11292 * Add assembly implementations of byteswap macros
11293   for ia64 and x86_64. [Manish Singh]
11294 * IOChannel fixes for Win32 [Tor Lillqvist, Thorsten Maerz]
11295 * Updated translations (bg,ca,es,da,fi,lv,ru,sk)
11296
11297 Overview of Changes from GLib 2.1.4 to GLib-2.1.5
11298 =================================================
11299
11300 * Win32 bug fixes [Tor Lillqvist]
11301 * Various post-rewrite fixes for glib-gettext.m4 [Owen Taylor,
11302   Jody Goldberg, Kjartan Maraas, Johannes Stezenbach]
11303 * Ensure we have a GUINT64_FORMAT by pulling in Trio
11304   if necessary [Manish Singh]
11305 * Further Trio build fixes [Matthias Clasen, Owen]
11306 * Hack around gcc, libtool issues with -pthread [Owen]
11307 * Docs improvements [Matthias]
11308 * Bug and portability fixes 
11309 * Updated and new translations (bg,de,fi,fr,sq,fr)
11310
11311 Other contributors: Kai Poitschke, Morten Welinder
11312
11313 Overview of Changes from GLib 2.1.3 to GLib-2.1.4
11314 =================================================
11315
11316 * autoconf changes to make it possible to cross compile
11317   GLib. [Owen Taylor, Dan Kegel, Amy Lin, Dimi Shahbaz, 
11318   Johannes Stezenbach]
11319 * Use libintl when it has bind_textdomain_codeset() and
11320   GLib doesn't. [Owen]
11321 * Improve generation of pseudo-random integers [Morten Welinder, 
11322   Sebastian Wilhelmi]
11323 * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren]
11324 * Cleanup include order [Sven Neumann]
11325 * autoconf cleanups and bug fixes [Daniel, Matthias Clasen, Owen]
11326 * Doc fixes and additions [Matthias]
11327
11328 Other contributors: James M. Cape, Frederic Crozat, Martin Gansser,
11329   Phuc LeHong, Manish Singh, Joshua Weage, Morten Welinder
11330
11331 Overview of Changes from GLib 2.0.x to GLib-2.1.x
11332 =================================================
11333
11334 * Add copy of the Trio library to build and use for printf() when 
11335   system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen]
11336 * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson]
11337 * Add g_markup_parse_context_get_element() [Matthias]
11338 * Add g_utf8_strreverse [Matthias]
11339 * Add g_ascii_strtoull() [Tim Janik]
11340 * Support scanning of 64-bit values with GScanner [Tim]
11341 * Add g_set/get_application_name() [Havoc Pennington]
11342 * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. 
11343   Use for g_return_if_fail(). [Matthias Clasen]
11344 * Add G_GNUC_DEPRECATED macro [Tom Tromey]
11345 * Improve the seeding algorithm of GRandom to avoid problems
11346   with certain pathological seeds. Support G_RANDOM_VERSION=2.0
11347   environment variable. [Sebastian Wilhelmi]
11348 * Improve thread configure checks, use -pthread where applicable
11349   [Sebastian]
11350 * Improve handlng of thread priorities [Sebastian]
11351 * Fix up parameter names that might shadow functions from
11352   system headers [Soeren Sandmann]
11353 * Clean up usage of deprecated functions [Manish Singh]
11354 * Docs fixes and improvements. In particular, include "Since" information.
11355   [Matthias, Soeren, Martin Schulze, Daryll Strauss, Bill Janssen, 
11356   Owen Taylor, Morten Welinder]. 
11357
11358 Overview of Changes in GLib 2.0.7
11359 =================================
11360
11361 * Fix C++ warnings in gtype.h [Dom Lachowicz]
11362 * Fix g_type_fundamental_next() [Tim Janik]
11363 * Fix various missing includes of config.h [Morten Welinder]
11364 * Handle main loop initialization before g_thread_init [Sebastian Wilhelmi]
11365 * Various 64-bit fixes [Manish Singh]
11366 * Fix GPoll on Win32 [Tor Lillqvist, Herman Bloggs]
11367 * Fix bug with buffering on UTF-8 IOChannels [Daniel Elstner]
11368 * Misc bug and build fixes [Soren Andersen, Gustavo Carneiro, Tor,
11369      Tim, Havoc Pennington,  Matthias Clasen, Sebastian Rittau,
11370      Masahiro Sakai, Arvind Samptur, HideToshi Tajima, Owen Taylor]
11371 * Updated and new translations (be,cs,de,*fa,it,lv,pt_BR,tr)
11372
11373 Overview of Changes in GLib 2.0.6
11374 =================================
11375
11376 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
11377 * Clean up debug spew from GObject [Anders Carlsson]
11378 * Compiler warning fixes [David L. Cooper II]
11379 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
11380 * Fixes for --disable-debug [Sebastian Wilhelmi]
11381 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
11382   Rajkumar Sivasamy, Laurent Vivier]
11383 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
11384   Sebastian Rittau, Linus Welleij]
11385 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
11386 * Updated translations (bg,ko,vi)
11387
11388 Overview of Changes in GLib 2.0.5
11389 =================================
11390
11391 * Fix problem with interface prerequisites [Jon Trowbridge, Dave Camp]
11392 * Clean up debug spew from GObject [Anders Carlsson]
11393 * Compiler warning fixes [David L. Cooper II]
11394 * Fix some problems with g_build_path() [Guillaume Chazarain, Owen Taylor]
11395 * Fixes for --disable-debug [Sebastian Wilhelmi]
11396 * Threading fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, 
11397   Rajkumar Sivasamy, Laurent Vivier]
11398 * Documentation fixes [Jacob Berkman, Manuel Clos, Jared Dukat, 
11399   Sebastian Rittau, Linus Welleij]
11400 * Misc bug fixes [Anders Carlsson, Sam Couter, Morten Welinder, Owen]
11401 * Updated translations (bg,ko,vi)
11402
11403 Overview of Changes in GLib 2.0.4
11404 =================================
11405
11406 * Fix some 64-bit problems. (George Lebl, David L. Cooper II)
11407 * Add note about Tru64 iconv to INSTALL. (Manuel Op de Coul)
11408 * Fix problem with timouts > MAXINT. (Tim Janik, Owen Taylor)
11409 * Updated translations (ca,es,fr,ja,gl,ms,nl,pl,pt,ru)
11410
11411 Overview of Changes in GLib 2.0.3
11412 =================================
11413
11414 * Handle sorting 0-length arrays (Ron Arts)
11415 * Threading fixes (Sebastian Wilhelmi)
11416 * Portability fixes (Miroslaw Dobrzanski-Neumann, Jacob Berkman, Gareth Pierce, 
11417   Sebastian, Qingjiang Yuan)
11418 * Various fixes for glib-2.0.m4. (Jim Gettys, others.)
11419 * Locate right glib-genmarshal when cross-compiling. (Mitch Natterer)
11420 * Win32 fixes (Tor Lillqvist)
11421 * Try to fix g_get_charset() related segfaults. (Owen)
11422 * Fixes for gettext detection. (Dan Winship, HideToshi Tajima, Boyd Lynn Gerber,
11423   Andrew P. Lentvorski, Jr.)
11424 * Fix g_scanner_unexp_token() (Tim Janik, Sven Neumann)
11425 * g_markup fixes. (Matthias Clasen.)
11426 * Bug fixes and cleanups (Daniel Elstner, Matthias, Laszlo Peter, Morten Welinder,
11427   Wayne Schuller)
11428
11429 Overview of Changes in GLib 2.0.1
11430 =================================
11431
11432 * Portability fixes for Sun's Forte compiler [Erwann Chenede]
11433 * Performance improvements for GObject parameter lookup, 
11434   g_filename_to/from_utf8() [Alex Larsson]
11435 * Actually check interface prerequisites [Matthias Clasen,
11436   Miroslaw Dobrzanski-Neumann]
11437 * Fix problem with glib-mkenums taking huge amounts of stack. [Owen Taylor]
11438 * Fix g_signal_handlers_disconnect_by_func() for C++ [Damien Sandras]
11439 * Fixes for g_log() and threading.
11440   [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann, Tim Janik]
11441 * Make g_print(), g_printerr(), g_warning(), etc, convert from
11442   UTF-8 to the encoding of the locale [Sebastian Wilhelmi, Tim]
11443 * Fixes for GIOChannel on windows. [Tor Lillqvist]
11444 * Fix gsize/gint mismatches in giochannel.c [Miroslaw Dobrzanski-Neumann]
11445 * Fix file descriptor leak in g_file_get_contents() [Matthias]
11446 * Workaround iconv() problems on older Solaris [Lauri Alanko]
11447 * Fix warnings with gcc-3.1 about asm const [Cody Russel]
11448 * Minor bug fixes.
11449
11450 Other contributors: Hans Breuer, LEE Sau Dan, Sven Neumann, Salmaso Raffaele,
11451   Akira Tagoh, Morten Welinder
11452
11453
11454 Overview of Changes in GLib 2.0.0
11455 =================================
11456
11457 * Thread portability fixes [Sebastian Wilhelmi]
11458 * Documentation updates [Owen Taylor]
11459 * Make g_strerror(), g_strsignal() properly return UTF-8,
11460   call bind_text_domain_codeset() so that error strings
11461   are in UTF-8 as well. [Owen, Tor Lillqvist]
11462
11463 Overview of Changes in GLib 2.0.0 rc1:
11464 ======================================
11465
11466 * Win32 fixes [Tor Lillqvist]
11467 * Portability fixes [Finlay Dobbie, Miroslaw Dobrzanski-Neumann]
11468 * Fix up g_date_strftime [Daniel Elstner]
11469 * Add some structure padding [Tim Janik]
11470 * Make g_get_homedir() prefer the users home directory to $HOME
11471
11472 Other contributors: Matthias Clasen, Paolo Maggi, Christian Rose
11473
11474 Overview of Changes in GLib 1.3.15:
11475 ===================================
11476
11477 * Speed up marshalers by using private access to GValue 
11478   [Anders Carlsson, Tim Janik]
11479 * Reduce GValue to 2 elements [Tim]
11480 * Add G_DEBUG environment variable, G_DEBUG=fatal_warnings [Matthias Clasen]
11481 * Fixes for AIX compilation [Miroslaw Dobrzanski-Neumann]
11482 * Add padding to various structures [Owen Taylor, Tim]
11483 * Win32 fixes [Tor Lillqvist]
11484
11485 Other contributors: James Henstridge, Ryan Lovett, Morten Welinder,
11486   Daniel Elstner
11487
11488 Overview of Changes in GLib 1.3.14:
11489 ===================================
11490
11491 * Register value transformations for gint64, guint64 [Andy Wingo]
11492 * Build with large-file support [Sven Neumann, Owen Taylor]
11493 * Fix handling of hostnames in URI's [Darin Adler]
11494 * Main loop bug fixes [Havoc Pennington, Owen]
11495 * Doc fixes and improvements [Manish Singh, Tim Janik]
11496 * Support ' as attribute delimiters in GMarkup [Matthias Clasen]
11497 * Win32 fixes [Hans Breuer, Tor Lillqvist]
11498 * Threading bug and build fixes [Sebastian Wilhelmi, Miroslaw Dobrzanski-Neumann]
11499 * Miscellaneous bug fixes
11500
11501 Other contributors: Matthias Clasen, James Henstridge, Mitch Natterer, 
11502   Morten Welinder.
11503
11504 Overview of Changes in GLib 1.3.13:
11505 ===================================
11506
11507 * Fix g_filename_to/from_uri for Win32 [Tor Lillqvist, Darin Adler]
11508 * Miscellaneous win32 fixes [Tor, Hans Breuer]
11509 * Fix thread options for gcc on AIX [Jerome Zago, Sebastian Wilhelmi]
11510 * Documentation improvements [Ron Steinke, Matthias, Sebastian]
11511 * Cache iconv converters as used by g_convert() [Jeffrey Stedfast]
11512 * Bug fixes [Sven Neumann, Owen Taylor, Matthias Clasen, Jeffrey,
11513   Laszlo Peter, Havoc Pennington, Tim Janik]
11514
11515 Overview of Changes in GLib 1.3.12:
11516 ===================================
11517
11518 * Implement closure chaining, fixing up API (Tim Janik)
11519 * Closure chaining test case (James Henstridge)
11520 * Make GType long not int where both are equal width (Tim)
11521 * Win32 fixes and improvements (Hans Breuer, Tor Lillqvist)
11522 * Fixes for NetBSD. (Dan Winship)
11523 * Use snprintf() for g_printf_string_upper_bound() where possible. (Matthias Clasen)
11524 * Save space for GBSearchArray (Tim Janik)
11525 * Documentation improvements. (Matthias, Sven Neumann, Havoc Pennington)
11526
11527 Other contributors: Darin Adler, Chris Blizzard, Anders Carlson, Daniel Elstner, Michael Meeks, 
11528   Mark McLoughlin, Dave Neary, Manish Singh, Owen Taylor, HideToshi Tajima, 
11529   Sebastian Wilhelmi.
11530
11531
11532 Overview of Changes in GLib 1.3.11:
11533 ===================================
11534
11535 * Win32 fixes [Hans Breuer, Tor Lillqvist]
11536 * Documentation improvements [Matthias Clasen]
11537 * Portable directory handling API [Hans]
11538 * Threading fixes [Sebastian Wilhelmi, Havoc Pennington]
11539 * Fix excess relocations in Unicode tables [Andrew Taylor]
11540 * Fix gpattern for UTF-8 [Matthias Clasen]
11541 * Support overriding class closures [Tim Janik]
11542 * Support for derivation from G_TYPE_POINTER [Owen Taylor]
11543 * Hide pointers to type information inside GType to reduce locking
11544   [Alex Larsson, Tim]
11545 * Adds check for direct inclusion of gobject/*.h [Owen]
11546 * GObject API cleanups [Tim]
11547
11548 Other contributors: Darin Adler, Jacob Berkman, Daniel Egger, Eric Lemings, 
11549   Michael Meeks, Mark McLoughlin, Arkadiusz Miskiewicz, Dan Winship
11550
11551
11552 Overview of Changes in GLib 1.3.10:
11553 ===================================
11554
11555 * Many Win32 fixes and improvements [Tor Lillqvist]
11556 * Documentation improvements [Matthias Clasen]
11557 * g_string_printfa() renamed to g_string_append_printf()
11558 * Use libcharset from libiconv to implement charset detection
11559   more portably. [Owen Taylor, Hidetoshi Tajima]
11560 * Add 64 bit type support to GObject [Joshua Pritikin, Mathieu Lacage, Owen]
11561 * Make support for 64 bit integers a requirement [Joshua]
11562 * GPattern improvements [Tim Janik, Matthias]
11563 * Locale independent g_ascii_strtod / g_ascii_dtostr [Alex Larsson]
11564 * Many bug fixes and minor tweaks.
11565
11566 Other Contributors: Darin Adler, Jakub Jelinek, James Antill, Andrew Taylor,
11567   Ben Gertzfield, Elliot Lee, Manish Singh, Abel Cheung, Laszlo Peter,
11568   Sven Neumann, George Lebl, Raja Harinath, Sebastian Wilhelmi,
11569   Jacob Berkman
11570
11571
11572 Overview of Changes in GLib 1.3.9:
11573 ==================================
11574
11575 * Fixes for comparison of threads [Sebastian Wilhelmi]
11576 * Use vasprintf() when possible for g_strdup_printf [Matthias Clasen]
11577 * Win32 fixes [Tor Lillqvist, Hans Breuer]
11578 * Add a len argument to g_ascii_strup/strdown
11579 * Bug, portability fixes, cleanups.
11580
11581 Other Contributors: Darin Adler, Katsuhiro Okuno, Joshua N. Pritikin
11582
11583
11584 Overview of Changes in GLib 1.3.8:
11585 ==================================
11586
11587 * Documentation updates [Owen]
11588 * Made GType interfaces overridable in derived types
11589 * Many win32 fixes [Tor Lillqvist]
11590 * Miscellaneous cleanups and fixes
11591
11592 Other contributors:
11593   Darin Adler, Matthias Clasen, Ron Steinke, Hans Breuer, Alex Larsson
11594
11595
11596 Overview of Changes in GLib 1.3.7:
11597 ==================================
11598
11599 * Integrate GClosure support into the main loop [Owen Taylor]
11600 * More GSignal convenience functions (macros) [Sven Neumann, Tim Janik]
11601 * Introduced weak references for GObject [James Henstridge, Sven, Tim] 
11602 * Minor hash table optimizations
11603 * Main loop and threading improvements [Sebastian Wilhelmi]
11604 * Added g_ascii_* functions to be used for locale insensitive UTF-8
11605   compliant code instead of old string functions  [Darin Adler, Alex Larsson]
11606 * Add functions for Unicode case-conversion, normalization, and 
11607   collation [Owen]* GString improvements [Owen]
11608 * Reworked the GIOChannel code [Hidetoshi Tajima, Ron Steinke]
11609 * Removed glib-config-2.0 in favour of pkgconfig [Sebastian]
11610 * Make code 64bit clean [Mark Murnane]
11611 * More G_CONST_RETURN fixes
11612 * Many improvements to the win32 code [Tor Lillqvist, Hans Breuer]
11613 * Miscellaneous bug and API fixes
11614
11615 Other contributors:
11616   Michael Natterer, Christopher James Lahey, Padraig O'Briain,
11617   Matthias Clasen, Josh Pritikin, Steve Baker, Cesar Rincon, Garry R. Osgood,
11618   Michael Meeks, Laszlo Peter,  Martin Baulig, Kjartan Maraas, Andrew Lanoix,
11619   Peter Williams
11620
11621
11622 Overview of Changes in GLib 1.3.6:
11623 ==================================
11624
11625 * Threads have a "return value" from g_thread_join
11626 * Removed ability to adjust thread stack size
11627 * Prefix warnings with progname/PID by default, change toggle for this to 
11628   be an env variable G_MESSAGES_PREFIXED not a compile-time option
11629 * GMarkup speedups
11630 * GDate const, convenience fixups
11631 * Include test cases that headers are compilable by C++ compiler
11632 * Add ability to spawn processes with argv[0] != executable path.
11633 * g_strstr_len, g_strrstr, g_strrstr_len
11634 * Add length argument to g_utf8_strchr and g_utf8_strrchr.
11635 * Misc bug fixes
11636
11637
11638 Overview of Changes in GLib 1.3.5:
11639 ==================================
11640
11641 * Added an installed glib-mkenums Perl program for parsing enumeration
11642   declarations from header files.
11643 * Mark some additional deprecated functions.
11644 * Bug and Portability fixes
11645
11646
11647 Overview of Changes in GLib 1.3.4:
11648 ==================================
11649
11650 * Efficiency improvements for GThreadPool
11651 * A few bug fixes
11652 * Build fixes
11653 * Documentation improvements
11654
11655
11656 Overview of Changes in GLib 1.3.3:
11657 ==================================
11658
11659 GLib:
11660
11661 * More user_data support in various functions.
11662 * Main loop API revamps to support per-thread main loops.
11663 * Unicode handling improvements.
11664 * Implemented debugging traps.
11665 * G_CONST_RETURN specification all over the place.
11666 * Various new small utility functions.
11667 * Random number generator precision improvements.
11668 * New configure option --disable-mem-pools.
11669 * Many Win32 improvements.
11670 * Added g_try_malloc() friends varinats.
11671 * Many documentation improvements.
11672 * Many threading improvements, support for dynamic allocation
11673   of static mutexes.
11674 * GHookLIst API cleanups.
11675 * Improved format support of GDate parser.
11676 * String function speed improvements with new g_stpcpy().
11677 * Hashtable API additions.
11678 * New GPatternSpec for shell-style pattern matching (from GtkPatternSpec).
11679 * Optimizations, cleanups, bug fixes.
11680
11681 GObject:
11682
11683 * Added many convenience functions.
11684 * GClosure and GParamSpec use float/sink ref-counting scheme now.
11685 * Reworked property change notification.
11686 * Binary searchable array cleanups, so it's widely usable now.
11687 * Added static content keeping for some GValue types.
11688 * Support for statically scoped signal parameters.
11689 * Extinguished property trailer args in set/get interface.
11690 * Added support for abstract types.
11691 * G_CONST_RETURN specification all over the place.
11692 * Split parameter exchange functionality into value transforms
11693   and parameter conversions.
11694 * Added signal emission hooks and signal accumulators.
11695 * Added interface prerequisites to support is_a (interface, object)
11696   relations.
11697 * Implemented GValueArray.
11698 * New types, boxed: G_TYPE_VALUE, G_TYPE_CLOSURE, G_TYPE_GSTRING
11699   GParamSpecs: G_TYPE_PARAM_PARAM, G_TYPE_PARAM_POINTER, G_TYPE_PARAM_CLOSURE,
11700   G_TYPE_VALUE_ARRAY, G_TYPE_PARAM_UNICHAR, G_TYPE_PARAM_VALUE_ARRAY.
11701 * Varrags value collection improvements.
11702 * Implemented debugging traps.
11703 * Made things thread-safe.
11704 * Many documentation improvements.
11705 * Many cleanups, optimizations and bug fixes.
11706
11707
11708 Overview of Changes in GLib 1.3.2:
11709 ==================================
11710
11711 GLib:
11712
11713 * Win32 build improvements  [Tor]
11714 * Improvements to error reporting  
11715   (g_critical(), g_return_if_reached()) [Darin]
11716 * Add g_strlcpy/g_strlcat  [David Wheeler]
11717 * New IO channel implementation for Win32  [Tor] 
11718 * Make g_array_free, g_string_free return pointer to memory requested
11719   not to be freed.  [Darin]
11720 * Added GError based error reporting for thread functions.  [Sebastian]
11721 * Moved reference docs into GLib distribution. [Owen]
11722 * Added g_convert() for doing convenient character set conversions based
11723   on iconv. (GLib now requires libiconv or a native iconv.) [Havoc/Owen]
11724 * Various Unicode handling additions (g_ucs4_to_utf8, g_utf8_validate(),
11725   g_{locale,filename}_{to,from}_utf8)  [Robert/Havoc/Owen]
11726 * Portability fixes for threading.  [Sebastian]
11727 * Added convenient functions for launching new processes (g_spawn_*),
11728   and shell quoting/unquoting functions.  [Havoc]
11729 * Split glib.h into many headers.  [Sebastian]
11730 * Added a simple callback-based parser for XML-like files (GMarkup).  [Havoc]
11731 * Fixed confusions between comparison functions that return <0, 0, >0
11732   and equaility functions that return FALSE,TRUE.  [Sebastian]
11733 * Added safe/portable temporary file manipulation functions.  [Tor]
11734 * autoconf improvements.  [Raja]
11735 * Many documentation improvements.
11736 * Bug fixes.
11737
11738 GObject:
11739
11740 * Added boxed and pointer types.  [Tim/Jonathan]
11741 * Added callback abstraction (GClosure)  [Tim]
11742 * Added signal system (GSignal)  [Tim]
11743 * Make GTypePlugin an interface  [Tim]
11744 * Added GTypeModule - a simple GTypePlugin instantiation  [Owen]
11745 * Bug fixes.
11746
11747
11748 What's new in GLib 1.3.1:
11749 =========================
11750
11751 * New GObject library added including object system based on
11752   the GTK+ object system. 
11753 * Functions for getting the properties of Unicode characters, 
11754   computing the canonical decomposition and ordering combining
11755   characters aand manipulating UTF-8 string manipulation based
11756   on libunicode.
11757 * GString now properly handles embedded nuls.
11758 * Multiple fixes from the 1.2.x branch.
11759 * Upgrade to libtool 1.3.3
11760 * Full thread support (thread creation and destruction).
11761 * BeOS port, BeOS dynamic modules.
11762 * Many improvements to the Windows ports.
11763 * Improvements to the OS/2 port, OS/2 module support.
11764 * Double ended queue implementation.
11765 * GLib macros for printf() formatting, e.g. G_GULONG_FORMAT = "lu"
11766 * New configure option --enable-msg-prefix to prefix messages, warnings
11767   et ceteri with the program name and the process id.
11768 * New thread-safe random number generator Mersenne Twister.
11769 * g_strcompress() added, g_strescape() had a slight API change, and
11770   more tightly defined semantics.
11771 * the g_string(x) macro has been removed, #x may be used instead.
11772                                 
11773