mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
call next release 5.5.0
This commit is contained in:
parent
f73913cd84
commit
e18b5576f0
@ -89,7 +89,7 @@ allprojects {
|
||||
// apply plugin: 'eclipse'
|
||||
apply plugin: 'idea'
|
||||
|
||||
version = '5.4.2-SNAPSHOT'
|
||||
version = '5.5.0-SNAPSHOT'
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -42,7 +42,7 @@ under the License.
|
||||
|
||||
<description>The Apache POI project Ant build.</description>
|
||||
|
||||
<property name="version.id" value="5.4.2-SNAPSHOT"/>
|
||||
<property name="version.id" value="5.5.0-SNAPSHOT"/>
|
||||
<property name="release.rc" value=""/>
|
||||
|
||||
<property environment="env"/>
|
||||
|
||||
@ -24,12 +24,12 @@
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi-bundle</artifactId>
|
||||
<packaging>bundle</packaging>
|
||||
<version>5.4.2-SNAPSHOT</version>
|
||||
<version>5.5.0-SNAPSHOT</version>
|
||||
|
||||
<name>Apache POI OSGi bundle</name>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<poi.version>5.4.2-SNAPSHOT</poi.version>
|
||||
<poi.version>5.5.0-SNAPSHOT</poi.version>
|
||||
<pax.exam.version>4.14.0</pax.exam.version>
|
||||
</properties>
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ import org.apache.poi.util.Internal;
|
||||
* Helper class for number related operations.
|
||||
* <p>Note: This class is for internal POI usage only.</p>
|
||||
*
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
@Internal
|
||||
public class NumberHelper {
|
||||
|
||||
@ -269,7 +269,7 @@ public class XSSFTextParagraph implements Iterable<XSSFTextRun>{
|
||||
*
|
||||
* @return the color of bullet characters within a given paragraph.
|
||||
* A <code>null</code> value means to use the text font color.
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public byte[] getBulletFontColorAsBytes() {
|
||||
ParagraphPropertyFetcher<byte[]> fetcher = new ParagraphPropertyFetcher<byte[]>(getLevel()) {
|
||||
@ -301,7 +301,7 @@ public class XSSFTextParagraph implements Iterable<XSSFTextRun>{
|
||||
* Set the color to be used on bullet characters within a given paragraph.
|
||||
*
|
||||
* @param colorArray the bullet color (as byte array)
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public void setBulletFontColor(byte[] colorArray) {
|
||||
CTTextParagraphProperties pr = _p.isSetPPr() ? _p.getPPr() : _p.addNewPPr();
|
||||
|
||||
@ -63,7 +63,7 @@ public class XSSFTextRun {
|
||||
|
||||
/**
|
||||
* @param rgb
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public void setFontColor(byte[] rgb) {
|
||||
CTTextCharacterProperties rPr = getRPr();
|
||||
@ -89,7 +89,7 @@ public class XSSFTextRun {
|
||||
|
||||
/**
|
||||
* @return the font color as a byte array.
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public byte[] getFontColorAsBytes() {
|
||||
|
||||
|
||||
@ -2096,7 +2096,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook, Date1904Su
|
||||
* Adds an External Links Table to the workbook.
|
||||
*
|
||||
* @param externalLinksTable the External Links Table to add
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
@Internal
|
||||
public void addExternalLinksTable(ExternalLinksTable externalLinksTable) {
|
||||
@ -2109,7 +2109,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook, Date1904Su
|
||||
/**
|
||||
* @param index the index at which to add the External Links Table
|
||||
* @return externalLinksTable the External Links Table to add
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
@Internal
|
||||
public ExternalLinksTable getExternalLinksTable(int index) {
|
||||
|
||||
@ -1842,7 +1842,7 @@ public class XWPFRun implements ISDTContents, IRunElement, CharacterRun {
|
||||
/**
|
||||
* Returns the charts embedded in the run.
|
||||
* @return A list of the XWPFChart objects embedded in the run.
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public List<XWPFChart> getEmbeddedCharts() {
|
||||
return Collections.unmodifiableList(charts);
|
||||
|
||||
@ -45,7 +45,7 @@ public class XWPFSDTCell extends XWPFAbstractSDT implements ICell {
|
||||
/**
|
||||
* Return the underlying XML bean.
|
||||
* @return the underlying CTSdtCell bean.
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public CTSdtCell getCTSdtCell() {
|
||||
return sdtCell;
|
||||
|
||||
@ -124,7 +124,7 @@ public class XWPFSDTContentCell implements ISDTContent {
|
||||
/**
|
||||
* Return the underlying XML bean.
|
||||
* @return the underlying CTSdtContentCell bean.
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public CTSdtContentCell getCTSdtContentCell() {
|
||||
return sdtContentCell;
|
||||
|
||||
@ -182,7 +182,7 @@ public class HSSFColor implements Color {
|
||||
* @param index
|
||||
* @param index2
|
||||
* @param rgb combined value of RGB
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public HSSFColor(int index, int index2, int rgb) {
|
||||
this.index = index;
|
||||
|
||||
@ -288,7 +288,7 @@ public final class AnalysisToolPak implements UDFFinder {
|
||||
* @param func the function to register
|
||||
* @param force force registration even if the function is already registered or unknown to POI
|
||||
* @throws IllegalArgumentException if the function is unknown or already registered (and `force` is not true).
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public static void registerFunction(String name, FreeRefFunction func, boolean force) {
|
||||
AnalysisToolPak inst = (AnalysisToolPak)instance;
|
||||
|
||||
@ -1008,7 +1008,7 @@ public class DateUtil {
|
||||
* If disabled, the cache will not be used and each check will be performed independently.
|
||||
*
|
||||
* @param enable true to enable the cache, false to disable it (enabled, by default)
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public static void enableThreadLocalCache(final boolean enable) {
|
||||
// enable thread-local cache for date format checking
|
||||
|
||||
@ -880,7 +880,7 @@ public final class CellUtil {
|
||||
* @param dest destination cell style
|
||||
* @param destWorkbook destination workbook (can be null but some font info will not be copied if null is passed)
|
||||
* @throws IllegalArgumentException if source or destination styles are null
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
@Internal
|
||||
public static void cloneStyle(CellStyle src, CellStyle dest, Workbook destWorkbook) {
|
||||
|
||||
@ -71,7 +71,7 @@ public class DefaultTempFileCreationStrategy implements TempFileCreationStrategy
|
||||
* Creates the strategy allowing to set a custom directory for the temporary files.
|
||||
* <p>
|
||||
* If you provide a non-null dir as input, it must be a directory (if it already exists).
|
||||
* Since POI 5.4.2, this is checked at construction time. In previous versions, it was checked
|
||||
* Since POI 5.5.0, this is checked at construction time. In previous versions, it was checked
|
||||
* at the first call to {@link #createTempFile(String, String)} or {@link #createTempDirectory(String)}.
|
||||
* </p>
|
||||
*
|
||||
|
||||
@ -626,7 +626,7 @@ public final class IOUtils {
|
||||
* @param name The name of the file to create.
|
||||
* @return The created file.
|
||||
* @throws IOException If path traversal is detected.
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public static File newFile(final File parent, final String name) throws IOException {
|
||||
final File file = new File(parent, name);
|
||||
|
||||
@ -62,7 +62,7 @@ public final class TempFile {
|
||||
*
|
||||
* @param strategy The new strategy to be used to create the temporary files for this thread.
|
||||
* <code>null</code> can be used to reset the strategy for this thread to the default one.
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public static void setThreadLocalTempFileCreationStrategy(TempFileCreationStrategy strategy) {
|
||||
if (strategy == null) {
|
||||
@ -104,7 +104,7 @@ public final class TempFile {
|
||||
* @param task the task to be executed with the given temp file strategy
|
||||
* @return the result of the given task
|
||||
*
|
||||
* @since POI 5.4.2
|
||||
* @since POI 5.5.0
|
||||
*/
|
||||
public static <R> R withStrategy(TempFileCreationStrategy newStrategy, Supplier<? extends R> task) {
|
||||
Objects.requireNonNull(newStrategy, "newStrategy");
|
||||
|
||||
@ -70,7 +70,7 @@
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<release version="5.4.2" date="2025-??-??">
|
||||
<release version="5.5.0" date="2025-??-??">
|
||||
<summary>
|
||||
<summary-item>Upgrade batik dependency to 1.19</summary-item>
|
||||
<summary-item>Upgrade bouncycastle dependency to 1.81</summary-item>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user