Skip to content

Commit 1f5fa77

Browse files
authored
Merge branch 'master' into master
2 parents 32e4008 + 970d6e6 commit 1f5fa77

File tree

231 files changed

+3698
-1351
lines changed

Some content is hidden

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

231 files changed

+3698
-1351
lines changed

build/checkstyle.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
-->
2121

2222
<!DOCTYPE module PUBLIC
23-
"-//Puppy Crawl//DTD Check Configuration 1.2//EN"
24-
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
23+
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
24+
"https://checkstyle.org/dtds/configuration_1_3.dtd">
2525

2626
<!--
2727
PWM Checkstyle definition
@@ -52,7 +52,11 @@
5252
<property name="headerFile" value="${checkstyle.header.file}"/>
5353
</module>
5454
-->
55-
55+
<module name="LineLength">
56+
<property name="max" value="180" />
57+
<property name="ignorePattern" value="@version|@see|@todo|TODO"/>
58+
<property name="fileExtensions" value="java"/>
59+
</module>
5660
<module name="FileTabCharacter">
5761
<property name="eachLine" value="true"/>
5862
</module>
@@ -78,11 +82,6 @@
7882
<property name="allowNonPrintableEscapes" value="true"/>
7983
</module>
8084

81-
<module name="LineLength">
82-
<property name="max" value="180" />
83-
<property name="ignorePattern" value="@version|@see|@todo|TODO"/>
84-
</module>
85-
8685
<module name="EmptyBlock">
8786
<property name="option" value="TEXT"/>
8887
<property name="tokens" value="LITERAL_TRY, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"/>

build/license-header-jsp.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@
1717
~ See the License for the specific language governing permissions and
1818
~ limitations under the License.
1919
--%>
20+
<%--
21+
THIS FILE IS NOT INTENDED FOR END USER MODIFICATION.
22+
See the README.TXT file in WEB-INF/jsp before making changes.
23+
--%>

client/package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717
"author": "",
1818
"license": "ISC",
1919
"dependencies": {
20-
"@microfocus/ias-icons": "1.0.1",
21-
"@microfocus/ng-ias": "1.0.0-alpha.2",
22-
"@microfocus/ux-ias": "1.0.0-rc",
20+
"@microfocus/ias-icons": "1.0.4",
21+
"@microfocus/ng-ias": "1.0.1",
22+
"@microfocus/ux-ias": "1.1.2",
2323
"@uirouter/angularjs": "1.0.15",
24-
"angular": "1.6.9",
25-
"angular-aria": "1.6.9",
26-
"angular-sanitize": "1.6.9",
27-
"angular-translate": "2.17.0",
24+
"angular": "1.7.8",
25+
"angular-aria": "1.7.8",
26+
"angular-sanitize": "1.7.8",
27+
"angular-translate": "2.18.1",
28+
"core-js": "3.2.1",
2829
"textangular": "1.5.16"
2930
},
3031
"devDependencies": {
@@ -37,7 +38,7 @@
3738
"angular-mocks": "1.6.9",
3839
"autoprefixer": "8.1.0",
3940
"copy-webpack-plugin": "4.5.1",
40-
"css-loader": "0.28.10",
41+
"css-loader": "^3.2.0",
4142
"file-loader": "1.1.11",
4243
"html-loader": "0.5.5",
4344
"html-webpack-plugin": "3.0.6",
@@ -48,7 +49,7 @@
4849
"jshint": "^2.10.2",
4950
"jshint-loader": "0.8.4",
5051
"json-loader": "0.5.7",
51-
"karma": "3.1.1",
52+
"karma": "^4.3.0",
5253
"karma-chrome-launcher": "2.2.0",
5354
"karma-jasmine": "1.1.2",
5455
"karma-jasmine-html-reporter": "1.3.1",
@@ -75,7 +76,7 @@
7576
"uglifyjs-webpack-plugin": "1.2.3",
7677
"url-loader": "1.0.1",
7778
"webpack": "4.1.1",
78-
"webpack-cli": "2.0.12",
79+
"webpack-cli": "^3.3.8",
7980
"webpack-dev-server": "3.1.14",
8081
"webpack-merge": "4.1.2",
8182
"write-file-webpack-plugin": "4.2.0"

client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@
7979
<plugin>
8080
<groupId>com.github.eirslett</groupId>
8181
<artifactId>frontend-maven-plugin</artifactId>
82-
<version>1.7.6</version>
82+
<version>1.8.0</version>
8383
<configuration>
84-
<nodeVersion>v10.16.0</nodeVersion>
84+
<nodeVersion>v10.16.3</nodeVersion>
8585
<npmVersion>6.9.0</npmVersion>
8686
<installDirectory>.node</installDirectory>
8787
</configuration>

client/src/modules/helpdesk/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import 'angular-sanitize';
2424
import '@microfocus/ng-ias/dist/ng-ias';
2525

2626
// Add a polyfill for Set() for IE11, since it's used in peoplesearch-base.component.ts
27-
import 'core-js/es6/set';
27+
import 'core-js/es/set';
2828

2929
import { bootstrap, module } from 'angular';
3030
import helpDeskModule from './helpdesk.module';

client/src/modules/peoplesearch/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import 'angular-translate';
2323
import '@microfocus/ng-ias/dist/ng-ias';
2424

2525
// Add a polyfill for Set() for IE11, since it's used in peoplesearch-base.component.ts
26-
import 'core-js/es6/set';
26+
import 'core-js/es/set';
2727

2828
import { bootstrap, module } from 'angular';
2929
import ConfigService from '../../services/peoplesearch-config.service';

data-service/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,12 @@
137137
<dependency>
138138
<groupId>com.sun.mail</groupId>
139139
<artifactId>jakarta.mail</artifactId>
140-
<version>1.6.3</version>
140+
<version>1.6.4</version>
141141
</dependency>
142142
<dependency>
143143
<groupId>org.apache.httpcomponents</groupId>
144144
<artifactId>httpclient</artifactId>
145-
<version>4.5.9</version>
145+
<version>4.5.10</version>
146146
</dependency>
147147
<dependency>
148148
<groupId>log4j</groupId>

data-service/src/main/webapp/WEB-INF/jsp/telemetry-viewer.jsp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
~ See the License for the specific language governing permissions and
1818
~ limitations under the License.
1919
--%>
20+
<%--
21+
THIS FILE IS NOT INTENDED FOR END USER MODIFICATION.
22+
See the README.TXT file in WEB-INF/jsp before making changes.
23+
--%>
2024
<%@ page import="password.pwm.receiver.SummaryBean" %>
2125
<%@ page import="password.pwm.receiver.TelemetryViewerServlet" %>
2226
<%@ page import="java.time.Instant" %>

data-service/src/main/webapp/index.jsp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
~ See the License for the specific language governing permissions and
1818
~ limitations under the License.
1919
--%>
20+
<%--
21+
THIS FILE IS NOT INTENDED FOR END USER MODIFICATION.
22+
See the README.TXT file in WEB-INF/jsp before making changes.
23+
--%>
2024

2125

2226
<!DOCTYPE html>

docker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<plugin>
3535
<groupId>com.google.cloud.tools</groupId>
3636
<artifactId>jib-maven-plugin</artifactId>
37-
<version>1.4.0</version>
37+
<version>1.5.1</version>
3838
<executions>
3939
<execution>
4040
<id>make-docker-image</id>

0 commit comments

Comments
 (0)