Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions packages/telegraf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=telegraf
# renovate: datasource=github-tags depName=influxdata/telegraf
PKG_VERSION:=1.38.4
PKG_VERSION:=1.39.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/influxdata/telegraf/tar.gz/v$(PKG_VERSION)?
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/influxdata/telegraf.git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_SOURCE_SUBDIR:=telegraf-$(PKG_VERSION)
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
PKG_MIRROR_HASH:=skip

PKG_HASH:=skip
PKG_MAINTAINER:=Tommaso Bailetti <tommaso.bailetti@nethesis.it>
PKG_LICENSE:=MIT

Expand Down
9 changes: 5 additions & 4 deletions packages/victoria-logs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=victoria-logs
# renovate: datasource=github-tags depName=VictoriaMetrics/VictoriaLogs
PKG_VERSION:=1.49.0
PKG_VERSION:=1.50.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/VictoriaMetrics/VictoriaLogs/tar.gz/v$(PKG_VERSION)?
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/VictoriaMetrics/VictoriaLogs.git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_SOURCE_SUBDIR:=VictoriaLogs-$(PKG_VERSION)
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
PKG_MIRROR_HASH:=skip

PKG_HASH:=skip
PKG_MAINTAINER:=Tommaso Bailetti <tommaso.bailetti@nethesis.it>
PKG_LICENSE:=Apache-2.0

Expand Down
9 changes: 5 additions & 4 deletions packages/victoria-metrics/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=victoria-metrics
# renovate: datasource=github-tags depName=VictoriaMetrics/VictoriaMetrics
PKG_VERSION:=1.139.0
PKG_VERSION:=1.142.0
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/VictoriaMetrics/VictoriaMetrics/tar.gz/v$(PKG_VERSION)?
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/VictoriaMetrics/VictoriaMetrics.git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_SOURCE_SUBDIR:=VictoriaMetrics-$(PKG_VERSION)
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
PKG_MIRROR_HASH:=skip

PKG_HASH:=skip
PKG_MAINTAINER:=Tommaso Bailetti <tommaso.bailetti@nethesis.it>
PKG_LICENSE:=Apache-2.0

Expand Down
15 changes: 15 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@
"docs/**"
],
"enabled": false
},
{
"description": "Pin telegraf to 1.39.x: minor and major version bumps require verification that they support the Go version shipped with the current OpenWrt version. Patch updates are allowed automatically.",
"matchDepNames": ["influxdata/telegraf"],
"allowedVersions": "<=1.39"
},
{
"description": "Pin victoria-metrics to 1.142.x: minor and major version bumps require verification that they support the Go version shipped with the current OpenWrt version. Patch updates are allowed automatically.",
"matchDepNames": ["VictoriaMetrics/VictoriaMetrics"],
"allowedVersions": "<=1.142"
},
{
"description": "Pin victoria-logs to 1.50.x: minor and major version bumps require verification that they support the Go version shipped with the current OpenWrt version. Patch updates are allowed automatically.",
"matchDepNames": ["VictoriaMetrics/VictoriaLogs"],
"allowedVersions": "<=1.50"
}
],
"vulnerabilityAlerts": {
Expand Down
Loading