Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test_on_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
ruby: ['3.2.9', '3.3.10', '3.4.7', 'head', '3.5.0-preview1']
duckdb: ['1.4.1', '1.3.2']
duckdb: ['1.4.2', '1.3.2']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_on_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
ruby: ['3.2.9', '3.3.10', '3.4.7', 'head', '3.5.0-preview1']
duckdb: ['1.4.1', '1.3.2']
duckdb: ['1.4.2', '1.3.2']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_on_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
ruby: ['3.2.9', '3.3.10', '3.4.7', 'ucrt', 'mingw', 'mswin', 'head']
duckdb: ['1.4.1', '1.3.2']
duckdb: ['1.4.2', '1.3.2']

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
# Unreleased
- drop duckdb v1.2.x.
- bump duckdb to 1.3.0.
- bump duckdb to 1.4.2 on CI.

# 1.4.1.1 - 2025-11-03
- DuckDB::Connection#appender_from_query accepts block.
Expand Down
2 changes: 1 addition & 1 deletion test/duckdb_test/database_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_s_open_argument

def test_s_open_with_config
library_version = Gem::Version.new(DuckDB::LIBRARY_VERSION)
skip 'config test' if %w[1.4.0 1.4.1].include?(library_version.to_s)
skip 'config test' if %w[1.4.0 1.4.1 1.4.2].include?(library_version.to_s)

config = DuckDB::Config.new
config['default_order'] = 'DESC'
Expand Down