Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit 708421f

Browse files
authored
Update to new parent image tag 1389697. (#279)
- Update to new parent image tag 1389697 to consume latest vulnerability fixes.
1 parent f646a29 commit 708421f

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

python3.11/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@
99
- [pypi ibm-watson](https://pypi.org/project/ibm-watson/)
1010
- [github ibm-watson](https://github.com/watson-developer-cloud/python-sdk)
1111

12+
# 1.4.1
13+
Changes:
14+
- Bump to newer parent image (vulnerability fixes) 1389697
15+
16+
Python version:
17+
- [3.11.8](https://www.python.org/downloads/release/python-3118/)
18+
19+
Python packages:
20+
- The file [requirements.txt](requirements.txt) lists the packages we guarantee to be included in this runtime.<br/>
21+
Ensure that you only use packages mentioned there.<br/>
22+
Other python packages might be part of this runtime, but only due to indirect dependencies of the above listed packages. These indirectly included packages are candidates to be removed at any time in case they are not required by the referring package anymore.
23+
1224
# 1.4.0
1325
Changes:
1426
- Bump to newer parent image (vulnerability fixes) c0a1e6d

python3.11/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openwhisk/action-python-v3.11:c0a1e6d
1+
FROM openwhisk/action-python-v3.11:1389697
22

33
COPY requirements.txt requirements.txt
44

tools/travis/test.sh

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
#!/bin/bash
2-
set -ex
2+
set -eEx
3+
trap "onError" ERR
4+
5+
6+
function onError() {
7+
8+
printf "Error in line $(caller)\n"
9+
set -x
10+
# When the script ends due to an error we dump the
11+
# controller and invoker log to the output. This my help to
12+
# analyze the error.
13+
cat /tmp/wsklogs/invoker0/invoker0_logs.log || true
14+
cat /tmp/wsklogs/controller0/controller0_logs.log || true
15+
16+
}
17+
318

419
# Build script for Travis-CI.
520

0 commit comments

Comments
 (0)