-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathversions.xml
2658 lines (2658 loc) · 88.1 KB
/
versions.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- vim: set tw=90: -->
<articles>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.14.1</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2024-08-31">2024-08-31</time>
</header>
<aside>
<p>
Modernise outputted
<a href="ort-javascript.1.html">ort-javascript(1)</a>.
Stipulate that any calling environments should be
compatible with ES2021, altough in reality, ES6 should be
fine. Tested against the latest versions of Typescript
and the dependent ecosystem.
</p>
<p>
No longer use basic
<a href="https://man.openbsd.org/crypt.3">crypt(3)</a>
for password encryption. Now require
<a href="https://man.openbsd.org/crypt_newhash.3">
crypt_newhash(3)</a> (or function with similar
signature) and family, which use Blowfish encryption.
This isn't available by default on Linux, but is available
in
<a href="https://github.com/kristapsdz/oconfigure">
oconfigure</a>, which is now used for regression
tests of said functionality.
</p>
<p>
No longer bundle a copy of <code>b64_ntop</code>. This is
part of most systems, and
<a href="https://github.com/kristapsdz/oconfigure">
oconfigure</a> (or equivalent) may be used for
compatible functions.
</p>
<p>
Various fixes for
<a href="ort-nodejs.1.html">ort-nodejs(1)</a>, from
<a href="https://github.com/validatorjs/validator.js/pull/2257">
pull/2257</a>. This is still experimental and
lacks validation.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.14.0</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-10-25">2021-10-25</time>
</header>
<aside>
<p>
Add initial <a href="https://rust-lang.org">Rust</a> output.
This is still experimental and lacks validation.
</p>
<p>
Fix how <a href="ort-nodejs.1.html">ort-nodejs(1)</a> was handling
passwords. Searching on password fields would prior to this have
failed unilaterally. Password operations (querying, updating, etc.)
are now all enforced by regression tests.
</p>
<p>
Improve the <a href="ort-nodejs.1.html">ort-nodejs(1)</a> exception
handling for inserts and updates. It now passes through specific
constraint errors instead of catching the entire exception.
Moreover, the exception handler is now documented in the manual, as
its documentation is very spotty in
<a href="https://www.npmjs.com/package/better-sqlite3">better-sqlite3</a>.
All of these are now checked in the regression suite.
</p>
<p>
Fix how
<a href="ort-c-source.1.html">ort-c-source(1)</a> would produce
invalid C code for nested null references.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.9</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-09-27">2021-09-27</time>
</header>
<aside>
<p>
Add epoch types (<code>date</code> and <code>epoch</code>) to the
safe typing regime. This does not change non-safe-typing
applications except to add aliases.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.8</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-07-27">2021-07-27</time>
</header>
<aside>
<p>
Tighten up code produced by
<a href="ort-c-source.1.html">ort-c-source(1)</a>
in having the correct type for some enumeration and casting to avoid
spurrious warnings raised by <strong>-Weverything</strong>.
</p>
<p>
Fix output of
<a href="ort-javascript.1.html">ort-javascript(1)</a> when using the
<code>-value-checked</code> and <code>-value-selected</code> classes.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.7</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-07-18">2021-07-18</time>
</header>
<aside>
<p>
<strong>SQL change</strong>: indexes are now output as
<code>unique_strct__field1_field2</code> instead of
<code>unique_field1_field2</code>.
This prevents multiple structures with the same unique field(s) from
having the same index name.
This only changes the name of the index, so existing indexes won't
be affected. However, if removing a unique statement, the
corresponding index won't be removed as the name won't be found.
New indexes won't clobber any existing ones because of the prefix
style.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.6</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-07-17">2021-07-17</time>
</header>
<aside>
<p>
<strong>Change parser behaviour</strong>: no longer allow for
queries of the same name within a structure. Prior to this, the
rule was that query names must be unique within the query type
(e.g., <code>iterate</code>).
</p>
<p>
The reason for this change is to reflect how the code actually
operates a bit better.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.5</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-07-12">2021-07-12</time>
</header>
<aside>
<p>
Export bitfields as enumerations in
<a href="ort-nodejs.1.html">ort-nodejs(1)</a>. This makes the
Node.js output similar to the C output. While here, perform various
cleanups to the documentation.
</p>
<p>
Add more validation for integer types in
<a href="ort-nodejs.1.html">ort-nodejs(1)</a> validator routines,
and also have the <code>blob</code> field return a Buffer. Make
sure that high-value bit-fields (e.g., all bits set) aren't
discarded by the SQLite3 module with range errors: properly fix them
into their signed format before passing into the database.
</p>
<p>
Lastly, use <code>bigint</code> instead of <code>BigInt</code> in
<a href="ort-nodejs.1.html">ort-nodejs(1)</a> output.
Fix that the export functions were trying to <code>new</code> a
string when converting from a <code>Buffer</code> (harmless). Fix
type warnings about <code>lastInsertRowid</code> by converting to a
<code>string</code> before converting it into a <code>BigInt</code>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.4</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-07-08">2021-07-08</time>
</header>
<aside>
<p>
Considerably improve the documentation of the internal Long
implementation, which is a utility for the output of
<a href="ort-javascript.1.html">ort-javascript(1)</a> to convert
and manipulate 64-bit integers without necessarily having BigNum
support in the browser. Also make some small fixes to the code.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.3</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-06-27">2021-06-27</time>
</header>
<aside>
<p>
Introduce <q>safe typing</q> to the output of
<a href="ort-c-header.1.html">ort-c-header(1)</a>.
This affects the API for both data types and operations, and
accounts for the common error of type mis-assignment.
</p>
<p>
For example, with a structure <code>user</code> with a row
identifier <code>id</code> and originator foreign key
<code>ouserid</code>, searching for the originator user erroneously
using <code>id</code>. In prior versions, both <code>id</code> and
<code>ouserid</code> were <code>int64_t</code>, which made it easy
to use one instead of the other. With safe typing, two new types of
<code>user_id</code> and <code>user_ouserid</code> exist, and may
not be set to each other without using setter and getter functions.
</p>
<p>
By default, safe typing is not enabled and types may be mixed. To
ease transitioning between safe and un-safe types, the setter and
getter functions are emitted for both forms, and (for example)
<code>user_id</code> is also emitted for un-safe typing as a simple
alias for <code>int64_t</code>, so existing code need not be
modified.
</p>
<p>
Safe types are still a work in progress, with the implementation not
quite finalised until the next minor release.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.2</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-06-09">2021-06-09</time>
</header>
<aside>
<p>
Minimal change to the <a href="ort.3.html">ort(3)</a> API in
exporting the full chain of fields in each sub-field referencing
component of searches (distinct, aggregate, etc.). This is
informative, and currently only used in
<a href="ort-json.1.html">ort-json(1)</a> and
<a href="ort_lang_json.3.html">ort_lang_json(3)</a>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.1</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-06-08">2021-06-08</time>
</header>
<aside>
<p>
Minimal change to the <a href="ort.3.html">ort(3)</a> API in
exporting the full chain of fields in each query component.
This is informative, and currently only used in
<a href="ort-json.1.html">ort-json(1)</a> and
<a href="ort_lang_json.3.html">ort_lang_json(3)</a>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.13.0</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-05-21">2021-05-21</time>
</header>
<aside>
<p>
Change the way that
<a href="ort-sqldiff.1.html">ort-sqldiff(1)</a> handles unique
fields and unique tuples. Prior to this, these would be output
directly into the tables as <code>UNIQUE</code> statements, which
unfortunately can't be modified with SQLite after creation.
</p>
<p>
Now, <a href="ort-sqldiff.1.html">ort-sqldiff(1)</a> outputs
<code>UNIQUE INDEX</code> statements for these components. These
can be added and dropped at will, making migration between databases
much easier.
</p>
<p>
This requires a minor version bump and makes
<a href="ort-sqldiff.1.html">ort-sqldiff(1)</a> incompatible between
versions, as existing <code>UNIQUE</code> statements may not be shed.
Existing databases will need to be dumped and re-inserted.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.12</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-05-17">2021-05-17</time>
</header>
<aside>
<p>
Add ability to override the namespace name generated by
<a href="ort_lang_javascript.3.html">ort_lang_javascript(3)</a>.
Distribute a <i>ort-version.h</i> header with version information.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.11</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-05-13">2021-05-13</time>
</header>
<aside>
<p>
Add ability to specify the namespace output by
<a href="ort_lang_javascript.3.html">ort_lang_javascript(3)</a> as
exported.
Distribute a <i>ort-version.h</i> header with version information.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.10</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-05-06">2021-05-06</time>
</header>
<aside>
<p>
Add significant regression tests to the Node.js validators,
normalising their behaviour in some cases.
Add ability to break apart
<a href="ort-nodejs.1.html">ort-nodejs(1)</a> output into multiple files.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.9</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-05-04">2021-05-04</time>
</header>
<aside>
<p>
Add validation routines to
<a href="ort-nodejs.1.html">ort-nodejs(1)</a> and
<a href="ort_lang_nodejs.3.html">ort_lang_nodejs(3)</a>.
These use the
<a href="https://github.com/validatorjs/validator.js">validator.js</a>
system for validation.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.8</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-04-29">2021-04-29</time>
</header>
<aside>
<p>
Re-write internals of auditing system. These now use the internal
<a href="ort_audit.3.html">ort_audit(3)</a> function. The output of
<a href="ort-audit.1.html">ort-audit(1)</a> has been formalised and
is now documented (it differs from the prior output).
</p>
<p>
Formalise the output of
<a href="ort_audit_json.1.html">ort-audit-json(1)</a> and include
the <code>count</code> operation in its output.
For coherence with the program name, output straight-up JSON and
have a flag <b>-s</b> for wrapping the object in JavaScript.
</p>
<p>
Rename <code>ort_diff_free</code> to
<a href="ort_diffq_free.3.html">ort_diffq_free(3)</a> for
consistency.
</p>
<p>
Remove <code>ort-audit-gv</code>, which isn't really useful.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.7</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-04-17">2021-04-17</time>
</header>
<aside>
<p>
Add callback mechanism to <i>ort-json.ts</i>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.6</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-04-10">2021-04-10</time>
</header>
<aside>
<p>
Release <a href="ort-c-manpage.1.html">>ort-c-manpage(1)</a> and its libray bits,
<a href="ort_lang_c_manpage.3.html">>ort_lang_c_manpage(3)</a>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.5</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-04-02">2021-04-02</time>
</header>
<aside>
<p>
Add some new methods to the generated <code>ort.Long</code> output with
<a href="ort-javascript.1.html">ort-javascript(1)</a> to make it
easier for front-ends to work with 64-bit integers. Add regression
tests for these.
</p>
<p>
Start work on a <code>ort-c-manpage</code> (not yet released) that
will allow a C API to be output as a
<a href="https://man.openbsd.org/mdoc.7">mdoc(7)</a> document.
I personally use this because it makes scanning for functions faster
than looking in the header files.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.4</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-03-28">2021-03-28</time>
</header>
<aside>
<p>
Regression tests for internal JavaScript (<code>ortJson.Long</code>)
functions. No change to code, but adding <code>or</code> and some
documentation. Also relax some needless constraints in
<i>ort-json.ts</i>.
</p>
<p>
Fix a bug in <a href="ort-sqldiff.1.html">ort-sqldiff(1)</a> where
<code>struct</code> fields were considered SQL columns.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.1</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-03-24">2021-03-24</time>
</header>
<aside>
<p>
A number of improvements to the <i>ort-json.ts</i> machinery.
Probably not going to change any normal usage.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.12.0</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-03-20">2021-03-20</time>
</header>
<aside>
<p>
Introduce a significant change where names in
<a href="ort.5.html">ort(5)</a> configurations are internally
converted to lowercase. This means that all output will use the
lowercase versions of the read names, which affects APIs.
</p>
<p>
Why is this a good idea? Largely because it keeps APIs consistent
with changing (for example) structure names, which is already
accepted as <q>not a change</q> because structure names are case
insensitive.
</p>
<p>
It also cleans up some inconsistency where some fields (e.g., roles)
were lowercased already, while most (structure names, field names,
explicit query naming, etc.) were not.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.18</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-03-18">2021-03-18</time>
</header>
<aside>
<p>
Install the manual and package configuration for
<a href="ort_lang_javsacript.3.html">ort_lang_javascript(3)</a>,
which creates TypeScript front-end code.
Also tighten down role name case insensitivity and fix serialisation
of empty role objects in <i>ort-json.ts</i>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.16</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-03-15">2021-03-15</time>
</header>
<aside>
<p>
Tiny changes to speed up TypeScript routines.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.15</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-03-08">2021-03-08</time>
</header>
<aside>
<p>
Internal API change: pass a <code>msgq</code> directly to the
<a href="ort_msg.3.html">ort_msg(3)</a> family of functions.
</p>
<p>
Add <a href="ort_lang_sql.3.html">ort_lang_sql(3)</a> for outputting
the SQL schema.
</p>
<p>
API change: add a <code>msgq</code> to
<a href="ort_lang_xliff_extract.3.html">ort_lang_xliff_extract(3)</a>,
<a href="ort_lang_xliff_join.3.html">ort_lang_xliff_join(3)</a>,
and
<a href="ort_lang_xliff_update.3.html">ort_lang_xliff_update(3)</a>;
and make the configuration <code>const</code> when possible.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.13</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-02-28">2021-02-28</time>
</header>
<aside>
<p>
Minor fix in handling UTF-8 labels and converting to and from JSON.
Have <a href="ort-xliff.1.html">ort-xliff(1)</a> properly handle XML
special characters by on-the-fly encoding and decoding, lifting the
restriction of not being able to use <q><</q> in labels.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.12</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-02-21">2021-02-21</time>
</header>
<aside>
<p>
Fix parsing and writing of limit/offset pairs.
Allow parameter-less search statements.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.11</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-02-13">2021-02-13</time>
</header>
<aside>
<p>
Enable the exported library for
<a href="ort_lang_nodejs.3.html">ort_lang_nodejs(3)</a>.
This is still experimental, however.
</p>
<p>
Fix how null references (a <code>struct</code> to a foreign key that
might be <code>null</code>) was handled both in the generated C
source and in node.js output. Both failed for different reasons.
</p>
<p>
Continued work on <i>ort-json.ts</i>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.10</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-01-18">2021-01-18</time>
</header>
<aside>
<p>
Relax the constraint where overlapping roles applied to the same
operation would error out.
Now we merely warn about them.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.10</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2021-01-02">2021-01-02</time>
</header>
<aside>
<p>
Include the ability to convert the JSON representation of a
configuration as provided by
<a href="ort-json.1.html">ort-json(1)</a> back into a
<a href="ort.5.html">ort(5)</a>.
This is part of the <i>ort-json.ts</i> file.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.9</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-12-28">2020-12-28</time>
</header>
<aside>
<p>
Include a formatter for the JSON representation produced by
<a href="ort-json.1.html">ort-json(1)</a>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.8</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-12-24">2020-12-24</time>
</header>
<aside>
<p>
Have <a href="ort-diff.1.html">ort-diff(1)</a> return a value based
upon whether the results are different.
This makes it behave like
<a href="https://man.openbsd.org/diff.1">diff(1)</a>.
</p>
<p>
Emit XLIFF content that validates against the <q>strict</q> variant
of the specification.
This is now used in internal regression testing.
All of the XLIFF processing is now well-documented in
<a href="ort_lang_xliff_extract.3.html">ort_lang_xliff_extract(3)</a>,
<a href="ort_lang_xliff_join.3.html">ort_lang_xliff_join(3)</a>,
and
<a href="ort_lang_xliff_update.3.html">ort_lang_xliff_update(3)</a>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.7</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-12-19">2020-12-19</time>
</header>
<aside>
<p>
Enforce that the <code>default</code> action for <code>actup</code>
or <code>actdel</code> has either a <code>null</code> field or a
default. This prevents the database from defaulting to a
<code>null</code> value, which may conflict with the configuration
and thus expectations of the code.
</p>
<p>
Do the same for the <code>nullify</code> action, requiring that the
field be <code>null</code>.
</p>
<p>
Rename some parts of the <a href="ort-json.1.html">ort-json(1)</a>
TypeScript definitions file.
Add in some forgotten fields to the definitions.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.6</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-12-17">2020-12-17</time>
</header>
<aside>
<p>
Make sure that <code>distinct</code> on a
<code>list</code> or <code>iterate</code> correctly declare the
required macros in
<a href="ort-c-header.3.html">ort-c-header(1)</a>.
Found by the expanded regression suite.
</p>
<p>
Fix how <code>grouprow</code> queries, which use
<code>LEFT OUTER JOIN</code>, don't prematurely terminate quoted
strings. Found by the expanded regression suite.
</p>
<p>
Fix how empty iterators would cause bad
<a href="ort-nodejs.1.html">ort-nodejs(1)</a> to be emitted.
</p>
<p>
Internally, convert front-end utilities to properly emit output to a
passed-in file stream instead of assuming <code>stdout</code>. This
way, these may be converted into libraries for use within other systems.
</p>
<p>
Introduce
<a href="ort-json.1.html">ort-json(1)</a>, via
<a href="ort_lang_json.3.html">ort_lang_json(3)</a>, which converts
a configuration into JSON.
These are still very new, but heavily tested.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.4</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-12-08">2020-12-08</time>
</header>
<aside>
<p>
Export changes to the <code>roles</code> statement in
<a href="ort_diff.3.html">ort_diff(3)</a> field results.
Also add full support for the <code>insert</code>;
<code>update</code> and <code>delete</code>; and <code>list</code>,
<code>search</code>, and <code>iterate</code>.
This completes full difference coverage.
All (or near enough) of these differences are encoded in the
regression suite.
</p>
<p>
While doing all this, push plenty of documentation from the header
file into
<a href="ort.3.html">ort(3)</a>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.2</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-12-03">2020-12-03</time>
</header>
<aside>
<p>
Reconsider white-space handling in comments. Prior to this,
consecutive white-space collapsed into the <i>first</i> white-space.
This was a problem for two reasons: first, Markdown and other common
comment formats recognise multiple newlines to separate blocks.
More significantly, a CRLF end of line would convert into a blank CR
(instead of a LF). Modify the system, thus, to accept comments
as-is except for CRLF, which is reduced to LF.
This makes diffing much more consistent as well.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.1</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-11-22">2020-11-22</time>
</header>
<aside>
<p>
Continue adding functionality to
<a href="ort-diff.1.html">ort-diff(1)</a> via
<a href="ort_diff.3.html">ort_diff(3)</a>.
No functional changes.
Enumerations, bit-fields, structure uniques, and structure fields
are now fully covered by the interface.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.11.0</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-11-13">2020-11-13</time>
</header>
<aside>
<p>
Introduce
<a href="ort-diff.1.html">ort-diff(1)</a>, which works off the back of
<a href="ort_diff.3.html">ort_diff(3)</a> in producing the semantic
differences between two configurations.
This is now being used within
<a href="ort-sqldiff.1.html">ort-sqldiff(1)</a>, which has been
considerably simplified.
The function is still incomplete: it doesn't record all differences.
So far, it returns enough to be fully used by
<a href="ort-sqldiff.1.html">ort-sqldiff(1)</a>.
</p>
<p>
While here, fully document all of the transformations possible in
<a href="ort-sqldiff.1.html">ort-sqldiff(1)</a> and also tighten
down on some destructive changes (e.g., allowing type changes) in
prior versions.
</p>
<p>
The new difference engine has introduced a significant number of
regression tests.
The documented transformations of the SQL engine are also now
exhaustively tested in the regression suite.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.10.3</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-11-04">2020-11-04</time>
</header>
<aside>
<p>
Start installing the ort library.
This includes header, library code, manpages, and a pkgconfig.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.10.2</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-08-28">2020-08-28</time>
</header>
<aside>
<p>
<b>Bug-fix</b>:
make sure that
<a href="ort-javascript.1.html">ort-javascript(1)</a> correctly
handles numbers and strings when formatting. This was not caught
by the regression framework because <code>ts.transpile</code>
accepts the type-mangling code while <code>tsc</code> does not.
Fixed and added regression tests that force the issue.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.10.1</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-08-27">2020-08-27</time>
</header>
<aside>
<p>
<b>Bug-fix</b>:
<a href="ort-c-source.1.html">ort-c-source(1)</a> was not generating
the internal <code>db_xxxx_fill_r</code> functions in some cases,
even though required by query functions.
</p>
<p>
Document the <code>db_open_logging</code> function in
<a href="ort-c-header.1.html">ort-c-header(1)</a>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.10.0</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-08-17">2020-08-17</time>
</header>
<aside>
<p>
<b>Major change</b>: integer values are now JSON-serialised as
strings intead of numbers.
This affects
<a href="ort-c-header.1.html">ort-c-header(1)</a>'s JSON export
interface,
<a href="ort-c-header.1.html">ort-c-header(1)</a>'s JSON import
interface, and most importantly,
<a href="ort-javascript.1.html">ort-javascript(1)</a>'s typing of
integers as <code>string</code> as well as of <code>number</code>.
</p>
<p>
This change completely necessary because of JavaScript's inability
to parse integers with more than 53 bits and the necessity to handle
full 64-bit numbers.
While JSON can accept arbitrary-precision numbers if used purely as
a transport protocol, it's more portable to just use a string
encoding.
</p>
<p>
The only user-facing code this might affect is custom callbacks that
perform numeric operations.
These functions will now also need to handle string values.
This is reflected in the TypeScript type annotations, so any current
numeric operations on values passed to these functions should raise
errors or at least warnings.
There is now a <code>ortns.Long</code> class modelled after
<a href="https://github.com/dcodeIO/Long.js">Long.js</a> that's also
used internally which can perform 64-bit operations.
</p>
<p>
The code generated by
<a href="ort-c-header.1.html">ort-c-header(1)</a> and
<a href="ort-javascript.1.html">ort-javascript(1)</a> for working
with deserialised data can handle either string or numeric
(old-style) values, so new front-ends can work with old back-ends.
The reverse is not true.
</p>
<p>
While the proper (and simpler) way to store integers in
<a href="ort-javascript.1.html">ort-javascript(1)</a> would be
<code>BigInt</code>, this isn't yet standard across browsers, and
would require alternative encoding during transit anyway (JSON
doesn't recognise it). The current implementation is portable
across all browsers.
</p>
<p>
Also, and without much of an introduction:
<a href="ort-nodejs.1.html">ort-nodejs(1)</a>.
This experimental back-end generator builds a
<a href="https://nodejs.org/en/">Node.js</a> back-end.
This generates an API very similar to that of
<a href="ort-c-header.1.html">ort-c-header(1)</a>, making it easy to
transition between languages.
For now, it <strong>does not provide comparable security</strong> to
the C implementation.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.9.1</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-08-08">2020-08-08</time>
</header>
<aside>
<p>
<b>Output change</b>: do not have <b>delete</b> statements return a
value.
</p>
<p>
<b>Output change</b>: the output of
<a href="ort-javascript.1.html">ort-javascript(1)</a> is now
sensitive to fields that are not exported.
This applies to fully unexported (i.e., those marked with
<code>noexport</code> or passwords) and having optional fields
(those not exported per role) to be checked and behaviour if not
found documented and regression-tested.
</p>
<p>
<b>Output change</b>: full support for binary blobs in
<a href="ort-javascript.1.html">ort-javascript(1)</a> by using
base64 encoding throughout.
Those wishing to use the binary data will need to use custom
callbacks with (for example) <code>Buffer.from()</code> to convert
from base64 to binary.
</p>
<p>
Considerable improvements to the output of
<a href="ort-javascript.1.html">ort-javascript(1)</a> and the
documentation itself.
This has no functional change, but introduces more TypeScript idioms
such as <code>const</code> and <code>readonly</code>.
</p>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h3>0.9.0</h3>
<address>Kristaps Dzonsons</address>
<time datetime="2020-07-11">2020-07-11</time>
</header>
<aside>
<p>
<b>Output and configuration change</b>:
<a href="ort-javascript.1.html">ort-javascript(1)</a> no longer
emits the un-documented and hard-coded <q>not given</q> (with the
hard-coded <q>notgiven</q> class) for labelling null enumeration
values.
These are now represented by the <b>isnull</b> label documented in
<a href="ort.5.html">ort(5)</a>.
This is similar to bit-fields.
</p>
<p>
<b>Output change</b>:
<a href="ort-javascript.1.html">ort-javascript(1)</a> no longer
emits JavaScript—only TypeScript as if <b>-t</b> were passed.
This is because straight-up JavaScript is just too unsafe.
Any consumers of the JavaScript output will now need to use the
TypeScript transpiler.
This necessitates a minor version bump.
Any future JavaScript features will all be TypeScript.