-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
CHANGES-1.1.txt
2328 lines (1554 loc) · 64.8 KB
/
CHANGES-1.1.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
Summary of changes to citeproc-js since version 1.0.0 release.
==========================
Changes in version 1.1.242
==========================
- Prefer pre-parsed date over raw date string when both are available.
- Fix citation-number sorts via variable or macro
* Calling citation-number from cs:key as a macro or as a variable has
the same effect.
* citation-number with sort="descending" as primary key on cs:bibliography reverses the order
of items, from order-cited to reverse-of-order-cited. Citation numbers in this case
reflect citation order, and so run from high to low in the bibliography.
* citation-number as secondary key on cs:bibliography sets the order of
numbering. Whether ascending or descending, citation number assignments are
aligned in citations and bibliography.
- Move date and sort tests specfiic to citeproc-js from std test suite to
citeproc-js repo.
==========================
Changes in version 1.1.241
==========================
- Do not crash when @is-numeric is called against locator in bibliography.
==========================
Changes in version 1.1.240
==========================
- Protect against undefined citation object key "properties."
https://github.com/Juris-M/citeproc-js/issues/106
==========================
Changes in version 1.1.239
==========================
- General cleanup around ./demo
- Short-circuit cs:substitute if initial variable succeeds
The performance gain from this is miniscule, but may be significant
on very large runs.
- Pretty-printing for node traces in util_nodes.js
Uncomment INDENT and the code block that uses it in the source
to turn this on - useful only for development purposes, to
examine the style nodes hit when processing a reference.
- Input sanity check control
Wrap input sanity checks for processCitationCluster in an option,
"citeproc.opt.development_extensions.strict_inputs". The option is
enabled by default, and should really never be disabled. Processor
performance can be greatly affected by malarranged inputs.
==========================
Changes in version 1.1.238
==========================
- Require that the calling application declare a sane citation context
in processCitationCluster.
==========================
Changes in version 1.1.237
==========================
- Remove CSL-M mode special-handling code for RTL text, which was causing
more problems that it was solving.
==========================
Changes in version 1.1.236
==========================
- Fix bugs in preview mode. Details in code comments.
==========================
Changes in version 1.1.235
==========================
- Release to fix mistaken dependency in npm package. Processor code identical
to 1.1.234.
==========================
Changes in version 1.1.234
==========================
- Try for title- or container-title-short if form="short" is set on cs:text.
==========================
Changes in version 1.1.233
==========================
- Fix bug in short-form variant fallback case where full-form field also lacks
a requested variant. citeproc-js was using the (wrong-lang) full form, where
desired result is the (wrong-lang) short-form.
==========================
Changes in version 1.1.232
==========================
- Properly fix style tests path in cslrun.yaml
- Recognize uppercase_subtitles separately from main_title_from_short_title
- Implement short-title variant fallback
* When short form lacks a variant available on the parent, use the latter
==========================
Changes in version 1.1.231
==========================
- Do not suppress non-space et-al prefix when et-al is non-romanesque.
Passes current tests and addresses this report:
https://forums.zotero.org/discussion/76679/delimiter-precedes-et-al-always-dose-not-work-in-locale-zh-cn
See tests name_EtAlKanji (new) and name_EtAlWithCombined (old)
==========================
Changes in version 1.1.230
==========================
Register author_date match strings for Classic items only
when an author is available to the raw name reader.
==========================
Changes in version 1.1.229
==========================
- Recognize literal names when reading raw name data
- Avoid running processNumber on fields with no data
- Bugfixes around CSL-M "supplement" variable term
* Add its long form to locales if not present
* Add its nick to pattern data and mappings
- Fix styles path in cslrun.yaml
==========================
Changes in version 1.1.228
==========================
- Fix bad placement of suffix with variable wrappers, reported
by Derek Sifford: https://github.com/Juris-M/citeproc-js/issues/101
==========================
Changes in version 1.1.227
==========================
- Remove empty segments from non-condition tokens. Very slightly reduces
bulk in memory.
- Move test runner to separate Citeproc Test Runner npm package.
- Updates to README
- Fix CSL-M locale test to properly set and unset the locale within
the scope of the test element.
- Reorganization of sources.
==========================
Changes in version 1.1.226
==========================
- Document AO/SA/Composite functionality.
- Fix bugs uncovered by examples used in the docs.
- Add option to throw and error on empty renderings.
==========================
Changes in version 1.1.225
==========================
- Implement cs:intext element and composite form with infix for narrative citations.
- Implement citation-level user-supplied affixes.
- Smooth out implementation of author-only and suppress-author in the
absence of cs:intext. Should function reasonably well without cs:intext
for all but numeric/trigraph styles and styles like APA with differing
requirements for names in text and names in citations.
- Move all author-only/suppress-author tests to the citeproc-js test suite.
- Fix some bugs and cosmetic issues in runtests.js.
- For some reason the test suite shows about a 20% speed increase with recent
changes. Not sure if performance in production will improve, but I must have
done something right.
==========================
Changes in version 1.1.224
==========================
- Apply formatting to ranged numbers as a unit.
See: https://discourse.citationstyles.org/t/formatting-attributes-and-hyphen/1518
- Add draft LaTeX format offered by Egon Willighagen (GitHub @egonw).
- Housecleaning in load.js
==========================
Changes in version 1.1.223
==========================
- Recognize EDTF values for seasons (21-24) on input.
==========================
Changes in version 1.1.222
==========================
- Implement range-delimiter attribute on cs:date-part
Many thanks to Cormac Relf for pointing out this omission!
- Implement watch mode in build/test script for style development
==========================
Changes in version 1.1.221
==========================
Continuous integration
- Rewrite of the build/test script
- Retirement of the previous test framework
- Deployment of Travis CI on the GitHub repository
- README notes on install/test steps
==========================
Changes in version 1.1.220
==========================
Bibliograhy options to exclude items
- exclude_types: omit items matching one or more specified types.
- exclude_with_fields: omit items that have a value in one or more
specified fields.
- A test that exercises the new options.
==========================
Changes in version 1.1.219
==========================
- Fix a bug that caused labels to be dropped where a variable rendered
via cs:substitute was later called as the primary variable, and
a separate variable was rendered via cs:substitute.
- Fix a bug that caused labels to be lost on a singleton cs:names
that followed a start/end cs:names element inside cs:substitute.
- Add support for require-match on cs:names.
- Amend test fixtures where processor output in now correct.
- Add a test for the require-match attribute.
==========================
Changes in version 1.1.218
==========================
- Fix nesting error triggered by call to alt-issued or alt-event-date date variables
when the have a value. Calling these variables directly, outside of cs:alternative,
may be necessary in citations for styles that make use of cs:alternative in the
bibliography.
==========================
Changes in version 1.1.217
==========================
- Add support for new CSL-M elements cs:alternative and cs:alternative-text,
useful for citing translated works and reprints.
- Test fixtures for a Japan Sociological Society style that makes use
of the cs:alternative element.
==========================
Changes in version 1.1.216
==========================
- Fix bugs in name initialization
https://forums.zotero.org/discussion/75969/apa-style-initials-cut-out
- Remove legacy e4x support. Processor is capable of string-parsing
serialized XML directly, this layer is no longer needed.
- Permit empty values in CSL fields added via the note field hack.
- Add support for cs:alternative and cs:alternative-text elements,
for use in citing translated or reprinted materials in CSL-M.
- Clean up syntax somewhat. HT to jshint.
==========================
Changes in version 1.1.215
==========================
- Address a memory leak
* Modify item objects stored in registry.refhash in place
* Call registry copy of item data when safe to do so
* Taint items for which input changes on update
* Quash some side effects that unnecessarily altered data after input
==========================
Changes in version 1.1.214
==========================
- Fix potential array-underrun crash in ibid evaluation
==========================
Changes in version 1.1.213
==========================
- Clean up test runner
- Fix memory leak in citationById object (IDs were never removed)
- Remove declarations of unused variables in api_bibliography
- Protect against erronenous numeric value in string split array
HT to Emiliano Heyns for identifying the fault in i386 systems
and crafting a patch.
- Add tests for non-CSL collection-title-short variable
- Recognize -short form of any variable rendered via cs:text
==========================
Changes in version 1.1.212
==========================
- Wrap DOI correctly even if cruft exists before protocol in prefix attribute
- Add a local test for wrapped DOI with cruft before protocol + domain prefix
- Fix typo (Ukranaian -> Ukrainian)
==========================
Changes in version 1.1.211
==========================
- Add plain, asciidoc, and xslfo output options for test script
- Set page-range-delimiter on ranged numbers with trailing alpha chars
- Reset position info when processing full cs:names objects
- Fix bug in wrapped DOI/URL, properly recognize container-title-short
- Default to form=long on explicit label nodes
- Add list of CREATORS, reclassify some abbrevs
- Fix handling of suffix on DOI renderings without a protocol prefix
- Implicit nocase for sub, sub and sc tags
- (Re)capitalize only stop-list words in last position
==========================
Changes in version 1.1.210
==========================
- Recognize illustrator as a creator variable. Bug reported by @bwiernik:
https://forums.zotero.org/discussion/72782/citeproc-js-bug-illustrator-in-extra
https://github.com/Juris-M/citeproc-js/issues/76
==========================
Changes in version 1.1.209
==========================
- Insert to registry at bibliography sort location rather than
resorting the entire array. Many (many) thanks to @adomasven of
Zotero for diagnosing the excessive memory consumption that this
caused with large item sets, and for pointing at a solution:
https://stackoverflow.com/questions/1344500/efficient-way-to-insert-a-number-into-a-sorted-array-of-numbers
==========================
Changes in version 1.1.208
==========================
- Fix out-of-scope variable assignments.
- For some reason the variable name loadJurisdiction refused to accept
a variable assignment, although the variable exists nowhere else in
the code. Changing the variable name fixes the fault.
==========================
Changes in version 1.1.207
==========================
- Fix Thai orthography.
==========================
Changes in version 1.1.206
==========================
- Fix regexp for markup split in formatters.js. The Unicode literals of
en-dash and em-dash worked under early JS implementations, but fail
in more recent Firefox. The escaped forms is robust.
==========================
Changes in version 1.1.205
==========================
- Show only default-jurisdiction entry for "abbreviated" language names.
==========================
Changes in version 1.1.204
==========================
- Avoid needless use of abbreviate() on empty secondary and tertiary multilinguals.
Speeds things up very slightly.
- Remove citeproc-js call to sys.getLanguageName()
==========================
Changes in version 1.1.203
==========================
- Suppress explicit country name abbreviation on jurisdiction field.
==========================
Changes in version 1.1.202
==========================
- Show country names as names, not raw codes, when Abbreviation Filter is
disabled and the processor has access to the sys.getHumanForm() method
(as in Juris-M).
==========================
Changes in version 1.1.201
==========================
- Fix nesting error triggered by a date set and called inside
cs:substitute, followed by a call to the same date variable
later in the style.
https://forums.zotero.org/discussion/71242/debugid-d682095689
==========================
Changes in version 1.1.200
==========================
- Extend 1.1.199 to protect embedded apostrophe in all Romanesque character sets (ascii,
Latin1, Persian, Hebrew, etc.)
https://forums.zotero.org/discussion/71008/unexpected-rich-text-output
==========================
Changes in version 1.1.199
==========================
- Fix markup parser misstep on curly single-quote apostrophe
inside markup.
https://forums.zotero.org/discussion/71167/initial-html-tags-in-citation-prefixes
==========================
Changes in version 1.1.198
==========================
- Block rendering of bare country name or ID for jurisdictions,
when human-readable forms of jurisdiction IDs are available.
==========================
Changes in version 1.1.197
==========================
- Small improvement on previous tag
==========================
Changes in version 1.1.196
==========================
- Throw more informative errors in three locations.
https://forums.zotero.org/discussion/70927/zotero-experienced-an-error-updating-your-document#Comment_303868
==========================
Changes in version 1.1.195
==========================
- Refactoring to address a deep bug in the handling of jurisdiction
abbreviations reported by John Luke Bentley:
https://github.com/Juris-M/zotero/issues/43#issuecomment-374096589
Among other things, this change introduces a new CSL-M variable "country",
which carries the country code at the front of a jurisdiction code, and
can be controlled in styles and in the processor as an independent CSL variable.
==========================
Changes in version 1.1.194
==========================
- Some cleanup and improvement of parsing in numeric and locator
fields.
==========================
Changes in version 1.1.193
==========================
- A small tweak to after-collapse-delimiter to make the attribute
useful in styles using collapse="year", as well as
collapse="year-suffix".
==========================
Changes in version 1.1.192
==========================
- Handle Chicago-style page-n-note pinpoint ranges a little
better.
==========================
Changes in version 1.1.191
==========================
- Handle empty strings fed to a date conversion function properly.
Addresses the rather scathing comment here:
https://github.com/Juris-M/citeproc-js/issues/62
==========================
Changes in version 1.1.190
==========================
- Add capitalize-if-first for label, and label-capitalize-if-first for macros.
- Fix bug affecting locator label + embedded labels.
- Make term_predecessor robust in require/reject implicit conditionals.
- Remove some redundant bits of code
==========================
Changes in version 1.1.189
==========================
- Add CSL-M group require/reject conditional "empty-label-no-decor." Needed
for modular support of New Zealand Law Style and other styles that use "At"
for ibid backreferences with square-braced paragraph numbers.
==========================
Changes in version 1.1.188
==========================
- Small tweaks to address the issues of 1.1.187 a little more smartly.
==========================
Changes in version 1.1.187
==========================
- Be more aggressive about en-dashes. Do not reset pluralization group when an unrecognized
label is encountered. Allow semi-colon as delimiter. Based on use case flagged by Mark Bruffey.
==========================
Changes in version 1.1.186
==========================
- Reflect steps of disambiguate="true" in the bibliography. Addresses an issue
raised by @F.Altermann, following discussion with @adamsmith:
https://forums.zotero.org/discussion/70341/add-title-short-to-disambiguate-in-bibliography-only-if-necsessary
==========================
Changes in version 1.1.185
==========================
- Never shrink name forms below default. Addresses bug identified by @Sreg and @adamsmith:
https://forums.zotero.org/discussion/69865/abgekuerzter-vorname-in-fussnote-bei-mehreren-autoren-mit-gleichem-nachnamen
==========================
Changes in version 1.1.184
==========================
- Eliminate backtracking regexp, as a potential REDOS vulnerability.
Thanks to James Davis for reporting.
==========================
Changes in version 1.1.183
==========================
- Correctly nest JSON-parsed style internally when singleton terms are
used in cs:locale:
https://forums.zotero.org/discussion/comment/295820#Comment_295820
==========================
Changes in version 1.1.182
==========================
- Test runner: Do not crash on an empty input array.
- Test runner: Permit testing for an empty return value.
- When a specific URL prefix is set on cs:text with variable="DOI"
(prefix="https://doi.org/"), and processor option wrap_url_and_doi is
in effect, include the prefix in the html:a wrapper when generating
HTML output. But:
* If the field value does not already have a non-DOI HTML prefix, leave it untouched.
* If the field value has an HTTP DOI prefix, normalize to HTTPS.
* If the field value has an HTTPS prefix already, use it direct.
Issue reported by Dan Stillman:
https://github.com/Juris-M/citeproc-js/issues/57
Related test fixture:
https://github.com/Juris-M/citeproc-js/blob/master/tests/fixtures/local/magic_WrapDOI.txt
==========================
Changes in version 1.1.181
==========================
- Fix bad spacing with initialize="false" and initialize-with="." or initialize-with=". ",
with givenname input such as "A. Ben."
https://forums.zotero.org/discussion/68482/how-to-create-a-modified-version-of-a-style-and-keep-the-original
- Protect against an undefined variable
https://github.com/Juris-M/citeproc-js/pull/58
==========================
Changes in version 1.1.180
==========================
- Um. Something.
==========================
Changes in version 1.1.179
==========================
- Protect against potentially invalid assignment.
Patch by Derek Sifford.
==========================
Changes in version 1.1.178
==========================
- Recognize a function sys.normalizeAbbrevsKey. Zotero performs
normalization internally, presenting a list of abbreviation keys to
the processor that is separate from the master list of
abbreviations, the keys in the latter, only, being normalized. In the
Abbreviation Filter add-on, the master list editable, and is applied
directly to citations. For that to work, the processor must be
capable of normalizing keys internally.
This extension will have no effect on deployments that do not define
a normalizeAbbrevsKey function on the sys object.
- Recognize a new attribute jurisdiction-depth, to limit the
elements of a jurisdiction code used for human-form rendering.
- Set new allowNonmatch toggle on getHumanForm when remapping
court variable.
==========================
Changes in version 1.1.177
==========================
- Do not force the trailing portion of given names to lowercase.
- Avoid redundant load of en-US locale data when default locale differs.
- Recognize quote before comma as a close-quote.
- Bundle code without 'use strict' declaration.
==========================
Changes in version 1.1.176
==========================
- Fix long-standing bug that forced given names to lowercase after second
character (yeah, that was a weird thing to do).
https://forums.zotero.org/discussion/17610/apsa-problems-with-capitalization-of-mc-mac-etc/
https://github.com/Juris-M/citeproc-js/issues/43
==========================
Changes in version 1.1.175
==========================
- Do not distribute unnecessary files via NPM.
Reflects a pull request from Derek Sifford:
https://github.com/Juris-M/citeproc-js/pull/52
- Fix bug triggered on some styles in strict mode:
https://forums.zotero.org/discussion/comment/284261
==========================
Changes in version 1.1.174
==========================
- Reenable processor tests (unit tests) in test.py.
- Fix bug that crashed processor when makeCitationCluster() was run on an
unregistered item.
Addresses request by @adomasven of Zotero for registry-independent rendering
of formatted citation placeholders:
https://github.com/Juris-M/citeproc-js/issues/51
also
https://github.com/zotero/zotero/pull/1242
==========================
Changes in version 1.1.173
==========================
- Adopt patch from @miguelsm replacing ES6 syntax with ES5
Adopts a pull request from @miguelsm:
https://github.com/Juris-M/citeproc-js/pull/38
- Fix potential assignment of value to nonexistent key.
- Declare all loose variables and set 'use strict' on bundled code object.
- Build a CommonJS module along with the raw objects.
Reflects changes originally proposed and implemented by Derek Sifford:
https://github.com/Juris-M/citeproc-js/pull/50
- Drive the ``citeproc-js`` NPM package directly from this source repo.
Addresses requests from Derek Sifford (above) and Aamir Shah:
https://github.com/Juris-M/citeproc-js/pull/44
==========================
Changes in version 1.1.172
==========================
- Fix bug in handling of affixes containing terminal punctuation.
https://forums.zotero.org/discussion/66827/spaces-with-full-stops-and-commas-in-footnotes
==========================
Changes in version 1.1.171
==========================
- Adopt DOI patch from Rintze.
==========================
Changes in version 1.1.170
==========================
- Revert 5cdc4b from 1.1.150, which broke bibliography formatting in
clients. Refs:
https://github.com/Juris-M/citeproc-js/issues/15
https://forums.zotero.org/discussion/comment/277092
==========================
Changes in version 1.1.169
==========================
- Avoid crash when in-field quotes appear under a quotes="false"
attribute. Reported on Zotero forums:
https://forums.zotero.org/discussion/65626/cannot-update-document-state-fun-decorate-params-0-params-1-is-undefined
==========================
Changes in version 1.1.168
==========================
- In in-text markup, fix parsing of open straight-quotes that immediately
follow other markup.
https://github.com/Juris-M/citeproc-js/issues/46
==========================
Changes in version 1.1.167
==========================
- Fix punctuation movement on user-supplied suffixes. Issue
reported on Zotero forums:
https://forums.zotero.org/discussion/65609/comma-period-inside-closing-quotation-mark-in-sblhs
=========================
Changes in version 1.1.166
==========================
- Preserve leading spaces on strings processed by flipflop. Issue
reported on Zotero forums:
https://forums.zotero.org/discussion/65702/change-in-suffix-behaviour
===========================
Changes in version 1.1.165
==========================
- Revert ffa12aa3 (Oct. 31). It did not fix bibliography disambiguation,
but broke it instead.
==========================
Changes in version 1.1.164
==========================
- Treat emdash the same as hyphen. Ditto as below.
==========================
Changes in version 1.1.163
==========================
- Treat endash the same as hyphen in title case transform
https://github.com/Juris-M/citeproc-js/issues/42
==========================
Changes in version 1.1.162
==========================
- Rerelease of 1.1.162 to purge bad citeproc.js bundle.
https://github.com/Juris-M/citeproc-js/issues/40
==========================
Changes in version 1.1.161
==========================
- Workaround to accommodate "single-field" names set as "name" rather than now-normal "literal."
- In non-numeric styles only, silently omit references not rendered in the bibliography.
==========================
Changes in version 1.1.160
==========================
- Fix crashing bug triggered by closing quotation marks with spaces
on both sides.
https://github.com/citation-style-language/test-suite/blob/master/processor-tests/humans/flipflop_OrphanQuote.txt
==========================
Changes in version 1.1.159
==========================
- Set default empty-string value on citation splice delimiter when no value
is provided in the style.
https://forums.zotero.org/discussion/64827/macos-error-when-trying-to-insert-new-citations-or-set-doc-preferences
- Do not print an ugly placeholder for items omitted from bibliography in
non-numeric styles. In numeric styles, format the placeholder a little
more nicely. Arises from discussion here:
https://forums.zotero.org/discussion/64871/csl-allow-dropping-items-from-bibliography
==========================
Changes in version 1.1.158
==========================
- Fix delimiter in author-date styles with "collapse," where an author-date
cite was followed by a title-date cite. The processor had detected this
as a collapsed cite, and delivered the wrong delimiter. Issue was reported
here:
https://github.com/citation-style-language/styles/pull/2558
==========================
Changes in version 1.1.157
==========================
- Make sorts of citation-number operate on cite entries rather
than citation labels. Follows discussion here:
https://github.com/citation-style-language/test-suite/issues/1
==========================
Changes in version 1.1.156
==========================
- Fix bug in particle parsing that rendered Shun'ichi as Shun 'ichi.
https://forums.zotero.org/discussion/64543/apostrophe-in-name-causes-truncation
==========================
Changes in version 1.1.155
==========================
- Force string authority to name shape in Juris-M styles.
- Ignore authority in ordinary-field abbreviation map.
==========================
Changes in version 1.1.154
==========================
- Protect against missing abbreviation segments.
==========================
Changes in version 1.1.153
==========================
- Permit abbreviation loading via a getAbbreviation() function
that does not return a value. Should now be backward-compatible.
==========================
Changes in version 1.1.152
==========================
- Change to abbreviation loading. Not sure if the changes are
backward-compatible -- please test with local getAbbreviation
hook when updating.
==========================
Changes in version 1.1.151
==========================
- Fix capitalization of stop-words that precede a hyphen.
But reported by @bwiernik
==========================
Changes in version 1.1.150
==========================
- Recognize small and negative years in embedded date parser
(for single year values only -- will not handle ranges or
dates with month or month/day elements).
Bug reported by @bwiernik
- Fix spelling error in code that broke certain styles.
Bug reported by @adam3smith
- Set hangingindent parameter as true (boolean), not as
2 (int).
Bug reported by @dsifford
- Correct documentation of appendCitationCluster()
Bug reported by @johannesswilm
==========================
Changes in version 1.1.149
==========================
- Fix failure to parse correctly formatted small-caps in-text
markup.
==========================
Changes in version 1.1.148
==========================
- Fix bug that blocked title case capitalization following
proper (not straight) open quotes.
- Fix bug that capitalized a stop-work occurring immediately
before a final nocase span in in-text markup.
- Fix bug that was double-rendering the title in some styles.
- Recognize several additional Unicode space characters when
performing word splits for text-case conversions.
Many thanks for feedback on these bugs from GitHub codevs
@retorquere, @bwiernik, @adam3smith, and @KarlHegbloom.
==========================
Changes in version 1.1.147
==========================
- Rewrite of "flipflop" module for in-text markup and localized
quotation marks.
==========================
Changes in version 1.1.146
==========================