mirror of
https://github.com/cmur2/dyndnsd.git
synced 2025-08-08 08:33:56 +02:00
Compare commits
2 Commits
depfu-upda
...
v3.10.0
Author | SHA1 | Date | |
---|---|---|---|
8f7a796e9d | |||
81dc2aba4c |
10
.github/renovate.json5
vendored
10
.github/renovate.json5
vendored
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
extends: [
|
extends: [
|
||||||
"config:recommended",
|
"config:base",
|
||||||
":dependencyDashboard",
|
":dependencyDashboard",
|
||||||
":prHourlyLimitNone",
|
":prHourlyLimitNone",
|
||||||
":prConcurrentLimitNone",
|
":prConcurrentLimitNone",
|
||||||
@@ -15,6 +15,11 @@
|
|||||||
commitMessageTopic: "{{depName}}",
|
commitMessageTopic: "{{depName}}",
|
||||||
commitMessageExtra: "to {{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}",
|
commitMessageExtra: "to {{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}",
|
||||||
packageRules: [
|
packageRules: [
|
||||||
|
// Ruby dependencies are managed by depfu
|
||||||
|
{
|
||||||
|
matchManagers: ["bundler"],
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
// Commit message formats
|
// Commit message formats
|
||||||
{
|
{
|
||||||
matchDatasources: ["docker"],
|
matchDatasources: ["docker"],
|
||||||
@@ -25,9 +30,8 @@
|
|||||||
commitMessagePrefix: "ci: ",
|
commitMessagePrefix: "ci: ",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
customManagers: [
|
regexManagers: [
|
||||||
{
|
{
|
||||||
customType: "regex",
|
|
||||||
fileMatch: ["\.rb$", "^Rakefile$"],
|
fileMatch: ["\.rb$", "^Rakefile$"],
|
||||||
matchStrings: [
|
matchStrings: [
|
||||||
"renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\s.*_version = '(?<currentValue>.*)'\\s"
|
"renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\s.*_version = '(?<currentValue>.*)'\\s"
|
||||||
|
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@@ -43,13 +43,3 @@ jobs:
|
|||||||
echo "::add-matcher::.github/actionlint-matcher.json"
|
echo "::add-matcher::.github/actionlint-matcher.json"
|
||||||
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
|
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
|
||||||
./actionlint
|
./actionlint
|
||||||
|
|
||||||
renovate-config-validator:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ghcr.io/renovatebot/renovate
|
|
||||||
options: --user root
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Check Renovate config
|
|
||||||
run: renovate-config-validator --strict
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 3.10.0
|
## 3.10.0 (January 18th, 2024)
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# dyndnsd.rb
|
# dyndnsd.rb
|
||||||
|
|
||||||

|
 [](https://depfu.com/github/cmur2/dyndnsd)
|
||||||
|
|
||||||
A small, lightweight and extensible DynDNS server written with Ruby and Rack.
|
A small, lightweight and extensible DynDNS server written with Ruby and Rack.
|
||||||
|
|
||||||
|
2
Rakefile
2
Rakefile
@@ -18,7 +18,7 @@ end
|
|||||||
hadolint_version = 'v2.12.0'
|
hadolint_version = 'v2.12.0'
|
||||||
|
|
||||||
# renovate: datasource=github-tags depName=aquasecurity/trivy
|
# renovate: datasource=github-tags depName=aquasecurity/trivy
|
||||||
trivy_version = 'v0.50.4'
|
trivy_version = 'v0.48.3'
|
||||||
|
|
||||||
namespace :docker do
|
namespace :docker do
|
||||||
ci_image = 'cmur2/dyndnsd:ci'
|
ci_image = 'cmur2/dyndnsd:ci'
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.19.1
|
FROM alpine:3.19.0
|
||||||
|
|
||||||
EXPOSE 5353 8080
|
EXPOSE 5353 8080
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.19.1
|
FROM alpine:3.19.0
|
||||||
|
|
||||||
EXPOSE 5353 8080
|
EXPOSE 5353 8080
|
||||||
|
|
||||||
|
@@ -42,7 +42,7 @@ Gem::Specification.new do |s|
|
|||||||
s.add_development_dependency 'rack-test'
|
s.add_development_dependency 'rack-test'
|
||||||
s.add_development_dependency 'rake'
|
s.add_development_dependency 'rake'
|
||||||
s.add_development_dependency 'rspec'
|
s.add_development_dependency 'rspec'
|
||||||
s.add_development_dependency 'rubocop', '~> 1.63.5'
|
s.add_development_dependency 'rubocop', '~> 1.60.0'
|
||||||
s.add_development_dependency 'rubocop-rake', '~> 0.6.0'
|
s.add_development_dependency 'rubocop-rake', '~> 0.6.0'
|
||||||
s.add_development_dependency 'rubocop-rspec', '~> 2.26.1'
|
s.add_development_dependency 'rubocop-rspec', '~> 2.26.1'
|
||||||
s.add_development_dependency 'solargraph', '~> 0.50.0'
|
s.add_development_dependency 'solargraph', '~> 0.50.0'
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Dyndnsd
|
module Dyndnsd
|
||||||
VERSION = '3.9.2'
|
VERSION = '3.10.0'
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user