Skip to content

Commit

Permalink
chore(prometheus) release 1.3.0 (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion authored and gszr committed Jun 2, 2021
1 parent 33115a6 commit e886c7a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

- [1.3.0](#130---20210527)
- [1.2.1](#121---20210415)
- [1.2.0](#120---20210324)
- [1.1.0](#110---20210303)
Expand All @@ -20,6 +21,14 @@
- [0.2.0](#020---20180924)
- [0.1.0](#010---20180615)

## [1.3.0] - 2021/05/27

- Fix exporter to attach subsystem label to memory stats
[#118](https://github.com/Kong/kong-plugin-prometheus/pull/118)
- Expose dataplane status on control plane, new metrics `data_plane_last_seen`,
`data_plane_config_hash` and `data_plane_version_compatible` are added.
[#98](https://github.com/Kong/kong-plugin-prometheus/pull/98)

## [1.2.1] - 2021/04/15

- Fix an issue where the Content-Length header could be potentially mispelled
Expand Down Expand Up @@ -148,6 +157,8 @@ initialized

- Initial release of Prometheus plugin for Kong.

[1.3.0]: https://github.com/Kong/kong-plugin-prometheus/compare/1.2.1...1.3.0
[1.2.1]: https://github.com/Kong/kong-plugin-prometheus/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/Kong/kong-plugin-prometheus/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/Kong/kong-plugin-prometheus/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/Kong/kong-plugin-prometheus/compare/0.9.0...1.0.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong-prometheus-plugin"
version = "1.2.1-1"
version = "1.3.0-1"

source = {
url = "git://github.com/Kong/kong-plugin-prometheus",
tag = "1.2.1"
tag = "1.3.0"
}

supported_platforms = {"linux", "macosx"}
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/prometheus/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ prometheus.init()

local PrometheusHandler = {
PRIORITY = 13,
VERSION = "1.2.1",
VERSION = "1.3.0",
}

function PrometheusHandler.init_worker()
Expand Down

0 comments on commit e886c7a

Please sign in to comment.