You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apache Commons Text is a set of utility functions and reusable components for the purpose of processing
53
-
and manipulating text that should be of use in a Java environment.
52
+
Apache Commons Text is a set of utility functions and reusable components for processing
53
+
and manipulating text in a Java environment.
54
54
55
55
Documentation
56
56
-------------
@@ -69,7 +69,7 @@ Alternatively, you can pull it from the central Maven repositories:
69
69
<dependency>
70
70
<groupId>org.apache.commons</groupId>
71
71
<artifactId>commons-text</artifactId>
72
-
<version>1.13.1</version>
72
+
<version>1.14.0</version>
73
73
</dependency>
74
74
```
75
75
@@ -91,7 +91,7 @@ There are some guidelines which will make applying PRs easier for us:
91
91
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
92
92
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
93
93
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
94
-
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false`
94
+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
95
95
96
96
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
97
97
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).
Copy file name to clipboardExpand all lines: RELEASE-NOTES.txt
+57-48Lines changed: 57 additions & 48 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,63 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
14
See the License for the specific language governing permissions and
15
15
limitations under the License.
16
16
17
+
Apache Commons Text 1.14.0 Release Notes
18
+
------------------------------------------------
19
+
20
+
The Apache Commons Text team is pleased to announce the release of Apache Commons Text 1.14.0.
21
+
22
+
Apache Commons Text is a set of utility functions and reusable components for processing
23
+
and manipulating text in a Java environment.
24
+
25
+
Release 1.14.0. Requires Java 8 or above.
26
+
27
+
28
+
New features
29
+
------------
30
+
31
+
* Interface StringLookup now extends UnaryOperator<String>. Thanks to Gary Gregory.
32
+
* Interface TextRandomProvider extends IntUnaryOperator. Thanks to Gary Gregory.
33
+
* Add RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to Gary Gregory.
34
+
* Add PMD check to default Maven goal. Thanks to Gary Gregory.
35
+
* Add org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean). Thanks to Gary Gregory.
36
+
37
+
Fixed Bugs
38
+
----------
39
+
40
+
* Fix PMD UnnecessaryFullyQualifiedName in StringLookupFactory. Thanks to Gary Gregory.
41
+
* Fix PMD UnnecessaryFullyQualifiedName in DefaultStringLookupsHolder. Thanks to Gary Gregory.
42
+
* Fix PMD UnnecessaryFullyQualifiedName in PropertiesStringLookup. Thanks to Gary Gregory.
43
+
* Fix PMD UnnecessaryFullyQualifiedName in JavaPlatformStringLookup. Thanks to Gary Gregory.
44
+
* Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor. Thanks to Gary Gregory.
45
+
* Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor. Thanks to Gary Gregory.
46
+
* Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter. Thanks to Gary Gregory.
47
+
* Fix PMD AvoidBranchingStatementAsLastInLoop in TextStringBuilder. Thanks to Gary Gregory.
48
+
* Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder. Thanks to Gary Gregory.
49
+
* org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map CharSequence>) now throws NullPointerException instead of java.security.InvalidParameterException. Thanks to Gary Gregory.
50
+
51
+
Changes
52
+
-------
53
+
54
+
* Bump org.apache.commons:commons-parent from 81 to 85 #668. Thanks to Dependabot, Gary Gregory.
55
+
* Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to Gary Gregory.
56
+
* Bump graalvm.version from 24.2.0 to 24.2.2 #665, #681. Thanks to Dependabot, Gary Gregory.
57
+
* Bump commons.bytebuddy.version from 1.17.5 to 1.17.6 (#677). Thanks to Dependabot.
58
+
* Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0 #680. Thanks to Dependabot.
59
+
60
+
61
+
Historical list of changes: https://commons.apache.org/proper/commons-text/changes.html
62
+
63
+
For complete information on Apache Commons Text, including instructions on how to submit bug reports,
64
+
patches, or suggestions for improvement, see the Apache Commons Text website:
0 commit comments