dyndnsd 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/README.md +1 -1
- data/lib/dyndnsd/helper.rb +1 -1
- data/lib/dyndnsd/textfile_reporter.rb +1 -1
- data/lib/dyndnsd/version.rb +1 -1
- metadata +5 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c42962fd7f8ba91a340791ff120aff65d5c309fb48f636ecafa7e797b4db080
|
|
4
|
+
data.tar.gz: d63fcb45a32507f06e238c517f5c5ca9944b0c235e03dc2ea8a8f7f02cdf6f53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d287f704fa72399ae818a41fe2b3d152bab9cf7171826189f0332a1f1514540f16374d2465bb502ebbbc2df5b2d64c5a6a21a17109272375ac17ff397a914e1
|
|
7
|
+
data.tar.gz: e26fb3814134509aee783362f91cae332899135684f1605cbbc4cc752d4c8f888bd8c4148744ab8a6c9f3e7722e2498fbf195b228e68e39e2d48b786b7621ad0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 3.1.
|
|
3
|
+
## 3.1.2 (December 20, 2020)
|
|
4
|
+
|
|
5
|
+
OTHER:
|
|
6
|
+
|
|
7
|
+
- fixes vulnerabilities in Docker image by using updated Alpine base image
|
|
8
|
+
- start using Github Actions CI for tests and drop Travis CI
|
|
9
|
+
|
|
10
|
+
## 3.1.1 (October 3, 2020)
|
|
4
11
|
|
|
5
12
|
IMPROVEMENTS:
|
|
6
13
|
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# dyndnsd.rb
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
 [](https://depfu.com/github/cmur2/dyndnsd)
|
|
4
4
|
|
|
5
5
|
A small, lightweight and extensible DynDNS server written with Ruby and Rack.
|
|
6
6
|
|
data/lib/dyndnsd/helper.rb
CHANGED
|
@@ -18,7 +18,7 @@ module Dyndnsd
|
|
|
18
18
|
|
|
19
19
|
@registry = options[:registry] || Metriks::Registry.default
|
|
20
20
|
@interval = options[:interval] || 60
|
|
21
|
-
@on_error = options[:on_error] || proc { |ex| }
|
|
21
|
+
@on_error = options[:on_error] || proc { |ex| } # default: ignore errors
|
|
22
22
|
end
|
|
23
23
|
|
|
24
24
|
# @return [void]
|
data/lib/dyndnsd/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dyndnsd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Nicolai
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: async-dns
|
|
@@ -184,28 +184,14 @@ dependencies:
|
|
|
184
184
|
requirements:
|
|
185
185
|
- - "~>"
|
|
186
186
|
- !ruby/object:Gem::Version
|
|
187
|
-
version:
|
|
187
|
+
version: 1.6.1
|
|
188
188
|
type: :development
|
|
189
189
|
prerelease: false
|
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
|
191
191
|
requirements:
|
|
192
192
|
- - "~>"
|
|
193
193
|
- !ruby/object:Gem::Version
|
|
194
|
-
version:
|
|
195
|
-
- !ruby/object:Gem::Dependency
|
|
196
|
-
name: solargraph
|
|
197
|
-
requirement: !ruby/object:Gem::Requirement
|
|
198
|
-
requirements:
|
|
199
|
-
- - ">="
|
|
200
|
-
- !ruby/object:Gem::Version
|
|
201
|
-
version: '0'
|
|
202
|
-
type: :development
|
|
203
|
-
prerelease: false
|
|
204
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
205
|
-
requirements:
|
|
206
|
-
- - ">="
|
|
207
|
-
- !ruby/object:Gem::Version
|
|
208
|
-
version: '0'
|
|
194
|
+
version: 1.6.1
|
|
209
195
|
description: A small, lightweight and extensible DynDNS server written with Ruby and
|
|
210
196
|
Rack.
|
|
211
197
|
email:
|
|
@@ -253,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
253
239
|
- !ruby/object:Gem::Version
|
|
254
240
|
version: '0'
|
|
255
241
|
requirements: []
|
|
256
|
-
rubygems_version: 3.1.
|
|
242
|
+
rubygems_version: 3.1.4
|
|
257
243
|
signing_key:
|
|
258
244
|
specification_version: 4
|
|
259
245
|
summary: dyndnsd.rb
|