1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-08-08 08:33:56 +02:00

Compare commits

...

4 Commits

Author SHA1 Message Date
cn
507e6a36fd release: 3.4.7 2021-11-19 16:16:51 +01:00
cn
0a2afb1e4c docs: update changelog 2021-11-19 16:16:28 +01:00
Renovate Bot
6e7d4ea985 docker: update alpine Docker tag to v3.13.7 2021-11-19 16:15:38 +01:00
cn
809e2dd5d1 project: ignore Renovate Alpine 3.14 updates 2021-11-19 16:06:29 +01:00
5 changed files with 16 additions and 3 deletions

View File

@@ -9,6 +9,7 @@
schedule: ["before 8am on thursday"],
branchPrefix: "renovate-",
dependencyDashboardHeader: "View repository job log [here](https://app.renovatebot.com/dashboard#github/cmur2/dyndnsd).",
separateMinorPatch: true,
commitMessagePrefix: "project: ",
commitMessageAction: "update",
commitMessageTopic: "{{depName}}",
@@ -19,6 +20,12 @@
matchManagers: ["bundler"],
enabled: false,
},
// prevent minor updates to Alpine 3.14 due to https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.14.0#faccessat2
{
matchManagers: ["dockerfile"],
matchUpdateTypes: ["minor"],
enabled: false,
},
// Commit message formats
{
matchDatasources: ["docker"],

View File

@@ -1,5 +1,11 @@
# Changelog
## 3.4.7 (November 19th, 2021)
OTHER:
- re-release 3.4.6 to rebuild Docker image with security vulnerabilities fixes
## 3.4.6 (November 19th, 2021)
OTHER:

View File

@@ -1,4 +1,4 @@
FROM alpine:3.13.6
FROM alpine:3.13.7
EXPOSE 5353 8080

View File

@@ -1,4 +1,4 @@
FROM alpine:3.13.6
FROM alpine:3.13.7
EXPOSE 5353 8080

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Dyndnsd
VERSION = '3.4.6'
VERSION = '3.4.7'
end