Skip to content

Commit 694df56

Browse files
committed
3.1.4 release prep
1 parent a8be12f commit 694df56

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 3.1.4
4+
5+
- Healthcheck bugfix, thanks @lutzwillek-tomtom
6+
37
## 3.1.3
48

59
- Bugfix around scalyrUrl assignment (Issue #124)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentinelone-dataset-datasource",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"description": "Scalyr Observability Platform",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",

pkg/plugin/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func NewDataSetClient(dataSetUrl string, apiKey string) DataSetClient {
5757
}
5858

5959
func (d *dataSetClient) newRequest(method, url string, body io.Reader) (*http.Request, error) {
60-
const VERSION = "3.1.3"
60+
const VERSION = "3.1.4"
6161

6262
if err := d.rateLimiter.Wait(context.Background()); err != nil {
6363
log.DefaultLogger.Error("error applying rate limiter", "err", err)

src/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
"path": "img/DatasetConfig.png"
4444
}
4545
],
46-
"version": "3.1.3",
47-
"updated": "2023-09-12"
46+
"version": "3.1.4",
47+
"updated": "2024-12-19"
4848
},
4949
"dependencies": {
5050
"grafanaDependency": ">=8.2.0",

0 commit comments

Comments
 (0)