-
Notifications
You must be signed in to change notification settings - Fork 15
/
NEWS
1986 lines (1768 loc) · 73.1 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
libgda-6.0.0
- MySQL: now supports version 8.0
- PostgreSQL now support GdaText values, so take care because some SELECT operations
concatenating strings return GdaText values instead of strings.
- Lot of memory leaks fixed
- Added a new module named GdaDB... to simplify DDL operations
- Added database generation from an XML file (GdaDBCatalog)
- Updated internal SQLite3 version
- Added "exxamples" directory as a target to be built (work in progress)
- Numerous improvements in CI organization.
- Documentation reorganisation and porting to the new format (in progress)
- Code modernized for multiple objects
- Added new API for GdaConnection object
- Added uniform LOG_DOMAIN usage between translation units
- Added Uniform debug code generation
- Eliminated multiple static global variable
- Improved code quality for libgda to use -Werror
- Multiple code improvements, formation, and corrections
- Batch parsing, should remove spacesa and enters before return next statement,
fix #203
- Only PostgreSQL, MySQL and SQLite providers are supported
- Improved Meson options name and behavior
- Updated translations:
- sr Мирослав Николић <[email protected]>
- uk Yuri Chornoivan <[email protected]>
- ca Jordi Mas <[email protected]>
- cs Marek Černocký <[email protected]>
- pt_BR Rafael Fontenelle <[email protected]>
- es Daniel Mustieles <[email protected]>
- hu Balázs Úr <[email protected]>
- id Andika Triwidada <[email protected]>
- sv Josef Andersson <[email protected]>
================================================================================
libgda 5.91.0
- Added support for PostgreSQL version up to 11.0
- Added new GdaText type for large texts types support
- Added new GdaHandlerText type for large texts types handler support
- Added new GdaDataModelSelect objects replacing GdaDataSelect's rerun()
- GdaHandler now supports value transformation, if possible, before set it
- Ported almost all public API to use g_autoptr() and remove public private struct
- GdaHolder now is GdaAttributeManager free, replaced by GObect properties
- GdaTime ported to GDateTime, with improved time handling and defaulting to UTC time
- Fixed segfaults
- Fixed meta data generation engine
- Fixed PostgresSQL provider meta data generation integration
- Fixed open connections to SQLite, PostgreSQL and MySQL providers
- Blacklisted providers: FireBird, Oracle, Java ODBC, MS Access, BDB, LDAP, MySQL
- Fixed warnings
- Removed Autotools (was 89479e9d2372177036d2d0f6b01a50e5f21d076f 05 april 2019)
- Simplified providers plugin system
- Many memory leaks fixes
- Aisolate LDAP as a provider, no more in main library
- Fixed documentation generation using meson
- Removed Autotools build system
- Added experimental features, use -Denable-experimental=true to use them
libgda-ui 5.91.0
- Ported almost all public API to use g_autoptr() and remove public private struct
- Fixed segfaults
- GDA Browser is now able to open and use connections to supported providers
- GDA Control Center now is able to create Data Sources
- Fixed warnings
- Replaced deprated GTK+ 3.0 API
- Moved as a experimental features
================================================================================
libgda 5.90.1
- Minor Autotools fixes for distribution
libgda-ui 5.90.1
- Minor Autotools fixes for distribution
libgda 5.90.0
- Removed Deprecated API from 5.x and 4.x series
- Added new DDL module, from Pavlo Solntsev <[email protected]>
- Removing public fields in GdaSet, adding API for GObject Introspection
- GdaTimestamp, replaced by GDateTime
- Initial work to port build system from Autotools to Meson
- Improved Documentation
- Improved GObject Introspection bindings
- Improved Vala bindings
- Removed Vala classes to a new project https://gitlab.gnome.org/esodan/libvda
libgda-ui 5.90.0
- GDA Gtk+ Widgets library is built by default if dependencies met
- GdaBrowser is working again
- GDA Control Center is working again
- Improved GObject Introspection bindings
- Improved Vala Bindings
libgda 5.2.9
- Fix Sun JRE 1.8 detection
- Fix JDK 11.0 detection
- Drop unneeded JAVAH variable check
- Fix build for System Installed SQLite libs
- Non-Dates and Timestamps values returns 'NULL' string when converted
- Fix --with-ui, now UI is buildable when enable
libgda 5.2.8 2018-12-03
- Fix a typo on sv translation
- Please note: releases 5.2.6 and 5.2.7 were unable to be published at
downdload.gnome.org
libgda 5.2.7 2018-11-07
- SQLite provider uses system installed one by default
- Revome build's date from documentation
- introspection: removed system install in favor of --prefix
libgda 5.2.6 2018-10-03
- Fixed compilation on MacOS
- All Vala bindings and Vala extensions are built by default using --enable-vala,
added --disable* switch to disable some or all of them
- Fixes on outdated unit tests
- Removed unused Vala extensions
- Translations:
- es (Daniel Mustieles)
libgda 5.2.5 2018-09-25
- GdaConnection has removed the use of g_object_weak_*, improving
multi-threading behaviour
- Prepared statements now use GWeakRef for weak references
- GdaDataPivot use instance providers and locking
- GdaVConnectionDataModel use GRecMutex
- Updated SQLite to 3.8.11.1
- Fix SQLCipher build by embedding source code for 3.4.2 version
- Fix SQLCipher disabling
- Updated GObject Introspection annotations
- Fix Doc generation
- Bugs corrected: #787685 #789382 #761560 #761529 #760420 #761424 #754263 #754208
- Corrected HTML output containing <SCRIPT> tag
- Correct some truncated help strings
- Don't use (deprecated) g_thread_supported()
- MySQL meta data: fixed case where schema is incomplete in MySQL database
- Allow introspection for gda_sql_builder_add_cond_v()
- SQLite: handle WITHOUT ROWID without any error
- Translations:
- es (Daniel Mustieles)
- da (Ask Hjorth Larsen)
- pt_BR (Rafael Fontenelle)
- eu (Inaki Larranaga Murgoitio)
- sr (Мирослав Николић)
- sv (Anders Jonsson)
- de (Mario Blättermann)
- cs (Marek Černocký)
- hu (Balázs Meskó)
- oc (Balázs Meskó)
- el (Tom Tryfonidis)
- po (Pedro Albuquerque)
- id (Andika Triwidada)
libgda 5.2.4
libgda 5.2.3
libgda 5.2.2, 2013-12-23
- Avoid using setlocale() in libraries
- Bugs corrected: GraphViz detection, #720594
- Translations:
- it (Marco Ciampa, Milo Casagrande)
libgda 5.2.1, 2013-11-17
- Fixed a Unix compilation issue, bug #712143
- Improved configure script output
- Translations:
- de (Benjamin Steinwender)
libgda 5.2.0, 2013-11-11
- Vala bindings improvements, thanks to Daniel Espinosa
- Improvements to most database providers (MySQL, PostgreSQL, SQLite, SqlCipher, JDBC, ...)
- Use SqlCipher 3.0.0 and Sqlite 3.8.0.2
- Switched to GTK+3
- Lots of work on the Windows platform
- Many bugs fixed
- Translations updated for many languages, thanks to all the translators!
libgda 5.1.2, 2013-03-16
- Many small corrections, some uncovered by CoverityScan
- Misc code cleanups, avoid using deprecated functions
- MySQL improvements
- Vala bindings improvements and corrections
- Data export improvements
- Upgraded SQLite to 3.7.14.1 and SqlCipher to 2.1.1
- Have blobs work on Windows
- Bugs corrected: #691099, #691069, #669801, #687235, #684895, #684583, #684141, #683162
- Translations:
- ca (Pau Iranzo)
- ru (Yuri Myasoedov)
- it (Marco Ciampa)
- id (Andika Triwidada)
- de (Christian Kirbach)
- gl (Fran Diéguez)
- es (Daniel Mustieles)
- sl (Matej Urbančič, Martin Srebotnjak)
- cs (Marek Černocký)
- el (Dimitris Spingos, Tom Tryfonidis)
libgda 5.1.1, 2012-08-26
- Asynchronous statement execution improvements
- Added the GDA_STATEMENT_MODEL_OFFLINE flag to specify that resulting data model
must be readable without requiring a server connection
- Correctly parse "NOT LIKE" and "NOT ILIKE" expressions, and hexadecimal notations
- PostgreSQL: added the "CONNECT_TIMEOUT" option
- Use Libsecret instead of Libgnome-keyring if available
- Many other small corrections, code cleanups and deprecated functions removal
- Windows: many code & packaging corrections
- Many code cleanups to switch to GTK3's features
- Bugs corrected: #676239, #669801, #680311, #680820, #680639
- Translations:
- de (Christian Kirbach)
- el (Dimitris Spingos, Tom Tryfonidis)
- es (Daniel Mustieles)
- gl (Fran Diéguez)
- id (Andika Triwidada)
- it (Marco Ciampa)
- nb (Kjartan Maraas)
- ru (Yuri Myasoedov)
- sl (Martin Srebotnjak, Matej Urbančič)
- zh_CN (Wylmer Wang)
libgda 5.1.0, 2012-05-05
- Many Vala bindings improvements, thanks to Daniel Espinosa
- Improved Windows packaging scripts
- GdaBrowser: many small improvements
- GdaSql: new LDAP commands, better inline help, better visual rendering, datasets manipulation
- Many small corrections, optimizations and bug fixes (Libgda core, UI extension,
Reports extension, MySQL, virtual connections, documentation)
- Firebird support improvements, thanks to Faghmie Davids
- LDAP: added write support, added connection parameters to handle SSL certification chain and
size and time limits, improved authentification with Active Directory
- Set SQLite version to 3.7.9 and SqlCipher to 2.0.3
- MDB tools: handle version 0.7
- Removed usage of symbols marked as deprecated for Glib 2.32, and other code cleanups
- Bugs corrected: #666356, #668411, #667837, #672874, #674715, #674618, #674976
- Translations:
- cz (Marek Černocký)
- de (Mario Blättermann)
- es (Daniel Mustieles)
- fs (Vivien Malerba)
- gl (Fran Diéguez)
- it (Marco Ciampa)
- ja (Jiro Matsuzawa)
- nb (Kjartan Maraas)
- sl (Matej Urbančič, Martin Srebotnjak)
libgda 5.0.2, 2011-11-20
- Gobject introspection improvements
- Several small corrections and improvements
- Better handling of closed connections, allowing some operations on closed connections
and better error reporting on them
- GdaNumeric sealing
- Bugs corrected: #663608
- Translations:
- de (Mario Blättermann)
- cz (Marek Černocký)
- es (Daniel Mustieles)
- sl (Matej Urbančič)
libgda 5.0.1, 2011-11-06
- Fixed Vala bindings generation
- Several small corrections and improvements
- Bugs corrected: #662809, #567891, #662922, #597390, #663357
- Translations:
- cz (Marek Černocký)
- es (Daniel Mustieles)
libgda 5.0.0, 2011-10-26
- GObject Introspection fixes and automatic Vala bindings generation
- SQLite provider: allow one to load SQLite extensions using "SELECT load_extension ('xxx')"
- Corrected bug when executing statement with a NULL variable
- New GdaDataPivot object to perform data summarisation
- Many small corrections and improvements
- Bugs corrected: #662279, #658643, #622899, #660563 (partially), #661164, #660344, #661684,
#660537
- Translations:
- sl (Matej Urbančič, Martin Srebotnjak)
- es (Daniel Mustieles, Jorge González)
- de (Mario Blättermann)
- cs (Marek Černocký)
libgda 4.99.4, 2011-09-02
- GdaBrowser: improved LDAP support and other general improvements and
corrections
- Many small corrections and improvements (documentation, UI,
default values handling, use GtkCssProvider, ...)
- GTK3 deprecations related corrections
- GObject introspection improvements
- Better handle parameters valued to NULL in statements
- Support out of tree UI plugins creation
- Allow reporting of statement execution's delay
- Web provider (DB access through a web server) improvements (deployment,
documentation and performances)
- Set embedded SQLite's version to 3.7.7.1
- Bugs corrected: #654370, #654068
- Translations:
- es (Daniel Mustieles)
- cs (Marek Černocký)
- sl (Matej Urbančič)
- de (Mario Blättermann)
- nb (Kjartan Maraas)
- zh_CN (Yinghua Wang)
- fr (Claude Paroz)
libgda 4.99.3, 2011-07-06
Lots of thanks to Murray Cumming for all the corrections he made in this version!
- Convert deprecated GTK3 API to new ones
- Improved compilation system (M4 macros, compiler warnings)
- PostgreSQL: support the ILIKE operator
- Misc corrections and improvements
- Bugs fixed: #653082
- Translations:
- es (Daniel Mustieles, Gonzalo Sanhueza)
libgda 4.99.2, 2011-06-20
- GDA_TYPE_NULL is not 0 anymore (bug #647633)
- Improved responsiveness when using GdaThreadWrapper
- Misc. compilation and installation issues corrected
- MDBTools: distribute missing files
- GdaBrowser: UI improvements (better LDAP search filter, image clipboard copy, text search)
- Bug fixed: #651692, #651829, #651922, #652023, #652024, #631645
- Translations:
- eo (Kristjan Schmidt)
- de (Christian Kirbach, Mario Blättermann)
- cs (Marek Černocký)
- es (Daniel Mustieles)
- ls (Matej Urbančič)
libgda 4.99.1, 2011-06-01
- Many GTK3 adaptations (GtkApplication instead of libunique, code cleanups)
- New LDAP provider (read only for the moment)
- Improvements and corrections from the 4.2 branch
- Translations from the 4.2 branch
libgda 4.99.0, 2011-03-05
- Adaptations to the GTK3 environment (requires gtk+-3.0 >= 3.0.0):
- API is preserved but ABI has changed
- Deprecated API has been removed
- Embedded SQLite version 3.7.5
- Embedded SQLCipher version is 2.0Beta
WARNING: this is a beta version and should not be used in a production environment, and the
SQLCipher database provider is itself in a beta state, so again don't use it on production data,
as you may lose your data!
libgda 4.2.5, 2011-02-22
- corrected regression which prevented correct execution of SELECT statements
by virtual connections
- new NSIS based installer for the GdaBrowser tool under Windows
- embedd MDBTools when compiling for Windows
- misc other corrections
- translations:
- sl (Matej Urbančič)
- es (Jorge González, Daniel Mustieles)
- cz (Marek Černocký)
- de (Andre Klapper)
libgda 4.2.4, 2011-02-16
- SQLite provider: correctly report error messages (for example instead of "constraint failed")
- SQLite provider: correctly report if foreign key constraints are enforced or not
- Added possibility to "declare foreign key constraints", which are declarations in the
metadata where databases don't actually use foreign keys
- GdaMetaStruct: report information about foreign keys
- GdaBrowser: many small improvements and corrections
- GdaSql and GdaBrowser: display more information about database providers and DSN's connection
parameters, and display information about foreign key constraints
- Documentation improvements and corrections
- Misc small corrections
- Bug fixes: #639533, #639897, #639897, #640482, #642037, #642100 and #642170
- translations:
- sl (Matej Urbančič)
- es (Daniel Mustieles)
- cz (Marek Černocký)
- fr (Bruno Brouard)
- de (Christian Kirbach)
libgda 4.2.3, 2011-01-09
- Correction to the expression rendering in SQL (very important!)
- SQLite: fixed date and related formats when rendering as SQL
- MySQL: fixed error code ignored and not available via gda_connection_event_get_code()
- Move convenience functions to appropriate classes
- documentation updates
- GdaSql and GdaBrowser: better information about configuration and added possibility to
clean data files and truncate data output to available width
- build system: Enable compiler warnings by default, detect Oracle on Windows
- Initial support for rich text rendering in reports
- misc. improvements
- bugs fixed: #636439, #636608, #637010, crash in gdaui-demo, build system, misc
- translations:
- sl (Matej Urbančič)
- es (Daniel Mustieles, Jorge González)
- de (Christian Kirbach, Mario Blättermann)
- cs (Petr Kovar)
libgda 4.2.2, 2010-11-27
- GdaBrowser: better take user preferences into account
- new GdauiRtEditor widget and plugin
- bug fixes: bug #635377, #635419 and misc.
- translations:
- sl (Matej Urbančič)
- es (Julio Borja Barra)
- cz (Marek Cernocky)
- de (Mario Blättermann)
libgda 4.2.1, 2010-11-14
- code cleanups and compilation warnings removal (thanks to David King and Murray Cumming),
used the FlawFinder and cppcheck tools
- more annotations for GObject Introspection (thanks to Jonh Wendell)
- removed old database providers' code
- build system improvements:
- use better build of generated source code
- better detection of external dependencies in configure script using specfic M4 files
- updated Lemon parser generator from SQLite
- GdaBrowser improvements: error reporting in data manager perspective, authentification dialog
- documentation corrections
- updated SQLCipher to version 1.1.8
- optimized virtual tables usage
- improved GdaDataModel import and export
- MySQL provider: support for statements where the prepared statement API does not work
- bug fixes: #630655, #630953, #617550, #633247, #634737 and other minor ones
- translations:
- id (Andika Triwidada)
- cs (Marek Černocký, Petr Kovar)
- es (Jorge González)
- eu (Inaki Larranaga Murgoitio)
- sl (Matej Urbančič)
- fr (Bruno Brouard)
- da (Joe Hansen)
- ca@valencia (Carles Ferrando)
- el (Vasilis Tsivikis)
libgda 4.2.0, 2010-09-26
- misc corrections
- translations:
- de (Mario Blättermann)
- sl (Matej Urbančič)
- gl (Fran Diéguez)
- cz (Petr Kovar)
- id (Andika Triwidada)
libgda 4.1.11, 2010-09-15
- misc corrections
- new SQLCipher provider (integrated SQLCipher into Libgda) to encrypt
SQLite databases
- translations:
- sl (Matej Urbančič)
libgda 4.1.10, 2010-09-11
- GdaBrowser improvements & corrections (better full screen mode and notifications, improved
data manager perspective and more)
- misc corrections
- translations:
- sl (Matej Urbančič)
- id (Andika Triwidada)
libgda 4.1.8, 2010-09-01
- improved core API (GdaSqlBuilder, GdaServerOperation, GdaThreadWrapper, GdaConnection)
- core corrections and optimization, mainly in the SQLite and MySQL providers, connection (locking
and thread safe usage)
- use Gnome Keryring if available to store username and passwords to be used for data sources (DSN)
- configuration file monitoring: only use GIO (removed GnomeVFS, gamin or FAM)
- many improvements to the UI extension
- many improvements and corrections to the GdaBrowser tool
- embedd SQLite 3.6.22
- translations:
- es (Jorge González)
- sl (Matej Urbančič)
- da (Joe Hansen)
- pt (Nicolau Gonçalves)
- cs (Petr Kovar, Marek Cernocky)
- de (Mario Blättermann, Christian Kirbach)
- nb (Kjartan Maraas)
- id (Andika Triwidada)
libgda 4.1.7, 2010-06-27
- new provider for Oracle Berkeley DB's SQL frontend (which has the same API as sqlite)
- added CREATE_USER and DROP_USER server operations (only for PostgreSQL at the moment)
- added a new GDA_CONNECTION_OPTIONS_THREAD_ISOLATED connection option
- better display invalid values in form and grid widgets
- Lots of GObject introspection annotations added
- Better MacOSX support: binary relocation corrections, bundle making
script for the GdaBrowser
- GdaSqlBuilder API improvements
- Corrected memory leak in SQLite provider
- Renamed configure.in to configure.ac
- Corrections in the Gda-Sql tool regarding username and password
- Misc. corrections: connection locking issues, honor the
GDA_EASY_CREATE_TABLE_UNIQUE_FLAG flag, some optimizations
- Documentation corrections, and code cleanups
- Translations:
- es (Jorge González)
- sl (Matej Urbančič)
- fi (I. Jääskeläinen)
- de (Mario Blättermann)
libgda 4.1.6, 2010-05-24
- register GdaStatement as a boxed type
- GdaSqlBuilder API simplifications and other corrections
- GdauiLogin widget corrections
- Translations:
- es (Jorge González)
- sl (Matej Urbančič)
- de (Mario Blättermann), also added a new GdaBrowser's help translation
libgda 4.1.5, 2010-05-09
- support BLOBS in MySQL provider
- meta data correction for PostgreSQL provider
- Do not set GErrors without a domain for the PostgreSQL provider
- honor the request for the last inserted row in the MySQL provider
- fetch indexes information for MySQL
- fixed reading float values in the MySQL provider
- corrected the MySQL and SQLite boolean handlers
- API improvements to the GdaSqlBuilder object
- new Data Manager perspective in the GdaBrowser
- added help in GdaBrowser
- initial GObject introspection for the UI extension
- improved GObject introspection support
- removed deprecaded GTK+ symbols usage
- use accessor functions instead direct access (enable GSEAL)
- new UI extension example
- doc. corrections & improvements
- better handle GCJ as the java compiler
- lots of bug fixes and other improvements
- Translations:
- fr (Claude Paroz, Laurent Coudeur)
- sl (Matej Urbančič)
- de (Mario Blättermann, Christian Kirbach)
- es (Jorge González)
- zh_CN (Aron Xu)
- eu (Inaki Larranaga Murgoitio)
- pt (Nicolau Gonçalves)
- gl (Leandro Regueiro)
libgda 4.1.4, 2010-01-16
- API improvements: GdaSqlBuilder, UI extension
- new Web provider to access databases through a web server
- WIN32 related corrections
- GNOME 3.0 and GSeal corrections
- initial support for GObject Introspection (for libgda only)
- meta data now include indexes information
- improved icons (thanks to Jakub Steiner)
- JDBC provider: don't keep the JVM loaded when not necessary
- embedd SQLite 3.6.22
- GdaBrowser improvements and corrections: connections bindings, loading CSV
files, table's columns' preferences
- misc bug fixes and other improvements
- Translations:
- de (Mario Blättermann)
- fr (Nicolas Repentin, Laurent Coudeur and Claude Paroz)
- sl (Matej Urbančič)
- sp (Jorge González)
libgda 4.1.3, 2009-10-10
- GdaBrowser improvement
- UI extension corrections
- libgda's core improvements: better BLOB handling, better API for GdaSqlBuilder,
GdaDataSelect
- misc bug fixes
- Translations:
- de (Mario Blättermann, Christian Kirbach)
- es (Jorge González)
libgda 4.1.2, 2009-09-20
- the GdaBrowser application now supports query execution, and is more
polished and stable
- Lots of bug fixes mainly related to threads usage and the UI extension
- Translations:
- de (Mario Blättermann)
- eu (Inaki Larranaga Murgoitio)
- pt_BR (Rodolfo Ribeiro Gomes)
- fr (Claude Paroz)
libgda 4.1.1, 2009-08-24
- it is now possible to use a system installed SQLite, and now uses
SQLite 3.6.17 if embedded
- new Oracle driver (provider)
- improved MySQL and PostgreSQL drivers (providers)
- console program improvements
- new UI extension based on GTK+
- new program to manage data sources graphically
- new program to "browse" a database's schema
- improved documentation
- better handle SQL identifiers
- Lots of corrections and small improvements
- Translations:
- es (Jorge Gonzalez)
- nb (Kjartan Maraas)
- sv (Daniel Nylander)
- de (Mario Blättermann)
- it (Marco Ciampa)
libgda 4.1.0, 2009-04-18
- API and ABI compatible with 4.0.x versions
- new API to execute statement asynchronously
- new API to build DML (SELECT, INSERT, UPDATE and DELETE) statements
the easy way
- new flag to open a connection in a sub thread, to be able to use
a connection from several threads, even if the connection does not support it
- the GdaMetaStore object is now thread safe
- new API to represent data organized as trees
- new API to execute a single statement several times, each execution with
different parameters' values
- documentation and examples improvements
- bug fixes
- Translations:
- eu (Inaki Larranaga Murgoitio)
libgda 4.0.2, 2009-04-18
- the SQLite provider now compiles with a system installed SQLite
- misc. corrections
- bug fixes: #578748
libgda 4.0.1, 2009-03-27
- make sure Libgda's GdaMetaStore object behaves correctly even if the
SQLite provider is not installed
- misc. corrections
libgda 4.0.0, 2009-03-16
libgda 3.99.14, 2009-03-15
- misc. corrections
- use XDG Base Directory Specification to store DSN list
- bug fixes: #574736, #574738, #574742, #574740
libgda 3.99.13, 2009-03-09
- misc. corrections
- load LibDB only when needed
- bug fixes: #574021, #574193
libgda 3.99.12, 2009-02-28
- misc. corrections
- MySQL, SQLite and PostgreSQL providers improvements and corrections
- documentation and examples improvements
- SQLite version is now 3.6.11
- bug fixes: #572028, #571879, #572220, #542847, #572734, #572394
- Translations:
- it (Marco Ciampa)
- pt (Nicolau Gonçalves)
libgda 3.99.11, 2009-02-13
- misc. corrections
- documentation improvements
- new example to illustrate meta data retrieval
- bug fixes: #570396, #570251, #570315, #570787
libgda 3.99.10, 2009-02-02
- corrections
- cleanups
- documentation improvements
- bug fixes: #568570, #568731, #568844, #561748, #568388, #486021, #143576,
#568484, #570220
- Translations:
- es (Jorge Gonzalez)
libgda 3.99.9, 2009-01-19
- corrections
- cleanups
- documentation improvements
- bug fixes: #561173, #561175, #568163, #568165
libgda 3.99.8, 2009-01-12
- misc corrections
- SQL console: better useability in the web console
- SQL console: man page added
- Win32 build fixes
libgda 3.99.7, 2008-12-31
- API corrections
- now internally use SQLite 3.6.7
- blobs handling corrections
- SQL console improvements (new export command, optional integrated web server
to display information)
- new JDBC provider (allows access to any database through a JDBC driver)
- Win32 improvements (control list of exported symbols, create import libraries)
- Cleared up glib includes (Przemysław Grzegorczyk)
- misc corrections (Murray Cumming, Johannes Schmid, Carlos Savoretti, Vivien Malerba)
- bug fixes: #565942, #564402, #529794, #564159, #564274, #565618, #565019
- Translations:
- it (Marco Ciampa)
libgda 3.99.6, 2008-11-10
- A few API improvements
- MySQL provider improvements (Carlos Savoretti)
- Performances improvements, and memory leaks removal
- use the G_TYPE_GTYPE type instead of ulong
- better control of exported symbols in the final library and providers
- better binreloc behaviour in 64 bits
- use custom marshallers for GError, GType and GValue in signals (bug #555905)
- bug fixes: #541991, #546339, #555905, #556258, #556327, #556960, #529794 (Johannes Schmid,
Massimo Cora', Vivien Malerba)
- Translations:
- es (Jorge Gonzalez)
- sv (Daniel Nylander)
libgda 3.99.5, 2008-10-09
This version includes:
- Meta data retrieving corrections
- now internally use SQLite 3.6.3
- A few API improvements (removed the GdaDataModelQuery object as its features are now implemented
in any result of a SELECT execution) (Massimo Cora, Vivien Malerba)
- More NR tests
- Limit the exported symbols
- Improved the WIN32 ZIP packages creation script
- Lots of improvements to the SQL console (gda-sql-4.0)
- Lots of small bug fixes (Johannes Schmid, Vivien Malerba)
- Lots of documentation improvements
- bug fixes: #508407, #552708, #90751, #401442, #537159, #527002, #539754, #537105
- Translations:
- eu (Inaki Larranaga Murgoitio)
- it (Marco Ciampa)
- fi (Ilkka Tuohela)
- nb (Kjartan Maraas)
libgda 3.99.4, 2008-09-16
This version includes:
- Lots of code cleanups and API review
- now internally use SQLite 3.6.2
- Resultsets returned after the execution of a SELECT can now be writable
- more NR tests
- Basic multi threading support (for some objects like connections)
- MySQL support improved (Carlos Savoretti)
- SQL console tool improvements
- MS-Windows support improvements
- Lots of small bug fixes (Bas Driessen, Vivien Malerba)
- Lots of documentation improvements
- bug fixes: #549953, #535633, #551058, #541991, #545977, #549498, #546230, #545979 (Carl-Anton Ingmarsson)
- Translations:
- nb (Kjartan Maraas)
- es (Jorge Gonzalez)
- it (Marco Ciampa)
- ar (Djihed Afifi)
- eu (Inaki Larranaga Murgoitio)
libgda 3.99.3, 2008-07-06
This version includes:
- lots of bug fixed, memory leaks fixes and general performance improvements
(Murray Cumming, Daniel Espinosa, Cygwin Ports maintainer, Phil Longstaff,
Carlos Savoretti, Johannes Schmid, Yuriy Penkin, Vivien Malerba)
- MySQL support starting to work again (Carlos Savoretti)
- documentation improvements
- added function to compute INSERT, UPDATE and DELETE statements from a SELECT
statement, to be able to have writable data models after a SELECT execution
- API changes for easier understanding and usage (gda_init() for example)
- added the possibility to check the validity of a statement using the database's
associated meta data
- improvements to the convenience functions when creating or dropping a table (Daniel Espinosa)
- new data model comparator object
- make the SQL parser(s) correctly handle SQL identifiers enclosed in double quotes
- more checks
- new function to the xslt extension libgda-xslt (Pawel Cesar)
- new SQL code completion feature (incorporated into the gda-sql tool)
- gda-sql tool improvements (SQL completion, command line parsing)
- reworked the authentication mechanism as some database don't require a username/password
- allow the [<username>[:<password>]@]<DSN> format of string when opening a connection using
a predefined data source, or [<provider>://][<username>[:<password>]@]<connection string>
when opening a connection without a predefined data source
- now internally use SQLite 3.5.9
- use GIO instead of GnomeVFS if found
- preliminary MacOS X support, and better support for cross compilation
- better support for thread safe support
- new distributed transaction support
- added specifications to create a .MSI file as a Windows installer
- bug fixes: #524837, #525601, #525877, #526748, #527892, #527002, #534805, #536418,
#536971, #537558, #537117
- Translations:
- es (Jorge Gonzalez)
- pt (Duarte Loreto)
- oc (Yannig Marchegay)
libgda 3.99.2, 2008-03-24
This version:
- fixes some compilation problems found in version 3.99.1 (now passes 'make distcheck')
- corrects some bugs
libgda 3.99.1, 2008-03-19
This is a major re-write of the core parts of Libgda, and is API incompatible with the 3.x versions.
Changes include:
- Easier to understand and to use API, with less strange path usage
- Reduce the size of the library (almost half the size and half the symbols)
- Easier connection opening (removal of the GdaClient object)
- Merge of the GdaQuery and GdaCommand into only one object to represent statements
- New adaptative SQL parser (can be adaptated to each DBMS's SQL syntax)
- New database based dictionary which can handle namespaces
- Rework of the database adapters (providers) for easier maintenance and more features
- Sample "skeleton" database adapters to make it easy to write a database adapter for a new
database type
- Updated documentation
Warnings:
- This is still an early version which probably has a lot of bugs and as such it should not be used
in a production environment.
- Most of the database adapters (providers) need to be re-written, particularly MySQL (which is
currently being done) and Oracle
- Libgnomedb has not yet been updated and won't compile with this version
libgda 3.1.2, 2007-10-24
- Filtering based on an SQL expression is now possible in the GdaDataProxy data model (Vivien Malerba)
- New XSL extension which uses Libgda (Pawel Cesar Sanjuan Szklarz)
- Documentation improvements and examples
- Tools: improvements to the SQL console and new tool to list the possible server operations
for each provider (Vivien Malerba)
- Bug fixed: #486017, #484112 (Stanislav Brabec, Armin Burgmeier)
- Firebird database provider now almost fully working (BLOBs are not yet writable, no prepared statement used)
(Vivien Malerba)
- MS Access database provider reworked to support all the SQLite's SQL (don't depend on libmdbsql.so anymore for
SQL processing) (Vivien Malerba)
- LDAP provider has seen a first draft rework (Exell Enrique Franklin Jiménez)
- Use of environment variables to specify debug ourput of commands and connection events (Vivien Malerba)
- "LIMIT" and "OFFSET" keywords recognized, for bug #488860 (Vivien Malerba)
- Enhanced the SQL console tool (allow multiple connections and virtual connections) (Vivien Malerba)
- Many small corrections and improvements (Murray Cumming, Vivien Malerba)
- Translations:
- New Occitan (Yannig Marchegay)
- removed no (Kjartan Maraas)
- sv (Daniel Nylander)
- vi (Clytie Siddall)
- it (Marco Ciampa)
- es (Jorge Gonzalez)
libgda 3.1.1, 2007-09-02
- Require inltool 0.35.5 when building from svn (Murray Cumming)
- SQLite now version 3.4.2 (Vivien Malerba)
- Added support for cursor-only access for data models returned by the PostgreSQL provider (Vivien Malerba)
- WIN32 port functional (needs testing, Vivien Malerba)
- Installation is relocatable (Vivien Malerba)
- New virtual connection feature, which allows to run SQL commands on data models (Vivien Malerba)
- Reworked the BDB provider to use virtual connections (Vivien Malerba)
- Embedd the libcsv library (http://sourceforge.net/projects/libcsv/) for CSV parsing
- Reworked the documentation
- Many small corrections and improvements
- New code examples (BDB usage, virtual connections)
- New command line tool (similar to psql)
- Reworked reports engine (breaks API -- the previous implemention did not work)
- Bug fixes: #432798, #432798, #433687, #316698, #449725, #450043, #454896, #467273 (Armin Burgmeier,
Marc-Andre Lureau, Piotr Pokora, Vivien Malerba)
- Translations:
- ar (Djihed Afifi)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
- es (Jorge Gonzalez)
- vi (Clytie Siddall)
- fi (Ilkka Tuohela)
- eu (Inaki Larranaga Murgoitio)
libgda 3.0.0, 2007-04-20
- misc. bug fixes (Armin Burgmeier, Vivien Malerba)
- bug fixes in the SQL delimiter to handle comments, BEGIN and END blocks and PostgreSQL's
dollar quoting (Vivien Malerba)
- more unit tests (Vivien Malerba)
- removed dependecy and test for popt (Baris Cicek)
- fixed SQLite provider's error reporting, and implemented the get_last_insert_id() virtuel
method (Vivien Malerba)
- fixed MySQL's provider error where the same column would be reported several times in
the TABLE_FIELDS schema (Vivien Malerba)
- fixed a misbehaviour in the data model import of XML files (Vivien Malerba)
- docs improvements
- removed ambiguities in the source files: mention LGPL everywhere in the library, and
GPL for the executables (Murray Cumming)
- allow dictionary XML file to specify its own DTD file (Vivien Malerba)
- Bug fixes: #421986, #421986, #420306, #410200, #427605, #407908, #417249 (Carsten Clark, Baris Cicek,
Vivien Malerba
- Translations:
- dz (Pema Geyleg)
- lt (Gintautas Miliauskas)
- ar (Djihed Afifi)
libgda 2.99.6, 2007-03-23
- Merged several libraries into one for efficiency and because of inter-dependencies (yselkowitz,
Gustavo R. Montesino, Christopher Taylor)
- More explicit API function names (Murray Cumming)
- Applications can now check installed DBMS providers (yselkowitz)
- C# bindings removed from the libgda's module (Murray Cumming)
- Added regression tests for SQL parsing and delimiting (Vivien Malerba)
- Reworked SQL delimiter and made the SQL parser report non parsed characters (Vivien Malerba)
- Embedded SQLite is now 3.3.13 (Vivien Malerba)
- Added configure tests to work around changes in the MDB API (yselkowitz)
- Improved WIN32 building for Cygwin and MinGW (yselkowitz, Gustavo R. Montesino, Christopher Taylor)
- Bug fixes: #407064, #411811, #314732, #390609, #353404, #411984, #349548, #412122, #411811
(Leonardo Boshell, yselkowitz, Armin Burgmeier, Daniel Espinosa, Murray Cumming, Christopher Taylor,
Vivien Malerba)
- Lots of minor bug fixes
- Translations:
- new dz translation (Pema Geyleg)
- sv (Daniel Nylander)
- en_GB (David Lodge)
- it (Marco Ciampa)
libgda 2.99.5, 2007-02-12
- Correct a linker error when using the (recently renamed to)
gda_query_field_value_get_is_parameter() function.
I'm doing a quick extra release because I imagine that the effects of using
an implicitly-declared function could be odd.
libgda 2.99.4, 2007-02-12
- GdaQuery: Renamed gda_query_is_modif_query() to gda_query_is_modify_query().
(Murray Cumming)
- GdaQueryFieldValue: Added the is_parameter property
(Daniel Espinosa)
- GdaEntityField: Renamed get_data_type() vfunc to get_dict_type().
(Daniel Espinosa)
- GdaQueryField: Renamed get_data_type() vfunc to get_dict_type().
(Daniel Espinosa)
- GdaObject: Added the option for GdaObject sub-classes to copy the
"name" property to the "id" one if the "id" is not set (used by the GdaParameter object)
(Vivien Malerba)
- GdaDataModelQuery:
- Correctly detect when it's not possible to get information about columns.
- Added a "use_transaction" property to allow the object to start a transaction before
running the modification SQL queries and to end it afterwards (so all the modifications are atomic).
(Vivien Malerba)
- GdaDataModel: Added "reset" signal, emitted when the data model has completely changed.
(Vivien Malerba)
- GdaDataProxy:
- Added "re_init_done" signal, emitted when the proxied data model's number of columns changes.
- Corrected a bug which prevented any modification to be applied to the proxied data model.
- Added gda_data_proxy_get_n_modified_rows().
(Vivien Malerba)
- Improvements to _new() functions for language bindings, such as C++:
GdaParameterList, (Johannes Schmid, Openismus)
- Make type checks more flexible, allowing use of derived GTypes by
language bindings: (Armin Burgmeier, Openismus)
- Use enum types instead of guint or gulong for flags, matching the
conventions used in GTK+, and making the API clearer: GdaQuery, GdaObjectRef
(Murray Cumming, Openismus)
- Use specific types for property and signal parameter registrations, and use specific signal marshallers.
This should be more robust, and is needed by language bindings.
(Murray Cumming, Openismus)
- Correct all remaining installation location conflicts with libgda 1.2.
(Leonardo Boshell)
- Correct the check for the gamin version.
(Leonardo Boshell)
- gda-sharp (mono bindings) updated.
(Daniel Espinosa)
- Added tests. (Vivien Malerb)
- Win32 build improvements. (Brecht Sanders)
- MDB provider: Attempt to fix the build for more recent versions of the MDB API.
(Murray Cumming)
libgda 2.99.3, 2007-01-23
- Build fixes:
- With gamin/fam. (Murray Cumming)
- removed unnecessary libxslt dependency. (Vivien Malerba)