1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2026-04-01 10:18:29 +02:00

Compare commits

...

7 Commits

Author SHA1 Message Date
renovate[bot]
0edc4b3400 docker: update alpine Docker tag to v3.22.3 2026-02-02 16:51:20 +00:00
dependabot[bot]
f34a27b06d gems: update rubocop requirement from ~> 1.82.0 to ~> 1.84.0
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop/compare/v1.82.0...v1.84.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.84.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-02 14:36:14 +01:00
cn
8738b8bda5 gem: support Ruby 4.0 2026-01-17 16:22:47 +01:00
dependabot[bot]
4096a4ee08 gems: update solargraph requirement from ~> 0.55.0 to ~> 0.58.1
Updates the requirements on [solargraph](https://github.com/castwide/solargraph) to permit the latest version.
- [Changelog](https://github.com/castwide/solargraph/blob/master/CHANGELOG.md)
- [Commits](https://github.com/castwide/solargraph/commits)

---
updated-dependencies:
- dependency-name: solargraph
  dependency-version: 0.58.1
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-17 16:20:42 +01:00
dependabot[bot]
13064ff988 gems: update rubocop-rspec requirement from ~> 3.8.0 to ~> 3.9.0
Updates the requirements on [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop-rspec/compare/v3.8.0...v3.9.0)

---
updated-dependencies:
- dependency-name: rubocop-rspec
  dependency-version: 3.9.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-12 15:57:57 +01:00
renovate[bot]
477c9452a6 project: update aquasecurity/trivy to v0.68.2 2026-01-01 13:39:58 +01:00
dependabot[bot]
4a29e9770d gems: update rubocop requirement from ~> 1.81.1 to ~> 1.82.0
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop/compare/v1.81.1...v1.82.0)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-version: 1.82.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-22 22:05:19 +01:00
6 changed files with 13 additions and 7 deletions

View File

@@ -19,9 +19,9 @@ jobs:
matrix: matrix:
ruby-version: ruby-version:
- '3.1' - '3.1'
- '3.2'
- '3.3' - '3.3'
- '3.4' - '3.4'
- '4.0'
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: Set up Ruby ${{ matrix.ruby-version }} - name: Set up Ruby ${{ matrix.ruby-version }}

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## 3.13.0
IMPROVEMENTS:
- add Ruby 4.0 support
## 3.12.0 (December 4th, 2025) ## 3.12.0 (December 4th, 2025)
IMPROVEMENTS: IMPROVEMENTS:

View File

@@ -16,7 +16,7 @@ end
hadolint_version = 'v2.14.0' hadolint_version = 'v2.14.0'
# renovate: datasource=github-tags depName=aquasecurity/trivy # renovate: datasource=github-tags depName=aquasecurity/trivy
trivy_version = 'v0.67.0' trivy_version = 'v0.68.2'
namespace :docker do namespace :docker do
ci_image = 'cmur2/dyndnsd:ci' ci_image = 'cmur2/dyndnsd:ci'

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.2 FROM alpine:3.22.3
EXPOSE 5353 8080 EXPOSE 5353 8080

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.2 FROM alpine:3.22.3
EXPOSE 5353 8080 EXPOSE 5353 8080

View File

@@ -44,8 +44,8 @@ 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.81.1' s.add_development_dependency 'rubocop', '~> 1.84.0'
s.add_development_dependency 'rubocop-rake', '~> 0.7.1' s.add_development_dependency 'rubocop-rake', '~> 0.7.1'
s.add_development_dependency 'rubocop-rspec', '~> 3.8.0' s.add_development_dependency 'rubocop-rspec', '~> 3.9.0'
s.add_development_dependency 'solargraph', '~> 0.55.0' s.add_development_dependency 'solargraph', '~> 0.58.1'
end end