prepare release ruby-duckdb 1.5.5.0#1435
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (3)
📝 WalkthroughWalkthroughThe release version is updated to 1.5.5.0 in the Ruby version constant and changelog, while the Docker build argument advances to DuckDB 1.5.5. ChangesRelease version alignment
Estimated code review effort: 1 (Trivial) | ~2 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release Notes - Version 1.5.5.0
New Features
DuckDB::Valuecreators for the remaining types:create_date,create_time,create_time_ns,create_time_tz,create_timestamp,create_timestamp_s,create_timestamp_ms,create_timestamp_ns,create_timestamp_tz,create_interval,create_list,create_array,create_struct,create_map,create_enum,create_union,create_bit,create_bignum.DuckDB::Value#to_rubyconverts a value to a Ruby object, including LIST/ARRAY (Array), STRUCT/MAP (Hash), ENUM (String), UNION (member value), BIT (String of0/1), BIGNUM (Integer), BLOB (BINARY String) and DECIMAL (BigDecimal), recursively.#list_size,#list_child,#struct_child,#map_size,#map_key,#map_value.DuckDB::Connection#table_names(sql, qualified: false)returns the table names referenced by a SQL query without executing it.DuckDB::PreparedStatement#column_count,#column_name,#column_type,#column_logical_typeexpose result-set column metadata without executing the statement.DuckDB::PreparedStatement#param_logical_type(param_index)returns theDuckDB::LogicalTypeof a bind parameter.DuckDB::Error#error_typereturns the DuckDB error category as a Symbol (e.g.:constraint,:catalog,:parser).DuckDB::ScalarFunctionandDuckDB::AggregateFunction(requires DuckDB >= 1.5.0).Bug Fixes
Timewith full nanosecond precision instead of being truncated to microseconds.Other
Summary by CodeRabbit
New Features
Chores