Skip to content

Commit 41cd151

Browse files
authored
Release 1.1.89.3
Release 1.1.89.3 (#11)
2 parents bddcda6 + 3649d61 commit 41cd151

File tree

7 files changed

+254
-2
lines changed

7 files changed

+254
-2
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ This project is licensed as below.
4+
~
5+
~ ***************************************************************************
6+
~
7+
~ Copyright 2020-2023 Intel Corporation. All Rights Reserved.
8+
~
9+
~ Redistribution and use in source and binary forms, with or without
10+
~ modification, are permitted provided that the following conditions are met:
11+
~
12+
~ 1. Redistributions of source code must retain the above copyright notice,
13+
~ this list of conditions and the following disclaimer.
14+
~
15+
~ 2. Redistributions in binary form must reproduce the above copyright
16+
~ notice, this list of conditions and the following disclaimer in the
17+
~ documentation and/or other materials provided with the distribution.
18+
~
19+
~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20+
~ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21+
~ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22+
~ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
23+
~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
~ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
~ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
~ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
~ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
~ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
~ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
~
31+
~ ***************************************************************************
32+
~
33+
-->
34+
35+
<configuration>
36+
37+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
38+
<encoder>
39+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
40+
</encoder>
41+
</appender>
42+
43+
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
44+
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
45+
<!-- Daily rollover -->
46+
<fileNamePattern>log/MyExample.%d{yyyy-MM-dd}.log</fileNamePattern>
47+
48+
<!-- Keep 7 days' worth of history -->
49+
<maxHistory>7</maxHistory>
50+
</rollingPolicy>
51+
52+
<encoder>
53+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
54+
</encoder>
55+
</appender>
56+
57+
<!-- Configure so that it outputs to both console and log file -->
58+
<root level="DEBUG">
59+
<appender-ref ref="FILE"/>
60+
<appender-ref ref="STDOUT"/>
61+
</root>
62+
</configuration>

Verifier/third_party_licenses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
#VERIFIER dependency list
33
##Dependency License Report
4-
_2023-05-10 12:27:05 CEST_
4+
_2023-05-11 12:54:08 CEST_
55
## Apache License 2.0
66

77
**1** **Group:** `io.swagger.core.v3` **Name:** `swagger-annotations` **Version:** `2.2.9`
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ This project is licensed as below.
4+
~
5+
~ ***************************************************************************
6+
~
7+
~ Copyright 2020-2023 Intel Corporation. All Rights Reserved.
8+
~
9+
~ Redistribution and use in source and binary forms, with or without
10+
~ modification, are permitted provided that the following conditions are met:
11+
~
12+
~ 1. Redistributions of source code must retain the above copyright notice,
13+
~ this list of conditions and the following disclaimer.
14+
~
15+
~ 2. Redistributions in binary form must reproduce the above copyright
16+
~ notice, this list of conditions and the following disclaimer in the
17+
~ documentation and/or other materials provided with the distribution.
18+
~
19+
~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20+
~ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21+
~ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22+
~ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
23+
~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
~ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
~ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
~ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
~ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
~ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
~ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
~
31+
~ ***************************************************************************
32+
~
33+
-->
34+
35+
<configuration>
36+
37+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
38+
<encoder>
39+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
40+
</encoder>
41+
</appender>
42+
43+
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
44+
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
45+
<!-- Daily rollover -->
46+
<fileNamePattern>log/MyExample.%d{yyyy-MM-dd}.log</fileNamePattern>
47+
48+
<!-- Keep 7 days' worth of history -->
49+
<maxHistory>7</maxHistory>
50+
</rollingPolicy>
51+
52+
<encoder>
53+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
54+
</encoder>
55+
</appender>
56+
57+
<!-- Configure so that it outputs to both console and log file -->
58+
<root level="DEBUG">
59+
<appender-ref ref="FILE"/>
60+
<appender-ref ref="STDOUT"/>
61+
</root>
62+
</configuration>
-30 MB
Binary file not shown.
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ This project is licensed as below.
4+
~
5+
~ ***************************************************************************
6+
~
7+
~ Copyright 2020-2023 Intel Corporation. All Rights Reserved.
8+
~
9+
~ Redistribution and use in source and binary forms, with or without
10+
~ modification, are permitted provided that the following conditions are met:
11+
~
12+
~ 1. Redistributions of source code must retain the above copyright notice,
13+
~ this list of conditions and the following disclaimer.
14+
~
15+
~ 2. Redistributions in binary form must reproduce the above copyright
16+
~ notice, this list of conditions and the following disclaimer in the
17+
~ documentation and/or other materials provided with the distribution.
18+
~
19+
~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20+
~ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21+
~ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22+
~ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
23+
~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
~ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
~ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
~ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
~ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
~ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
~ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
~
31+
~ ***************************************************************************
32+
~
33+
-->
34+
35+
<configuration>
36+
37+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
38+
<encoder>
39+
<pattern>%d{HH:mm:ss.SSS} %-5level %msg%n</pattern>
40+
</encoder>
41+
</appender>
42+
43+
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
44+
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
45+
<!-- Daily rollover -->
46+
<fileNamePattern>log/workload.%d{yyyy-MM-dd}.log</fileNamePattern>
47+
48+
<!-- Keep 7 days' worth of history -->
49+
<maxHistory>7</maxHistory>
50+
</rollingPolicy>
51+
52+
<encoder>
53+
<pattern>%d{HH:mm:ss.SSS} %-5level %msg%n</pattern>
54+
</encoder>
55+
</appender>
56+
57+
<!-- Configure so that it outputs to both console and log file -->
58+
<root level="INFO">
59+
<appender-ref ref="FILE"/>
60+
<appender-ref ref="STDOUT"/>
61+
</root>
62+
63+
<logger name="com.intel.bkp.verifier" level="TRACE"/>
64+
<logger name="com.intel.bkp.fpgacerts" level="TRACE"/>
65+
<logger name="com.intel.bkp.crypto" level="TRACE"/>
66+
</configuration>
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ This project is licensed as below.
4+
~
5+
~ ***************************************************************************
6+
~
7+
~ Copyright 2020-2023 Intel Corporation. All Rights Reserved.
8+
~
9+
~ Redistribution and use in source and binary forms, with or without
10+
~ modification, are permitted provided that the following conditions are met:
11+
~
12+
~ 1. Redistributions of source code must retain the above copyright notice,
13+
~ this list of conditions and the following disclaimer.
14+
~
15+
~ 2. Redistributions in binary form must reproduce the above copyright
16+
~ notice, this list of conditions and the following disclaimer in the
17+
~ documentation and/or other materials provided with the distribution.
18+
~
19+
~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20+
~ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21+
~ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22+
~ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
23+
~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
~ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
~ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
~ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
~ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
~ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
~ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
~
31+
~ ***************************************************************************
32+
~
33+
-->
34+
35+
<configuration>
36+
37+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
38+
<encoder>
39+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
40+
</encoder>
41+
</appender>
42+
43+
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
44+
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
45+
<!-- Daily rollover -->
46+
<fileNamePattern>log/MyExample.%d{yyyy-MM-dd}.log</fileNamePattern>
47+
48+
<!-- Keep 7 days' worth of history -->
49+
<maxHistory>7</maxHistory>
50+
</rollingPolicy>
51+
52+
<encoder>
53+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
54+
</encoder>
55+
</appender>
56+
57+
<!-- Configure so that it outputs to both console and log file -->
58+
<root level="DEBUG">
59+
<appender-ref ref="FILE"/>
60+
<appender-ref ref="STDOUT"/>
61+
</root>
62+
</configuration>

workload/third_party_licenses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
#WORKLOAD dependency list
33
##Dependency License Report
4-
_2023-05-10 12:27:19 CEST_
4+
_2023-05-11 12:54:19 CEST_
55
## Apache License 2.0
66

77
**1** **Group:** `io.swagger.core.v3` **Name:** `swagger-annotations` **Version:** `2.2.9`

0 commit comments

Comments
 (0)