Skip to content

Commit

Permalink
chore(master): release 5.9.1 (#180)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Tim Schwenke <[email protected]>
  • Loading branch information
github-actions[bot] and trallnag authored Aug 23, 2022
1 parent dc36aac commit cdf3418
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 10 deletions.
35 changes: 27 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [5.9.1](https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v5.9.0...v5.9.1) (2022-08-23)


### 🍀 Summary 🍀

No bug fixes or new features. Just an important improvement of the documentation.


### ✨ Highlights ✨

* Fix / Improve documentation of how to use package ([#168](https://github.com/trallnag/prometheus-fastapi-instrumentator/pull/168)). Instrumentation should happen in a function decorated with `@app.on_event("startup")` to prevent crashes on startup. Thanks to @mdczaplicki and others.


### CI/CD

* Pin poetry version and improve caching configuration ([6337459](https://github.com/trallnag/prometheus-fastapi-instrumentator/commit/6337459156a9cd87d868953e6c6c8dabea064eb1))


### Docs

* Improve example in README on how to instrument app ([#168](https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/168)) ([dc36aac](https://github.com/trallnag/prometheus-fastapi-instrumentator/commit/dc36aac1a530faa3970b19c1c68be4ee18c7c34b))


## [5.9.0](https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v5.8.2...v5.9.0) (2022-08-23)


Expand Down Expand Up @@ -68,16 +91,12 @@ This release fixes a small but annoying bug. Beyond that the release includes sm

* Improve coding style ([#155](https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/155)) ([623d83b](https://github.com/trallnag/prometheus-fastapi-instrumentator/commit/623d83b86278d2627084b9fe9547f1af07531042))


## [5.8.2](https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v5.8.1...v5.8.2) (2022-06-12)

Refactored the middleware to an ASGI implementation
([#139](https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/139)).
Thanks to @Kludex and @adriangb for the proposal and implementation.
Refactored the middleware to an ASGI implementation ([#139](https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/139)). Thanks to @Kludex and @adriangb for the proposal and implementation.


## [5.8.1](https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v5.8.0...v5.8.1) (2022-05-03)

Fixed a regression that made the required FastAPI version too strict for no
reason
([#136](https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/136))
([36bc045](https://github.com/trallnag/prometheus-fastapi-instrumentator/commit/36bc045c5eb247fa7a83c25cc161f95b5d4b314d)).
Thanks to @graipher for raising this issue.
Fixed a regression that made the required FastAPI version too strict for no reason ([#136](https://github.com/trallnag/prometheus-fastapi-instrumentator/issues/136)) ([36bc045](https://github.com/trallnag/prometheus-fastapi-instrumentator/commit/36bc045c5eb247fa7a83c25cc161f95b5d4b314d)). Thanks to @graipher for raising this issue.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "prometheus-fastapi-instrumentator"
version = "5.9.0"
version = "5.9.1"
description = "Instrument your FastAPI with Prometheus metrics"
authors = ["Tim Schwenke <[email protected]>"]
license = "ISC"
Expand Down
2 changes: 1 addition & 1 deletion src/prometheus_fastapi_instrumentator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .instrumentation import PrometheusFastApiInstrumentator

__version__ = "5.9.0"
__version__ = "5.9.1"

Instrumentator = PrometheusFastApiInstrumentator

0 comments on commit cdf3418

Please sign in to comment.