-
Notifications
You must be signed in to change notification settings - Fork 13
/
NEWS
1622 lines (1270 loc) · 47.3 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
1.6.7 (stable)
==============
- Fix compatiblity with libxml2 2.12.x
- Improve reproducability
- ControlPoint: Fix re-scan
- ContextManager: Fix boot-id update
- Context: Fix crash if served URI is not an IP address
All contributors to this release:
- Jens Georg <[email protected]>
- Markus Volk <[email protected]>
1.6.6 (stable)
==============
- NetworkManager: Drop manual creation of lo contexts
- ServiceProxy: Add new API for creating actions
- Introspection: Be more resilient against weird formatting
- Acl: Improve introspectability
- ServiceProxy: Add result iterator for Action
- Plug various smaller leaks
All contributors to this release:
- Jens Georg <[email protected]>
1.6.5 (stable)
==============
- Fix build with meson 1.2
1.6.4 (stable)
==============
- Keep a weak reference to proxy in action
- Add API to provide HTTP credentials for simple authentication
- Remove xmlRecoverMemory usage
Bugs fixed in this release:
- Fixes: https://gitlab.gnome.org/GNOME/gupnp/-/issues/85
- https://gitlab.gnome.org/GNOME/gupnp/issues/86
All contributors to this release:
- Jens Georg <[email protected]>
- Jan-Michael Brummer <[email protected]>
- Colin <[email protected]>
1.6.3 (stable)
==============
- Fix handling of deprecated and tentative v6 addresses
- Bump GSSDP minimjal version to 1.6.2
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/82
- https://gitlab.gnome.org/GNOME/gupnp/issues/83
All contributors to this release:
- Jens Georg <[email protected]>
1.6.2 (stable)
==============
- Add test for issue 81
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/81
All contributors to this release:
- Jens Georg <[email protected]>
1.6.1 (stable)
==============
- ControlPoint: Fix error handling if description download fails
- Use proper method for detecting IFA_FLAGS availability
- ContextManager: Do not leak filtered contexts
- Network ContextManager: Do not leak list parts of context lists
- Introspection: Properly chain up to parent class
- ContextManager: Fix freeing unavailable contexts
- ControlPoint: Do not leak cancellable
- Service: Fix crash if subscription callback is points unreachable host
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/80
- https://gitlab.gnome.org/GNOME/gupnp/issues/78
All contributors to this release:
- Jens Georg <[email protected]>
1.6.0 (stable)
==============
- Re-release of 1.5.4, no functional change
1.5.4 (development)
===================
- Fix build against libsoup 3.1.2 or later
- Do not rely on a log message from libsoup in tests
- Use Docbook 4.5 for manpage
- Do not use env in binding generator
- Add missing libxml2 dependency for test
All contributors to this release:
- Jens Georg <[email protected]>
- Tomasz Kłoczko <[email protected]>
1.5.3 (development)
===================
- Linux context manager: Do not filter out v6 global addresses
- Context: Add new convenience constructors
- Examples: Fix browse.js for new API
- NetworkManager: Create v4 and v6 contexts if no family is specified
- Connman: Create v4 and v6 contexts if no family is specified
All contributors to this release:
- Jens Georg <[email protected]>
1.5.2 (development)
===================
- Minor doc improvements
- Minor example fixes
- Fix pkg-config dependencies
- Fix issues found by coverity
- Deprecate internal UUID generator function
- Set log domains everywhere
- Support IPv6 in all context managers (Windows still broken)
ServiceProxy:
- Fix error handling in sync call
- Fix a memory leak in subscribe()
- Change subscribtion timeout handling
ServiceInfo:
- Remove deprecated callback
ContextFilter:
- Fix it
- Notify only if content changes
DeviceInfo:
- Set task names
ContextManager:
- Add tests for filtering
- Fix behaviour of filter. Now the filter acts as if the context is
appearing/disappearing
Vala:
- Fix ownership of XML doc
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/10
- https://gitlab.gnome.org/GNOME/gupnp/issues/10
- https://gitlab.gnome.org/GNOME/gupnp/issues/10
- https://gitlab.gnome.org/GNOME/gupnp/issues/36
- https://gitlab.gnome.org/GNOME/gupnp/issues/37
- https://gitlab.gnome.org/GNOME/gupnp/issues/70
All contributors to this release:
- Jens Georg <[email protected]>
1.5.1 (development)
===================
- Minor doc fixes
- Remove left-overs from WhiteList renaming
- Make tests a little friendlier if there is no ipv6
- Fix a couple of issues from scan-build
DeviceInfo:
- Make DeviceInfo:document accessible
- Offer convenience function DeviceInfo:get_icon_async to combine
icon lookup and icon download
ServiceAction:
- Potential fix for running g_clear_pointer on an uninitialized value
- Fix getting parameters from action
ServiceInfo:
- Do not free an error that was propagated
- Fix introspection on IPv6 devices
Service:
- Fix critical if Soup error other than G_IO_ERROR_CANCELLED occured
All contributors to this release:
- Jens Georg <[email protected]>
1.5.0 (development)
===================
- Port to libsoup3
- API bump (1.6)
- Improved test coverage
- All _valist functions have been removed
- The documentation is now provided by gi-docgen
- All API that was marked as deprecated up until 1.4 has been removed
ServiceIntrospection:
- is now a GInitable
Context:
- Uses GSSDP.Client:port
- Fix reference leak when using ACL
DeviceInfo:
- The get_device() and get_service() virtual functions have been renamed
ServiceAction:
- ServiceAction::return() was renamed to ServiceAction::return_success() to
avoid issues with languages such as python
ServiceInfo:
- Non-gio style introspection functions are now deprecated
Service:
- Returns a proper error instead of calling g_error when autoconnect fails
ServiceProxy:
- Fixes an issue with M-POST fall-back if POST calls failed
- There is no need anymore to call ServiceProxyAction::get() to get SOAP
transport errors; those will now be already presented by the
ServiceProxy::call_action_finish() call.
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/58
- https://gitlab.gnome.org/GNOME/gupnp/issues/42
- https://gitlab.gnome.org/GNOME/gupnp/issues/52
- https://gitlab.gnome.org/GNOME/gupnp/issues/53
- https://gitlab.gnome.org/GNOME/gupnp/issues/54
- https://gitlab.gnome.org/GNOME/gupnp/issues/58
- https://gitlab.gnome.org/GNOME/gupnp/issues/60
- https://gitlab.gnome.org/GNOME/gupnp/issues/61
- https://gitlab.gnome.org/GNOME/gupnp/issues/63
All contributors to this release:
- Jens Georg <[email protected]>
- Marvin Schmidt <[email protected]>
1.4.0 (stable)
=====
- Fix fallback option for GSSDP dependency
- Linux CM: Fix address family filtering
- Linux CM: Fix a typo
All contributors to this release:
- Robert Tiemann <[email protected]>
- Jens Georg <[email protected]>
1.3.1 (development)
=====
- Add ContextFilter class, deprecate WhiteList
- Fix several reference leaks
- Fix broken boot-id logic
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/56
All contributors to this release:
- Jens Georg <[email protected]>
1.3.0
=====
- Service: name Tasks
- Doc: Some grammaer fixes
- Dead and deprecated code clean-up
- Move tests that are actually examples into examples
- Move tests from gtest to test
- Doc: General clean-up
- Fix some introspection annotations
- Build: Make gupnp usable as a subproject (more or less)
- Make it possible to re-use a ServiceProxyAction
- Service: Validate "Host" header for GENA actions
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/17
- https://gitlab.gnome.org/GNOME/gupnp/issues/18
- https://gitlab.gnome.org/GNOME/gupnp/issues/55
All contributors to this release:
- Jens Georg <[email protected]>
1.2.7
=====
- Fix build with -Wformat-security=error
- Bump required GLib version to 2.66
- Fix some introspection annotations
- Add missing varargs functions to vapi
- Revert fix from 1.2.5 which causes managed control points to
live too long
All contributors to this release:
- Jens Georg <[email protected]>
- Bastien Nocera <[email protected]>
- Andreas Müller <[email protected]>
1.2.6
=====
- Fix wrong dependency on GSSDP 1.2.4
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/48
All contributors to this release:
- Jens Georg <[email protected]>
1.2.5
=====
- Fix introspection annotation for send_action_list
- Fix potential fd leak in linux CM
- Fix potential NULL pointer dereference when evaluating
unset ServiceProxyActions
- Fix leaking the message string if an action is never
sent
- Fix leaking the ServiceProxyAction if sending fails
in call_action
- Fix introspection annotation for send_action and
call_action_finish to prevent a double-free
- Make ServiceIntrospection usable from
gobject-introspection
- Add Python examle
- Add C example
- Fix JavaScript example
- Fix potential use-after-free if service proxy is
destroxed before libsoup request finishes in control
point
- Fix potential data leak due to being vulnerable to DNS
rebind attacs
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/47
- https://gitlab.gnome.org/GNOME/gupnp/issues/46
- https://gitlab.gnome.org/GNOME/gupnp/issues/23
- https://gitlab.gnome.org/GNOME/gupnp/issues/24
All contributors to this release:
- Jens Georg <[email protected]>
- Doug Nazar <[email protected]>
- Andre Klapper <[email protected]>
1.2.4
=====
- Fix subscription check on V6 link-local addresses
- Add autofree function for GUPnPServiceProxyAction
All contributors to this release:
- Jens Georg <[email protected]>
1.2.3
=====
- Attention: Requires GSSDP 1.2.3!
- Always build the gupnp-binding-tool manpage
- Fix meson build on Windows
- Fix context creation for tests across different platforms
- Fix static linking issue caused by libguul subproject
- Add mitigations for CVE-2020-12695 (CallStranger)
- Implement UDA 2.0 April 17 2020 Addendum (Patial fix for CVE-2020-12695)
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/15
- https://gitlab.gnome.org/GNOME/gupnp/issues/16
All contributors to this release:
- Jens Georg <[email protected]>
- soiamsoNG <[email protected]>
- Peter Seiderer <[email protected]>
- Jan-Michael Brummer <[email protected]>
- Mart Raudsepp <[email protected]>
1.2.2
=====
- Fix macOS dylib versioning
- Fix endless loop on early notify
- Several documentation fixes
- Implement version-independent type registration in ResourceFactory
- Fix an issue with implementation of the depracted functions
- Fix an issue with including net/if.h and linux/if.h
- Add async introspection functions matching the usual GIO function pattern
- Go through main loop if introspection fails before the actual network request
- Bump required GLib version to 2.58
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=764498
- https://gitlab.gnome.org/GNOME/gupnp/issues/5
- https://gitlab.gnome.org/GNOME/gupnp/issues/6
- https://gitlab.gnome.org/GNOME/gupnp/issues/8
All contributors to this release:
- Jens Georg <[email protected]>
- Fabrice Fontaine <[email protected]>
- Tom Schoonjans <[email protected]>
1.2.1
=====
- Fix a deadlock when cancelling an action
- Do not call-back a cancelled action
- Fix public dependencies
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/7
All contributors to this release:
- Jens Georg <[email protected]>
1.2.0
=====
- Release 1.2.0
1.1.2
=====
- Use python3 in binding tool
- Avoid a static buffer in the linux context manager
- Add UDA version and address family to linux context manager
- Implement ssdp:update in context manager
- Update documentation
- Introduce new sync/async service proxy call API
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/gupnp/issues/1
All contributors to this release:
- Jens Georg <[email protected]>
- Jakub Adam <[email protected]>
- Andre Klapper <[email protected]>
1.1.1
=====
- Fix issue when building VAPI
- Pass on network mask from linux CM
- Properly rewrite v6 link-local urls when accessing
- Minor introspection annotation fixes
- Properly filter v6 scopes in linux CM
- Fix compile issues with linux CM when there is no wireless.h
- Fix doble-free in linux CM
- Simplify build tests a bit
All contributors to this release:
- Jens Georg <[email protected]>
1.1.0
=====
- Bump API and ABI version
- GUPnPRootDevice implements GInitable
- Clean-up functions added for GObject-Introspection compatibility
- Remove all deprecated functions from GUPnP 1.0 API
- Switch build to Meson
- Port everything to new GLib type macros
- Add IPv6 support to Linux context manager
- Fix IPv6 LL support for context
- Add gupnp_context_manager_create_full for specifying the socket family
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=654446
- https://bugzilla.gnome.org/show_bug.cgi?id=770318
- https://bugzilla.gnome.org/show_bug.cgi?id=777491
- https://bugzilla.gnome.org/show_bug.cgi?id=780640
- https://bugzilla.gnome.org/show_bug.cgi?id=780715
- https://bugzilla.gnome.org/show_bug.cgi?id=793955
All contributors to this release:
- Jens Georg <[email protected]>
- Sven Neumann <[email protected]>
- Oliver Tappe <[email protected]>
- Bastien Nocera <[email protected]>
1.0.3
=====
- Avoid a crash in gupnp_root_device_constructor
- Propagage User-Agent from Cache
- Fix potential issue with boolean vs. bitwise evaluation
- Fix a crash in GUPnPServiceProxy::subscription_expire
- Accept broken Action header without the "
- Fix issue with strcpy destination buffer size in linux context manager
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=780640
- https://bugzilla.gnome.org/show_bug.cgi?id=780715
- https://bugzilla.gnome.org/show_bug.cgi?id=793955
All contributors to this release:
- Jens Georg <[email protected]>
- Sven Neumann <[email protected]>
- Bastien Nocera <[email protected]>
1.0.2
=====
- Fix a potential crash of GUPnPProxy when trying to access a dangling
GUPnPServiceProxy pointer of a server handler.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=777491
All contributors to this release:
- Sven Neumann <[email protected]>
1.0.1
=====
- Connman CM: Various fixes
- Linux CM: Fix compiler warning about negative shift
- Documentation: Fix FSF address
- Documentation: Fix references
- Build: Update ax_append_link_flags
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=770318
All contributors to this release:
- Sven Neumann <[email protected]>
- Jens Georg <[email protected]>
- Oliver Tappe <[email protected]>
1.0.0
=====
- Only version changed
0.99.0
======
- Fix build on OS X
All contributors to this release:
- Tomasz Pajor <[email protected]>
- Jens Georg <[email protected]>
0.20.18
=======
- Retry description URL on failure.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=694450
All contributors to this release:
- Jens Georg <[email protected]>
- Jozef Šiška <[email protected]>
0.20.17
=======
- Update autogen.sh from GNOME template
- Cache user agents by IP
- Remove intltool
- Use newTargetValue in light example
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=653894
- https://bugzilla.gnome.org/show_bug.cgi?id=763945
- https://bugzilla.gnome.org/show_bug.cgi?id=764050
All contributors to this release:
- Jens Georg <[email protected]>
- Philip Withnall <[email protected]>
0.20.16
=======
- Don't hardcode python path in gupnp-binding-tool
- Check for IFA_FLAGS to not bind ourselves to a recent kernel version
- Add missing m4 files
- Fix issues with introspection
- Make GUPnPServiceAction boxed
- Some JavaScript examples
- Distribute VAPI file in tarball
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=760217
- https://bugzilla.gnome.org/show_bug.cgi?id=760430
- https://bugzilla.gnome.org/show_bug.cgi?id=761265
All contributors to this release:
- Jens Georg <[email protected]>
- Ting-Wei Lan <[email protected]>
0.20.15
=======
- Remove gnome-common
- Fix issue with gupnp_service_signals_autoconnect() blocking endlessly.
- Fix return type for BIN_HEX.
- Update some m4 macros.
- Fix typos in API docs.
NetworkManager context manager:
- Fix use-after-free issue.
- Fix various static code analysis findings.
Netlink context manager:
- Use proper macros for RTM_*ADDRESS messages.
- Use device name from netlink.
- Add possibility to dump received netlink packets for debugging.
- Fix issues with losing contexts after DHCP renew happens.
- Some style fixes.
Added/updated dependencies:
- GSSDP >= 0.14.13
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=736365
- https://bugzilla.gnome.org/show_bug.cgi?id=741257
- https://bugzilla.gnome.org/show_bug.cgi?id=750936
- https://bugzilla.gnome.org/show_bug.cgi?id=752490
- https://bugzilla.gnome.org/show_bug.cgi?id=759000
All contributors to this release:
- Jens Georg <[email protected]>
- Debarshi Ray <[email protected]>
- Olivier Crête <[email protected]>
- Guillaume Marquebielle <[email protected]>
- Bastien Nocera <[email protected]>
0.20.14
=======
Changes since 0.20.13:
Added/updated dependencies:
GLib 2.0 >= 2.40.0
- Simplify UUID handling.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=743072
- https://bugzilla.gnome.org/show_bug.cgi?id=744221
All contributors to this release:
- Jens Georg <[email protected]>
0.20.13
=======
Changes since 0.20.12:
- Fix cyclic includes.
- Avoid redefinition of symbols.
- Fix missing function declaration.
- Don't check von connman.pc.
- Allow actions without arguments.
- Respect "prefer_bigger" even if there is no icon size.
- DOAP fixes.
- Fix VAPI generation.
- Fix reference counting.
- Port to new libsoup API.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=722696
- https://bugzilla.gnome.org/show_bug.cgi?id=731209
- https://bugzilla.gnome.org/show_bug.cgi?id=731457
- https://bugzilla.gnome.org/show_bug.cgi?id=733241
- https://bugzilla.gnome.org/show_bug.cgi?id=740267
- https://bugzilla.gnome.org/show_bug.cgi?id=742075
All contributors to this release:
- Jens Georg <[email protected]>
- Sven Neumann <[email protected]>
- Jussi Kukkonen <[email protected]>
- Olav Vitters <[email protected]>
- Etienne Peron <[email protected]>
- Andre Klapper <[email protected]>
0.20.12
=======
Changes since 0.20.11:
- Several documentation fixes.
- Fix warning from clang.
- Prevent a critical if there's no DBus available and a DBus-based context
manager is used.
- Don't try to use a DBus context manager if we don't have a system bus.
- Use g_return_val_if_fail.
- Fix a small leak of CallbackData in GUPnPServiceProxy.
- Add a gupnp_service_proxy_add_notify_full variant to be nice to
gobject-introspection.
- Several code cleanups.
- Fix a reference leak in ACL.
- Make "document" property of GUPnPDeviceInfo readable.
- Add gupnp_service_proxy_add_raw_notify which can be used to get the raw
xmlDoc received through notification.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=701446
- https://bugzilla.gnome.org/show_bug.cgi?id=706123
- https://bugzilla.gnome.org/show_bug.cgi?id=706127
- https://bugzilla.gnome.org/show_bug.cgi?id=727709
- https://bugzilla.gnome.org/show_bug.cgi?id=729827
- https://bugzilla.gnome.org/show_bug.cgi?id=730359
- https://bugzilla.gnome.org/show_bug.cgi?id=730690
All contributors to this release:
- Jens Georg <[email protected]>
- Philip Withnall <[email protected]>
0.20.11
=======
Changes since 0.20.10:
- Disable the Unix context manager on Android.
- Fix Windows compilation.
- Fix a memory leak in Linux context manager.
- Fix libuuid dependencies in pkg-config files.
- Implement a simple ACL infrastructure.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=711027
- https://bugzilla.gnome.org/show_bug.cgi?id=723715
- https://bugzilla.gnome.org/show_bug.cgi?id=727539
- https://bugzilla.gnome.org/show_bug.cgi?id=728889
All contributors to this release:
- Philip Withnall <[email protected]>
- Jens Georg <[email protected]>
- Olivier Crête <[email protected]>
- Luciana Fujii <[email protected]>
0.20.10
=======
Changes since 0.20.9:
- Make sure ResourceFactory creates proxies with the correct GType.
- Make it possible to unsubscribe from a service proxy during a call-back.
- Disable managed RootDevices on WL change in addition to ControlPoints.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=678701
- https://bugzilla.gnome.org/show_bug.cgi?id=690400
- https://bugzilla.gnome.org/show_bug.cgi?id=711332
All contributors to this release:
- Jussi Kukkonen <[email protected]>
- Jens Georg <[email protected]>
0.20.9
======
Changes since 0.20.8:
- Enforce HTTP 1.1 for device description requests.
- Add libuuid to Requires.private of pkg-config file.
- Deprecate gupnp_service_proxy_{begin,send}_action_hash as they cannot
guarantee the argument order.
- Add gupnp_service_info_get_introspection_async_full() that makes it possible
to cancel an introspcetion request using GCancellable.
- Fix a crash when running with GSSDP < 0.14.6.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=704867
- https://bugzilla.gnome.org/show_bug.cgi?id=710491
- https://bugzilla.gnome.org/show_bug.cgi?id=711027
- https://bugzilla.gnome.org/show_bug.cgi?id=711167
- https://bugzilla.gnome.org/show_bug.cgi?id=720369
- https://bugzilla.gnome.org/show_bug.cgi?id=720372
All contributors to this release:
- Jussi Kukkonen <[email protected]>
- Jens Georg <[email protected]>
- Philip Withnall <[email protected]>
- Parthiban Balasubramanian <[email protected]>
0.20.8
======
Changes since 0.20.7:
- Minor compilation and style fixes in the Linux CM.
- Add gupnp_white_list_add_entryv utility function.
- Use "port" property to set "msearch-port" property on base class.
- Other style fixes
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=711015
All contributors to this release:
- Jens Georg <[email protected]>
0.20.7
======
Changes since 0.20.6:
- Fix GCC warnings about local includes.
- Do not hand out libxml2-allocated strings.
- Fix a crash when a notification host was not available.
- Always call action call-back asynchronously, even when there was an error.
- Add performance measurement options to light-server/-client.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=669729
- https://bugzilla.gnome.org/show_bug.cgi?id=703263
- https://bugzilla.gnome.org/show_bug.cgi?id=708162
- https://bugzilla.gnome.org/show_bug.cgi?id=708575
- https://bugzilla.gnome.org/show_bug.cgi?id=708751
All contributors to this release:
- Jens Georg <[email protected]>
- Andrzej Bieniek <[email protected]>
- Emanuele Aina <[email protected]>
0.20.6
======
Changes since 0.20.5:
- Don't do excessive network rescans.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=706996
All contributors to this release:
- Ludovic Ferrandis <[email protected]>
- Jens Georg <[email protected]>
0.20.5
======
Changes since 0.20.4:
- Add some missing G_{BEGIN,END}_DECLS guards.
- Fix uninitialized variable use introduced in previous version.
- Add simple network device whitelisting infrastructure.
- Port gupnp-binding-tool so it's usable with python3.
- Minor code fixes.
- Fix crashes in NetworkManager context manager during some async calls.
- Fix a small memory leak in the unix and windows CM.
- Always enable GTest tests.
- Upgrade gtk-doc stuff.
- Fix the service example in documentation.
- Remove the test for inverted arguments in the GUPnPContext tests.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=694454
- https://bugzilla.gnome.org/show_bug.cgi?id=704094
- https://bugzilla.gnome.org/show_bug.cgi?id=704383
- https://bugzilla.gnome.org/show_bug.cgi?id=705712
- https://bugzilla.gnome.org/show_bug.cgi?id=706326
All contributors to this release:
- Jens Georg <[email protected]>
- Ludovic Ferrandis <[email protected]>
- Olivier Crête <[email protected]>
- Bohuslav Kabrda <[email protected]>
0.20.4
======
Changes since 0.20.3:
- Fix warnings in gtk-doc run.
- Some minor improvements to the documentation.
- Make the user-agent ASCII-only to fix issues with discovery when
g_get_application_name () returned a translated string.
- Force HTTP version to be 1.1 in SOAP requests.
- Fix potential crashes in XML parsing.
- Fix potential memory leak in gupnp_service_proxy_send_action_valist.
- Some codestyle fixes.
- Add gupnp_device_info_list_dlna_device_class_identifier () to retrieve the
content of <dlna:X_DLNADOC> nodes.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=704953
- https://bugzilla.gnome.org/show_bug.cgi?id=702555
- https://bugzilla.gnome.org/show_bug.cgi?id=704094
- https://bugzilla.gnome.org/show_bug.cgi?id=700947
All contributors to this release:
Ludovic Ferrandis <[email protected]>
Jens Georg <[email protected]>
Sébastien Bianti <[email protected]>
Bastien Nocera <[email protected]>
0.20.3
======
Changes since 0.20.2:
- Add a gupnp_context_manager_rescan_control_points feature.
- Fix VAPI generation if g-i version is >= 1.36.
- Some internal documentation updates.
- Check SID and return a proper error.
- Fix error code returned on invalid NT and NTS headers.
- Fix SEQ to be a uint32.
- Fall-back to unix static CM if netlink sockets are not availabe on runtime.
- Prevent some C++ name mangling in the examples.
- Fix compiling with -Wall -Wextra.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=697314
- https://bugzilla.gnome.org/show_bug.cgi?id=696289
- https://bugzilla.gnome.org/show_bug.cgi?id=698192
- https://bugzilla.gnome.org/show_bug.cgi?id=698125
All contributors to this release:
Jens Georg <[email protected]>
Jussi Kukkonen <[email protected]>
Sébastien Bianti <[email protected]>
Changes in dependencies:
vapigen >= 0.20 if gobject-introspection is >= 1.36
0.20.2
======
Changes since 0.20.1:
- Fix some typos in docs and warning messages.
- Fix argument order issue introduced with the va_list fix in 0.20.1.
- Add some tests for this bug.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=695591
- https://bugzilla.gnome.org/show_bug.cgi?id=696762
All contributors to this release:
Jens Georg <[email protected]>
Benjamin Kerensa <[email protected]>
0.20.1
======
Changes since 0.20.0:
- Fix suspicious use of va_list in the code.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=689813
All contributors to this release:
Krzesimir Nowak <[email protected]>
0.20.0
======
Changes since 0.19.4:
- Fix Accept-Language header generation.
- Fix some issues with Windows support on mingw64.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=683199
All contributors to this release:
Jens Georg <[email protected]>
0.19.4
======
Changes since 0.19.3:
- Shuffle around some test data.
- Fix a GError leak in the linux cm.
- Fix a leak in variable notification.
- Clarify usage of gupnp_service_proxy_remove_notify.
All contributors to this release:
Jens Georg <[email protected]>
Sven Neumann <[email protected]>
Marcin Nowakowski <[email protected]>
0.19.3
======
Changes since 0.19.2:
- Work-around missing notification messages.
All contributors to this release:
Jens Georg <[email protected]>
0.19.2
======
Changes since 0.19.1:
- Support Windows.
- Fix searching for services in ControlPoint.
- Drop deprecated calls to g_type_init on glib >= 2.35.
- Fix LD_LIBRARY_PATH in make check.
- Explicitly use IPv4 in tests.
- Allow autogen.sh to be run out-of-tree.
- Expose GSSDPResourceGroup of a root device.
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=687320
- https://bugzilla.gnome.org/show_bug.cgi?id=687621
- https://bugzilla.gnome.org/show_bug.cgi?id=689028
- https://bugzilla.gnome.org/show_bug.cgi?id=688411
- https://bugzilla.gnome.org/show_bug.cgi?id=685643
- https://bugzilla.gnome.org/show_bug.cgi?id=682580
- https://bugzilla.gnome.org/show_bug.cgi?id=672830
All contributors to this release:
Jens Georg <[email protected]>
Theppitak Karoonboonyanan <[email protected]>
Stef Walter <[email protected]>
Juan A. Suarez Romero <[email protected]>
Alban Browaeys <[email protected]>
0.19.1
======
Changes since 0.19.0:
- Include m4 macro for finding vapigen.
- Run introspection with make distcheck.
- Lower G-I requirement again.
- Add gupnp_context_manager_get_port.
- Don't stop configure if vapigen can't be found.
- Drop some deprecated stuff from VAPI.
All contributors to this release:
Jens Georg <[email protected]>