-
Notifications
You must be signed in to change notification settings - Fork 138
/
RELEASE-NOTES.txt
1440 lines (1093 loc) · 72.1 KB
/
RELEASE-NOTES.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
Apache Commons Configuration
Version 2.11.0
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in various formats; requires Java 8.
Minor release with new features and updated dependencies; requires Java 8 or above.
Changes in this version include:
New features
------------
* CONFIGURATION-844: Add support for empty sections #408. Thanks to Thomas Steiner, Gary Gregory.
* Add ImmutableConfiguration.containsValue(Object). Thanks to Rikkarth, Gary Gregory.
Fixed Bugs
----------
* Fail-fast with a NullPointerException if DataConfiguration.DataConfiguration(Configuration) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if XMLPropertiesConfiguration.XMLPropertiesConfiguration(Element) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if a SubsetConfiguration constructor is called with a null Configuration. Thanks to Gary Gregory.
* CONFIGURATION-843: Methods should not be empty #393. Thanks to Gary Gregory.
* Guard MapConfiguration against null maps #381. Thanks to Heewon Lee, Gary Gregory.
* Fail-fast with a NullPointerException if AppletConfiguration(Applet) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if ServletConfiguration(Servlet) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if ServletConfiguration(ServletConfig) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if ServletContextConfiguration(Servlet) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if ServletContextConfiguration(ServletContext) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if ServletFilterConfiguration(FilterConfig) is called with null. Thanks to Gary Gregory.
* Fail-fast with a NullPointerException if ServletRequestConfiguration(ServletRequest) is called with null. Thanks to Gary Gregory.
* Deprecate DatabaseConfiguration.getDatasource() in favor of getDataSource(). Thanks to Gary Gregory.
* Fix PMD DynamicCombinedConfiguration in AbstractImmutableNodeHandler. Thanks to Gary Gregory.
* Fix PMD DynamicCombinedConfiguration in AbstractListDelimiterHandler. Thanks to Gary Gregory.
* Fix PMD DynamicCombinedConfiguration in DefaultPrefixLookupsHolder. Thanks to Gary Gregory.
* Fix PMD DynamicCombinedConfiguration in DynamicCombinedConfiguration. Thanks to Gary Gregory.
* Fix PMD DynamicCombinedConfiguration in PropertiesConfiguration. Thanks to Gary Gregory.
* CONFIGURATION-846: Restore previous behavior allowing Spring to inject multiple values #425. Thanks to Andrea Bollini, Gary Gregory, Tim Donohue, kbarlowgw.
* CONFIGURATION-847: Property with an empty string value was not processed #431. Thanks to Andrea Bollini, Gary Gregory, Tim Donohue, kbarlowgw.
Changes
-------
* Bump commons-logging:commons-logging from 1.3.0 to 1.3.2 #390, #418. Thanks to Dependabot.
* Bump commons-io:commons-io from 2.15.1 to 2.16.1 #394, #400. Thanks to Dependabot.
* Bump org.apache.commons:commons-parent from 67 to 70 #396. Thanks to Dependabot.
* Bump slf4j.version from 2.0.12 to 2.0.13 #403. Thanks to Dependabot.
* Bump org.apache.commons:commons-text from 1.11.0 to 1.12.0 #404. Thanks to Dependabot.
* Bump spring.version from 5.3.33 to 5.3.35 #424. Thanks to Gary Gregory.
* Bump commons-codec:commons-codec from 1.16.1 to 1.17.0. Thanks to Gary Gregory.
* Bump com.fasterxml.jackson.core:jackson-databind from 2.17.0 to 2.17.1 #417. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration//download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.10.1
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in various formats; requires Java 8.
Minor release with new features and updated dependencies; requires Java 8 or above.
Changes in this version include:
Fixed Bugs
----------
* CONFIGURATION-839: java.lang.module.FindException: Module servlet.api not found. Thanks to Bob Marinier, Gary Gregory.
* CONFIGURATION-840: StackOverflowError adding property in AbstractListDelimiterHandler.flattenIterator(). Thanks to Bob Marinier, Gary Gregory.
* CONFIGURATION-841: StackOverflowError calling ListDelimiterHandler.flatten(Object, int) with a cyclical object tree. Thanks to Gary Gregory.
Changes
-------
* Bump jackson-databind from 2.16.1 to 2.17.0 #378. Thanks to Dependabot.
* Bump log4j.version from 2.23.0 to 2.23.1 #379. Thanks to Dependabot.
* Bump spring.version from 5.3.32 to 5.3.33 #380. Thanks to Dependabot, Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration//download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.10.0
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in
various formats.
Minor release with new features and updated dependencies; requires Java 8 or above.
Changes in this version include:
New features
------------
* Add AbstractConfiguration.getKeysInternal(String, String) #300. Thanks to KeijoB, Gary Gregory.
* Add ImmutableConfiguration.getKeys(String, String) #300. Thanks to KeijoB, Gary Gregory.
* Add PrefixedKeysIterator.PrefixedKeysIterator(Iterator<String%gt;, String, String) #300. Thanks to KeijoB, Gary Gregory.
* Add Maven property project.build.outputTimestamp for build reproducibility. Thanks to Gary Gregory.
* Guard PatternSubtreeConfigurationWrapper constructor against null #365. Thanks to Heewon Lee.
Fixed Bugs
----------
* [StepSecurity] ci: Harden GitHub Actions #307. Thanks to step-security-bot, Gary Gregory.
* CONFIGURATION-834: ConfirgurationPropertySource doesn't supply resolved values #309. Thanks to Keith Barlow, Gary Gregory.
* Take prefix delimiter into account when SubsetConfiguration.getKeysInternal() is called #300. Thanks to KeijoB, Gary Gregory.
* Guard ConfigurationMap against null configuration #355. Thanks to Heewon Lee, Gary Gregory.
* CONFIGURATION-838: Properties parser stack overflows on large single-key inputs #369. Thanks to Ian Lynagh.
* DatabaseConfiguration.AbstractJdbcOperation.execute() throws NullPointerException when no data source is set #368. Thanks to Heewon Lee, Gary Gregory.
Changes
-------
* Bump jackson-databind from 2.14.2 to 2.16.1 #297, #303, #326, #331, #340. Thanks to Dependabot.
* Bump commons-io:commons-io from 2.11.0 to 2.15.1. Thanks to Gary Gregory.
* Bump spring-* from 5.3.26 to 5.3.32. Thanks to Gary Gregory.
* Bump commons-parent from 57 to 67. Thanks to Gary Gregory.
* Bump commons-codec:commons-codec from 1.15 to 1.16.1. Thanks to Gary Gregory.
* Bump commons-lang3 from 3.11 to 3.14.0. Thanks to Gary Gregory.
* Bump org.yaml:snakeyaml from 2.0 to 2.2 #312, #315. Thanks to Dependabot.
* Bump slf4j.version from 2.0.7 to 2.0.12 #358. Thanks to Dependabot.
* Bump org.apache.commons:commons-dbcp2 from 2.9.0 to 2.12.0. Thanks to Gary Gregory.
* Bump org.apache.commons:commons-pool2 from 2.11.1 to 2.12.0. Thanks to Gary Gregory.
* Bump org.apache.logging.log4j:log4j-1.2-* from 2.20.0 to 2.23.0 #334, #339, #367. Thanks to Gary Gregory, Dependabot.
* Bump org.apache.commons:commons-text from 1.10.0 to 1.11.0. Thanks to Gary Gregory.
* Bump commons-logging:commons-logging from 1.2 to 1.3.0. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration//download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.10.0
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in
various formats
Minor release with new features and updated dependencies.
Changes in this version include:
New features
------------
* Add AbstractConfiguration.getKeysInternal(String, String) #300. Thanks to KeijoB, Gary Gregory.
* Add ImmutableConfiguration.getKeys(String, String) #300. Thanks to KeijoB, Gary Gregory.
* Add PrefixedKeysIterator.PrefixedKeysIterator(Iterator<String%gt;, String, String) #300. Thanks to KeijoB, Gary Gregory.
* Add Maven property project.build.outputTimestamp for build reproducibility. Thanks to Gary Gregory.
* Guard PatternSubtreeConfigurationWrapper constructor against null #365. Thanks to Heewon Lee.
Fixed Bugs
----------
* [StepSecurity] ci: Harden GitHub Actions #307. Thanks to step-security-bot, Gary Gregory.
* CONFIGURATION-834: ConfirgurationPropertySource doesn't supply resolved values #309. Thanks to Keith Barlow, Gary Gregory.
* Take prefix delimiter into account when SubsetConfiguration.getKeysInternal() is called #300. Thanks to KeijoB, Gary Gregory.
* Guard ConfigurationMap against null configuration #355. Thanks to Heewon Lee, Gary Gregory.
* CONFIGURATION-838: Properties parser stack overflows on large single-key inputs #369. Thanks to Ian Lynagh.
* DatabaseConfiguration.AbstractJdbcOperation.execute() throws NullPointerException when no data source is set #368. Thanks to Heewon Lee, Gary Gregory.
Changes
-------
* Bump jackson-databind from 2.14.2 to 2.16.1 #297, #303, #326, #331, #340. Thanks to Dependabot.
* Bump commons-io:commons-io from 2.11.0 to 2.15.1. Thanks to Gary Gregory.
* Bump spring-* from 5.3.26 to 5.3.32. Thanks to Gary Gregory.
* Bump commons-parent from 57 to 66. Thanks to Gary Gregory.
* Bump commons-codec:commons-codec from 1.15 to 1.16.1. Thanks to Gary Gregory.
* Bump commons-lang3 from 3.11 to 3.14.0. Thanks to Gary Gregory.
* Bump org.yaml:snakeyaml from 2.0 to 2.2 #312, #315. Thanks to Dependabot.
* Bump slf4j.version from 2.0.7 to 2.0.12 #358. Thanks to Dependabot.
* Bump org.apache.commons:commons-dbcp2 from 2.9.0 to 2.12.0. Thanks to Gary Gregory.
* Bump org.apache.commons:commons-pool2 from 2.11.1 to 2.12.0. Thanks to Gary Gregory.
* Bump org.apache.logging.log4j:log4j-1.2-* from 2.20.0 to 2.23.0 #334, #339, #367. Thanks to Gary Gregory, Dependabot.
* Bump org.apache.commons:commons-text from 1.10.0 to 1.11.0. Thanks to Gary Gregory.
* Bump commons-logging:commons-logging from 1.2 to 1.3.0. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration//download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.9.0
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in
various formats.
Minor release with new features and updated dependencies.
Changes in this version include:
New features
------------
* CONFIGURATION-799: Add DefaultConversionHandler#setListDelimiterHandler(ListDelimiterHandler). Thanks to Xinshiyou, Gary Gregory.
Fixed Bugs
----------
* CONFIGURATION-799: CombinedConfiguration#getKeys() can throw NoSuchElementException. Thanks to Jarek Sacha, Gary Gregory.
* CONFIGURATION-822: Fix ambiguity on the section determining #229. Thanks to Branislav Be?o, Gary Gregory, Bruno P. Kinoshita.
* Use Java style array decelerations #244. Thanks to Arturo Bernal.
* Add ImmutableNode.stream(). Thanks to Gary Gregory.
* Avoid NullPointerException in org.apache.commons.configuration2.web.AppletConfiguration.getKeysInternal(). Thanks to Gary Gregory.
* Fix JDBC prepared statements leak in org.apache.commons.configuration2.DatabaseConfiguration.clearPropertyDirect(String). Thanks to Gary Gregory.
Changes
-------
* CONFIGURATION-815: Bump optional Apache Log4j 1.2.17 with 2.20.0. Thanks to Gary Gregory.
* Bump actions/checkout from 3 to 3.1.0 #224. Thanks to Gary Gregory, Dependabot.
* Bump actions/setup-java from 3 to 3.5.1. Thanks to Gary Gregory.
* Bump spotbugs-maven-plugin from 4.7.0.0 to 4.7.3.0 #193, #195, #228, #237. Thanks to Dependabot, Gary Gregory.
* Bump spotbugs from 4.7.0 to 4.7.3. Thanks to Gary Gregory.
* Bump org.springframework:spring-* from 5.3.21 to 5.3.26. Thanks to Dependabot, Gary Gregory.
* Bump junit-jupiter from 5.8.2 to 5.9.1 #197, #217. Thanks to Dependabot.
* Bump mockito-core from 4.6.1 to 4.11.0 #200, #235, #249, #257, #259. Thanks to Dependabot, Gary Gregory.
* Bump slf4j.version from 1.7.36 to 2.0.7 #202, #210, #215, #238, #241, #291. Thanks to Dependabot.
* Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0 #201. Thanks to Dependabot.
* Bump maven-javadoc-plugin from 3.4.0 to 3.4.1. Thanks to Gary Gregory.
* Bump maven-pmd-plugin 3.17.0 to 3.19.0. Thanks to Gary Gregory.
* Bump pmd from 6.47.0 to 6.53.0. Thanks to Gary Gregory.
* Bump snakeyaml from 1.30 to 2.0 #203, #212, #219, #282, #283. Thanks to Dependabot, strangelookingnerd.
* Bump jackson-databind from 2.13.3 to 2.14.2 #227, #246, #274. Thanks to Gary Gregory.
* Bump spring.version from 5.3.22 to 5.3.23 #211. Thanks to Dependabot.
* Bump commons-parent from 53 to 56 #216, #253. Thanks to Dependabot, Gary Gregory.
* Bump log4j.version from 2.18.0 to 2.20.0 #213, #281. Thanks to Dependabot.
* Bump japicmp-maven-plugin from 0.15.7 to 0.17.1. Thanks to Gary Gregory.
* Bump commons-text from 1.9 to 1.10.0 #221. Thanks to Dependabot.
* Bump actions/cache from 3.0.8 to 3.0.10 #223, #225. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration//download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.8.0
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in
various formats
Minor release with new features and updated dependencies.
Changes in this version include:
New features
------------
* Implement Iterable in ImmutableNode #74. Thanks to SethiPandi.
* Add PropertiesConfigurationLayout.getBlankLinesBefore() and deprecate getBlancLinesBefore(). Thanks to Gary Gregory.
* Add PropertiesConfigurationLayout.setBlankLinesBefore() and deprecate setBlancLinesBefore(). Thanks to Gary Gregory.
* Add PropertiesConfigurationLayout.PropertyLayoutData.getBlankLines() and deprecate getBlancLines(). Thanks to Gary Gregory.
* Add PropertiesConfigurationLayout.PropertyLayoutData.setBlankLines() and deprecate setBlancLines(). Thanks to Gary Gregory.
* CONFIGURATION-789: Add ImmutableConfiguration.getEnum() methods. Thanks to Gary Gregory.
* CONFIGURATION-789: Add ImmutableConfiguration.getDuration() methods. Thanks to Gary Gregory.
Fixed Bugs
----------
* CONFIGURATION-753: Make interpolation of collections and arrays in ConfigurationInterpolator consistent with
behavior of DefaultConversionHandler. Add ConfigurationInterpolator.setStringConverter to
allow customized string conversion behavior.
* CONFIGURATION-795: Computation of blank lines after header comment #82. Thanks to dpeger.
* CONFIGURATION-801: Remove redundant initializer #110. Thanks to Arturo Bernal.
* CONFIGURATION-802: Use final #111. Thanks to Arturo Bernal.
* CONFIGURATION-803: Java 8 lambda improvements and more #112. Thanks to Arturo Bernal.
* CONFIGURATION-804: Redundant local variable #113. Thanks to Arturo Bernal.
* CONFIGURATION-805: Use try with resource #114. Thanks to Arturo Bernal.
* CONFIGURATION-805: [Javadoc] Specify that typed getList returns null for missing key #100. Thanks to Roman Zaynetdinov.
* Mention EnvironmentConfiguration in the list of configuration sources #45. Thanks to Oliver B. Fischer.
* CONFIGURATION-808: DefaultListDelimiterHandler.escapeList working only for List>String< #137. Thanks to cigaly.
* Use final #141. Thanks to Arturo Bernal.
* Replace test asserts by simpler but equivalent calls. #139 Thanks to Arturo Bernal.
* CONFIGURATION-764: Single Variable Interpolation #182. Thanks to Ning Zhang, Matt Juntunen, Bruno P. Kinoshita, Gary Gregory.
* Implement proper concurrency in ConstantLookup. Thanks to Gary Gregory.
* CONFIGURATION-813: Support new namespace jakarta.mail.* used by javamail 2.0+ (first release October 2020) #186. Thanks to Dependabot.
Changes
-------
* Unclosed file handle when reading config from JAR file URL.
Add and use FileBasedBuilderProperties.setURL(URL, URLConnectionOptions). Thanks to Robin Jansohn, Gary Gregory, Rob Spoor.
* Make default interpolation prefix lookups configurable via system property. Remove dns, url, and script
lookups from defaults. If these lookups are required for use in AbstractConfiguration subclasses, they must
be enabled via system property. See ConfigurationInterpolator.getDefaultPrefixLookups() for details.
* Bump actions/cache from 2 to 3.0.4 #99, #151, #169. Thanks to Dependabot, Gary Gregory.
* Bump actions/checkout from 1 to 3 #47, #62, #70, #85, #150, #163. Thanks to Dependabot.
* Bump actions/setup-java from 1.4.0 to 3 #63, #65, #73, #174. Thanks to Dependabot, Gary Gregory.
* Bump codeql-action from v1 to v2. Thanks to Dependabot, Matt Juntunen.
* Bump Spring dependency versions:
org.springframework:spring-beans 4.3.26.RELEASE -> 5.3.21
org.springframework:spring-context 4.3.26.RELEASE -> 5.3.21
org.springframework:spring-core 4.3.26.RELEASE -> 5.3.21
org.springframework:spring-test 4.3.26.RELEASE -> 5.3.21
#165, #172 Thanks to Dependabot, Matt Juntunen, kinow, Gary Gregory.
* Bump commons-parent from 52 to 53. Thanks to Dependabot, Matt Juntunen.
* CONFIGURATION-787: Bump Apache Commons Lang from 3.9 to 3.12.0. Thanks to Gary Gregory.
* CONFIGURATION-790: Bump com.fasterxml.jackson.core:jackson-databind from 2.10.3 to 2.13.3, #60. Thanks to Gary Gregory, Dependabot.
* Bump Slf4j test dependencies:
org.slf4j:slf4j-api 1.7.26 -> 1.7.33,
org.slf4j:slf4j-ext 1.7.26 -> 1.7.33,
org.slf4j:slf4j-log4j12 1.7.26 -> 1.7.33,
org.slf4j:slf4j-nop 1.7.26 -> 1.7.33. Thanks to Gary Gregory.
* Bump commons-parent from 50 to 52. Thanks to Dependabot.
* Bump mailapi from 1.6.4 to 1.6.7 #48. Thanks to Dependabot, Gary Gregory.
* Bump spotbugs-maven-plugin from 3.1.12.2 to 4.7.0.0, #55, #75, #79, #93, #116, #183. Thanks to Dependabot, Gary Gregory.
* Bump hsqldb from 2.5.0 to 2.5.2 #54, #128. Thanks to Dependabot.
* Bump commons-text from 1.8 to 1.9. Thanks to Gary Gregory.
* Bump servlet-api from 2.4 to 2.5 #58. Thanks to Gary Gregory.
* Bump maven-checkstyle-plugin from 3.1.0 to 3.1.2, #57, #97. Thanks to Gary Gregory.
* Bump commons-pool2 from 2.8.0 to 2.10.0, #61, #124. Thanks to Dependabot, Gary Gregory.
* Bump optional commons-codec from 1.14 to 1.15. Thanks to Gary Gregory.
* Bump checkstyle from 8.26 to 9.3, #66, #71, #90, #101, #118, #121, #132, #155. Thanks to Dependabot, Gary Gregory.
* Bump commons.jacoco.version 0.8.5 to 0.8.8 (Fixes Java 15 builds). Thanks to Gary Gregory.
* Bump tests from commons-pool2 2.10.0 to 2.11.1. Thanks to Gary Gregory.
* Bump tests from commons-dbcp2 2.7.0 to 2.9.0. Thanks to Gary Gregory.
* Bump snakeyaml from 1.26 to 1.30 #68, #126, #137. Thanks to Dependabot, Gary Gregory.
* Bump commons.japicmp.version from 0.14.1 to 0.15.7. Thanks to Gary Gregory.
* Bump junit from 4.13 to 4.13.2 #78. Thanks to Dependabot, Gary Gregory.
* Bump Apache Commons VFS 2.6.0 -> 2.9.0. Thanks to Gary Gregory.
* Bump jackson-databind from 2.11.3 to 2.13.2.2 ,#88, #94, #127, #159, #168, #173. Thanks to Dependabot.
* Bump commons.animal-sniffer.version 1.19 -> 1.20. Thanks to Gary Gregory.
* Bump commons.javadoc.version from 3.1.1 to 3.4.0. Thanks to Gary Gregory.
* Bump org.dbunit:dbunit from 2.7.0 to 2.7.3, #167. Thanks to Gary Gregory, Dependabot.
* Bump tests to hamcrest v2.2 #143. Thanks to John Patrick.
* Bump slf4j.version from 1.7.33 to 1.7.36 #166. Thanks to Dependabot.
* Bump mailapi from 1.6.6 to 2.0.1 #186. Thanks to Dependabot.
* Use GitHub Actions setup-java Maven cache property #190. Thanks to sullis.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration/download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.7
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in
various formats
Minor release with new features and updated dependencies.
Changes in this version include:
New features
------------
* CONFIGURATION-765: Refactor XMLConfiguration.write(Writer) to add XMLConfiguration.write(Writer, Transformer). Thanks to Gary Gregory.
Fixed Bugs
----------
* CONFIGURATION-761: Single argument DataConfiguration APIs always create empty arrays. Thanks to Gary Gregory.
* CONFIGURATION-767: NullPointerException in XMLConfiguration#createTransformer() when no FileLocator is set. Thanks to Gary Gregory.
* CONFIGURATION-768: XMLConfiguration#write does not indent XML elements. Thanks to Gary Gregory.
* CONFIGURATION-771: Update com.fasterxml.jackson.core:jackson-databind 2.10.0 -> 2.10.1. Thanks to Gary Gregory.
* CONFIGURATION-773: User's Guide > Properties files > Saving - small documentation bugs #41. Thanks to Dan Dragut.
Changes
-------
* CONFIGURATION-762: Use variable arguments. Thanks to Gary Gregory.
* Update ]com.puppycrawl.tools:checkstyle from 8.24 to 8.25. Thanks to Gary Gregory.
* CONFIGURATION-763: Update com.fasterxml.jackson.core:jackson-databind from 2.9.9 to 2.10.0. Thanks to Gary Gregory.
* [test] org.easymock:easymock 4.0.2 -> 4.1. Thanks to Gary Gregory.
* CONFIGURATION-775: Update Apache Commons VFS from 2.4.1 to 2.5.0. Thanks to Gary Gregory.
* CONFIGURATION-777: Update Apache Commons VFS from 2.5.0 to 2.6.0. Thanks to Gary Gregory.
* CONFIGURATION-778: Update optional Apache Commons Codec from 1.13 to 1.14. Thanks to Gary Gregory.
* Update tests from JUnit 4.12 to 4.13. Thanks to Gary Gregory.
* CONFIGURATION-779: Update optional jackson-databind from 2.10.1 to 2.10.2. Thanks to Gary Gregory.
* CONFIGURATION-783: Update com.fasterxml.jackson.core:jackson-databind from 2.10.2 to 2.10.3. Thanks to Gary Gregory.
* CONFIGURATION-784: Update org.yaml:snakeyaml from 1.25 to 1.26 and tweak parser configuration. Thanks to Gary Gregory.
* CONFIGURATION-785: Update org.springframework:spring-* from 4.3.25.RELEASE to 4.3.26.RELEASE. Thanks to Gary Gregory.
* Update org.apache.commons:commons-parent from 48 to 50 Thanks to Rob Tompkins.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration/download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.6
Release Notes
2019-09-13
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Tools to assist in the reading of configuration/preferences files in
various formats
Minor release with new features and updated dependencies.
Changes in this version include:
New features
------------
* Document "includeOptional" on the site. Thanks to Gary Gregory.
* CONFIGURATION-756: Allow for custom behavior to handle errors loading included properties files. Thanks to Gary Gregory.
Fixed Bugs
----------
* CONFIGURATION-750: XMLPropertyListConfiguration cannot set arrays in the correct plist form. Thanks to Jason Pickens, Gary Gregory, Emmanuel Bourg.
* Fix Javadoc for org.apache.commons.configuration2.PropertiesConfiguration.getIncludeOptional(). Thanks to Gary Gregory.
* CONFIGURATION-760: Properties file using cyclical includes cause a StackOverflowError instead of detecting the misconfiguration. Thanks to Gary Gregory.
Changes
-------
* CONFIGURATION-751: Update Apache Commons Text from 1.6 to 1.7. Thanks to Gary Gregory.
* CONFIGURATION-752: Update Apache Commons VFS from 2.3 to 2.4.1. Thanks to Gary Gregory.
* CONFIGURATION-754: Update Apache Commons Text from 1.7 to 1.8. Thanks to Gary Gregory.
* CONFIGURATION-755: [CVE-2014-0114] Update Apache Commons BeanUtils from 1.9.3 to 1.9.4. Thanks to Gary Gregory.
* Fix syntax in user guide documentation #33. Thanks to Kevin Wang.
* CONFIGURATION-757: Update org.yaml:snakeyaml from 1.24 to 1.25. Thanks to Gary Gregory.
* Update tests from org.apache.commons:commons-dbcp2 2.6.0 to 2.7.0. Thanks to Gary Gregory.
* Update tests from org.apache.commons:commons-pool2 2.6.2 to 2.7.0. Thanks to Gary Gregory.
* CONFIGURATION-758: Update commons-codec:commons-codec from 1.12 to 1.13. Thanks to Gary Gregory.
* Update tests from org.hsqldb:hsqldb 2.4.1 to 2.5.0. Thanks to Gary Gregory.
* Update tests from com.sun.mail:mailapi 1.6.3 to 1.6.4. Thanks to Gary Gregory.
* CONFIGURATION-759: Update Spring from 4.3.24.RELEASE to 4.3.25.RELEASE. Thanks to Gary Gregory.
* Update maven-checkstyle-plugin from 3.0.0 to 3.1.0. Thanks to Gary Gregory.
* Use current version of Checkstyle: 6.18 to 8.24. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
Download it from https://commons.apache.org/proper/commons-configuration/download_configuration.cgi
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.5
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Minor release with new features and updated dependencies.
Changes in this version include:
Fixed Bugs
----------
* CONFIGURATION-731: Allow user to specify the comments and separator chars. Thanks to Shuai Zhang, Gary Gregory.
Changes
-------
* CONFIGURATION-738: Update Jackson from 2.9.7 to 2.9.8. Thanks to Gary Gregory.
* CONFIGURATION-739: Update Apache Commons Codec from 1.11 to 1.12. Thanks to Gary Gregory.
* CONFIGURATION-740: Update Apache Commons VFS from 2.2 to 2.3. Thanks to Gary Gregory.
* CONFIGURATION-741: Update Spring from 4.3.19 to 4.3.22. Thanks to Gary Gregory.
* CONFIGURATION-743: Update optional library snakeyaml from 1.23 to 1.24. Thanks to Gary Gregory.
* CONFIGURATION-747: Update Apache Commons Lang from 3.8.1 to 3.9. Thanks to Gary Gregory.
* CONFIGURATION-746: Update Jackson from 2.9.8 to 2.9.9. Thanks to Gary Gregory.
* CONFIGURATION-747: Update Spring from 4.3.22 to 4.3.24. Thanks to Gary Gregory.
* CONFIGURATION-745: Add the special key "includeoptional" for properties files. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.4
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Minor release with new features and updated dependencies.
Changes in this version include:
New Features
------------
* CONFIGURATION-712: FileHandlerReloadingDetector now has a new refresh() method to
initialize the reloading state from the underlying file. This new
method is called by DefaultReloadingDetectorFactory when a new detector
instance is created. This makes sure that a changed configuration file
is directly detected on the first invocation of the
isReloadingRequired() method. Thanks to Rolland Hobbie.
* CONFIGURATION-713: Configuration properties can now be converted to regular expressions. Thanks to Lars W.
* CONFIGURATION-715: With JupIOFactory a new IOFactory implementation is now available that
implements handling of whitespace in a way closer to java.util.Properties.
This class can be used when stricter compatibility with Java standard
methods for reading and writing properties files is needed. Thanks to Patrick Schmidt.
* CONFIGURATION-716: JupIOFactory (introduced for CONFIGURATION-715) also implements
handling of escape sequences in a way closer to java.util.Properties. Thanks to Patrick Schmidt.
* CONFIGURATION-724: Add support for Commons Text 1.4 localhost string lookup as a default lookup.
* CONFIGURATION-726: Add support for Commons Text 1.5 new string lookups as default lookups.
Fixed Bugs
----------
* CONFIGURATION-710: Fixed numerous typos in user guides. Thanks to thc202.
* CONFIGURATION-711: Update Apache Commons Lang from 3.7 to 3.8.1.
* CONFIGURATION-727: org.apache.commons.configuration2.DatabaseConfiguration never closes result sets and statements.
Changes
-------
* CONFIGURATION-720: Replace use of deprecated Commons Lang string substitution code for Commons Text.
* CONFIGURATION-694: Update Java requirement from version 7 to 8.
* CONFIGURATION-721: Update Jackson from 2.9.6 to 2.9.7.
* CONFIGURATION-722: Update optional dependency snakeyaml from 1.21 to 1.23.
* CONFIGURATION-723: Update optional Spring dependencies from 4.3.18.RELEASE to 4.3.19.RELEASE.
* CONFIGURATION-725: Update Apache Commons Text from 1.4 to 1.5.
* CONFIGURATION-728: Update Apache Commons Text from 1.5 to 1.6.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.3
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a
variety of sources.
Version 2.3 is another maintenance release for the Configuration 2.x series. It
contains bug fixes and also a few new features like support for File and Path
as data types. The release is fully source and binary compatible with version
2.2.
Commons Configuration 2.3 requires Java 1.7 or higher.
New features
------------
* CONFIGURATION-692
ConversionExceptions thrown when accessing the properties of a configuration
now contain the original cause of the exception.
* CONFIGURATION-693
Configuration properties can now be converted to the data types File and
Path.
* CONFIGURATION-698
Add org.apache.commons.configuration2.MapConfiguration.toString().
* CONFIGURATION-698
Add toString() methods here and there to help debugging.
* CONFIGURATION-701
CompositeConfiguration now supports an addConfigurationFirst() method to add
child configurations with a higher priority.
Fixed Bugs
----------
* CONFIGURATION-652
Root node attributes are now updated correctly when loading XML configuration
files.
* CONFIGURATION-686
JSONConfiguration can now handle list structures with complex objects as
elements.
* CONFIGURATION-687
Fixed a memory leak in CombinedConfigurationBuilder. Builder for the child
sources were created each time a new result configuration was requested; thus
the list with child builders got longer and longer. This also had an impact
on reloading because unnecessary reloading operations could be triggered. Now
it is guaranteed that child builders are created only once.
* CONFIGURATION-688
Fixed a bug related to the handling of multiple include files in
PropertiesConfiguration.
* CONFIGURATION-690
ExprLookup.getVariables() no longer returns null, but a copy of the current
variables of this lookup object.
* CONFIGURATION-691
ExprLookup now handles expressions that do not return a string result by
converting them to string.
* CONFIGURATION-703
XMLConfiguration now handles elements correctly whose value consists only of
whitespace if the xml:space attribute is set to preserve.
Other changes
-------------
* CONFIGURATION-675
Added a .gitignore file to the project.
* Some dependencies have been updated to their most recent versions. However,
as no new features of these dependencies are used, the older versions should
still work. The following dependencies are affected:
o Update Apache Commons Lang dependency from 3.6 to 3.7.
o Update Apache Commons VFS from 2.1 to 2.2.
o Update Apache Commons Codec from 1.10 to 1.11.
o Update Spring from 4.3.9.RELEASE to 4.3.18.RELEASE
o Update optional dependency snakeyaml from 1.18 to 1.21.
o Update optional dependency Jackson from 2.8.9 to 2.9.6.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.2
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a
variety of sources.
Version 2.2 is another maintenance release for the Configuration 2.x series. It
contains a number of bug fixes and also some new features. Among the highlights
is the new support for JSON and YAML configurations. The release is fully
source and binary compatible with version 2.1.1.
Commons Configuration 2.2 requires Java 1.7 or higher.
New features
------------
* CONFIGURATION-666
Add convenience ctor ConfigurationRuntimeException(String, Object...).
* CONFIGURATION-665
Add org.apache.commons.configuration2.AbstractHierarchicalConfiguration.toString().
* CONFIGURATION-664
Add API org.apache.commons.configuration2.tree.ImmutableNode.getChildren(String).
* CONFIGURATION-660
Add toString() methods here and there to help debugging.
* CONFIGURATION-658
Add API org.apache.commons.configuration2.DataConfiguration.getURI(String)
methods.
* CONFIGURATION-656
Added new YAMLConfiguration class to support configuration files in YAML
format.
* CONFIGURATION-653
ConfigurationUtils and ConfigurationConverter now offer better support for
immutable configurations.
* CONFIGURATION-647
INIConfiguration can now be configured to use a custom separator between
properties and values when writing an ini file.
* CONFIGURATION-258
Added new JSONConfiguration class to support configuration files in JSON
format.
Fixed Bugs
----------
* CONFIGURATION-671
Fixed a NPE in INIConfiguration when saving a configuration with an empty
section.
* CONFIGURATION-669
The node model returned by SubnodeConfiguration.getNodeModel() has now the
correct root node set.
Other changes
-------------
* CONFIGURATION-673
Added an Automatic-Module-Name header to the manifest for compatibility with
the Java 9 module system.
* CONFIGURATION-669
Update optional Spring dependency from 4.2.5.RELEASE to 4.3.9.RELEASE.
* CONFIGURATION-667
Update Apache Commons Lang dependency from 3.3.2 to 3.6.
* CONFIGURATION-663
Fixed a typo in the upgrade to 2.0 guide.
* CONFIGURATION-661
Update platform requirement from Java 6 to 7.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
-----------------------------------------------------------------------------
Apache Commons Configuration
Version 2.1.1
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a
variety of sources.
The release is fully source and binary compatible with version 2.1.
Commons Configuration 2.1 requires Java 1.6 or higher.
Fixed Bugs
----------
* CONFIGURATION-649
Improved the handling of lists defined by a string with delimiter characters
in XMLConfiguration. Such lists now retain their original format when the
configuration is saved.
* CONFIGURATION-648
Made the IOFactory property of PropertiesBuilderParameter compatible with the
most recent version of Commons BeanUtils. This version changed the handling
of properties starting with multiple uppercase letters.
* CONFIGURATION-646
PropertiesConfiguration now works correctly with the auto-save mode.
* CONFIGURATION-644
PropertiesConfigurationLayout no longer duplicates a header comment if a file
with another comment is loaded. Thanks to Andrew DeMaria.
* CONFIGURATION-643
Documentation improvements for the user's guide.
* CONFIGURATION-641
Improved documentation of FileBased interface. The Javadocs now state
explicitly that the methods should not be called by client code. Exception
handling in configuration classes implementing FileLocatorAware has been
improved.
* CONFIGURATION-640
PropertiesConfiguration now correctly unescapes some special characters that
are always escaped in Java properties files.
Other changes
-------------
* CONFIGURATION-639
In the OSGi bundle manifest of the Commons Configuration bundle the package
imports for Spring packages are now marked as optional.
Thanks to Rico Neubauer.
* CONFIGURATION-638
Improved handling of temporary files and folders in unit tests.
Thanks to Ahmet Celik.
* CONFIGURATION-627
Updated dependency to Commons BeanUtils to version 1.9.3. This fixes an issue
with an exception stacktrace that was logged when a ConfigurationBuilder was
used.
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes-report.html
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
https://commons.apache.org/proper/commons-configuration/
-----------------------------------------------------------------------------
Commons Configuration Package
Version 2.1
Release Notes
Introducing Apache Commons Configuration
----------------------------------------
This document contains the release notes for this version of the Commons
Configuration component. It describes the changes since the previous version.
The Commons Configuration software library provides a generic configuration
interface which enables an application to read configuration data from a variety
of sources.
Version 2.1 is a first bug-fix release for the Configuration 2.x series and
also adds a new feature related to the integration with the Spring framework.
A list of all changes can be found below.
The release is fully source and binary compatible with version 2.0.
Commons Configuration 2.1 requires Java 1.6 or higher.
New Features
------------
* CONFIGURATION-636
PropertiesConfigurationLayout now allows manipulating the order of keys when
the properties file is written.
* CONFIGURATION-624
Support Commons Configuration as PropertySource in Spring.
Fixed Bugs
----------
* CONFIGURATION-634
HomeDirectoryLocationStrategy now works correctly in the mode that evaluates
the FileLocator's base path.
* CONFIGURATION-633
Interpolation was improved to better support properties with multiple values.