Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- #1114: Fix issue with SystemRequirements being confused by multiple namespaces with different version of IPM installed
- #1128: Fixed an issue where an update can fail if a resource is moved from one module to another
- #430: Updating shared transitive dependencies with lock-step version requirements now works instead of erroring out
- #1179: IPM will no longer erroneously complain about Python 3.13+ on compatible versions of IRIS. The lower bound check (3.10+) remains, but the upper bound is left to the user. There is a compatibility matrix in the README.

### Security
- urllib Python wheel updated to 2.7.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE=containers.intersystems.com/intersystems/iris-community:2025.1
ARG BASE=containers.intersystems.com/intersystems/iris-community:2026.1

FROM ${BASE}

Expand Down
3 changes: 0 additions & 3 deletions preload/cls/IPM/Installer.cls
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,6 @@ ClassMethod ValidatePythonRuntime() As %Boolean
if (+version < 3.10) {
write !!,"WARNING: Python version "_version_" is not supported. IPM requires Python 3.10 or higher.",!
return 0
} elseif (+version > 3.12) {
write !!,"WARNING: Python version "_version_" is not yet supported. IPM cannot use Python 3.13 or higher due to IRIS incompatibilities.",!
return 0
}
} catch e {
return 0
Expand Down
2 changes: 1 addition & 1 deletion tests/sandbox/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE=containers.intersystems.com/intersystems/iris-community:2025.1
ARG BASE=containers.intersystems.com/intersystems/iris-community:2026.1
FROM ${BASE}
ARG IPM_VERSION=zpm-0.7.2.xml

Expand Down
26 changes: 13 additions & 13 deletions tests/sandbox/durable-sys/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
services:
irishealth:
init: true
image: irepo.intersystems.com/intersystems/irishealth:2025.1
image: irepo.intersystems.com/intersystems/irishealth:2026.1
hostname: irishealth
ports:
ports:
- 1972
command:
command:
- --check-caps false
- --key /irishealth-shared/iris.key
volumes:
volumes:
- type: bind
source: ./irishealth/shared
target: /irishealth-shared
Expand All @@ -23,23 +23,23 @@ services:
cpus: '2.00'
memory: 8gb

# web gateway container
# web gateway container
webgateway:
init: true
image: irepo.intersystems.com/intersystems/webgateway:2025.1
image: irepo.intersystems.com/intersystems/webgateway:2026.1
hostname: webgateway
ports:
- 80
- 80
environment:
- ISC_DATA_DIRECTORY=/webgateway-shared/durable
- ISC_CSP_CONF_FILE=/webgateway-shared/CSP.conf
- ISC_CSP_INI_FILE=/webgateway-shared/CSP.ini
- ISC_DATA_DIRECTORY=/webgateway-shared/durable
- ISC_CSP_CONF_FILE=/webgateway-shared/CSP.conf
- ISC_CSP_INI_FILE=/webgateway-shared/CSP.ini
volumes:
- ./webgateway/shared:/webgateway-shared
- ./webgateway/shared:/webgateway-shared
depends_on:
- irishealth
- irishealth
deploy:
resources:
limits:
cpus: '0.50'
memory: 1gb
memory: 1gb
Loading