Skip to content

Commit 5aeecdc

Browse files
committed
Prepare for the next release candidate
1 parent 28ad955 commit 5aeecdc

File tree

4 files changed

+72
-17
lines changed

4 files changed

+72
-17
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Apache Commons BeanUtils
4545

4646
[![Java CI](https://github.com/apache/commons-beanutils/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-beanutils/actions/workflows/maven.yml)
4747
[![Maven Central](https://img.shields.io/maven-central/v/commons-beanutils/commons-beanutils?label=Maven%20Central)](https://search.maven.org/artifact/commons-beanutils/commons-beanutils)
48-
[![Javadocs](https://javadoc.io/badge/commons-beanutils/commons-beanutils/1.10.1.svg)](https://javadoc.io/doc/commons-beanutils/commons-beanutils/1.10.1)
48+
[![Javadocs](https://javadoc.io/badge/commons-beanutils/commons-beanutils/1.11.0.svg)](https://javadoc.io/doc/commons-beanutils/commons-beanutils/1.11.0)
4949
[![CodeQL](https://github.com/apache/commons-beanutils/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-beanutils/actions/workflows/codeql-analysis.yml)
5050
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-beanutils/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-beanutils)
5151

@@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven repositories:
6868
<dependency>
6969
<groupId>commons-beanutils</groupId>
7070
<artifactId>commons-beanutils</artifactId>
71-
<version>1.10.1</version>
71+
<version>1.11.0</version>
7272
</dependency>
7373
```
7474

@@ -90,7 +90,7 @@ There are some guidelines which will make applying PRs easier for us:
9090
+ 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.
9191
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
9292
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
93-
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false`
93+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
9494

9595
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
9696
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).

RELEASE-NOTES.txt

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
Apache Commons BeanUtils 1.11.0 Release Notes
2+
---------------------------------------------
3+
4+
The Apache Commons BeanUtils team is pleased to announce the release of Apache Commons BeanUtils 1.11.0.
5+
6+
Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.
7+
8+
This is a maintenance release and requires Java 8.
9+
10+
Changes in this version include:
11+
12+
New features:
13+
o Add org.apache.commons.beanutils.SuppressPropertiesBeanIntrospector.SUPPRESS_DECLARING_CLASS. Thanks to Gary Gregory.
14+
15+
Fixed Bugs:
16+
o BeanComparator.compare(T, T) now throws IllegalArgumentException instead of RuntimeException to wrap all cases of ReflectiveOperationException. Thanks to Gary Gregory.
17+
o MappedMethodReference.get() now throws IllegalStateException instead of RuntimeException to wrap cases of NoSuchMethodException. Thanks to Gary Gregory.
18+
o ResultSetIterator.get(String) now throws IllegalArgumentException instead of RuntimeException to wrap cases of SQLException. Thanks to Gary Gregory.
19+
o ResultSetIterator.hasNext() now throws IllegalStateException instead of RuntimeException to wrap cases of SQLException. Thanks to Gary Gregory.
20+
o ResultSetIterator.next() now throws IllegalStateException instead of RuntimeException to wrap cases of SQLException. Thanks to Gary Gregory.
21+
o ResultSetIterator.set(String, Object) now throws IllegalArgumentException instead of RuntimeException to wrap cases of SQLException. Thanks to Gary Gregory.
22+
o ResultSetIterator.set(String, String, Object) now throws IllegalArgumentException instead of RuntimeException to wrap cases of SQLException. Thanks to Gary Gregory.
23+
24+
Changes:
25+
o Bump org.apache.commons:commons-parent from 81 to 84. Thanks to Gary Gregory.
26+
o Bump commons-logging:commons-logging from 1.3.4 to 1.3.5. Thanks to Gary Gregory.
27+
28+
29+
Historical list of changes: https://commons.apache.org/proper/commons-beanutils/changes.html
30+
31+
For complete information on Apache Commons BeanUtils, including instructions on how to submit bug reports,
32+
patches, or suggestions for improvement, see the Apache Commons BeanUtils website:
33+
34+
https://commons.apache.org/proper/commons-beanutils
35+
36+
Download it from https://commons.apache.org/proper/commons-beanutils/download_beanutils.cgi
37+
38+
Have fun!
39+
-Apache Commons BCEL team
40+
41+
Feedback
42+
--------
43+
Open source works best when you give feedback:
44+
45+
https://commons.apache.org/beanutils
46+
47+
Please direct all bug reports to JIRA:
48+
49+
https://issues.apache.org/jira/browse/BEANUTILS
50+
51+
Or subscribe to the commons-user mailing list
52+
53+
The Apache Commons Team
54+
55+
-----------------------------------------------------------------------------
156
Apache Commons BeanUtils 1.10.1 Release Notes
257
---------------------------------------------
358

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<title>Release Notes</title>
2929
</properties>
3030
<body>
31-
<release version="1.11.0" date="YYYY-MM-DD" description="This is a maintenance release and requires Java 8.">
31+
<release version="1.11.0" date="2025-05-25" description="This is a maintenance release and requires Java 8.">
3232
<!-- FIX -->
3333
<action type="fix" dev="ggregory" due-to="Gary Gregory">BeanComparator.compare(T, T) now throws IllegalArgumentException instead of RuntimeException to wrap all cases of ReflectiveOperationException.</action>
3434
<action type="fix" dev="ggregory" due-to="Gary Gregory">MappedMethodReference.get() now throws IllegalStateException instead of RuntimeException to wrap cases of NoSuchMethodException.</action>

src/site/xdoc/download_beanutils.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -115,32 +115,32 @@ limitations under the License.
115115
</p>
116116
</subsection>
117117
</section>
118-
<section name="Apache Commons BeanUtils 1.10.1 ">
118+
<section name="Apache Commons BeanUtils 1.11.0 ">
119119
<subsection name="Binaries">
120120
<table>
121121
<tr>
122-
<td><a href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.10.1-bin.tar.gz">commons-beanutils-1.10.1-bin.tar.gz</a></td>
123-
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.10.1-bin.tar.gz.sha512">sha512</a></td>
124-
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.10.1-bin.tar.gz.asc">pgp</a></td>
122+
<td><a href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.11.0-bin.tar.gz">commons-beanutils-1.11.0-bin.tar.gz</a></td>
123+
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.11.0-bin.tar.gz.sha512">sha512</a></td>
124+
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.11.0-bin.tar.gz.asc">pgp</a></td>
125125
</tr>
126126
<tr>
127-
<td><a href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.10.1-bin.zip">commons-beanutils-1.10.1-bin.zip</a></td>
128-
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.10.1-bin.zip.sha512">sha512</a></td>
129-
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.10.1-bin.zip.asc">pgp</a></td>
127+
<td><a href="[preferred]/commons/beanutils/binaries/commons-beanutils-1.11.0-bin.zip">commons-beanutils-1.11.0-bin.zip</a></td>
128+
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.11.0-bin.zip.sha512">sha512</a></td>
129+
<td><a href="https://downloads.apache.org/commons/beanutils/binaries/commons-beanutils-1.11.0-bin.zip.asc">pgp</a></td>
130130
</tr>
131131
</table>
132132
</subsection>
133133
<subsection name="Source">
134134
<table>
135135
<tr>
136-
<td><a href="[preferred]/commons/beanutils/source/commons-beanutils-1.10.1-src.tar.gz">commons-beanutils-1.10.1-src.tar.gz</a></td>
137-
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.10.1-src.tar.gz.sha512">sha512</a></td>
138-
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.10.1-src.tar.gz.asc">pgp</a></td>
136+
<td><a href="[preferred]/commons/beanutils/source/commons-beanutils-1.11.0-src.tar.gz">commons-beanutils-1.11.0-src.tar.gz</a></td>
137+
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.11.0-src.tar.gz.sha512">sha512</a></td>
138+
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.11.0-src.tar.gz.asc">pgp</a></td>
139139
</tr>
140140
<tr>
141-
<td><a href="[preferred]/commons/beanutils/source/commons-beanutils-1.10.1-src.zip">commons-beanutils-1.10.1-src.zip</a></td>
142-
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.10.1-src.zip.sha512">sha512</a></td>
143-
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.10.1-src.zip.asc">pgp</a></td>
141+
<td><a href="[preferred]/commons/beanutils/source/commons-beanutils-1.11.0-src.zip">commons-beanutils-1.11.0-src.zip</a></td>
142+
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.11.0-src.zip.sha512">sha512</a></td>
143+
<td><a href="https://downloads.apache.org/commons/beanutils/source/commons-beanutils-1.11.0-src.zip.asc">pgp</a></td>
144144
</tr>
145145
</table>
146146
</subsection>

0 commit comments

Comments
 (0)