Skip to content

Releases: getappmap/appmap-python

v3.0.0: chore(release): 3.0.0 [skip ci]

14 Apr 12:50

Choose a tag to compare

chore(release): 3.0.0 [skip ci]

3.0.0 (2026-04-14)

  • feat!: Use raw string values instead of repr() for str types in display_string (5ee53e7)

BREAKING CHANGES

  • String values in appmap events are now recorded verbatim
    (e.g. "hello") rather than as Python repr (e.g. "'hello'"). This affects
    parameters, return values, and HTTP message fields of type builtins.str.
    The class field already identifies the type, so repr-quoting was redundant.

Using raw string values also enables proper secret leak detection, since
recorded values now match what appears in log messages.

Co-Authored-By: Claude Opus 4.6 (1M context) noreply@anthropic.com

v2.2.0: chore(release): 2.2.0 [skip ci]

04 Apr 16:36

Choose a tag to compare

chore(release): 2.2.0 [skip ci]

2.2.0 (2026-04-04)

Features

  • Capture argument values of labeled functions by default (453b697)

v2.1.9: chore(release): 2.1.9 [skip ci]

03 Feb 16:33

Choose a tag to compare

chore(release): 2.1.9 [skip ci]

2.1.9 (2026-02-03)

Bug Fixes

  • recording: sanitize process recording filenames for Windows (eb0379f), closes #377