mirror of
https://github.com/cmur2/dyndnsd.git
synced 2025-08-08 08:33:56 +02:00
Compare commits
36 Commits
v3.1.0.rc1
...
v3.1.3
Author | SHA1 | Date | |
---|---|---|---|
d89c1c6091 | |||
2a7ea2bb8f | |||
94823dc041 | |||
![]() |
4c25b9b66b | ||
fb42c57ff1 | |||
![]() |
268e18f2e5 | ||
e8e9e0cb71 | |||
![]() |
8819d6058a | ||
dc325d686e | |||
![]() |
f0aeea96d4 | ||
ff136f7b16 | |||
![]() |
377a6ac179 | ||
![]() |
2cc45e5c0f | ||
19683672d1 | |||
4c1fb5783d | |||
d8f5618006 | |||
e063b6cb4c | |||
![]() |
f64bcc0780 | ||
![]() |
568ea08543 | ||
![]() |
5c16524788 | ||
d1c1a98e47 | |||
d62bf71820 | |||
156557c6d7 | |||
fd1d58abd6 | |||
![]() |
fc4d731434 | ||
![]() |
8b42a916d0 | ||
![]() |
e899488fa9 | ||
6ed0799f49 | |||
5b332d8f57 | |||
0de5078d9d | |||
![]() |
72c8dda7dd | ||
e36b210f66 | |||
fcc3f12284 | |||
bf68049260 | |||
35ced6468e | |||
4833328557 |
4
.github/workflows/cd.yml
vendored
4
.github/workflows/cd.yml
vendored
@@ -10,10 +10,10 @@ jobs:
|
|||||||
release-dockerimage:
|
release-dockerimage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Extract dyndnsd version from tag name
|
- name: Extract dyndnsd version from tag name
|
||||||
run: |
|
run: |
|
||||||
echo ::set-env name=DYNDNSD_VERSION::${GITHUB_REF#refs/*/v}
|
echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
|
||||||
# https://github.com/marketplace/actions/build-and-push-docker-images
|
# https://github.com/marketplace/actions/build-and-push-docker-images
|
||||||
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
|
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
|
||||||
uses: docker/build-push-action@v1
|
uses: docker/build-push-action@v1
|
||||||
|
33
.github/workflows/ci.yml
vendored
Normal file
33
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
name: ci
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '35 4 * * 4' # weekly on thursday morning
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
ruby-version:
|
||||||
|
- '2.5'
|
||||||
|
- '2.6'
|
||||||
|
- '2.7'
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
||||||
|
uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: ${{ matrix.ruby-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
bundle
|
||||||
|
- name: Test
|
||||||
|
run: |
|
||||||
|
bundle exec rake ci
|
19
.github/workflows/dockerhub.yml
vendored
Normal file
19
.github/workflows/dockerhub.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
name: dockerhub
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '7 4 * * 4' # weekly on thursday morning
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
pull-released-dockerimages:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Avoid stale tags by pulling
|
||||||
|
run: |
|
||||||
|
ALL_IMAGES="$(curl -s https://hub.docker.com/v2/repositories/cmur2/dyndnsd/tags?page_size=1000 | jq -r '.results[].name | "cmur2/dyndnsd:" + .' | grep -e 'cmur2/dyndnsd:v')"
|
||||||
|
for image in $ALL_IMAGES; do
|
||||||
|
echo "Pulling $image to avoid staleness..."
|
||||||
|
docker pull "$image"
|
||||||
|
done
|
10
.github/workflows/vulnscan.yml
vendored
10
.github/workflows/vulnscan.yml
vendored
@@ -4,6 +4,7 @@ name: vulnscan
|
|||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '7 4 * * 4' # weekly on thursday morning
|
- cron: '7 4 * * 4' # weekly on thursday morning
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
scan-released-dockerimages:
|
scan-released-dockerimages:
|
||||||
@@ -16,22 +17,25 @@ jobs:
|
|||||||
- name: Install Trivy
|
- name: Install Trivy
|
||||||
run: |
|
run: |
|
||||||
mkdir -p $GITHUB_WORKSPACE/bin
|
mkdir -p $GITHUB_WORKSPACE/bin
|
||||||
echo "::add-path::$GITHUB_WORKSPACE/bin"
|
echo "$GITHUB_WORKSPACE/bin" >> "$GITHUB_PATH"
|
||||||
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/master/contrib/install.sh | sh -s -- -b $GITHUB_WORKSPACE/bin
|
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/master/contrib/install.sh | sh -s -- -b $GITHUB_WORKSPACE/bin
|
||||||
- name: Download Trivy DB
|
- name: Download Trivy DB
|
||||||
run: |
|
run: |
|
||||||
trivy image --download-db-only
|
trivy image --download-db-only
|
||||||
- name: Scan vulnerabilities using Trivy
|
- name: Scan vulnerabilities using Trivy
|
||||||
|
env:
|
||||||
|
TRIVY_SKIP_DIRS: 'usr/lib/ruby/gems/2.7.0/gems/jaeger-client-0.10.0/crossdock,usr/lib/ruby/gems/2.7.0/gems/jaeger-client-1.0.0/crossdock,usr/lib/ruby/gems/2.7.0/gems/jaeger-client-1.1.0/crossdock'
|
||||||
run: |
|
run: |
|
||||||
trivy --version
|
trivy --version
|
||||||
|
|
||||||
ALL_IMAGES="$(curl -s https://hub.docker.com/v2/repositories/cmur2/dyndnsd/tags?page_size=1000 | jq -r '.results[].name | "cmur2/dyndnsd:" + .' | grep -e 'cmur2/dyndnsd:v' | sort -r)"
|
# semver sorting as per https://stackoverflow.com/a/40391207/2148786
|
||||||
|
ALL_IMAGES="$(curl -s https://hub.docker.com/v2/repositories/cmur2/dyndnsd/tags?page_size=1000 | jq -r '.results[].name | "cmur2/dyndnsd:" + .' | grep -e 'cmur2/dyndnsd:v' | sed '/-/!{s/$/_/}' | sort -r -V | sed 's/_$//')"
|
||||||
EXIT_CODE=0
|
EXIT_CODE=0
|
||||||
set -e
|
set -e
|
||||||
for major_version in $(seq 1 10); do
|
for major_version in $(seq 1 10); do
|
||||||
for image in $ALL_IMAGES; do
|
for image in $ALL_IMAGES; do
|
||||||
if [[ "$image" = cmur2/dyndnsd:v$major_version.* ]]; then
|
if [[ "$image" = cmur2/dyndnsd:v$major_version.* ]]; then
|
||||||
echo -n "\nScanning newest patch release $image of major v$major_version...\n"
|
echo -e "\nScanning newest patch release $image of major v$major_version...\n"
|
||||||
if ! trivy image --skip-update --exit-code 1 "$image"; then
|
if ! trivy image --skip-update --exit-code 1 "$image"; then
|
||||||
EXIT_CODE=1
|
EXIT_CODE=1
|
||||||
fi
|
fi
|
||||||
|
10
.travis.yml
10
.travis.yml
@@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
os: linux
|
|
||||||
language: ruby
|
|
||||||
rvm:
|
|
||||||
- 2.7
|
|
||||||
- 2.6
|
|
||||||
- 2.5
|
|
||||||
|
|
||||||
script:
|
|
||||||
- bundle exec rake travis
|
|
21
CHANGELOG.md
21
CHANGELOG.md
@@ -1,6 +1,25 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 3.1.0
|
## 3.1.3 (December 20, 2020)
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- fix Docker image release process in Github Actions CI, 3.1.2 was not released as a Docker image
|
||||||
|
|
||||||
|
## 3.1.2 (December 20, 2020)
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- fixes vulnerabilities in Docker image by using updated Alpine base image
|
||||||
|
- start using Github Actions CI for tests and drop Travis CI
|
||||||
|
|
||||||
|
## 3.1.1 (October 3, 2020)
|
||||||
|
|
||||||
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
- Use webrick gem which contains fixes against [CVE-2020-25613](https://www.ruby-lang.org/en/news/2020/09/29/http-request-smuggling-cve-2020-25613/)
|
||||||
|
|
||||||
|
## 3.1.0 (August 19, 2020)
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
2
Gemfile
2
Gemfile
@@ -3,3 +3,5 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
|
gem 'solargraph', git: 'https://github.com/zaratan/solargraph.git', branch: 'fix_rubocop_1_0'
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# dyndnsd.rb
|
# dyndnsd.rb
|
||||||
|
|
||||||
[](https://travis-ci.org/cmur2/dyndnsd) [](https://depfu.com/github/cmur2/dyndnsd)
|
 [](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.
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ The Docker image consumes the same configuration file in YAML format as the gem,
|
|||||||
host: "0.0.0.0"
|
host: "0.0.0.0"
|
||||||
port: 8080
|
port: 8080
|
||||||
# omit the logfile: option so logging to STDOUT will happen automatically
|
# omit the logfile: option so logging to STDOUT will happen automatically
|
||||||
db: "/var/lib/db.json"
|
db: "/var/lib/dyndnsd/db.json"
|
||||||
|
|
||||||
# User's settings for updater and permissions follow here!
|
# User's settings for updater and permissions follow here!
|
||||||
```
|
```
|
||||||
@@ -94,7 +94,7 @@ Run the Docker image exposing the DynDNS-API on host port 8080 via:
|
|||||||
docker run -d --name dyndnsd \
|
docker run -d --name dyndnsd \
|
||||||
-p 8080:8080 \
|
-p 8080:8080 \
|
||||||
-v /host/path/to/dyndnsd/config.yml:/etc/dyndnsd/config.yml \
|
-v /host/path/to/dyndnsd/config.yml:/etc/dyndnsd/config.yml \
|
||||||
-v /host/path/to/dyndnsd/db.json:/var/lib/db.json \
|
-v /host/ptherpath/to/dyndnsd/datadir:/var/lib/dyndnsd \
|
||||||
cmur2/dyndnsd:vX.Y.Z
|
cmur2/dyndnsd:vX.Y.Z
|
||||||
```
|
```
|
||||||
|
|
||||||
|
23
Rakefile
23
Rakefile
@@ -9,16 +9,23 @@ RSpec::Core::RakeTask.new(:spec)
|
|||||||
RuboCop::RakeTask.new
|
RuboCop::RakeTask.new
|
||||||
Bundler::Audit::Task.new
|
Bundler::Audit::Task.new
|
||||||
|
|
||||||
desc 'Should be run by developer once to prepare initial solargraph usage (fill caches etc.)'
|
|
||||||
task :'solargraph:init' do
|
|
||||||
sh 'solargraph download-core'
|
|
||||||
end
|
|
||||||
|
|
||||||
desc 'Run experimental solargraph type checker'
|
desc 'Run experimental solargraph type checker'
|
||||||
task :'solargraph:tc' do
|
task :solargraph do
|
||||||
sh 'solargraph typecheck'
|
sh 'solargraph typecheck'
|
||||||
end
|
end
|
||||||
|
|
||||||
task default: [:rubocop, :spec, 'bundle:audit']
|
namespace :solargraph do
|
||||||
|
desc 'Should be run by developer once to prepare initial solargraph usage (fill caches etc.)'
|
||||||
|
task :init do
|
||||||
|
sh 'solargraph download-core'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
task travis: [:default, :'solargraph:init', :'solargraph:tc']
|
desc 'Run hadolint for Dockerfile linting'
|
||||||
|
task :hadolint do
|
||||||
|
sh 'docker run --rm -i hadolint/hadolint:v1.18.0 hadolint --ignore DL3018 - < docker/Dockerfile'
|
||||||
|
end
|
||||||
|
|
||||||
|
task default: [:rubocop, :spec, 'bundle:audit', :solargraph]
|
||||||
|
|
||||||
|
task ci: ['solargraph:init', :default, :hadolint]
|
||||||
|
@@ -28,17 +28,18 @@ Gem::Specification.new do |s|
|
|||||||
s.required_ruby_version = '>= 2.5'
|
s.required_ruby_version = '>= 2.5'
|
||||||
|
|
||||||
s.add_runtime_dependency 'async-dns', '~> 1.2.0'
|
s.add_runtime_dependency 'async-dns', '~> 1.2.0'
|
||||||
s.add_runtime_dependency 'jaeger-client', '~> 1.0.0'
|
s.add_runtime_dependency 'jaeger-client', '~> 1.1.0'
|
||||||
s.add_runtime_dependency 'metriks'
|
s.add_runtime_dependency 'metriks'
|
||||||
s.add_runtime_dependency 'opentracing', '~> 0.5.0'
|
s.add_runtime_dependency 'opentracing', '~> 0.5.0'
|
||||||
s.add_runtime_dependency 'rack', '~> 2.0'
|
s.add_runtime_dependency 'rack', '~> 2.0'
|
||||||
s.add_runtime_dependency 'rack-tracer', '~> 0.9.0'
|
s.add_runtime_dependency 'rack-tracer', '~> 0.9.0'
|
||||||
|
s.add_runtime_dependency 'webrick', '>= 1.6.1'
|
||||||
|
|
||||||
s.add_development_dependency 'bundler'
|
s.add_development_dependency 'bundler'
|
||||||
s.add_development_dependency 'bundler-audit', '~> 0.7.0'
|
s.add_development_dependency 'bundler-audit', '~> 0.7.0'
|
||||||
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', '~> 0.89.0'
|
s.add_development_dependency 'rubocop', '~> 1.6.1'
|
||||||
s.add_development_dependency 'solargraph'
|
# s.add_development_dependency 'solargraph', '~> 0.39.0'
|
||||||
end
|
end
|
||||||
|
@@ -60,7 +60,7 @@ module Dyndnsd
|
|||||||
message: e.message,
|
message: e.message,
|
||||||
stack: e.backtrace&.join("\n") || ''
|
stack: e.backtrace&.join("\n") || ''
|
||||||
)
|
)
|
||||||
raise
|
raise e
|
||||||
ensure
|
ensure
|
||||||
scope.close
|
scope.close
|
||||||
end
|
end
|
||||||
|
@@ -18,7 +18,7 @@ module Dyndnsd
|
|||||||
|
|
||||||
@registry = options[:registry] || Metriks::Registry.default
|
@registry = options[:registry] || Metriks::Registry.default
|
||||||
@interval = options[:interval] || 60
|
@interval = options[:interval] || 60
|
||||||
@on_error = options[:on_error] || proc { |ex| }
|
@on_error = options[:on_error] || proc { |ex| } # default: ignore errors
|
||||||
end
|
end
|
||||||
|
|
||||||
# @return [void]
|
# @return [void]
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Dyndnsd
|
module Dyndnsd
|
||||||
VERSION = '3.1.0.rc1'
|
VERSION = '3.1.3'
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user