1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-12-14 13:48:10 +01:00

Compare commits

..

12 Commits

Author SHA1 Message Date
dependabot[bot]
4c7c164493 gems: update async requirement from ~> 1.31.0 to >= 1.31, < 2.36
Updates the requirements on [async](https://github.com/socketry/async) to permit the latest version.
- [Release notes](https://github.com/socketry/async/releases)
- [Changelog](https://github.com/socketry/async/blob/main/releases.md)
- [Commits](https://github.com/socketry/async/compare/v1.31.0...v2.35.0)

---
updated-dependencies:
- dependency-name: async
  dependency-version: 2.35.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-01 12:51:31 +00:00
renovate[bot]
415635f373 ci: update actions/checkout action to v6 2025-11-27 09:57:52 +01:00
dependabot[bot]
694a3e4c21 gems: update rubocop-rspec requirement from ~> 3.7.0 to ~> 3.8.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.7.0...v3.8.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-24 12:51:52 +01:00
renovate[bot]
74aec5f873 docker: update alpine Docker tag to v3.22.2 2025-10-09 16:37:24 +02:00
cn
34f2c01543 ci: run vulnscan less often 2025-10-02 20:37:01 +02:00
cn
62e2067e5b release: 3.11.0 2025-10-02 20:27:15 +02:00
renovate[bot]
62df373c77 project: update aquasecurity/trivy to v0.67.0 2025-10-02 20:23:25 +02:00
7a1302082b Merge branch 'master' into update-3.3 2025-10-02 20:20:44 +02:00
dependabot[bot]
ea3591564d gems: update rubocop requirement from ~> 1.80.0 to ~> 1.81.1
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.80.0...v1.81.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-29 19:08:22 +02:00
renovate[bot]
bc2262e2bb project: update hadolint/hadolint to v2.14.0 2025-09-25 11:06:33 +02:00
cn
8f7a796e9d release: 3.10.0 2024-01-18 23:19:49 +01:00
cn
81dc2aba4c gem: support Ruby 3.3 2024-01-18 23:12:23 +01:00
9 changed files with 17 additions and 17 deletions

View File

@@ -11,7 +11,7 @@ jobs:
release-dockerimage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Extract dyndnsd version from tag name
run: |

View File

@@ -23,7 +23,7 @@ jobs:
- '3.3'
- '3.4'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
@@ -37,7 +37,7 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check workflow files
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
@@ -50,6 +50,6 @@ jobs:
image: ghcr.io/renovatebot/renovate
options: --user root
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check Renovate config
run: renovate-config-validator --strict

View File

@@ -1,10 +1,9 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
---
name: vulnscan
on:
schedule:
- cron: '7 4 * * 4' # weekly on thursday morning
- cron: '7 4 1 * *' # monthly on first day's morning
workflow_dispatch:
jobs:

View File

@@ -1,12 +1,13 @@
# Changelog
## 3.11.0
## 3.11.0 (October 2nd, 2025)
IMPROVEMENTS:
- add Ruby 3.4 support
- update base of Docker image to Alpine 3.22.1 (from 3.19.0 before)
## 3.10.0
## 3.10.0 (January 18th, 2024)
IMPROVEMENTS:

View File

@@ -13,10 +13,10 @@ task :solargraph do
end
# renovate: datasource=github-tags depName=hadolint/hadolint
hadolint_version = 'v2.13.1'
hadolint_version = 'v2.14.0'
# renovate: datasource=github-tags depName=aquasecurity/trivy
trivy_version = 'v0.61.0'
trivy_version = 'v0.67.0'
namespace :docker do
ci_image = 'cmur2/dyndnsd:ci'

View File

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

View File

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

View File

@@ -27,13 +27,13 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 3.0'
s.add_dependency 'async', '~> 1.31.0'
s.add_dependency 'async', '>= 1.31', '< 2.36'
s.add_dependency 'async-dns', '~> 1.3.0'
s.add_dependency 'base64', '~> 0.2.0' # needed for async
s.add_dependency 'logger', '>= 1.6', '< 1.8'
s.add_dependency 'metriks'
s.add_dependency 'opentelemetry-exporter-jaeger', '~> 0.22.0'
s.add_dependency 'opentelemetry-instrumentation-rack', '>= 0.22', '< 0.28'
s.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.22.0'
s.add_dependency 'opentelemetry-sdk', '~> 1.2.0'
s.add_dependency 'rack', '~> 3.0'
s.add_dependency 'rackup', '~> 2'
@@ -44,8 +44,8 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rack-test'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '~> 1.80.0'
s.add_development_dependency 'rubocop', '~> 1.81.1'
s.add_development_dependency 'rubocop-rake', '~> 0.7.1'
s.add_development_dependency 'rubocop-rspec', '~> 3.7.0'
s.add_development_dependency 'rubocop-rspec', '~> 3.8.0'
s.add_development_dependency 'solargraph', '~> 0.55.0'
end

View File

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