Release notes

Keep up with latest product news

4099 notes
19 Jan, 2026 Henry Pereira
dc-toon
Version 1.0.2

Description:This pull request introduces critical improvements to the dc.toon.Converter class, enhancing its ability to accurately handle data types during both JSON-to-TOON and TOON-to-JSON conversion.
Key Changes:1. Full Datatype Support in JSON \rightarrow TOON Conversion:
Adds proper handling for various JSON data types (e.g., Boolean true/false) during conversion into the TOON format.
Before: Boolean values in JSON arrays were incorrectly converted or lost fidelity (e.g., true might become 1).
After: Boolean values are preserved correctly in the TOON output, matching the original data structure.
Example: {"age":true} is now correctly represented in TOON, not as a numeric equivalent.
Datatype Fidelity in TOON \rightarrow JSON Conversion:
The FromTOON method now ensures that data types are accurately restored when converting TOON back into JSON (Dynamic Object).

Fixes:

Boolean strings ("true", "false") in TOON are now converted to JSON Booleans (true, false) instead of numerics (1, 0) or strings.

"null" strings in TOON are now converted to the proper JSON null value instead of an empty string ("").

Example: TOON isactive:true \rightarrow JSON "isactive":true (instead of "isactive":1).

Bug Fix in Quoted String Parsing:
Fixed a syntax error/logic gap in the quoted string check within the parser.
The conditional statement for identifying a quoted string (If $Extract(str,1)="""" && ($Extract(str,*)="""")) was missing necessary parentheses or required refinement to ensure correct execution flow


Special thanks to @Ashok Kumar

16 Jan, 2026 GGabriel Ing
FHIR-AI-Hackathon-Kit
Version 1.0.0

Initial Release

14 Jan, 2026 MMichael Braam
JSON2Persistent
Version 1.0.7

corrected release number

14 Jan, 2026 MMichael Braam
JSON2Persistent
Version 1.0.6

Added support for IPM

13 Jan, 2026 Evgeny Shvarov
lovable-backend
Version 1.0.2

REST API Unit tests added

IRIS_dockerization
Version 1.0.0

Initial Release

09 Jan, 2026 AAlberto Fuentes
iris-health-fhir-agentic-demo
Version 1.0.0

Initial Release

08 Jan, 2026 Ashok Kumar T
irisJWT
Version 1.0.1

code updates

06 Jan, 2026 FFan Ji
iris-vector-search
Version 1.2.0

Vector Search with InterSystems IRIS 2025.3

06 Jan, 2026 PPravin Barton
Embedded Git
Version 2.15.0

[2.15.0] - 2026-01-06

Added

  • Import All has been added to public-facing API (#891)
  • Web UI workspace view now has an option to abort merge in progress (#895)
  • New setting lets you treat generated classes as read-only in Studio/VS Code (#712)

Fixed

  • Web UI workspace view labels changes as Merge Conflict if there are unmerged changes (#890)
  • Web UI workspace view displays diff correctly for files with merge conflicts (#898)
  • Storage definition changes in persistent classes are now correctly exported to the Git repository (#906)
  • Catch and log exceptions thrown by pull handlers (#909)
  • Fix Incremental Load to first remove production items before removing classes (#907)
05 Jan, 2026 Evgeny Shvarov
one-to-many-case
Version 1.0.0

Initial Release

03 Jan, 2026 Evgeny Shvarov
iris-user-management
Version 1.0.2

bugfix for error-logging

02 Jan, 2026 Henry Pereira
dc-toon
Version 1.0.1

Set the publishing manager (which I forgot to do earlier).

31 Dec, 2025 Ashok Kumar T
Interop-LookupTable
Version 1.0.2

IPM installation option added

30 Dec, 2025 Evgeny Shvarov
shvarov-persistent
Version 1.1.0

Added utils.cls to enable adding ancestors to an existing class.
Here is the related discussion.

29 Dec, 2025 KKeren Skubach
ConfigSettingsExtract
Version 1.0.0

Initial Release

28 Dec, 2025 Evgeny Shvarov
iris-fhir-template
Version 1.3.7

Made JsonAdvSql as a default data strategy - learn more in docs

28 Dec, 2025 Ashok Kumar T
embeddedpy-bridge
Version 1.0.1

Macros added

28 Dec, 2025 NNetanel Frankel
fhir-lists
Version 1.0.0

Initial Release

28 Dec, 2025 Robert Cemper
UDP
Version 0.0.1

Initial Release

28 Dec, 2025 Ashok Kumar T
embeddedpy-bridge
Version 1.0.0

Initial Release

28 Dec, 2025 Ashok Kumar T
fhir-profile-demo
Version 1.0.0

Initial Release

27 Dec, 2025 Thomas Dyar
integratedml-demo-template
Version 1.1.1

Notebook Fixes (December 2025)
Fixed

IPython deprecation warning: Updated imports from IPython.core.display to IPython.display
VALIDATE MODEL pivot error: Added drop_duplicates() to handle duplicate metric entries before pivot
ED_visit_90_day.ipynb: Completely rewritten with UCI Diabetes 130-US Hospitals dataset (~92k records)
IRIS SQL reserved word: Changed Count alias to RecCount in SQL queries
AutoML matplotlib dependency: Added matplotlib to IRIS Dockerfile for visualization

New Data

Added diabetic_readmission.csv (UCI Diabetes 130-US Hospitals dataset) for ED_visit notebook

All Notebooks Tested

campaign-integratedml.ipynb ✓
readmission-integratedml.ipynb ✓
biomedical-integratedml.ipynb ✓
ED_visit_90_day.ipynb ✓

This release addresses the issues reported by community members regarding notebook execution failures.

27 Dec, 2025 Evgeny Shvarov
iris-embedded-python-template
Version 3.0.9

More examples on Python error handling introduced by Ashok Kumar PR

26 Dec, 2025 Thomas Dyar
iris-pgwire
Version 1.0.0

Initial Release

26 Dec, 2025 Robert Cemper
DBsizeWatch
Version 0.0.2

fixed some typo

26 Dec, 2025 Evgeny Shvarov
iris-embedded-python-template
Version 3.0.8

Error log for python even improved, thanks to Ashok Kumar T and David Hokenbroch, see the community post.

26 Dec, 2025 Ashok Kumar T
iris-localization-lab
Version 1.0.0

Initial Release

26 Dec, 2025 Evgeny Shvarov
iris-user-management
Version 1.0.1

add App Log() error logging

26 Dec, 2025 Evgeny Shvarov
iris-embedded-python-template
Version 3.0.7

added error log to App Log example here