forked from haaspors/glib-old-android
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNEWS
4633 lines (3883 loc) · 160 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Overview of Changes from GLib 2.25.17 to GLib 2.26.0
====================================================
GSettings:
- allow override files to have entries for non-existent schemas
- schema compiler no longer aborts due to an error in a single .xml
file
GDBus:
- fix some race conditions in the connection test cases
GDateTime:
- hide some implementation details (time zones)
- fix parameter naming in header file to match .c file
- add G_GNUC_WARN_UNUSED_RESULT for modifier functions
- add full ISO 8601 week date support and improve docs
Other:
- g_quark_try_string(NULL) now returns 0 without error
- clean up confusing code in GSocketControlMessage
- fix SOCKS5 memory leak
- improve some docs
Bugs closed:
628937 gracefully handle broken schemas
629687 leaks class refcount in gsocketcontrolmessage
630000 g_date_time_difference
630077 GDateTime week number support
630185 Allow NULL strings in g_quark_try_string()
Translations updated:
Basque
Brazilian Portuguese
Bulgarian
Czech
Danish
Dutch
Estonian
French
Greek
Hebrew
Japanese
Korean
Romanian
Russian
Spanish
Traditional Chinese
Overview of Changes from GLib 2.25.16 to GLib 2.25.17
=====================================================
The reduction of #include abuse that was made during the last release
had the side-effect of completely breaking the build when compiling
against the system-installed pcre library (see bug #629971). This
release fixes that.
The Portuguese translation has also been updated.
Overview of Changes from GLib 2.25.15 to GLib 2.25.16
=====================================================
GApplication:
GApplication, GAction and related classes have been removed from this
release of glib. There will -not- be a replacement for 2.26.0.
Build:
- massive restructuring to reduce #include abuse
- tweaks to silence some harmless compiler warnings
- rename gschema-compile.c to glib-compile-schemas.c
- Windows fixes
- fix building with zlib < 1.2.4 on win32
GDateTime:
- better msgctxt for translating month and weekday names
- API is changed quite a lot, implementation is improved
- GTimeZone is now exposed
GObject:
- make ordering for overridden interface properties consistent
- ->priv structures are limited to 64k but this was not documented,
and exceeding this limit produced bad results. Add docs and enforce
the limit properly.
- add g_object_class_install_properties() to install multiple
properties in one go
- improve debugging output for GValue containing G_TYPE_STRV
GIO:
- fix priority sorting of GIO extensions
- add GCredentials support on FreeBSD
- fix support for IPv6 addresses in URI parsing functions
- GSocketClient fixes for when g_socket_connect succeeds immediately
- clarify string encoding for GFile constructors in docs
- new functions g_data_input_stream_read_upto{,async,finish}
- tweak confusing documentation for g_output_stream_write()
GDBus:
- GDBusMessage can now be locked and copied (like in libdbus)
- GDBusConnection filter function API has changed again
- GDBusServer: ::new-connection now declares if the connection was claimed
- add a partial workaround for GObject bug 627724.
- very many memory leaks fixed
GVariant:
- check for size == 0 in g_variant_get_bytestring to avoid a crash
when attempting to get_bytestring() from an empty array
- improve gobject-introspection annotations
GSettings:
- add GSettings Windows registry backend
- some internal tweaks to the backend API
- remove g_settings_list_items
- add g_settings_list_children and _list_keys to replace it
- add schema compiler restrictions for dealing with lists
- don't automatically emit value changed signals on writability
changes
Other:
- constify the 'parser' vtable param to g_markup_parse_context_push()
- plug many memory leaks in test cases
Bugs closed:
50076 Time API to go with date API
584284 g_data_input_stream_read_until_async different from sync version
624546 Modification of GDBusMessage in filter function
626919 Let g_object_class_install_property() return the installed GParamSpec*
628029 GDateTime missing get_week_of_year method
628253 Interface properties not listed in a consistent order
628331 Plug lots of mem leaks in gio test suite
628345 Plug a mem leak
628436 Plug a mem leak
628505 Fix building with zlib < 1.2.4 on win32
628839 [PATCH] datetime: Rename shadowing variables
628904 [PATCH] Add credential support for FreeBSD and fix a socket issue
628952 incorrect glib_major_version and other variables on cygwin.
629192 g_strdup_value_contents(): dump GStrv more usefully
629251 g_socket_client_async_connect_complete: assertion failed
629259 Failed to connect to "::1"
629328 g_markup_parse_context_push doesn't respect const structs
629429 month "May" short and full form same with "GDateTime" msgctxt
629689 GDBusConnection leaks its GCredentials
629698 Segfault in g_variant_get_bytestring()
Updated translations:
Arabic
Armenian
Basque
British English
Czech
Finnish
Galician
German
Hungarian
Indonesian
Japanese
Lithuanian
Norwegian bokmål
Polish
Portuguese
Punjabi
Simplified Chinese
Slovenian
Spanish
Swedish
Swedish
Traditional Chinese
Overview of Changes from GLib 2.25.14 to GLib 2.25.15
=====================================================
* GIO
- Memory leak fixes
- The GZip(De}Compressor can now process header information
- Support for network proxies has been added, with the GProxy
interface and the gio-proxy-resolver extension point. GIO
includes SOCKSv4 and SOCKSv5 implementations, and libproxy
is also going to provide an implementation of this extension
point.
- There are GAction and GActionGroup interfaces now, which will
be used in GApplication in the near future.
* GObject
- There are now convenience macros for defining boxed and
pointer types
* GDBus
- Memory leak fixes
- GDBusProxy for well-known names can now auto-restart
the service if the name owner disapperas
- Filter functions are now allowed to modify messages
* GLib
- GDateTime is a replacement for GDate that supports time
and timezone information.
* Bugs fixed:
50076 Time API to go with date API
449565 Add G_DEFINE_BOXED_TYPE()
617691 Add GZIP header processing to GZlibCompressor/GZlibDecompressor
622184 add g_memory_output_stream_steal_data
624546 Modification of GDBusMessage in filter function
627088 Build failure in gdbus-peer.c on FreeBSD
627181 save a memdup
627182 Plug a mem leak in the gdbus-connection test
627187 Plug some gdbus mem leaks
627188 gdbus-non-socket test occasionally fails
627252 G_OPTION_FLAG_NO_ARG is only for callback options
627392 gdbus commit 8a3a4596 breaks win32 compile
627407 FTBFS on !linux UNIX platforms
627604 String error: 'that' twice in a row
627969 ABR in g_file_open_tmp
628084 gdbus-peer fails with assertion
628193 Miscellaneous string fixes
628296 abort() in gsocketconnection.c
628309 Plug a mem leak in GConverterOutputStream
628317 GEmblemedIcon:equal implementation is buggy
628323 Fix invalid reads
628327 Plug a mem leak
628328 Plug a mem leak
628329 Don't leak the FD list
628324 Invalid reads in gdbus-export test
* Updated translations:
British English
Danish
Galician
Hebrew
Punjabi
Serbian
Spanish
Traditional Chinese
Overview of Changes from GLib 2.25.13 to GLib 2.25.14
=====================================================
* GDBus
- Make the closure variants of GDBus apis work
- Make error unregistration work
- Use async IO in the IO thread (626748)
* GIO
- Make g_simple_async_result_is_valid work without source (626208)
- GSocketClient: add a timeout property
- Fix memory leaks in GSocketClient
- Handle async vs. sync correctly in GSocketConnection stream (616458)
- Declare stream base classes as abstract
- Clarify semantics of g_output_stream_write() (627071)
* Other
- Improve test coverage for GDBus, GRegex, GAsyncResult
- Drop dead code in pcre, xdgmime
- Fix a race condition in gtester (578295)
- Avoid an extra allocation in GAsyncQueue (626704)
- Add test case for non-socket GIOStream (626841)
- More explicit GVariant docs (622770)
- Imroved docs for GAsyncInitable and GSimpleAsyncResult (602417)
* Translation updates:
- Galician
- Norwegian bokmål
- Punjabi
- Simplified Chinese
- Swedish
Overview of Changes from GLib 2.25.12 to GLib 2.25.13
=====================================================
+-------------------------------------------------------------------+
| WARNING: There have been no breaks in API or ABI. Weird, eh? |
+-------------------------------------------------------------------+
The primary purpose of this release is to fix a serious problem with
glib 2.25.12: glibconfig.h (as generated on a Fedora amd64 system) was
being distributed in the tarball. It was being used to build some parts
of glib on other systems (eg: 32bit ones). This was causing some very
serious problems.
There have been many other improvements, however:
Build and testing:
- vastly improved test coverage
- old tests moved to the gtester framework
- gtester Makefile modified so that the tests only run once
- cleanup of how we handle includes while building glib
GVariant:
- add a g_return_if_fail (utf8) to g_variant_new_string()
GDBus:
- perform extra sanity checks when serialising messages
- add API to query and set the byteorder of a GDBusMessage
- improve debug output, add some extra options
- if exiting due to the bus disconnecting us, print an error message
explaining why
- sort property names correctly
- don't bother sending RemoveMatch when we will close the connection
anyway
- use effective uid/gid for credential passing
GSettings:
- add G_SETTINGS_BIND_INVERT_BOOLEAN for inverting boolean bindings
without mapping functions
- mark all strings in the schema compiler for translation
Binding:
- improve closure support for bindings
- copy GSettings INVERT_BOOLEAN flag
Other:
- fix another complicated GCancellable deadlock possibility
Bugs closed:
599590 glib build doesn't look for correct pkg-config
619026 avoid warning in gutils.h when using gcc with -Wconversion
624739 Please fix POTFILES.in
625472 Valgrind claims uninitialized bytes used
625500 g_date_set_time_val documentation doesn't mention local time
625628 GDBusProxy: wrong property name sorting
625753 Incorrect flags used in g_dbus_connection_call_sync()
625827 Expand documentation about error quark naming
625988 builddir != srcdir issues
626107 glibconfig.h is being disted
Updated translations:
French
Galician
Hebrew
Norwegian bokmål
Spanish
Overview of Changes from GLib 2.25.11 to GLib 2.25.12
=====================================================
+-------------------------------------------------------------------+
| WARNING: There have been many API changes in GDBus -- sending |
| messages, subscribing to signals, closing connections and |
| registering subtrees are affected. The ABI for GSettingsBackend |
| has also been changed. For both reasons, a new dconf release is |
| required (and will be along soon). |
+-------------------------------------------------------------------+
Build:
- cleanup automake setup
- rename configure.in to configure.ac
- various docs fixups
- move glibconfig.h to glib/
- disable dtrace support on Mac OS (which has incompatible 'dtrace')
GSettings:
- add support for vendor override files (to change the default values
in a schema)
- change GSettingsBackend vtable
- add g_settings_reset()
- support binding to G_TYPE_STRV properties
GDBus:
- many bug fixes, including a serialisation fix
- stop handling incoming connections as soon as stop() is called
- proper support for file descriptor passing
- new flags parameter for sending messages
- new flags parameter for subscribing to signals
- always reset the message serial when sending a message unless
G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL is given
- constness fixes for introspection structures
- clean ups to subtree registration API
Other:
- fix divide by zero bug in g_malloc_n functions
- GIO: don't blindly assume that SOCK_CLOEXEC is supported
- make GObject property notify freezes threadsafe
- GIO: clean up credentials passing
- GApplication: make default-quit not apply if register=FALSE
- GIO: add annotations for gobject-introspection
Bugs closed:
166020 use GAtomic for refcounting
617483 Credentials passing
622005 [GApplication] no way to modify the "default-quit" property
623293 vendor override files
623810 Message serialization bug
623815 Don't check sender for GDBusProxy objects where name is not set
624473 GDBusSubtreeIntrospectFunc return type
624483 GDBusSubtreeEnumerateFunc clarification
624484 GDBusSubtreeDispatchFunc clarification
624754 gdbusaddress.c missing sys/wait.h
624968 div by zero in g_malloc_n family
624991 GSettings mapping for G_TYPE_STRV
625383 Add missing GI annotations
Updated Translations:
Armenian
Galician
German
Hebrew
Kazakh
Romanian
Simplified Chinese
Spanish
Overview of Changes from GLib 2.25.10 to GLib 2.25.11
=====================================================
+-------------------------------------------------------------------+
| WARNING: There have been minor API changes in GDBus and GVariant. |
| These API changes will not affect many users, but they do require |
| a new version of GTK+ to be installed. |
+-------------------------------------------------------------------+
Build:
- add a --disable-Bsymbolic configure flag to disable linking with
-Bsymbolic-functions
- this release sees the complete removal of the old 'g*alias' hacks
- honour the NOCONFIGURE environment variable from autogen.sh
- use proper feature test macros for isnan
- use pkg-config to check for zlib
- add ACLOCAL_AMFLAGS to Makefile.am
GDBus:
- hide Class and instance structures for all GDBus types except
GDBusProxy. This breaks API by preventing subclassing, but probably
nobody was doing that.
- add new GDBusConnection call to support flushing all pending
outgoing messages
- change the register_object API to add a reference to the
GDBusInterfaceInfo object so the caller need not keep it alive
themselves
- don't rewrite the serial number when sending messages that already
have a serial number
- better error checking for DBUS_SESSION_BUS_ADDRESS environment
variable
- switch to g_parse_debug_string for G_DBUS_DEBUG and add a lot of new
flags
- add support for temporarily freezing a freshly created
GDBusConnection. Do this until after the ::new-connection signal
has finished running on GDBus services.
- never require non-closed connections (the user is incapable of doing
this due to the obvious race)
- remove weird/misleading redundant check on NameOwnerChanged signal
- emit GDBusProxy::g-properties-changed on NameOwnerChanged
GVariant:
- the 'g_variant_{new,get}_byte_array' APIs have been removed
- g_variant_{new,get,dup}_bytestring has been added, with different
arguments and different behaviour
- g_variant_{new,get,dup}_bytestring_array has been added, doing
essentially the same thing as the 'strv' functions, but with byte
strings instead of utf8 strings
- G_VARIANT_TYPE_BYTESTRING ('ay'), BYTESTRING_ARRAY ('aay') and
STRING_ARRAY ('as') constants have been added
- the undocumented behaviour that g_variant_get_strv() deserialised
arrays of object paths or signature strings has been dropped
- additional varargs support for converting bytestrings or bytestring
arrays with ^ay ^aay ^&ay and ^a&ay
- improved gobject-introspection annotation
- fix a problem with GBuffer calling g_slice_free for the wrong type
- fix leaks in the type inferencing code of the parser
GSettings:
- improved documentation
- updated schema XML DTD, now xincluded into the docs
- added support for schemas that extend other schemas (using the
'extends=' attribute). Values of keys in the base schema can be
overridden using <override>.
- added theoretical support for lists (using the 'list-of=' attribute)
- lots of new tests
- add support for flags (implemented similarly to enums)
- add support for generating .enums.xml files to gsettings.m4:
gsettings_ENUM_NAMESPACE = org.example.myapp
gsettings_ENUM_FILES = ../path/to/*.h
will generate org.example.myapp.enums.xml with mappings for all
enums and flags in the specified .h files.
- warn with g_message() if the 'memory' backend is used by default
(ie: because no other GSettings backends are installed)
- fix get_property() for GSettings::schema
- command line tool: fix a bug that prevented non-basic values from
being set due to a premature free
- command line tool: bash completion support
- chain up in _finalize
- add a new g_settings_get_mapped API to read settings that require
post-processing
- retry with the translated or schema default value if the
GSettingsBindGetMapping function fails
- schema compiler: never fail due to empty schema directories (but
warn)
- peek rather than ref/unref the GEnumClass in the mapping function
- schema compiler: compile *.enums.xml before *.gschemas.xml to ensure
that we have all the enums that the schemas may reference
- schema compiler: improve accuracy of line numbers in error reports
- fix crashes in the keyfile backend caused by invalid group names in
the keyfile
Other:
- always intern GBinding prop names
- base64: remove asserts preventing conversion of empty strings
- document NULL special-cases for GValueArray
- GNode docs improvements
- improve detection of 'system internal' mounts
- fix leaks in the inotify GFileMonitor implementation
- annotate all custom GIO GSources to improve debugging (e.g. using
SystemTap)
Tests:
- Turn on glibc malloc checking features for make check
- improvements for GSettings tests, plus new tests
- improved tests for GKeyfile
- new tests for GDir, GSList, GSList, GAppLaunchContext,
CharsetConverter, GIcon, ...
- move some tests to GTester (tree tests, uri tests)
- generally, really an awful lot of new tests
- don't try to allocate 2gigs of memory anymore for the array test
552363 g_value_array_{insert,prepend,append}'s special cases for NULL
561248 Improve return value description from g_node_prev/next_sibling()
570036 Add ACLOCAL_AMFLAGS to Makefile.am
576833 g_sprintf add a reference to g_strdup_printf
576854 g_strconcat() documentation should provide a hint about bad l10n
582227 reference: add other URI functions to 'URI Functions' section
599223 should provide g_spawn_* variants that take a GAppLaunchContext
610784 array test failing
613057 Leak in inotify GFileMonitor implementation
620536 Annotate all custom GIO GSource using g_source_set_name
620913 More control with G_DBUS_DEBUG
622124 implement flags
622127 GSettings extended key validation
622128 retry with default value for failed mapping
622294 More annotations for GVariant
622565 glib-compile-schemas fails when no schemas
622600 Fix missing prototype warning
622813 gsettings mapping & enum buglet
623142 Ensure ::new-connection runs before processing D-Bus messages
623143 Never require non-closed connections
623319 use g_parse_debug_string for dbus debug flags
623401 process enums first
623402 schema compiler reports wrong line numbers
623407 g_keyfile_settings_backend_new crashes with the key "/"
623473 zlib should be checked with pkg-config
623537 GDBusProxy has weird checking on NameOwnerChanged
623538 GDBusProxy::g-properties-changed emission for corner cases
623692 directory with file at multiple MLS levels may display empty
623720 gschema.dtd does not contain enum definitions
623770 quoting of expand_macro in gdesktopappinfo.c
623772 gdesktopappinfo.c, function child_setup
623780 g_unix_is_mount_path_system_internal
623954 g_settings_finalize
623955 Dubious return values
Updated translations:
Galician
Hebrew
Norwegian bokmål
Spanish
Overview of Changes from GLib 2.25.9 to GLib 2.25.10
====================================================
+----------------------------------------------------------------+
| WARNING: There have been API changes in GDBus. Users of these |
| APIs will need to be adapted. In particular, a new release of |
| dconf is required to go along with this one. There has also |
| been a change in the GSettings backend API used for keyfiles. |
+----------------------------------------------------------------+
* GDBus:
- add direction parameter to filter functions (API change)
- allow calling other interfaces with a GDBusProxy
- padding added to class struct fields (ABI change)
- fixes for closures-based functions
* GVariant:
- new is_floating() call
- add g_value_take_variant() call (required for marshallers)
* GSettings:
- support for binding GParamSpecEnum properties
- ifelse-style condition support for GLIB_GSETTINGS m4 macro
- remove gsettings-schema-convert tool (now in GConf)
- allow introspection of all installed schemas
- allow introspection of the keys in a schema
- rewrite keyfile backend (API change)
* GNIO:
- don't implicitly close GSocket until it is destroyed
- windows fixups
* Other:
- allow GChecksum to take (NULL, 0) for data/length
- GRelation and GCompletion are now deprecated
- introduce G_PARAM_DEPRECATED and G_ENABLE_DIAGNOSTIC
- add working directory to GApplication platform data
- lots of documentation cleanups
- PCRE updated to 8.02
* Build:
- the IA__g_* style symbol aliasing has been disabled and replaced with
the -Bsymbolic-functions linker flag on platforms that support it.
Please be on the watch for portability issues and report them to us.
- many test cases have been moved to the GTester framework
- lcov support has been added for tests
- many windows fixes
* Bugs fixed:
501057 lcov coverage suite and GLib integration
551271 deprecate GRelation
601686 Implement diagnostic mode
603309 GSocketOutputStream broken on Windows (?)
616718 GLIB_GSETTINGS macro can't be used conditionally
616855 GSocketConnection: don't close the socket if it's still reffed
618866 g_ptr_array_remove_index_fast memory leak
619878 keyfile backend calls keys_changed with invalid argument
619879 keyfile backend doesn't make use of expected_type
621092 Add with_closures() variants for bindings
621172 Cross compiling fails
621838 Actually add cwd to platform data
621945 Filter outgoing messages in GDBusConnection
621947 add g_value_take_variant
622038 GSettings: "It is a programmer error" documentation is unclear
622154 [patch] update documentation for g_application_new
622281 binding: Add SYNC_CREATE to the flags
622480 Improve documentation for g_strcmp0()
622554 g_error called if schema not installed
622601 Return interned strings from g_settings_list_keys
* Translation updates:
- Galician
Overview of Changes from GLib 2.25.8 to GLib 2.25.9
===================================================
+----------------------------------------------------------------+
| WARNING: There have been API changes in GDBus, GSettings and |
| GApplication. Users of these APIs will need to be adapted. In |
| particular, a new release of GTK+ is required to go along with |
| this one. |
+----------------------------------------------------------------+
* GDBus
- Use Gio's default async implementation
- Fix proxy construction for objects with no properties
- Fix error handling in synchronous initialization
- Do not dispatch calls to unregistered objects
- Add _with_closures alternative functions
- Allow constructing GDBusProxy with well-known names
- Remove GType parameters from GDBusProxy constructors
- Nuke g_bus_watch_proxy API
- Add --xml to gdbus-tool to print raw introspected XML
* GSettings
- schema file format change: store (default, options) in gvdb
- Add g_settings_sync()
- Add support for enums and ranges
- 'context' support has been replaced by direct use of
GSettingsBackend
* GApplication
- Switch to using variants for timestamps
- Use GInitable
* GObject
- Introduce g_object_notify_by_pspec
- Add GBinding
- The GVariant gtype G_TYPE_VARIANT was changed from boxed
to fundamental. We believe there were no existing users
of the boxed type, so this should not cause any applications
to break.
* Test framework
- Add package and version to the test report XML
- Use optparse to parse gtester-report commandline
- Add subunit support to gtester-report
- Prevent division by zero if no tests
* Bugs fixed:
621782 Crash using gbinding
619945 GConverterOutputStream triggers assertion and corrupts data
621319 more leaked GVariants in GSettings
621168 GKeyFile memory leak on Windows platform
621002 Switch to using variants for timestamps, split out signals
620953 tiny docs addition
618904 Lies in gunixmounts documentation
621702 Correctly initialize GError
611778 minor cleanup of gtester-report
621213 GDBusProxy and well-known names
621034 Rewrite apps test to ensure children are killed
620954 gapplication gvariant simplifications
611869 add subunit out feature to gtester-report
621119 GDBusProxy and objects with no properties
620990 Use Gio's default async implementation again
620952 g_application_register_with_data is an ugly API
621252 GSettings leaks context
618715 fork() in GSettings test cases is problematic 618715
621905 Assume a ref when doing async work
621266 GSettings "context" clarification
* Translation updates:
Chinese
Overview of Changes from GLib 2.25.7 to GLib 2.25.8
===================================================
* Initial support for dtrace and systemtap profiling:
- mainloop sources can be named
- probes for memory allocation with g_malloc and gslice
- gquark name tracking
- type creation
- object life-cyle (creation, finalization, ref, unref)
- signal creation and emission
* GVariant
- has been fixed to work with the FreeBSD malloc
- added introspection annotations
- new function: g_variant_builder_add_parsed
* GSettings:
- g_settings_set/get_strv functions have lost their length parameter
- g_settings_set_strv accepts NULL
- added introspection annotiations
* GPermission: an abstract interface for representing permissions,
with a minimal implementation named GSimplePermission
* GApplication: a basic application support class, with a D-Bus based
implementation
* Bugs fixed:
619585 glib-compile-schemas asserts on FreeBSD
620384 Annotate GVariant and GSettings _strv() functions
606044 Add support for dtrace/systemtap static markers
620350 add g_variant_builder_add_parsed() API
620349 utf8ify GVariant printer
620767 Typo in GSettings documentation: "INTLTOOL_NOMERGE_RULE"
620312 Fix g_settings_[gs]et_strv() API
620519 GPermission
620582 GPermission needs a simple implementation
620496 GSettings schema compiler should reject invalid paths
620173 missing single header inclusion guards
620265 g_assertion_message_error should take const GError *
* Translation updates:
Esperanto
Galician
Hebrew
Indonesian
Norwegian bokmål
Slovenian
Spanish
Overview of Changes from GLib 2.25.6 to GLib 2.25.7
===================================================
* NOTE: API/ABI breaks since 2.25.6 release:
- g_dbus_connection_sync{,_sync} takes a new 'reply_type' argument
- GSettingsBackendClass 'list' virtual function changed
GSettings backends and things using GDBus may need to be rebuilt.
* GDBus: many build-related fixes
* GDBus (service): return a DBus error when receiving a method call for
an unknown interface.
* GSettings: fix 'make install' bug in gsettings.m4 for generated schema
files
* GSettings: avoid non-portable use of LC_MESSAGES
* better approach to handling man pages
* Bugs fixed:
619527 please improve docs on g_file_make_symlink
619391 send-with-reply should have expected result signature
618616 Use stack-allocated GVariantBuilders
617004 Build with "--disable-nls" fails under MinGW/Win32
619142 Build fixes (GDBus)
* Updated translations:
Estonian
Galician
Norwegian bokmål
Overview of Changes from GLib 2.25.5 to GLib 2.25.6
===================================================
* GDBus: introspection improvements
* GDBus: build fixes
* GSettings: GSettingsBackend ABI changed **** NOTE ****
* GSettings: --uninstall option for schema compiler
* GSettings: new m4 macro with more power
* GSettings: thread support
* rework of file notification on Solaris
* fixes for gold linker
* Bugs fixed:
619038 increase gsettings.m4 power
619031 method-calls-in-thread test failing
618839 Typo at translation message
616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
618730 gunixcredentialsmessage.c doesn't compile on GNU/kfreebsd
616314 Make GSettings (partially) threadsafe
* Updated Translations:
Indonesian
Galician
Spanish
Overview of Changes from GLib 2.25.4 to GLib 2.25.5
===================================================
* GDBus: Fix serialization of empty arrays
* GDBus: Plug various memory leaks
* GSettings: Fix problems with GSETTINGS_CHECK_RULE
* Bugs fixed:
616731 GSETTINGS_CHECK_RULE doesn't work in non-srcdir builds
616864 GSETTINGS_CHECK_RULE doesn't work with multiple files
618615 mem leaks in parse_value_from_blob
618622 Plug some mem leaks in gdbus
618650 Plug a mem leak in gdbusauth
618663 Plug mem leaks in gdbus tests & examples
* Updated translations:
Spanish
Overview of Changes from GLib 2.25.3 to GLib 2.25.4
===================================================
* GDBus D-Bus support has been merged. This provides an API
to replace dbus-glib
* GVariant no requires strings to be UTF-8. You can use byte
arrays for non-UTF-8 strings.
* GSettings allows to bind string properties to byte arrays
* The schema compiler supports range restrictions
* Bugs fixed:
618051 socket-server|client.c fail to compile under AIX...
616102 GSettings ignores <choice> and <range>
616720 Chunked quark allocation
616877 Several issues with g_socket_receive_message
616892 gio: Add a boxed type for GFileAttributeMatcher
616967 Add g_regex_get_compile_flags() and g_regex_get_match_flags()
617767 g_settings_[gs]et_strv() 'length' argument has missing docs...
617914 gtester-report: cope with binaries with no test cases
617937 output_stream_close vs output_stream_close_async semantics
615494 Connction timeouts produce partially invalid error messages
617823 glib-compile-schemas problems with an out of source build
617947 glib-mkenums: add @valuenum@ support
* Translation updates:
Galicaian
Norwegian bokmål
Shavian
Spanish
Overview of Changes from GLib 2.25.2 to GLib 2.25.3
===================================================
* New macro: G_GNUC_DEPRECATED_FOR, a variant of G_GNUC_DEPRECATED
that lets you add replacement information (requires gcc 4.5)
* Rename AM_GSETTINGS autoconf macro to GLIB_GSETTINGS
* Rename gschema-compile utility to glib-compile-schemas
* Add support for timeouts in GSocket
* Bugs fixed:
589989 Compilation error on Solaris 9
616648 Change AM_GSETTINGS macro to GLIB_GSETTINGS
587898 I/O timeouts for GSocket
614541 Add G_TYPE_ERROR boxed type for GError
Overview of Changes from GLib 2.25.0 to GLib 2.25.2
===================================================
* Include a 'gsettings' utility, for commandline access to GSettings
* Install a AM_GSETTINGS autoconf macro similar to AM_GCONF
* GSettings can bind the writability of a key explicitly
* There is now a predefined boxed type for GError
* Bugs fixed:
615379 g_new macros crash if sizeof(struct_type) == 0
616312 Add m4 rule equivalent to GCONF_SCHEMAS_INSTALL
616295 mapping bug for uint64
616216 glib compile from remote directory fails
615960 Fix size passed to connect() for abstract sockets
616432 Crash in gschema-compile
616331 gsettings-schema-convert uses imaginary types
616309 gsettings-schema-convert should output gettext-domain
616384 Add mention of GConfBridge in conversion docs
616311 gschema-compile outputs in current directory
616276 simplify gschema-compile test setup
616156 keys with unnecessary empty options arrays
616405 gsettings missing g_return_if_fail's
616245 Use G_DEFINE_INTERFACE macro
614541 Add G_TYPE_ERROR boxed type for GError
* Updated translations:
Catalan (Valencian)
Galician
Kannada
Spanish
Overview of Changes from GLib 2.24.0 to GLib 2.25.0
===================================================
* The GSettings framework has been merged. This provides the API to
replace GConf. DConf will provide a backend implementation for it.
GConf will also provide a backend implementation to ease the
transition. We provide utilities to assist with schema conversion
and data migration, as well as a porting guide.
* Translation updates:
Bengali
Catalan
Danish
Gujarati
Marathi
Thai
Traditional Chinese
Overview of Changes from GLib 2.23.6 to GLib 2.24.0
===================================================
* Bug fixes:
613601 buglet in dup_close_on_exec_fd
584284 g_data_input_stream_read_until_async behaves confusingly
613748 Write errors in middle of copy cause hang
613923 splice_stream_with_progress: wrong error handling
613667 Typo in GObject documentation
613618 gvariant format string docs unclear
* Translation updates:
Basque
Ukrainian
Vietnamese
Overview of Changes from GLib 2.23.5 to GLib 2.23.6
===================================================
* Class private data:
- support for private data associated with a GTypeClass
* GVariant merge is now complete:
- loading functions and parser merged
* Windows improvements:
- socket fixes
- various build improvements
- removal of GCC/C99isms in favour of portable code
- drop unmaintained Visual Studio 8 support
* Minor API addition:
- g_desktop_app_info_get_filename()
* Bugs fixed:
521707 Class private data
612502 build fails on glib/tests/gvariant.c
612832 [GDesktopAppInfo] New function g_desktop_app_info_get_filename
612702 [PATCH] Fix GSocket-related crash on Windows
612736 Improve the documentation about single include
610858 gvariant test fails sometimes
612327 uninitialized variable
* New translations:
Afrikaans
LowGerman
* Updated translations:
Czech
Finnish
Galician
Greek
Punjabi
Romanian
Serbian
Overview of Changes from GLib 2.23.4 to GLib 2.23.5
===================================================