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
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+2-3
Original file line number
Diff line number
Diff line change
@@ -49,13 +49,13 @@ Getting Started
49
49
---------------
50
50
51
51
+ Make sure you have a [JIRA account](https://issues.apache.org/jira/).
52
-
+ Make sure you have a [GitHub account](https://github.com/signup/free).
52
+
+ Make sure you have a [GitHub account](https://github.com/signup/free). This is not essential, but makes providing patches much easier.
53
53
+ If you're planning to implement a new feature it makes sense to discuss your changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Codec's scope.
54
54
+ Submit a [Jira Ticket][jira] for your issue, assuming one does not already exist.
55
55
+ Clearly describe the issue including steps to reproduce when it is a bug.
56
56
+ Make sure you fill in the earliest version that you know has the issue.
57
57
+ Find the corresponding [repository on GitHub](https://github.com/apache/?query=commons-),
58
-
[fork](https://help.github.com/articles/fork-a-repo/) and check out your forked repository.
58
+
[fork](https://help.github.com/articles/fork-a-repo/) and check out your forked repository. If you don't have a GitHub account, you can still clone the Commons repository.
The Apache Commons Codec package contains simple encoder and decoders for
54
-
various formats such as Base64and Hexadecimal. In addition to these
53
+
The Apache Commons Codec component contains encoder and decoders for
54
+
various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these
55
55
widely used encoders and decoders, the codec package also maintains a
56
56
collection of phonetic encoding utilities.
57
57
@@ -62,8 +62,8 @@ More information can be found on the [Apache Commons Codec homepage](https://com
62
62
The [Javadoc](https://commons.apache.org/proper/commons-codec/apidocs) can be browsed.
63
63
Questions related to the usage of Apache Commons Codec should be posted to the [user mailing list](https://commons.apache.org/mail-lists.html).
64
64
65
-
Where can I get the latest release?
66
-
-----------------------------------
65
+
Getting the latest release
66
+
--------------------------
67
67
You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-codec/download_codec.cgi).
68
68
69
69
Alternatively, you can pull it from the central Maven repositories:
@@ -72,17 +72,25 @@ Alternatively, you can pull it from the central Maven repositories:
72
72
<dependency>
73
73
<groupId>commons-codec</groupId>
74
74
<artifactId>commons-codec</artifactId>
75
-
<version>1.16.0</version>
75
+
<version>1.16.1</version>
76
76
</dependency>
77
77
```
78
78
79
+
Building
80
+
--------
81
+
82
+
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
83
+
The required Java version is found in the `pom.xml` as the `maven.compiler.source` property.
84
+
85
+
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.
86
+
79
87
Contributing
80
88
------------
81
89
82
90
We accept Pull Requests via GitHub. The [developer mailing list](https://commons.apache.org/mail-lists.html) is the main channel of communication for contributors.
83
91
There are some guidelines which will make applying PRs easier for us:
84
92
+ No tabs! Please use spaces for indentation.
85
-
+ Respect the code style.
93
+
+ Respect the existing code style for each file.
86
94
+ 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.
87
95
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```.
88
96
@@ -91,13 +99,13 @@ You can learn more about contributing via GitHub in our [contribution guidelines
91
99
92
100
License
93
101
-------
94
-
This code is under the [Apache License v2](https://www.apache.org/licenses/LICENSE-2.0).
102
+
This code is licensed under the [Apache License v2](https://www.apache.org/licenses/LICENSE-2.0).
95
103
96
104
See the `NOTICE.txt` file for required notices and attributions.
97
105
98
-
Donations
99
-
---------
100
-
You like Apache Commons Codec? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development.
106
+
Donating
107
+
--------
108
+
You like Apache Commons Codec? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support development.
| Apache Commons Lang |[commons-lang](https://github.com/apache/commons-lang)|[commons-lang](https://commons.apache.org/proper/commons-lang)|
| Apache Commons Math |[commons-math](https://github.com/apache/commons-math)|[commons-math](https://commons.apache.org/proper/commons-math)|
148
-
| Apache Commons Net |[commons-net](https://github.com/apache/commons-net)|[commons-net](https://commons.apache.org/proper/commons-net)|
| Apache Commons Pool |[commons-pool](https://github.com/apache/commons-pool)|[commons-pool](https://commons.apache.org/proper/commons-pool)|
| Apache Commons Text |[commons-text](https://github.com/apache/commons-text)|[commons-text](https://commons.apache.org/proper/commons-text)|
Copy file name to clipboardexpand all lines: RELEASE-NOTES.txt
+51
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,54 @@
1
+
Apache Commons Codec 1.16.1-SNAPSHOT
2
+
RELEASE NOTES
3
+
4
+
The Apache Commons Codec component contains encoder and decoders for
5
+
various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these
6
+
widely used encoders and decoders, the codec package also maintains a
7
+
collection of phonetic encoding utilities.
8
+
9
+
Feature and fix release. Requires a minimum of Java 8.
10
+
11
+
Changes in this version include:
12
+
13
+
New features:
14
+
o Add Maven property project.build.outputTimestamp for build reproducibility. Thanks to Gary Gregory.
15
+
16
+
Fixed Bugs:
17
+
o CODEC-295: Test clean ups. Thanks to Gary Gregory.
18
+
o [StepSecurity] ci: Harden GitHub Actions #187. Thanks to step-security-bot, Gary Gregory.
19
+
o CODEC-295: Correct error in Base64 Javadoc #188. Thanks to Evan Saulpaugh.
20
+
o CODEC-295: Add minimum Java version in changes.xml #186. Thanks to Olivier Jaquemet, Gary Gregory.
21
+
o CODEC-310: Documentation update for the org.apache.commons.codec.digest.* package #208. Thanks to Yakov Shafranovich.
22
+
o Precompile regular expression in UnixCrypt.crypt(byte[], String). Thanks to Gary Gregory.
23
+
o CODEC-315: Fix possible IndexOutOfBoundException in PhoneticEngine.encode method #223. Thanks to Arthur Chan, Gary Gregory.
24
+
o CODEC-313: Fix possible ArrayIndexOutOfBoundsException in QuotedPrintableCodec.encodeQuotedPrintable() method #221. Thanks to Arthur Chan, Gary Gregory.
25
+
o CODEC-312: Fix possible StringIndexOutOfBoundException in MatchRatingApproachEncoder.encode() method #220. Thanks to Arthur Chan, Gary Gregory.
26
+
o CODEC-311: Fix possible ArrayIndexOutOfBoundException in RefinedSoundex.getMappingCode() #219. Thanks to Arthur Chan, Gary Gregory.
27
+
o CODEC-314: Fix possible IndexOutOfBoundsException in PercentCodec.insertAlwaysEncodeChars() method #222. Thanks to Arthur Chan, Gary Gregory.
28
+
o Deprecate UnixCrypt 0-argument constructor. Thanks to Gary Gregory.
29
+
o Deprecate Md5Crypt 0-argument constructor. Thanks to Gary Gregory.
30
+
o Deprecate Crypt 0-argument constructor. Thanks to Gary Gregory.
31
+
o Deprecate StringUtils 0-argument constructor. Thanks to Gary Gregory.
32
+
o Deprecate Resources 0-argument constructor. Thanks to Gary Gregory.
33
+
o Deprecate Charsets 0-argument constructor. Thanks to Gary Gregory.
34
+
o Deprecate CharEncoding 0-argument constructor. Thanks to Gary Gregory.
35
+
o Add missing version for animal-sniffer-maven-plugin. Thanks to Gary Gregory.
36
+
37
+
Changes:
38
+
o Bump commons-parent from 58 to 66. Thanks to Dependabot, Gary Gregory.
39
+
o Bump commons-lang3 from 3.12.0 to 3.14.0. Thanks to Gary Gregory.
40
+
o Bump commons-io from 2.13.0 to 2.15.1. Thanks to Gary Gregory.
41
+
42
+
43
+
For complete information on Apache Commons Codec, including instructions on how to submit bug reports,
44
+
patches, or suggestions for improvement, see the Apache Commons Codec website:
0 commit comments