Version Bump

This commit is contained in:
Nemo 2021-08-12 10:11:24 +05:30
parent c719dbf8f5
commit e9ed4ccb94
4 changed files with 31 additions and 26 deletions

View File

@ -1,59 +1,64 @@
# CHANGELOG
# 3.0.1
## Changed
- Puppeteer update
# 3.0.0
# Changed
## Changed
- Dependency updates
- Changed timeout to 5 seconds for page load (was set to default of 30 seconds)
- Adds caching so it returns the last best response instead of a 500
# Fixed
## Fixed
- Breaking API Change: Returned promise now works better by throwing errors in case of failures (instead of returning null)
# 2.0.13
## Changed
- Dependency updates
# 2.0.12
## Changed
- Dependency updates
# 2.0.11
## Changed
- Dependency updates
# 2.0.9
## Changed
- Bumps puppeteer to 3.0.1
# 2.0.0
## Changed
- Bumps puppeteer to `1.20.0`
# 2.0.7
## Changed
- Bumps puppeteer to `1.18.0`
# 2.0.6
## Changed
- Dependency updates and Docker fixes
# 2.0.5
## Changed
- Upgrade puppeteer to 1.17.0
# 2.0.4
## Changed
- Upgrade puppeteer to 1.16.0
# 2.0.3
## Changed
- Upgrade puppeteer to 1.15.0
- Switches docker base image from `alekzonder/puppeteer` to `schliflo/docker-puppeteer` since the former is unmaintained
# 2.0.2
## Changed
- Upgrade puppeteer to 1.8.0
# 2.0.0-beta
## Changed
- Adds support for Flexibytes and aggregate metrics
- Standardized Prometheus formatting to support 3 categories: `live/flexibytes/aggregate`
- Added standard [schema labels](http://label-schema.org/) in Dockerfile
@ -61,18 +66,18 @@
- Changed return format of `.getUsage()` method
# 1.0.2
## Changed
- Switches to bytes as the unit in the metrics endpoint
- Removed `_total` as suffix from the metric labels
- The API now returns 2 extra fields: `usedBytes/totalBytes`
- Now added to the [Prometheus Miscellaneous Exporters list](https://prometheus.io/docs/instrumenting/exporters/#miscellaneous)
# 1.0.1
## Changed
- Fixes a bug with only the first request giving a 200 on the metrics endpoint
- Pre-build docker image available at `captn3m0/prometheus-act-exporter`
- Disables Chrome sandbox only if running inside a container
# 1.0.0
## Changed
- Initial version

View File

@ -1,4 +1,4 @@
FROM schliflo/docker-puppeteer:10.1.0
FROM schliflo/docker-puppeteer:10.2.0
LABEL maintainer "Nemo <docker@captnemo.in>"

16
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "prometheus-act-exporter",
"version": "3.0.0",
"version": "3.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "3.0.0",
"version": "3.0.1",
"license": "WTFPL",
"dependencies": {
"containerized": "^1.0.2",
@ -14,9 +14,9 @@
}
},
"node_modules/@types/node": {
"version": "16.4.13",
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.4.13.tgz",
"integrity": "sha512-bLL69sKtd25w7p1nvg9pigE4gtKVpGTPojBFLMkGHXuUgap2sLqQt2qUnqmVCDfzGUL0DRNZP+1prIZJbMeAXg==",
"version": "16.6.0",
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.6.0.tgz",
"integrity": "sha512-OyiZPohMMjZEYqcVo/UJ04GyAxXOJEZO/FpzyXxcH4r/ArrVoXHf4MbUrkLp0Tz7/p1mMKpo5zJ6ZHl8XBNthQ==",
"optional": true
},
"node_modules/@types/yauzl": {
@ -612,9 +612,9 @@
},
"dependencies": {
"@types/node": {
"version": "16.4.13",
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.4.13.tgz",
"integrity": "sha512-bLL69sKtd25w7p1nvg9pigE4gtKVpGTPojBFLMkGHXuUgap2sLqQt2qUnqmVCDfzGUL0DRNZP+1prIZJbMeAXg==",
"version": "16.6.0",
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.6.0.tgz",
"integrity": "sha512-OyiZPohMMjZEYqcVo/UJ04GyAxXOJEZO/FpzyXxcH4r/ArrVoXHf4MbUrkLp0Tz7/p1mMKpo5zJ6ZHl8XBNthQ==",
"optional": true
},
"@types/yauzl": {

View File

@ -1,6 +1,6 @@
{
"name": "prometheus-act-exporter",
"version": "3.0.0",
"version": "3.0.1",
"description": "Exports ACT Fibernet data usage as prometheus metrics",
"main": "index.js",
"scripts": {