Skip to content

Releases: WIPACrepo/wipac-dev-tools

v1.15.6

26 Feb 21:44
Compare
Choose a tag to compare

v1.15.6 (2025-02-26)

  • timing_tools.py: Decrease Logging More - 2 (#115) (87d9c60)

v1.15.5

26 Feb 21:10
Compare
Choose a tag to compare

v1.15.5 (2025-02-26)

  • timing_tools.py: Decrease Logging More (#114) (8bb445e)

v1.15.4

25 Feb 21:47
Compare
Choose a tag to compare

v1.15.4 (2025-02-25)

v1.15.3

19 Feb 22:04
Compare
Choose a tag to compare

v1.15.3 (2025-02-19)

  • Bump GHA Packages (#112)

Co-authored-by: github-actions <[email protected]> (2d26f94)

v1.15.2

17 Feb 21:15
Compare
Choose a tag to compare

v1.15.2 (2025-02-17)

  • IntervalTimer: Allow Passing Logger Name (#111)

Co-authored-by: github-actions <[email protected]> (d0fe282)

v1.15.1

24 Jan 18:50
Compare
Choose a tag to compare

v1.15.1 (2025-01-24)

  • Add decorators for prometheus (#110)

Decorators and other helpers for prometheus monitoring.


Co-authored-by: github-actions <[email protected]> (74143ce)

v1.15.0

14 Jan 23:19
Compare
Choose a tag to compare

v1.15.0 (2025-01-14)

[minor]

  • add prometheus global label wrapper [minor] (#109)

Add global / common labels for prometheus metrics.

Example usage::

    metrics = GlobalLabels({&#34;instance&#34;: &#34;test-abc&#34;, &#34;part&#34;: &#34;a&#34;})
    c = metrics.counter(&#34;thing&#34;, &#34;The Thing&#34;)
    c.inc()
    # will have labels for instance and part

    c2 = metrics.counter(&#34;thing&#34;, &#34;Thing 2&#34;, {&#34;part&#34;: &#34;b&#34;})
    c2.inc()
    # will have labels for instance and part, with part=b

    c3 = metrics.counter(&#34;thing&#34;, &#34;Thing 2&#34;, {&#34;extra&#34;: &#34;test&#34;})
    c3.inc()
    # will have labels for instance, part, and extra

Co-authored-by: github-actions <[email protected]> (4abaa64)

v1.14.0

09 Jan 20:37
Compare
Choose a tag to compare

v1.14.0 (2025-01-09)

[minor]

  • Add timing_tool.IntervalTimer [minor] (#108)

Co-authored-by: github-actions <[email protected]> (c27e542)

v1.13.0

09 Oct 18:22
Compare
Choose a tag to compare

v1.13.0 (2024-10-09)

[minor]

  • Upgrades: Python 3.13 + CI Package Mgmt [minor] (#107)

Co-authored-by: github-actions <[email protected]> (a10532b)

v1.12.1

13 Sep 21:58
Compare
Choose a tag to compare

v1.12.1 (2024-09-13)

  • Env Vars: Add Support for |-syntax Optional Types (#106) (90f7653)