forked from apache/manifoldcf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
3659 lines (2658 loc) · 113 KB
/
CHANGES.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
ManifoldCF Change Log
$Id$
======================= 2.4-dev =====================
CONNECTORS-1293: Duplication of attribute names in the UI when
multiple languages are installed in Documentum.
(Radek Sklenicka, Karl Wright)
CONNECTORS-1288: SharePoint connector proxy password obfuscation
was breaking this feature.
(Markus Schuch, Karl Wright)
CONNECTORS-1284: SharePoint fields that do not have a different
display name from their field name (or which are defined in some way
as yet not well understood) were being overlooked in SharePoint crawling.
(Markus Schuch, Karl Wright)
CONNECTORS-1283: "Document has no version" signal was not working.
This problem has been around since MCF 1.8/2.0. The fix is simple but
may change the functioning of some custom repository connectors. This
fix also restores broken functionality in the MCF JDBC connector, when
no document version query is provided.
(Markus Schuch, Karl Wright)
CONNECTORS-1282: Missing translation for Metadata Adjuster.
(Markus Schuch, Karl Wright)
CONNECTORS-1281: SQLServer under JTDS throws AbstractMethodException.
(Olivier Tavard, Karl Wright)
CONNECTORS-1275: Help ES deal with dates properly. Also added
support for built-in Repository Document attributes.
(Andrey Leybovich, Karl Wright)
CONNECTORS-1272: Update _status command for Elastic Search to _stats.
(Andrey Leybovich, Karl Wright)
CONNECTORS-1271: Broken AmazonCloudSearch connector.
(Juan Pablo Diaz-Vaz, Karl Wright)
CONNECTORS-1270: Contribute OpenNLP transformation connector.
(Chalitha Perera, Rafa Haro, Karl Wright)
CONNECTORS-1268: Add missing mime types to FileNet connector.
(Damien Picard)
CONNECTORS-1267: Added enter key pressed event to the login page
(Muhammed Olgun)
======================= Release 2.3 =====================
CONNECTORS-1266: Fix an infinite loop in email notification connector.
(Markus Schuch)
CONNECTORS-1265: Adjust interval for checking validity of http connection.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1263: New version of Alfresco-indexer package.
(Maurizio Pillitu)
CONNECTORS-1262: Fix Alfresco-webscript connector's version string,
so changes to ACLs will be detected as document changes.
(Chalitha Perera)
CONNECTORS-1264: Fix handling of slashes in unquoted attribute values
in html parsing.
(Issei Nishigata, Karl Wright)
CONNECTORS-1249: Independent priority setting for different
connectors, and bring individual connectors up to speed with proper
document bin names.
(Karl Wright)
CONNECTORS-1261: Supply commit-within argument for /update
handler in Solr connector.
(Karl Wright, Shinichiro Abe, Adrian Conlon)
CONNECTORS-1251: Confluence connector encoding issue.
(Karl Wright, Jens Grassel)
CONNECTORS-1260: Fix completely broken email connector.
(Karl Wright, Julien Massiera)
CONNECTORS-1259: Use Travis CI.
(Shinichiro Abe)
CONNECTORS-1258: Update Japanese translations.
(KOIZUMI Satoru)
CONNECTORS-1256: Spanish translations.
(Gladys Carrizales)
CONNECTORS-1254: Some Jetty dependencies are missing in jetty-runner.
(Shinichiro Abe)
CONNECTORS-1255: Ignore CheckObjectIDTest.
(Shinichiro Abe)
CONNECTORS-1252: jetty.xml is missing in jetty-runner QuickStart.
(Shinichiro Abe)
CONNECTORS-1250: Fix Confluence specification UI.
(Jens Grassel, Karl Wright)
CONNECTORS-1246: Get Kafka integration test running.
(Karl Wright)
CONNECTORS-1162: Kafka connector.
(Tugba Dogan)
CONNECTORS-1245: Using wrong logger for confluence authority.
(Jens Grassel, Karl Wright)
CONNECTORS-1237: Upgrade the CMIS Connector to OpenCMIS 0.13.0
(Piergiorgio Lucidi)
CONNECTORS-1235: Indexing all properties fetched with the cmis query
(Piergiorgio Lucidi, Christian Tiralosi, Deanna Delapasse, Elisa Croci)
CONNECTORS-1244: Add support for LDAPS and TLS to LDAP
authority connector.
(Karl Wright)
CONNECTORS-1234: Add use-mapper-attachments option
to Elasticsearch connector.
(Shinichiro Abe)
CONNECTORS-1242: Fix document reprioritization on job resume.
(Niall Colreavy, Karl Wright)
CONNECTORS-1241: Documentum connector not handling subtypes
properly.
(Bipul Podder)
CONNECTORS-1231: Upgrade to JUnit 4.12.
(Shinichiro Abe)
CONNECTORS-1239: Handle code 401 from Solr more appropriately.
(Cathal McGuinness, Karl Wright)
CONNECTORS-1236: Upgrade to Tika 1.10.
(Karl Wright)
CONNECTORS-1233: Add Amazon S3 connector.
(Gunaratnam Kuhajeyan, Karl Wright)
CONNECTORS-1230: Add writeLimit option on Tika extractor.
(Shinichiro Abe)
======================= Release 2.2 =====================
CONNECTORS-1229: Fix NPE in metadata adjuster.
(Mike Caceres, Karl Wright)
CONNECTORS-1226: PostgreSQL does not implement the isValid()
JDBC method in the driver we include, so make sure when we call it
we don't fail if we get an exception. Related to CONNECTORS-1202.
(Karl Wright)
CONNECTORS-1224: Upgrade to Hadoop 2.6.0.
(Shinichiro Abe)
CONNECTORS-1222: Handle unregistered connector class in getActivitiesList().
(Thomas Daniel, Karl Wright)
CONNECTORS-1221: Update documentation for properties.xml to
include new ldap authentication properties.
(Karl Wright)
CONNECTORS-1131: Add infrastructure for controlling individual
user access to parts of the UI and API, also allow this to be
configured via LDAP.
(Colin Joyce, Karl Wright)
CONNECTORS-1220: User mapping prerequisite choices were broken,
caused a hang when there were more than one.
(Karl Wright)
CONNECTORS-1218: Add lowerNames option on Tika extractor.
(Shinichiro Abe)
CONNECTORS-1217: Fix documentation for api login parameters.
(Karl Wright)
CONNECTORS-1216: Set default core/collection name
and add required check on Solr connector.
(Shinichiro Abe)
CONNECTORS-1215: Fuzzyml parser needs to ignore "<" followed by
whitespace, since those are technically not valid tags and some sites
care.
(Brad Dennis, Karl Wright)
CONNECTORS-1213: Job notification information did not export/import
correctly.
(Cathal McGuinness, Karl Wright)
CONNECTORS-1203: SharePoint connector did not consistently use
internal metadata names throughout.
(Dale Dreiske, Karl Wright)
CONNECTORS-1212: Fix export/import of jobs to handle max
intervals.
(Kevin J. Walsh, Karl Wright)
CONNECTORS-1209: Add regular expression extraction to
Metadata Adjuster.
(Karl Wright)
CONNECTORS-1210: List notifications page links broken.
(KOIZUMI Satoru, Karl Wright)
CONNECTORS-1208: Provide more full-featured notification ability.
(Karl Wright)
CONNECTORS-1204: Add ability to post original binary length of document
to Solr from JCIFS connector. Also improve efficiency of JCIFS connector.
(Karl Wright)
CONNECTORS-1193: Add ability to discard web content based on a
set of regular expressions.
(Arcadius Ahouansou)
CONNECTORS-1199: SearchBlox connector formatting non-standard.
(Karl Wright)
CONNECTORS-1198: SearchBlox connector session management not
working properly.
(Timo Selvaraj, Rafa Haro, Karl Wright)
CONNECTORS-1197: Add "windows" file mode to file system output connector.
(Karl Wright)
CONNECTORS-1195: Fix for NumberFormatException exception thrown in Maximum Bandwidth Report
(Kishore Kumar)
CONNECTORS-1192: Fix a problem with login-page detection based on
content. Last line was getting skipped, and infinite amounts of content
could be buffered in memory. Adopted a compromise that scans an
overlapping window of minimum size 16K.
(Karl Wright)
======================= Release 2.1 =====================
CONNECTORS-1191: Unexpected job status 34, due to a race condition.
Jobs shutting down and being aborted at the same time could wind up
in a state where repeated exceptions would be thrown.
(Arcadius Ahouansou, Karl Wright)
CONNECTORS-1190: Broken dependencies in solr connector maven build
caused tests to fail under maven.
(Piergiorgio Lucidi, Karl Wright)
CONNECTORS-1187: Handle "File in Use" error properly in JCIFS connector.
(Karl Wright)
CONNECTORS-1186: HttpClient 4.4 requires that you set the SSL socket
factory at the connection manager level.
(Karl Wright)
CONNECTORS-1185: Fix HttpClient deprecation warnings, and make sure
socket timeouts are actually honored in http connections.
(Karl Wright)
CONNECTORS-1183: Fix for GridFS connector broken UI server tab.
(Kishore Kumar)
CONNECTORS-1173: Option to change View URL for Livelink Connector
(Kishore Kumar)
CONNECTORS-1179: Include the collection name as part of the Solr
version string.
(Kamil Żyta, Karl Wright)
CONNECTORS-1178: Script example broken.
(Karl Wright)
CONNECTORS-1177: Add session-based security for API.
(Jan van Haarst, Karl Wright)
CONNECTORS-1176: Update SolrJ version.
(Karl Wright)
CONNECTORS-1175: Documentum connector needs to set file name.
(Dmitry Bardin, Karl Wright)
CONNECTORS-1160: Update Livelink Connector HTML String to Velocity Template
(Kishore Kumar)
CONNECTORS-1172: Fix metadata adjuster 'keep all metadata' switch
UI.
(Frank Brendel, Karl Wright)
CONNECTORS-1171: Fix SharePoint connector path mapping UI.
(Frank Brendel, Karl Wright)
CONNECTORS-1166: Delete link doesn't work on listtransformations
UI page.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1159: UI broken in LiveLink connector.
(Kishore Kumar)
CONNECTORS-1156: Difficulty shutting down agents process after
a while executing.
(Adrian Conlon, Karl Wright)
CONNECTORS-1157: FileNet connector URI is incorrect for document
subtypes.
(Guy Sperry)
CONNECTORS-1154: Changes to the flow through the web connector's
deflate/unzip logic, designed to prevent gzip headers from being read
if the stream's contents are not read.
(Li Minhui, Karl Wright)
CONNECTORS-1153: Broken authority name comparison is preventing
incremental when no authority is used.
(Aeham Abushwashi, Karl Wright)
CONNECTORS-1151: FileNet connector completely broken, due to
MCF 1.8 reorganization.
(Guy Sperry, Karl Wright)
CONNECTORS-1150: Go to Tika 1.7
(Karl Wright)
CONNECTORS-1149: Minor typos in English documentation.
(KOIZUMI Satoru)
CONNECTORS-1148: Update Japanese included-connectors document.
(KOIZUMI Satoru)
CONNECTORS-1146: Improve Japanese concepts document.
(KOIZUMI Satoru)
CONNECTORS-1145: File locking hangs when saving output connection.
(Andreas Baumann, Michael Wilken, Karl Wright)
CONNECTORS-1140: Improve Japanese documentation.
(KOIZUMI Satoru)
CONNECTORS-1141: Increase session timeout for combined UI to
30 minutes.
(Karl Wright)
CONNECTORS-1122: Don't reprioritize documents on job start/resume.
For jobs which share bins with other jobs, this may mean that no
documents will be processed until the entire current queue of the
other job is completed, but this is deemed to be a rare situation.
(Karl Wright)
CONNECTORS-1139: Add support for interruptible throttlers.
(Karl Wright)
CONNECTORS-1138: Loss of all metadata fields but one on pipeline
bifurcation.
(Salih Sen, Karl Wright)
CONNECTORS-1136: Update the user documentation to account for
changes in the metadata adjuster transformer.
(Karl Wright)
CONNECTORS-1134: Revamp metadata adjuster transformer to
handle arbitrary combination expressions across multiple fields.
This replaces the "move" and "add" paradigm with a more general
approach.
(Hemant Jain, Karl Wright)
CONNECTORS-1135: Update Japanese translations for JCIFS connector.
(KOIZUMI Satoru)
CONNECTORS-1132: Update documentation for notification
connections.
(Karl Wright)
CONNECTORS-1130: Add support for name/value document filtering
in Documentum connector.
(Hemant Jain, Karl Wright)
CONNECTORS-1119: Add support for notification connectors, and
an email notification connector.
(Karl Wright)
======================= Release 2.0 =====================
CONNECTORS-1128: Job shows no activity when restarting after
abort.
(Karl Wright)
CONNECTORS-1127: Fix boilerplate extraction to be compatible with
current version of boilerplate.
(Kamil Żyta, Karl Wright)
CONNECTORS-1126: Fix LockGate release logic to not flush LockGate
objects so aggressively.
CONNECTORS-1124: start.jar in example-proprietary not working.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1125: Make sure xz jar is delivered to where Tika needs
it.
(Kamil Żyta, Karl Wright)
CONNECTORS-1123: Reduce the maximum number of zookeeper lock
nodes, by hashing the lock names that correspond to documents.
(Aeham Abushwashi, Karl Wright)
CONNECTORS-1121: Plugins have moved in the dist repository, so
point at them properly.
(Kamil Żyta, Karl Wright)
CONNECTORS-1120: ElasticSearch: Handle case of deleting already
deleted document.
(Kamil Żyta, Karl Wright)
CONNECTORS-1118: Change IIncrementalIngester interface to allow
for cached connection instances.
(Aeham Abushwashi, Karl Wright)
CONNECTORS-921: Change Zookeeper paths so all ManifoldCF nodes
are under one root.
(Graeme Seaton, Karl Wright)
CONNECTORS-969: Don't use JSON as an output specification format.
(Karl Wright)
CONNECTORS-974: Make SharePoint 2010 be the default selection.
(Karl Wright)
CONNECTORS-1116: Prevent requirement of unlimited handles for
cached loads by limiting number of cached loads to 200 at a time.
(Adrian Conlon, Karl Wright)
CONNECTORS-1115: Add ability to retain all components of a document,
so that individual ones do not need to be specified.
(Markus Schuch, Karl Wright)
CONNECTORS-1114: SQL exception calling removeDocument().
(Markus Schuch, Karl Wright)
CONNECTORS-1063: Add section to how-to-build-and-deploy on
the Alfresco Webscript connector.
(Karl Wright, Maurizio Pillitu)
CONNECTORS-1112: Reduce contention for zookeeper resources by
caching local configuration data, and by reorganizing stuffer thread.
(Aeham Abushwashi, Karl Wright)
CONNECTORS-1111: Component cleanup did not work properly.
(Markus Schuch, Karl Wright)
CONNECTORS-1110: Component documents getting deleted wrongly
when additional components added.
(Markus Schuch, Karl Wright)
CONNECTORS-1109: Bad cache key for JDBC authority.
(Alejandro Calbazana, Karl Wright)
CONNECTORS-1108: Turn most jobs logging messages from DEBUG
to INFO.
(Aeham Abushwashi)
CONNECTORS-1100: Change how reprioritization is done to improve
overall usability at large scale.
(Aeham Abushwashi, Karl Wright)
CONNECTORS-1106: Missing state handling for abort case.
(Kamil Żyta, Karl Wright)
CONNECTORS-1104: Add proxy support to SharePoint connector.
(Karl Wright)
CONNECTORS-1102: Don't do a hard reindex on jobqueue.restart,
since it is expensive and may be unnecessary.
(Aeham Abushwashi, Karl Wright)
CONNECTORS-1101: Fix shutdown hang caused by poor interrupt
handling in MySQL driver.
(Karl Wright)
CONNECTORS-1086: Document Amazon Cloud Search fields.
(Karl Wright)
CONNECTORS-1076: Revamp ManifoldCF obfuscation to use a
standard encryption algorithm.
(Karl Wright)
CONNECTORS-1099: Update Metadata Adjuster documentation.
(Karl Wright)
CONNECTORS-1098: Update how-to-build-and-deploy.
(Karl Wright)
CONNECTORS-1097: Update JDBC connector documentation.
(Karl Wright)
CONNECTORS-1096: Document boilerplate removal options.
(Karl Wright)
CONNECTORS-1095: Use https for downloading everywhere.
(Aeham Abushwashi)
CONNECTORS-1094: Performance improvements for document
reprioritization.
(Aeham Abushwashi, Karl Wright)
CONNECTORS-1093: Need to preload document priorities for reset
of all priorities, for performance.
(Karl Wright)
CONNECTORS-1092: Error in log during load tests.
(Karl Wright)
CONNECTORS-1091: On job start, reprioritize documents.
(Karl Wright)
CONNECTORS-1090: More PostgreSQL performance improvements.
(Karl Wright)
CONNECTORS-1089: Add JDBC connector access token capability.
(Alejandro Calbazana, Karl Wright)
CONNECTORS-1088: Add boilerplate extraction to Tika extractor.
(Arcadius Ahouansou, Karl Wright)
CONNECTORS-1087: Fix failing alfresco-webscript unit test.
(Karl Wright)
CONNECTORS-1085: Reduce binary space requirement by introducing a
connector-common-lib.
(Karl Wright)
CONNECTORS-1083: Add support for MariaDB.
(Markus Schuch)
CONNECTORS-1060: Implement Alfresco webscript connector integration
test.
(Maurizio Pillitu)
CONNECTORS-1081: ElasticSearch documentation update.
(Jens Jahnke)
CONNECTORS-1080: Elastic search: go from "content" field to "_content".
(Jens Jahnke)
CONNECTORS-1079: Fix Tika extractor; tika core must be in connector-lib
as well as in root jars.
(Mingchun Zhao, Karl Wright)
CONNECTORS-1078: Improve end-user documentation for the JDBC
connection type.
(Jens Jahnke, Karl Wright)
CONNECTORS-1074: Use Tika to map extensions to mime types.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1072: Remove 1.x-related import fallback code, since
2.0 is not backwards compatible with 1.x.
(Karl Wright)
CONNECTORS-1073: Remove 1.x-related upgrade code, since schema
for 2.0 is not backwards compatible with 1.x anyhow.
(Karl Wright)
CONNECTORS-1075: Provide a means of obfuscating passwords in
properties.xml and global-properties.xml. Also include an obfuscation
utility in the distribution, for generating obfuscated passwords.
(Karl Wright)
CONNECTORS-1071: JCIFS connector should provide date metadata in
standard ISO8601 format with names that don't conflict with what
Tika extractor generates.
(Antonio David Pérez Morales, Karl Wright)
CONNECTORS-1061: More fixes for the Alfresco webscript connector
UI, and create a UI test.
(Karl Wright)
CONNECTORS-1066: Do not include blank or null fixed fields in Solr
documents; also, provide facility to strip empty fields from general
metadata in Metadata Adjuster.
(Alessandro Benedetti, Shinichiro Abe, Karl Wright)
CONNECTORS-1068: Enhancements for Document Filter transformation
connector.
(Karl Wright)
CONNECTORS-1070: Exit immediately upon finding a misconfigured
ManifoldCF.
(Kamil Żyta, Karl Wright)
CONNECTORS-1067: Allow document filtering on modification date,
and also hook this up in all repository connectors where it makes sense.
(Karl Wright)
CONNECTORS-1057: Implement full internationalization for alfresco-webscript
connector.
(Karl Wright)
CONNECTORS-1065: Reorganize authority packages to be consistent
with the standard.
(Karl Wright)
CONNECTORS-1056: Use ContentUrlPath attribute for actual URI for
the document in Alfresco.
(Maurizio Pillitu, Karl Wright)
CONNECTORS-1062: Livelink connector date stamps etc should be in
ms since epoch, not in human-readable timezone-dependent dates.
(Karl Wright)
CONNECTORS-1037: Add Alfresco webscript connector and authority.
(Maurizio Pillitu, Rafa Haro, Karl Wright)
CONNECTORS-1055: Fix Zulu date parsing.
(Karl Wright)
CONNECTORS-1053: Provide stop scripts for single-process examples.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1054: Document plugins for SharePoint more completely.
(Karl Wright)
CONNECTORS-345: Provide a jetty configuration XML file that can
be used to alter the jetty configuration.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1050: Upgrade to Jetty 9.
(Shinichiro Abe)
CONNECTORS-1049: Put plugins under "plugins" in dist directory,
and connector processes under "processes" in dist directory.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1051: Elastic Search connector and CMIS connector
should use the same paradigm for test wars.
(Karl Wright)
CONNECTORS-1048: Use full paths for all downloaded jars.
(Shinichiro Abe, Karl Wright)
CONNECTORS-1047: Upgrade to Tika 1.6.
(Shinichiro Abe)
CONNECTORS-1046: Remove user mapping support except for
official regexp mapper.
(Karl Wright)
CONNECTORS-1044: Remove all support for Derby as an internally
used database.
(Karl Wright)
CONNECTORS-982: Remove all output connector tabs that are
roughly equivalent to what the Document Filter transformation
connector does.
(Karl Wright)
CONNECTORS-1043: Wrong url generated for SharePoint list items.
(Lalit Jangra, Karl Wright)
CONNECTORS-418: Finish implementation of preferred way to get content
URL for CMIS.
(Karl Wright)
CONNECTORS-1041: Livelink connector should force HTTPS off when
HTTP is selected.
(Karl Wright)
CONNECTORS-1040: Transformation connectors should use specification
rather than unpacking version string.
(Karl Wright)
CONNECTORS-1039: Use a URL-centric way of getting the extension
for document filtering.
(David Morana, Karl Wright)
CONNECTORS-1038: Handle multiple pool closes properly.
(Karl Wright)
CONNECTORS-956: Change how Solr field name escaping is done.
(Piergiorgio Lucidi, Shinichiro Abe, Edgardo Ambrosi, Karl Wright)
CONNECTORS-1036: Zookeeper service handling also has
ephemeral nodes which need to be tied to sessions.
(Karl Wright)
CONNECTORS-1031: Fix Zookeeper synchronization to be resilient
against short tick time settings.
(Karl Wright)
CONNECTORS-1026: Change JIRA URL to use the standard form.
(Daniel Aschaeur)
CONNECTORS-1027: Improve some general and PostgreSQL queries
for large crawling sets.
(Paul Boichat, Karl Wright)
CONNECTORS-1025: SharePoint connector should skip blocked files.
(Radek Sklenicka, Karl Wright)
CONNECTORS-1024: Non-null components always failed due to a
null pointer exception.
(Karl Wright)
CONNECTORS-1023: Fix Alfresco tests. They don't yet succeed, but
at least they run, and the connector can communicate with Alfresco.
(Karl Wright)
CONNECTORS-1021: Add more metadata for Jira connector.
(Daniel Aschaeur)
CONNECTORS-1022: Add URL mapping tab to web connector.
(Luca Basso, Karl Wright)
CONNECTORS-1020: Email connector misuse of variable names.
(Karl Wright, Paul Boichat)
CONNECTORS-975: Remove all 'forced metadata' equivalent tabs.
(Karl Wright)
CONNECTORS-1014: Fix the fact that Solr Cloud no longer sets
a content type in its responses.
(Kamil Zyta, Karl Wright)
CONNECTORS-1006: Extend GoogleDrive connector to capture
Google native spreadsheets.
(Shigeki Kabayashi)
CONNECTORS-973: Remove field mapping tab from Solr connector.
(Karl Wright)
CONNECTORS-1018: Fix broken job UI.
(Karl Wright)
CONNECTORS-1015: Add minimum file size to Allowed Documents
transformation filter.
(David Morana, Karl Wright)
CONNECTORS-1016: Recognize non-existent user.
(David Morana, Karl Wright)
CONNECTORS-972: Remove Forced Metadata tab from all jobs.
THIS IS A NON-BACKWARDS-COMPATIBLE CHANGE.
(Karl Wright)
CONNECTORS-949: Upgrade OpenCMIS to latest version to see if it
fixes join queries.
(Karl Wright)
CONNECTORS-1013: Handle new kind of XML we see coming back from
SharePoint on getLists metadata field list requests.
(Lalit Jangra, Karl Wright)
======================= Release 1.7 =====================
CONNECTORS-1012: Upgrade xmlbeans and POI to fix various CVE's.
(Karl Wright)
CONNECTORS-1011: Upgrade to httpclient 4.3.5.
(Karl Wright)
CONNECTORS-1009: Fix CMIS connector again, to handle typical case
where a new version is a new node.
(Karl Wright)
CONNECTORS-1010: Use uri hash instead of full URI as lock key
to prevent "file name too long" errors on windows.
(Erlend Garåsen, Shigeki Kobayashi, Karl Wright)
CONNECTORS-1007: Fix CMIS connector so that tests pass.
(Karl Wright)
CONNECTORS-1006: Update googledrive API to latest released version.
(Karl Wright)
CONNECTORS-1000: Add support for auth to open search server
connector.
(Emmanuel Keller)
CONNECTORS-1004: CMIS connector was not using latest version
of document, which matters for repositories like Alfresco.
(Prasad Perera, Karl Wright)
CONNECTORS-1003: CMIS connector handling of query string was
incorrect.
(Karl Wright)
CONNECTORS-958: Update OpenSearchServer connector to handle
metadata, and deal with more current versions of OpenSearchServer.
(Emmanuel Keller)
CONNECTORS-565: Add connector and plugin support for SharePoint
2013.
(Will Parkinson, Karl Wright)
CONNECTORS-984: Add Tika extraction metadata, and also add
ability to ignore tika exceptions.
(Shinichiro Abe, Karl Wright)
CONNECTORS-989: Introduce document sub-components, which
is a way of having multiple indexed documents corresponding to a
single repository document.
(Matteo Grolla, Karl Wright)
CONNECTORS-994: Make Alfresco connector pay attention to the
scanOnly flag.
(Prasad Perera, Karl Wright)
CONNECTORS-997: Get CMIS connector working again.
(Karl Wright)
CONNECTORS-996: Catch CMIS object not found exception, and
also enable CMIS derby IT test.
(Prasad Perera, Karl Wright)
CONNECTORS-995: Connectors dealing with non-indexable documents
such as directories should call noDocument() on those documents if they
want incremental behavior.
(Karl Wright)
CONNECTORS-993: Pipeline code not handling "no document" case properly.
This problem was an oversight of the new pipeline code. Essentially,
transformation connectors could choose not to send a document onward
to the next stage. If this happened, then the document version information
for the corresponding output connection would never get written, and
no incremental-ness would be possible.
I fixed this by introducing a "noDocument()" IOutputAddActivity method,
which transformation connectors should call when they reject a document.
(Karl Wright)
CONNECTORS-992: Add a test to exercise ServiceInterruption within
a connector.
(Karl Wright)
CONNECTORS-990: Revamp IRepositoryConnector API to no longer separate
getDocumentVersions() and processDocuments(). This modification basically
pushes responsibility to determine changes to the repository connector.
Backwards compatibility is maintained via code in BaseRepositoryConnector,
and new methods have been added to IProcessActivity.
WorkerThread has been largely rewritten as a result.
(Karl Wright)
CONNECTORS-991: Make Jira connector perform pre-emptive basic auth
since Jira supports guest users.
(Daniel Aschauer, Karl Wright)
CONNECTORS-988: Performance improvements for split pipeline crawls.
(Karl Wright)
CONNECTORS-985: Get UI tests working again.
(Karl Wright)
CONNECTORS-981: Add support for SolrInputDocument indexing in
Solr connector.
(Alessandro Benedetti, Karl Wright)
CONNECTORS-979: Fix ant build so that documentum and filenet show
up.
(Karl Wright)
CONNECTORS-980: Output connector gets notified now when job is deleted.
(Karl Wright)
CONNECTORS-954: Revamp AmazonCloudSearch output connector completely.
(1) Remove Tika and field mapping, since that would be done upstream in the
pipeline.
(2) Revamped the document lifecycle so they are batched together (which isn't
perfect; see CONNECTORS-980).
(Karl Wright, Takumi Yoshida)
CONNECTORS-971: Use a generic "seeding version string" to track the last
seeding event for every job. This abstracts away from time intervals and
permits seeding based on things like transaction IDs.
(Karl Wright, Piergiorgio Lucidi)
CONNECTORS-967: Add links to Java 1.7 and ManifoldCF framework Javadoc
for ManifoldCF Javadocs.
(Shinichiro Abe)
CONNECTORS-965: Update end-user documentation to reflect
multiple outputs per job.
(Karl Wright)
CONNECTORS-964: Document REST API changes for multiple outputs
per job.
(Karl Wright)
CONNECTORS-962: Add support for multiple outputs for a given job.
WARNING: Schema change! REST API change! Upgrade from 1.6.x
has been added but not yet tested.
(Karl Wright)
CONNECTORS-963: SharePoint/AD authority did not generate the "true"
token.
(Karl Wright)
CONNECTORS-961: Debug pipeline usage in job UI, and add a Forced Metadata
transformation connector that has a job tab.
(Karl Wright)
CONNECTORS-960: Remove Specification subclass usage from main connector API's.
(Karl Wright)
CONNECTORS-953: Forced metadata changes do not reset seeding start time
(Karl Wright)
CONNECTORS-952: Crawler UI generates bad XML.
(Karl Wright)
CONNECTORS-951: Import/export does not handle forced metadata.
(Karl Wright)
CONNECTORS-946: Add pipeline support. This is a major change that adds a new class of connector, UI changes,
and includes structural as well as schema changes. WARNING: Schema change!!
(Karl Wright)
CONNECTORS-950:CMIS Connector should ingest only the properties specified in the select clause
(Piergiorgio Lucidi)
CONNECTORS-916: Supply an Amazon Cloud Search connector.
(Takumi Yoshida, Karl Wright)
CONNECTORS-948: CMIS Connector returns couldn't encrypt null when the query doesn't include cmis:objectId
(Piergiorgio Lucidi)
CONNECTORS-947: ant test fails when make-deps is not run.
(Karl Wright)
CONNECTORS-945: GridFS connector.
(Muhammed Olgun)
CONNECTORS-944: Maven build has different stuff in war file than
ant build.
(Arcadius Ahouansou, Karl Wright)
CONNECTORS-943: .aspx files not indexed by Sharepoint connector due to missing mime type in core
CONNECTORS-941: Solr connector not working properly with basic auth.
(Erlend Garåsen, Karl Wright)
CONNECTORS-942: Add output connector method to handle notification
of removal of all connection-related records.
(Karl Wright)
CONNECTORS-940: Upgrade slf4j and commons-logging to latest versions.
(Karl Wright)
CONNECTORS-933: Simplified chinese localizations.
(Mingchun Zhao)
CONNECTORS-938: Allow JSPs to all work properly with Java 8.
(Arcadius Ahouansou, Ahmet Arslan)
CONNECTORS-936: Handle null content streams in CMIS connector.
(Cetra Free)
CONNECTORS-935 : Use Java 7 in ant build
(Ahmet Arslan)
CONNECTORS-932 : Avoid UnsupportedEncodingException handling
(Ahmet Arslan)
CONNECTORS-927: Override JDK's entity expansion limit for Solr
connector.
(David Morana, Karl Wright)
======================= Release 1.6 =====================
CONNECTORS-928: Remove unused directory.
(Ahmet Arslan, Karl Wright)
CONNECTORS-925: Fix ant exclusions for zip/tar distributions on Linux variants.
(Ahmet Arslan)
CONNECTORS-923: Fix bandwidth throttling.
(Karl Wright)
CONNECTORS-920: Be more explicit in Solr connector about handling
SocketTimeoutException.
(Hitoshi Tatsumi, Karl Wright)
CONNECTORS-919: Fix example-proprietary.
(Karl Wright)
CONNECTORS-913: Only remove connector registration when connectors
are being delivered.
(Karl Wright)
CONNECTORS-912: Revamp build system, so that individual connectors
can build directly against a distribution. This makes it much easier for
developers to do their own connectors using our infrastructure, and
contribute complete working connectors with tests as well.
(Graeme Seaton, Karl Wright)
CONNECTORS-909: Upgrade to Elasticsearch 1.0.1.
(Shinichiro Abe)
CONNECTORS-900: Clean up Hadoop deprecation warnings.