forked from Wisser/Jailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
releasenotes.txt
1431 lines (1087 loc) · 46.7 KB
/
releasenotes.txt
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
11.2.4
- Fixed "Invisible combo box items." https://github.com/JFormDesigner/FlatLaf/issues/426
11.2.3
- Improved filtering of ad-hoc queries in the SQL console.
- Fixed for "User-defined DataTypes (MS SQL Server)". See https://sourceforge.net/p/jailer/discussion/700498/thread/3ed408eb/
11.2
- New and modern user interface look and feel.
11.1.5
- Improved user experience when browsing data.
11.1.4
- Fixed NPE in data browser.
11.1.3
- Minor bug fixes.
11.1.2
- Minor bug fixes.
11.1.1
- Database-side filtering of ad hoc queries in SQL Console.
10.6.1
- An error in creating NVARCHAR literals for MS-SQL Server was corrected.
10.6
- The new "Go Back"/"Go Forward" feature allows to go back and forth
to any state ever reached while navigating through the database.
- The layout auto-rearrangement can now be turned off.
See https://sourceforge.net/p/jailer/discussion/700499/thread/255ca45c7b
10.5.10
- The user interface of the data browser and SQL console has been made a bit more appealing.
10.5.8
- The connection dialog has been improved.
- Database-specific logos are now displayed in the connection dialog and in the status bar.
- The condition editor now also displays the number of rows that are "null" or "not null".
10.5.7
- An error in the validation of database connections that have not been used for a long time has been corrected.
10.5.6
- Increased initial responsiveness of the Data Browser.
10.5.5
- Performance issues with autocomplete have been fixed.
10.5.4
- Fixed an error when rearranging table windows.
- Added a "welcome" dialog for new users.
10.5.3
- Improved automatic arrangement of table windows in the data browser.
- Minor fixes and improved error reporting mechanism.
10.5.1
- The new "Where Condition" Editor allows quick and easy narrowing of table contents to the relevant data.
- Code completion feature has been significantly improved.
10.4.9
- Fix for bug "Exported enum names are truncated in lookup table definitions".
https://sourceforge.net/p/jailer/discussion/700499/thread/69ccdee460
10.4.8
- An error in the autocompletion of "*" in "Insert into... Select..." statements has been corrected.
- Working with multiple browser windows has been made clearer.
10.4.7
- Inplace editors for PostgreSQL data types "hstore", "ghstore", "json", "jsonb" and "boolean".
- Prevention of the "Streaming result set is still active." error with mysql.
10.4.5
- Sessions can be restored from the history of recent sessions.
- The automatic initial naming of database connections has been greatly improved.
10.4.4
- The detail view dialog has been made non-modal, allowing a smoother workflow.
- Rows can now also be edited via the detail view dialog.
10.4.3
- Improved rendering quality on HiDPI environments.
- Many icons have been improved and increased in resolution.
- Mac keyboard shortcuts are now also used with Nimbus-LAF.
- The GUI has been simplified in some places and made clearer.
10.4.2
- Further desktop improvements
- Single-row views are now directly editable. It is also possible to search for columns within them.
- The metadata view has been simplified and made clearer.
- rowid/tid pseudo columns are used to identify a row when the table has no primary key.
- An error in the row count query has been corrected.
10.4.1
- SQL Console and desktop improvements
- Queries are now subjected to intensive analysis,
which makes it possible to detect primary and foreign keys and display them accordingly,
as well as the origin table of each column.
- Number data is now formatted and right-aligned.
- Faster metadata acquisition with Oracle DBMS.
- Fixed "(Minor) Dropdown menu disabling inconsistency #40" https://github.com/Wisser/Jailer/issues/40
- Fixed "Parameters not working when using complex filters #41" https://github.com/Wisser/Jailer/issues/41
- New logo.
- Minor fixes and improvements.
10.3.5
- Detection and renewal of invalid database connections (further improvements).
- The inplace editor in the data browser now also supports fields of the "boolean" data type.
10.3.4
- Detection and renewal of invalid database connections.
- With nullable (virtual) primary key columns, errors could occur in the generated SQL statements. This has been fixed.
10.3.3
- The wording of the dialog for analyzing a scheme has been made more understandable.
- Sorting columns in the result of a query in SQL Console did not work
if a column did not have an explicit name. This bug was fixed.
- The error message of the primary key checker tool is now more readable.
- Feature request 67 "Export as imagemap", https://sourceforge.net/p/jailer/feature-requests/67/
10.3.2
- The SQL formatting algorithm has been improved.
- Increased responsiveness of the SQL console.
10.3.1
- The data browser has been revised and improved.
In particular, an overview panel for the desktop was developed,
which simplifies orientation in complex data views.
10.2.7
- Workaround for "Parser hangs in some queries #1013"
- Internal refactoring measures
10.2.6
- If a foreign key is nullable, rows can now be exported with no parents without violating the integrity
by setting the foreign key to null instead. In the same way parents can be deleted without their children.
- Support of CLOB/BLOB in MS SQL
10.2.4
- When working with PostgreSQL, you can use the "ctid" pseudo columns instead of primary keys
for row identification. See https://github.com/Wisser/Jailer/issues/36
- Under rare circumstances SQL statements were generated that could not be processed by Sybase database systems.
This has been corrected.
- The performance of the working table scope "local database" was improved. Especially with embedded usage (API).
- If the subsetter is used via API, access to the working tables is synchronized
so that different extraction models can be used concurrently.
10.2.2
- Error "Streaming result set is still active" when a limit is defined on the subject was fixed (MySQL)
10.2.1
- The response time in case of errors has been improved by immediately terminating all running SQL statements.
10.2
- Support for the MS SQL data type "hierarchyid".
- Severe error in log file creation was fixed.
10.1.2
- Automatic download of JDBC drivers.
- Workaround for bug "JDK-8215200 : IllegalArgumentException in sun.lwawt.macosx.CPlatformWindow"
https://github.com/AdoptOpenJDK/openjdk-jdk11/issues/10
https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8215200
https://bugs.openjdk.java.net/browse/JDK-8215200
10.0
- Java 7 support was dropped in favor of reduced development overheads.
- Third party libraries and JDBC drivers have been upgraded accordingly.
9.5.6
- New CLI tool for printing the closure of subject tables.
https://github.com/Wisser/Jailer/issues/34
- The command line interface has been cleaned up and simplified.
- An error in the HTML rendering of a data model was corrected.
9.5.5
- Fix for "Need help understanding delete script"
https://sourceforge.net/p/jailer/discussion/700499/thread/b3685a49/
(A further release was necessary, as this was not completely corrected at first)
- improved CSV-handling
9.5.4
- Deactivated dependencies had no effect on topological sorting. This was corrected.
https://sourceforge.net/p/jailer/discussion/700499/thread/b3685a49
- Fix for "NoClassDefFoundError was not logged, Jailer failed without showing reason #33"
https://github.com/Wisser/Jailer/issues/33
9.5.3
- Improved Connection Settings Wizard.
- Some diagnostic means have been added.
- Minor fixes.
9.5.2
- Fix for "[Bug] firebird database - No suitable Inline-View Style known #32"
https://github.com/Wisser/Jailer/issues/32
- Fix for "Delete Reduction is not deleting rows"
https://sourceforge.net/p/jailer/discussion/700499/thread/3d16e17980/
9.5.1
- Fix for "[jailer:bugs] #43 PostgreSQL: Export of inet and interval"
https://sourceforge.net/p/jailer/bugs/43/
- Fix for "[jailer:bugs] #44 not a proxy instance if WorkingTableScope.LOCAL_DATABASEand Tomcat jdbc pool"
https://sourceforge.net/p/jailer/bugs/44/
9.5
- Increased initial responsiveness of the Data Browser.
- Extensive internal redesigns since the last major release.
9.4.3
- Fixed issue "Error when running sql script" https://sourceforge.net/p/jailer/discussion/700499/thread/90600d12b6
9.4.2
- Improved database metadata management.
9.4.1
- The new "Degree view" allows quick and easy editing of the associations of tables with the highest connectivity.
9.3.6
- "#66 Avoid plain text passwords on the command line"
https://sourceforge.net/p/jailer/feature-requests/66/
- Minor improvements to GUI of the data browser.
9.3.5
- Minor improvements to the GUI of the SQL console.
- Increased responsiveness and performance of the SQL Console.
9.3.4
- Instant visualization of the contents of the row under the mouse pointer in the data browser.
9.3.3
- Fixed: Characters in bookmark names that are not valid in file names caused errors when saving the bookmarks.
- Minor improvements to the GUI of the data-browser.
9.3.2
- Fixed "Conditions with () have leading and trailing parans removed" https://github.com/Wisser/Jailer/issues/28
- Fetching results from MySQL/MariaDB is now based on a cursor. This prevents out-of-memory errors with large amounts of data.
9.3.1
- Fixed "Syntax error creating tables in PostgreSQL" https://github.com/Wisser/Jailer/issues/27
- Modifications to the connection properties in the "Connection" dialog were sometimes retained after a "cancel".
- "About" dialog now also shows system properties.
9.3
- The number of rows of a subject table to be exported can now be limited
taking into account a possible column order.
- Nullable primary key columns could lead to incorrect results under certain circumstances.
- In the data browser, the user interface sometimes blocked when the acquisition of database metadata took a long time.
9.2.2
- When deleting rows, an IllegalStateException sometimes occurred incorrectly.
- Improved performance of deletion script generation.
- Progress dialog for exporting is no longer modal.
9.2.1
- Support for nullable primary key columns.
This simplifies the definition of pseudo-primary keys for tables without keys.
- "Limit" parameter as a safeguard for exports. https://github.com/Wisser/Jailer/issues/24
9.1.8
- Fixed https://github.com/Wisser/Jailer/issues/22
- Updated the SQLite JDBC driver.
- A new wizard for JDBC URL settings has been created.
9.1.7
- Fixed NullPointerException in Data Browser.
9.1.6
- Support for data type datetime2 in MS SQL.
https://github.com/Wisser/Jailer/issues/20
- The -schemamapping option was not used correctly for the statements of a delete script.
https://github.com/Wisser/Jailer/issues/21
- Formatting of dates/timestamps during export no longer takes place synchronized.
This improves performance when multiple threads are used.
- Minor improvements to the "Export Data" dialog.
9.1.4
- Deadlock prevention in PostgreSQL.
- Support for PostgreSQL type "bpchar".
9.1.3
- Improved display of errors in the data browser.
- More robustness if primary keys are not specified correctly.
9.1.2
- Fetching results from PostgreSQL is now based on a cursor. This prevents out-of-memory errors with large amounts of data.
9.1.1
- Performance improvements.
- The animation of the data model view in the desktop did not work.
- When the DDL is generated for a table, it is also generated for the indexes.
- HiDPI display support.
9.1
- Hover & See function in the data browser to easily see which row is related to which other rows.
- Added configuration information for MariaDB.
- Fix for Issue "Gui: NPE after renaming model file (*.jm)"
https://github.com/Wisser/Jailer/issues/16
- The initial base folder of the data models was incorrect if the installer was used on Windows.
- The minimum requirement for the number of available database connections has been reduced to a single one.
- Extensive internal redesigns since the last major release.
8.8.8
- Avoid NPE if there is no default scheme.
- Import filters did not work correctly when a foreign key column with a filter was exported,
but not the corresponding primary key column.
- In the condition editor, scalar subqueries for columns of adjacent tables can now be generated.
- Minor fixes.
8.8.7
- Upsert statements in PostgreSQL format could fail due to missing explicit conversion of bytea literals.
- The data model editor is now more robust against errors in the data model files.
- Minor improvements to the GUI and bug fixes.
8.8.6
- https://github.com/Wisser/Jailer/issues/14
"[new feature] add command line options to bypass the data model selection dialog"
- https://github.com/Wisser/Jailer/issues/13
"Multiple table selection"
- The model selection dialog has been improved. Recently used connections/sessions/bookmarks can be reopened with a single click.
- The sorting settings of table browsers in bookmarks are recorded and restored.
- New feature "Find Column..." of the data browser makes it easy to find a column in a wide table.
8.8.4
- Fixed a bug that caused a Liquibase export not to work for Postgres TEXT columns.
- SQL Console didn't work with SQLite.
- Improved validation of CLI arguments.
- The "Upsert" statements are generated for more compact.
- Feature Request 65. https://sourceforge.net/p/jailer/feature-requests/65/
- Importing C/BLOBs did not work without write permission on the working directory.
8.8.2
- The layout optimizer of the export progress dialog has been improved.
- The tutorial has been improved.
- Minor fixes and improvements.
8.8.1
- New feature "Check Primary Keys" makes it possible to check the user-defined primary keys for uniqueness.
- A warning message appears if the number of collected rows differs from the number of exported ones.
- The performance of the preparation for the subsetting-process has been improved.
- Extraction models can now be loaded from the "Data Model Manager" dialog.
- It was not possible to pass user / password via cli when it starts with '-'
- Updated local database to H2 1.4.199.
- The fonts selection in the GUI has been standardized.
- Improved error handling in the data browser.
If the same error occurs multiple times because it affects multiple table browsers,
it will be displayed only once.
8.7.8
- Fixed a bug that caused the creation of a delete script to generate syntactically incorrect SQL statements when a table without a primary key exists.
8.7.5
- Fix for ticket 39 "Oracle queries are going failed". https://sourceforge.net/p/jailer/bugs/39/
- Minor bug fixes.
8.7.3
- Fix: the working table scope "local" did not work correctly with PostgreSQL.
- Cursor-based result sets have been activated under PostgreSQL.
Retrieving the entire ResultSet at once led to out-of-memory errors.
8.7.2
- Selected tables are automatically scrolled into the visible area of the display.
- Fix: not all associations between two visible tables were always visible.
8.7.1
- SQL Console is now robust against outdated metadata.
- Fixed: Associations between visible tables were not always visible.
8.7
- Modal dialogues were replaced by non-modal ones.
- Creation of the data model files has been revised.
- Execution plans for DB2 LUW.
- Fixed "ERROR: failed to find conversion function from unknown to text"
that could occur with PostgreSQL in connection with the "local database" scope.
8.6
- The data browser automatically reconnects when the connection is lost.
- Minor bug fixes.
8.5.4
- The table from which the navigation starts can now be changed at any time in the data browser.
- Improved data browser performance.
8.5.3
- Column order in the display can be defined not only globally but also for each table.
8.5.2
- Minor bug fixes.
8.5.1
- Undo/Redo functionality.
- improved HiDPI Support.
8.4.1
- Transactional import did not roll back the transaction in case of an error.
- Fixed an error in the analysis of views.
- Minor bug fixes.
8.3.1
- New "Model Migration Tool" allows you to easily find and edit the newly added associations
if the data model has been extended after the last change to this extraction model.
8.2.6
- Fixed "#37 PostreSQL: transactional execution"
- Fixed "#36 Data Export Dialog: Some settings are 'lost' between Exports"
- FR "#62 subsequent Analyze database, new links fate", only the new "parent-> detail" relationships will be disabled.
- FR "#61 Information about exported rows"
- Issue 10, "Export to SQLite - Boolean values", https://github.com/Wisser/Jailer/issues/10
8.2.5
- Improved livelock prevention.
- [feature-requests:#61] "Information about exported rows"
- [bugs:#36] "Data Export Dialog: Some settings are 'lost' between Exports"
- Fixed NPE in "explain" feature.
- Minor bug fixes.
8.2.4
- Implemented "#57 Analyze database convenience". UPK is formed exclusively for the tables related to the subjects.
- Implemented "#58 receipt += times"
- Fixed "#34 Possible Performance-Improvement in CellContentConverter.toSql"
- Fixed "#59 Retry Deadlock?"
- Automatic adjustment of the number of database connections.
- Improved error handling.
- URL of forum and manual pages on sourceforge have been corrected.
8.2.1
- Intra-database export: automatic fallback to MERGE on tables without PK has been removed.
- Increased SQL import performance + progress bar also for compressed files.
- Logging did not work if the working directory is read-only.
- Improved error handling.
8.2
- Fixed "SQLite JDBC: inconsistent internal state" during database analysis.
- Fixed "#32 SQL analyzer: duplicate associations".
- Implemented "#51 Reduce transaction sizes"
- Implemented "#54 Number thousand separators"
- New option to set the isolation level.
- Bookmark feature in data browser.
8.1.5
- New export option "check primary keys" allows checking the validity of manually defined primary keys.
- New export option "limit transaction sizes" reduces transaction sizes. (Feature request 51)
- Improved indexing of working tables.
- JSQLParser has been updated to version 1.3.
- Fix for bug 32 "SQL analyzer: duplicate associations"
8.1.1
- Increased initial responsiveness of the SQL Console.
- SQL-Console: all requests are now executed in the same connection.
- Feature Request "#47 Add additional tables adds too much"
https://sourceforge.net/p/jailer/feature-requests/47/
- Feature Request "#44 MSSQL export to another DB in same instance"
https://sourceforge.net/p/jailer/feature-requests/44/
- Feature Request "#49 Mac shortcuts"
https://sourceforge.net/p/jailer/feature-requests/49/
- Feature Request "#50 Option to not to delete too much from entities"
https://sourceforge.net/p/jailer/feature-requests/50/
- Improved Cycle Finder component.
8.0.2
- Increased responsiveness and performance of the SQL Console.
8.0.1
- Foreign key columns can be set to null if parent row is not exported.
- Increased responsiveness and performance of the data browser GUI.
8.0
- The new "PathFinder" feature allows elaborate finding
of association paths between tables in complex data models.
7.11.1
- Closing a root table did not work properly in the data browser.
- Minor bug fixes.
7.11
- Database analysis not only finds primary keys and foreign keys for tables,
but also for views and synonyms by analyzing the underlying tables.
- Fixed a memory leak in data browser.
7.10.8
- Data browser improvements
- New layout feature: "align table horizontally with predecessor"
- Improved layout strategy in the data browser.
- Improved row-to-row-link rendering performance.
- Feature Request "Improve the usability of the Data Model Editor" (partially). see https://sourceforge.net/p/jailer/feature-requests/43/
7.10.7
- Zoom in / out using the mouse wheel in the data browser
7.10.6
- Minor bug fixes.
7.10.5
- Animated desktop layout in the data browser.
- Improved row-link rendering quality and performance.
7.10.4
- The estimated number of rows of the tables is displayed.
- Limited fetch size of statements to prevent an OOM exception when the default fetch size is too large (MySQL).
- Updated H2 DBMS from version 1.3.160 to 1.3.175
7.10.3
- Fix for "Can't connect to SOCKS proxy:http" https://github.com/Wisser/Jailer/issues/8
7.10.2
- Added context menu to columns view of results table.
7.10
- Comprehensive usability improvements of the data browser.
- Animated row-to-row links.
- Increased rendering quality of row-to-row link.
- Automatic layouting of data browser desktop.
- Using working-table-scope "LOCAL_DATABASE" led to concurrency problems and connection leaks.
- Update of SQL keyword catalog to SQL 2003 standard.
7.9.3
- Data browser: prevented that context menu automatically gets closed if the item doesn't have the focus.
7.9.2
- Feature to define the rendering position of a column.
- Rendering of row-to-row links as bezier curves.
7.9.1
- Fixed statement leak.
- Minor GUI Improvements and bug fixes.
7.9
- Comprehensive usability improvements of the data browser.
- Fix for "#25 Invalid SQL when exporting for H2 dialect"
https://sourceforge.net/p/jailer/bugs/25/?limit=25#49d4
- Minor bug fixes.
7.8.2
- The new feature "Analyze SQL" analyzes SQL statements and proposes association definitions.
This allows to reverse-engineer the data model based on existing SQL queries.
- Improved render quality on high resolution screens.
7.7.3
- incremental SQL formatting.
- Minor GUI Improvements and bug fixes.
7.7.2
- SQL-Console
- new "Toggle Line Continuation" context menu item.
- "Substitute Variables" context menu item.
- Loading/Saving of SQL Script Files (with Drag & Drop support)
7.6.8
- SQL-Console: added support for substitution variables.
- Fixed a bug concerning SQL outline rendering.
7.6.6
- Improved SQL Outline rendering.
7.6.5
- Minor GUI Improvements and bug fixes.
7.6.4
- Improved table meta data rendering.
7.6.3
- Asynchronous meta data loading.
7.6.2
- Added "Columns", "Text" and "Meta" views to SQLConsole.
- Added "Functions", "Packages" and "Triggers" views to Data Browser.
- Added "Copy toClipboard" context menu item.
- New feature "Explain Plan" in SQLConsole.
7.6.1
- JDBC driver updates.
- Minor GUI Improvements and bug fixes.
7.6.0
- Constraint checking tool.
- Fix for "#23 Bugs when exporting timestamps and JSON", https://sourceforge.net/p/jailer/bugs/23/
- Minor GUI Improvements and bug fixes.
7.5.10
- SQLConsole: added outline-view for SQL statements.
7.5.8
- SQLConsole: added ability to execute SQL fragments.
- DDL view for tables.
7.5.7
- Minor GUI improvements.
7.5.5
- data browser improvements
- In-place editing of query results.
- Column filtering in data browser.
- Improved table search feature.
7.5.3
- Performance and GUI improvements.
7.5.2
- https://github.com/Wisser/Jailer/pull/5 "Include the column names in the first statement to avoid ORA-00918: column ambiguously defined"
- Table search feature.
- Minor GUI improvements.
7.5
- Full featured SQL Console with code completion, syntax highlighting
and database schema visualization.
7.4.2
- Improved data model merging.
- Added ability to change the data model base folder.
- Metadata views in data browser.
7.4.1
- Minor GUI Improvements.
7.4
- Integrated ClosureView into DataBrowser.
- Double To String conversion without exponential scientific notation.
7.3.1
- Bugfix: NPE happened when using import-filters.
- Minor GUI Improvements.
7.3
- Added ability to open more than one model editor at a time.
- Issue #4 "NPE when using Weblogic Datasource" (https://github.com/Wisser/Jailer/issues/4 )
7.2.2
- Performance optimization.
- new filter type allows to exclude columns from export.
7.2.1
- Fix for "#20 OutOfMemoryError: Java heap space - Reply" (https://sourceforge.net/p/jailer/bugs/20/ )
7.2
- Introduction of the "expansion limit" feature for improved navigation.
- Searchable combo boxes.
- Extensions of extraction model files have been changes from "csv" to "jm".
7.1
- Small fixes for Java 9 compatibility.
- Feature Requests #41 "Don't return exit code 0 on error in jailer.sh" (https://sourceforge.net/p/jailer/feature-requests/41/ )
7.0.7
- Minor bug fixes.
7.0.6
- Data Browser will automatically reconnect if the connection is lost.
- Minor bug fixes.
7.0.5
- Fixed a bug concerning temporary-table support.
- Fixed connection leak in data browser.
7.0.4
- Preventing NPE when trying to do an export via shell.
7.0.3
- Minor bug fixes.
7.0.2
- Fixed an NPE in MetaDataCache.
- User's home directory is used for setup, configuration and log files.
- Prevent exception if oracle.xdb.XMLTypeFactory is missing.
7.0.1
- MS SQL Server datetime issue has been fixed. (https://sourceforge.net/p/jailer/discussion/700499/thread/5773eb1c/ )
- SQLite fk detection bug has been fixed.
7.0
- New API provides programmatic access to the data export and import functionality.
http://jailer.sourceforge.net/api.html
6.7.6
- Fixed an issue with Microsoft JDBC Driver 6.0 for SQL Server.
6.7.5
- Fixed an incompatibility with jre 7.
6.7.4
- CLI usage didn't print options.
6.7.3
- Improved performance of database meta-data access.
- Minor bug fixes (Filter templates).
6.7.2
- Added support for NCLOB data type.
- Improved graph layout optimization in progress panel.
6.7
- Visualization of progress of delete-reduction.
- Improved File Dialog.
6.6.3
- Added popup menu for changing the "exclude from deletion" attribute of a table.
6.6.2
- Minor bug fixes.
6.6.1
- Added option for analyzing data model via CLI.
- Minor bug fixes.
6.6.0
- Improved filter management. Support for import-filters and literal-filters.
http://jailer.sourceforge.net/filters.html
6.5.2
- Fix for "DML->Update script template is broken for tables with timestamp columns"
https://sourceforge.net/p/dbeauty/tickets/8/
6.5.1
- Added support for User-Defined Types.
- Minor bug fixes.
6.5
- Referential cycles can now be exported by deferring the insert of nullable foreign keys.
6.4.1
- Added support for Views and Synonyms. (https://sourceforge.net/p/jailer/feature-requests/36/)
6.4
- Performance improvement.
- Added inline view style for DB2 z/OS.
- Added support for DB2 z/OS.
6.3.4
- Added inline view style for Informix.
6.3.3
- Get IdentifierQuoteString from config if target DBMS differs from source DBMS.
6.3.2
- Data Browser has been improved.
- Bug fix for "Column name not exported with double quotes" https://sourceforge.net/p/jailer/discussion/700499/thread/a3635560/
6.3.1
- Fixed an incompatibility with Java 9.
6.3
- Data browser tables are now sortable.
- Multithreaded import.
- GUI improvements.
6.2
- Added possibility to specify the target DBMS for a generated SQL script.
This allows to export data and import it into a different DBMS.
- Support for virtual columns.
- Fixed a bug concerning NVARCHAR literals on MS SQL Server.
6.1.3
- fixed an incompatibility with PostgreSQL JDBC Driver 9.1.
6.1.2
- Improved performance of the Data Browser.
6.1.1
- Fixed an issue with creating a new model after deleting a model with the same name (thanks to Dave).
- Fixed a performance issue within the Data Browser.
6.1
- The new feature "Filter Templates" allows you to define rules for assigning filters to columns.
(Edit -> Filter editor... -> Templates)
- Filters on primary key columns will automatically be applied to the corresponding foreign key columns.
6.0.3
- Fixed an error extracting from a postgresql table with a date primary key and a local database (thanks to olivier45).
See https://sourceforge.net/p/jailer/discussion/700499/thread/6ffaf110/
6.0.2
- Fixed an incompatibility with Java 9.
6.0.1
- Bug fixes for "Error exporting from postgresql with global tables with a working table schema"
and "Error exporting from postgresql with temporary tables"
See https://sourceforge.net/p/jailer/discussion/700499/thread/a7f0af2c/
6.0
- New "Export To" mode allows to export rows directly into a different schema in the same database.
5.6.1
- Minor bug fixes.
5.6.0
- Improved error handling.
- Improved performance.
5.5.7
- Fixed an issue with exporting XML data from MySQL databases (thanks to qasbah raja)
5.5.6
- Minor bug fixes.
5.5.4
- Minor bug fixes.
5.5.3
- Minor bug fixes.
5.5.2
- Added ability to specify the schema for the working tables.
5.5.1
- Fixed NPE in data browser.
5.5
- Support for ROWID pseudo-column in Oracle.
5.4.2
- bug fix for [ jailer-Bugs-3294893 ] Outer Join for selecting dependant entries and Oracle 10
mixing left joins and theta-style joins caused problems on oracle DBMS
- new pseudo-column: "$IN_DELETE_MODE"
5.4.1
- add ability to just generate the delete script, skip export (thanks to Jason Pell)
- improved responsiveness when SQL exception occurs.
5.4
- Fixed an issue with exporting dependencies of Initial Tables. (thanks to Teddy Widom, https://sourceforge.net/p/jailer/discussion/700499/thread/60e83aef/)
- -scope "LOCAL_DATABASE" now supports the pseudo-columns $DISTANCE and $IS_SUBJECT.
- Support for multiple subject-tables has been added.
5.3.2
- Files with ".sql.zip" suffix are no longer created GZIP files but ZIP files.
5.3.1
- "Data Export" dialog now have a "Cancel" button.
- An NPE occurred if the data model is empty.
- Statistics were collected for the remote database instead for the local when using "-scope LOCAL_DATABASE".
5.3
- The Data Browser now offers a "Data Export" feature.
5.2.1
- minor improvements.
5.2
- Added "Closure View" and "Closure Border View" tools.
5.1
- Better UI and improved navigation.
5.0.2
- Viewing contents of CLOB and XML column types
5.0.1
- Unicode support.
5.0
- Ability to collect rows in a separate embedded database.
This allows it to export data from read-only databases.
4.4
- internal refactorings.
4.3.9
- don't write empty lob files for liquibase export. (thanks to Jason Pell)
4.3.8
- fix for for liquibase BLOB export. (thanks to Jason Pell)
4.3.7
- refinements to timestamp, date, time format mask config for liquibase export. (thanks to Jason Pell)
4.3.6
- fixed a bug concerning CLOB export in Liquibase format. (thanks to Jason Pell)
4.3.5
- added support for ARRAY type.
4.3.4
- Workaround for http://bugs.mysql.com/bug.php?id=47108
4.3.3
- Fix for http://sourceforge.net/p/dbeauty/tickets/4/
4.3.2
- Fix for http://sourceforge.net/p/dbeauty/tickets/3/
4.3.1
- Minor bug fixes.
4.3
- Data Browser has been improved.
- Fixed a performance issue related to ResultSet#getMetaData and Postgresql 9.1 JDBC driver.
4.2.4
- added support for postgresql UUID type.
4.2.3
- fixed an incompatibility with Java 8.
4.2.2
- fixed a bug concerning MySQL's unsigned integer types.
4.2.1
- fixed a bug concerning the determination of the universal-primary-key.
- fixed a bug in file chooser window (thanks to oliver45)
4.2
- added support for Liquibase file format (thanks to achimgrie)
4.1
- added support for Postgres HStore data type.
- internal refactorings.
4.0.18
- changed order of which the prolog/epilog files are included into the export script.
4.0.17
- Workaround for ORA-01424.
4.0.16
- Added support for Informix's "datetime year to day/month/minute" column type.
4.0.15
- Added support for high-resolution mouse-wheels.
- Added support for Informix nonlogging raw tables (thanks to Cesar Martins)
4.0.14
- Fixed a bug concerning BLOB/CLOB support for MS SQL
4.0.13
- Workaround for ORA-08176.
4.0.12
- Fixed a bug where FlatXMLTransformer would produce invalid XML when table names were quoted.
4.0.11
- Fix for bug 3536695: "Upserts don't work for certain postgres types (e.g time)"
4.0.10
- fixed a bug concerning pre-populated alias fields for tables with quoted names in the QueryBuilder-UI.
- minor GUI improvements
4.0.9
- improved display-name-concept. Quoted table names will now be displayed unquoted.
4.0.8
- Java 6 compatibility
4.0.7
- Fixed a bug concerning multi-line VARCHARs in Oracle.
4.0.6
- Fixed a bug concerning multi-line VARCHARs in DB2.
4.0.4
- Support for DB2's FIELD PROCS
- Fixed a bug concerning NPE on HTML-rendering without a database connection.
4.0.3
- Added missing ';' at end of lines in generated delete script on DB2 on Z/OS
4.0.2
- Fixed a bug concerning TIMESTAMP pattern in Oracle.
4.0.1
- Configurable VARCHAR-length limit. Workaround for Informix JDBC-driver bug.
4.0
- Multi data model support.
- "Subset by Example" feature.
- Added a second demo-model.
- Bug fixes.
3.7.10
- Fixed a bug concerning appending of layouts in the data browser.
- Better integration of the closure-border-browser.
3.7.9
- Added ability to hide table-browser windows from views.
- Added ability to append a stored layout.
- Added context menu for thumbnailed browser windows.
- Added "Show in New Window" feature.
- Filter-condition historization.
3.7.8
- Fixed a performance issue within the Data Browser.
- Improved rendering of null values.
3.7.7
- Added desktop context menu.
- Minor GUI improvements.
3.7.6
- Border-Browser Feature introduced in data browser.
- Fixed a bug concerning multi-line VARCHAR content. (Jailer Bug ID: 3432301)
3.7.5
- Fixed a bug concerning DATE literals in Oracle, the data browser now uses the "TO_DATE" function to specify the date pattern.
- Minor GUI improvements.
3.7.4
- moves new table browser to center of the desktop.
- "Reconnect" and "New Window" menu items added.
3.7.3
- Java 7 compatibility fix.