0.9.6#

Released on May 17, 2025.

Added#

Changed#

  • Upgraded Atoti UI and Atoti Admin UI to 5.2.8.

  • Upgraded Atoti Server to 6.1.8.

  • The functions that were in the atoti.experimental subpackage have been moved outside of it and require passing their feature key to experimental():

    - tt.experimental.agg.distinct(...)
    + with tt.experimental({"agg.distinct"}):
    +   tt.agg.distinct(...)
    

Deprecated#

  • Deleting a level through atoti.Cube.levels. Redefine its hierarchy instead:

    - del l["Geography", "City"]
    + h["Geography"] = [l["Continent"], l["Country"]]
    
  • atoti.date_shift()’s method parameter [7]. The new parameter name is fallback:

      tt.date_shift(
        m["Price"],
        h["Date"],
    -   method="previous",
    +   fallback="past",
        offset="P1M",
      )
    

Fixed#

Internal issue tracker references