Skip to content

Commit b89f240

Browse files
authored
Merge pull request #140 from PHPJasper/develop
Version 3.0.0
2 parents 5d3bf18 + 18d9a47 commit b89f240

File tree

93 files changed

+163
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+163
-9
lines changed

CHANGES.md

+9

README.md

+1-1

bin/jasperstarter/CHANGES

100644100755
+103
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,109 @@
22
JasperStarter - Running JasperReports from command line
33
========================================================
44

5+
Release notes - JasperStarter - Version 3.5.0
6+
---------------------------------------------
7+
8+
** Bug
9+
* [JAS-134] - "InterruptedException" should not be ignored in App.java
10+
* [JAS-135] - comparisons between unrelated types in Config.java
11+
12+
** New Feature
13+
* [JAS-131] - Jasperstarter does not provide a way to use the query string saved in the report itself
14+
15+
** Task
16+
* [JAS-133] - Release Pipeline takes longer than before
17+
* [JAS-136] - Throwable.printStackTrace(...) should not be called in Report.java setLookAndFeel()
18+
* [JAS-137] - Do not use a bitwise operator with a Boolean-like operand in ParameterPanel.java
19+
* [JAS-138] - Do not use a bitwise operator with a Boolean-like operand in ParameterPrompt.java
20+
21+
22+
Release notes - JasperStarter - Version 3.4.1
23+
---------------------------------------------
24+
25+
** Bug
26+
* [JAS-132] - Security alert on org.springframework:spring-core
27+
Updated springframework to 4.3.21
28+
29+
CVE-2016-5007 - moderate severity - Vulnerable versions: < 4.3.1
30+
CVE-2018-1275 - high severity - Vulnerable versions: < 4.3.16
31+
CVE-2018-1272 - moderate severity - Vulnerable versions: < 4.3.15
32+
CVE-2018-1271 - moderate severity - Vulnerable versions: < 4.3.15
33+
CVE-2018-1270 - high severity - Vulnerable versions: < 4.3.16
34+
CVE-2018-1257 - moderate severity - Vulnerable versions: < 4.3.17
35+
36+
37+
Release notes - JasperStarter - Version 3.4.0
38+
---------------------------------------------
39+
40+
JasperStarter-3.2.0 silently dropped Java7 support by using the
41+
latest available JasperReports Library.
42+
JasperReports-6.4.0 is the last release which works with Java7 so
43+
JasperStarter-3.1.0 was the latest release supporting Java7.
44+
45+
Now JasperStarter needs Java8 at a minimum and is manually tested
46+
with OpenJDK-8, OpenJDK-10, OpenJDK-11. Automatic testing is on the
47+
way (see JAS-128).
48+
There will be a special release supporting Java7.
49+
50+
"Diskless" operation using stdin and stdout for input data and
51+
output is now complete. See ([JAS-97] and [JAS-89]).
52+
53+
A public API allows direct integration with Python using jpy
54+
([JAS-125]).
55+
56+
Known bugs:
57+
* [JAS-120] - JasperReports-6.7.0 Version does not match with
58+
reported version from the jar file in
59+
This is an upstream error which causes JasperStarter to put out
60+
a wrong JasperReports version number of 6.6.0 instead of 6.7.0
61+
if you call: jasperstarter -V
62+
63+
** Bug
64+
* [JAS-111] - JRE 1.7 incompatibility - not fixed in the main
65+
release but clarified.
66+
* [JAS-122] - Runtime error if a chart with "chart customizers" is
67+
used
68+
* [JAS-126] - Jasperstarter does not usefully propagate
69+
compilation errors
70+
71+
** New Feature
72+
* [JAS-97] - Use stdout for the resulting PDF (so we don't have to
73+
write to the hosting server's storage)
74+
* [JAS-125] - Make report fill accessible via API
75+
76+
** Task
77+
* [JAS-127] - Enable dependency caching in build pipeline
78+
* [JAS-129] - Remove test dependency to font Arial
79+
* [JAS-130] - launch4j-maven-plugin:1.5.2 depends on 32bit
80+
libraries
81+
82+
83+
Release notes - JasperStarter - Version 3.3.0
84+
---------------------------------------------
85+
86+
Known bugs:
87+
* [JAS-120] - JasperReports-6.7.0 Version does not match with reported version from the jar file in
88+
This is an upstream error which causes JasperStarter to put out
89+
a wrong JasperReports version number of 6.6.0 instead of 6.7.0
90+
if you call: jasperstarter -V
91+
92+
** Bug
93+
* [JAS-116] - SSL error
94+
* [JAS-121] - Container 'Build' exceeded memory limit.
95+
* [JAS-122] - Runtime error if a chart with "chart customizers" is used
96+
97+
** New Feature
98+
* [JAS-113] - JSONQL data source support
99+
100+
** Task
101+
* [JAS-102] - Pipeline: enable build artifact upload to download section
102+
* [JAS-119] - Include JasperReports-6.7.0
103+
104+
** Improvement
105+
* [JAS-89] - Accept stdin for datafile input
106+
107+
5108
Release Notes - JasperStarter - Version 3.2.1
6109
---------------------------------------------
7110

bin/jasperstarter/LICENSE

100644100755
File mode changed.

bin/jasperstarter/NOTICE

100644100755
File mode changed.

bin/jasperstarter/README.md

100644100755
+47-5

bin/jasperstarter/bin/jasperstarter

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
if(test -L "$0") then
1919
auxlink=`ls -l "$0" | sed 's/^[^>]*-> //g'`
2020
HOME_FOLDER=`dirname "$auxlink"`/..
21-
else
21+
else
2222
HOME_FOLDER=`dirname "$0"`/..
2323
fi
2424

5.04 KB
Binary file not shown.

bin/jasperstarter/lib/ant-1.7.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/ant-launcher-1.7.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/antlr-2.7.7.jar

435 KB
Binary file not shown.

bin/jasperstarter/lib/antlr-3.0b5.jar

475 KB
Binary file not shown.

bin/jasperstarter/lib/argparse4j-0.5.0.jar

100644100755
File mode changed.

bin/jasperstarter/lib/avalon-framework-impl-4.2.0.jar

100644100755
File mode changed.

bin/jasperstarter/lib/barbecue-1.5-beta1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/barcode4j-2.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-anim-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-awt-util-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-bridge-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-constants-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-css-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-dom-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-ext-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-gvt-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-i18n-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-parser-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-script-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-svg-dom-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-svggen-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-util-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/batik-xml-1.9.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/bcprov-jdk15on-1.52.jar

100644100755
File mode changed.

bin/jasperstarter/lib/castor-core-1.3.3.jar

100644100755
File mode changed.

bin/jasperstarter/lib/castor-xml-1.3.3.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-beanutils-1.9.3.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-cli-1.0.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-codec-1.10.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-collections-3.2.2.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-collections4-4.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-digester-2.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-io-2.5.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-lang-2.6.jar

100644100755
File mode changed.

bin/jasperstarter/lib/commons-logging-1.1.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/core-3.2.1.jar

-532 KB
Binary file not shown.

bin/jasperstarter/lib/ecj-4.4.2.jar

100644100755
File mode changed.

bin/jasperstarter/lib/groovy-all-2.4.12.jar

100644100755
File mode changed.

bin/jasperstarter/lib/icu4j-57.1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/itext-2.1.7.js6.jar

100644100755
File mode changed.
Binary file not shown.
Binary file not shown.
-202 KB
Binary file not shown.
314 KB
Binary file not shown.
-905 KB
Binary file not shown.
1.28 MB
Binary file not shown.
-27.9 KB
Binary file not shown.
-5.24 MB
Binary file not shown.
5.28 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.

bin/jasperstarter/lib/jasperreports-fonts-6.0.0.jar

100644100755
File mode changed.

bin/jasperstarter/lib/jasperstarter.jar

100644100755
3.04 KB
Binary file not shown.

bin/jasperstarter/lib/javax.inject-1.jar

100644100755
File mode changed.

bin/jasperstarter/lib/jcalendar-1.4.jar

100644100755
File mode changed.

bin/jasperstarter/lib/jcommon-1.0.23.jar

100644100755
File mode changed.

bin/jasperstarter/lib/jfreechart-1.0.19.jar

100644100755
File mode changed.
-557 KB
Binary file not shown.
619 KB
Binary file not shown.

bin/jasperstarter/lib/jython-2.7.0.jar

100644100755
File mode changed.

bin/jasperstarter/lib/log4j-1.2.17.jar

100644100755
File mode changed.
Binary file not shown.
-2.19 MB
Binary file not shown.
-200 KB
Binary file not shown.
Binary file not shown.
-44.5 KB
Binary file not shown.
-435 KB
Binary file not shown.

bin/jasperstarter/lib/poi-3.17.jar

100644100755
File mode changed.

bin/jasperstarter/lib/rhino-1.7.7.2.jar

100644100755
File mode changed.

bin/jasperstarter/lib/serializer-2.7.2.jar

100644100755
File mode changed.

bin/jasperstarter/lib/servlet-api-2.5.jar

100644100755
File mode changed.
Binary file not shown.
Binary file not shown.
Binary file not shown.

bin/jasperstarter/lib/stax-1.2.0.jar

100644100755
File mode changed.

bin/jasperstarter/lib/stax-api-1.0-2.jar

100644100755
File mode changed.

bin/jasperstarter/lib/stax-api-1.0.1.jar

100644100755
File mode changed.
125 KB
Binary file not shown.

bin/jasperstarter/lib/xalan-2.7.2.jar

100644100755
File mode changed.

bin/jasperstarter/lib/xml-apis-1.3.04.jar

100644100755
File mode changed.

bin/jasperstarter/lib/xml-apis-ext-1.3.04.jar

100644100755
File mode changed.

bin/jasperstarter/lib/xmlgraphics-commons-2.2.jar

100644100755
File mode changed.

docs/pt_BR/LEIA-ME_pt_BR.md

+1-1

tests/PHPJasperTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* @author Rafael Queiroz <rafaelfqf@gmail.com>
2121
*/
22-
class PHPJasperTest extends TestCase
22+
final class PHPJasperTest extends TestCase
2323
{
2424
/**
2525
* @var

0 commit comments

Comments
 (0)