Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cfsimplicity committed Jul 9, 2024
2 parents bf8f54d + ff77a06 commit ad26130
Show file tree
Hide file tree
Showing 24 changed files with 22 additions and 21 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 4.1.1 - 9 July 2024

- Maintenance
-\#372 Upgrade POI to 5.3.0, commons-csv to 1.11.0 and excel-streaming-reader to 4.4.0

## 4.1.0 - 22 June 2024

- Enhancements
Expand Down
2 changes: 1 addition & 1 deletion ModuleConfig.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ component{
this.author = "Julian Halliwell";
this.webURL = "https://github.com/cfsimplicity/spreadsheet-cfml";
this.description = "CFML Spreadsheet Library";
this.version = "4.1.0";
this.version = "4.1.1";
this.autoMapModels = false;

function configure(){
Expand Down
5 changes: 2 additions & 3 deletions Spreadsheet.cfc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
component accessors="true"{

//"static"
property name="version" default="4.1.0" setter="false";
property name="osgiLibBundleVersion" default="5.2.5.3" setter="false"; //first 3 octets = POI version; increment 4th with other jar updates
property name="version" default="4.1.1" setter="false";
property name="osgiLibBundleVersion" default="5.3.0.0" setter="false"; //first 3 octets = POI version; increment 4th with other jar updates
property name="osgiLibBundleSymbolicName" default="spreadsheet-cfml" setter="false";
property name="exceptionType" default="cfsimplicity.spreadsheet" setter="false";
//configurable
Expand Down Expand Up @@ -1088,7 +1088,6 @@ component accessors="true"{
var workbook = getWorkbookHelper().createWorkBook( argumentCollection=createArgs );
getSheetHelper().validateSheetName( arguments.sheetName );
createSheet( workbook, arguments.sheetName, arguments.xmlFormat );
setActiveSheet( workbook, arguments.sheetName );
return workbook;
}

Expand Down
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "Spreadsheet CFML",
"slug" : "spreadsheet-cfml",
"version" : "4.1.0",
"version" : "4.1.1",
"shortDescription" : "CFML spreadsheet library",
"author" : "Julian Halliwell",
"location" : "forgeboxStorage",
Expand Down
22 changes: 11 additions & 11 deletions build/lib-osgi.mf
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Spreadsheet CFML
Bundle-SymbolicName: spreadsheet-cfml
Bundle-Version: 5.2.5.3
Bundle-ClassPath: commons-codec-1.16.0.jar,
Bundle-Version: 5.3.0.0
Bundle-ClassPath: commons-codec-1.17.0.jar,
commons-collections4-4.4.jar,
commons-compress-1.25.0.jar,
commons-csv-1.10.0.jar,
commons-io-2.15.0.jar,
commons-compress-1.26.2.jar,
commons-csv-1.11.0.jar,
commons-io-2.16.1.jar,
commons-math3-3.6.1.jar,
excel-streaming-reader-4.3.1.jar,
log4j-api-2.22.0.jar,
poi-5.2.5.jar,
poi-ooxml-5.2.5.jar,
poi-ooxml-full-5.2.5.jar,
excel-streaming-reader-4.4.0.jar,
log4j-api-2.23.1.jar,
poi-5.3.0.jar,
poi-ooxml-5.3.0.jar,
poi-ooxml-full-5.3.0.jar,
slf4j-api-2.0.13.jar,
SparseBitSet-1.3.jar,
spreadsheet-cfml.jar,
xmlbeans-5.2.0.jar
xmlbeans-5.2.1.jar
4 changes: 2 additions & 2 deletions build/task.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ component{
property name="classpathDirectories";
property name="libPath";
property name="minimumSupportedJvmVersion" default="8";//update this as necessary
property name="ooxmlVersion" default="5.2.5";
property name="ooxmlVersion" default="5.3.0";
property name="rootPath";
property name="srcPath";
property name="tempDirectoryPath";
property name="xmlBeansVersion" default="5.2.0";
property name="xmlBeansVersion" default="5.2.1";

void function run(){
variables.tempDirectoryPath = getCWD() & "temp/";
Expand Down
Binary file modified lib-osgi.jar
Binary file not shown.
Binary file removed lib/commons-codec-1.16.0.jar
Binary file not shown.
Binary file added lib/commons-codec-1.17.0.jar
Binary file not shown.
Binary file removed lib/commons-compress-1.25.0.jar
Binary file not shown.
Binary file added lib/commons-compress-1.26.2.jar
Binary file not shown.
Binary file removed lib/commons-csv-1.10.0.jar
Binary file not shown.
Binary file added lib/commons-csv-1.11.0.jar
Binary file not shown.
Binary file removed lib/commons-io-2.15.0.jar
Binary file not shown.
Binary file added lib/commons-io-2.16.1.jar
Binary file not shown.
Binary file not shown.
Binary file removed lib/log4j-api-2.22.0.jar
Binary file not shown.
Binary file added lib/log4j-api-2.23.1.jar
Binary file not shown.
Binary file renamed lib/poi-5.2.5.jar → lib/poi-5.3.0.jar
Binary file not shown.
Binary file renamed lib/poi-ooxml-5.2.5.jar → lib/poi-ooxml-5.3.0.jar
Binary file not shown.
Binary file not shown.
Binary file modified lib/spreadsheet-cfml.jar
Binary file not shown.
Binary file renamed lib/xmlbeans-5.2.0.jar → lib/xmlbeans-5.2.1.jar
Binary file not shown.
3 changes: 0 additions & 3 deletions test/.gitignore

This file was deleted.

0 comments on commit ad26130

Please sign in to comment.