Eventual-Inc
Daft
Blog
Docs
Changelog
Blog
Docs
Changelog
Overview
Branches
Benchmarks
Runs
Performance History
Latest Results
Merge branch 'main' into slade/add-mutable-check
slade/add-mutable-check
6 hours ago
chore(deps): bump the all group across 1 directory with 7 updates Bumps the all group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action) | `2.8.0` | `2.9.0` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `3.0.3` | `4.0.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | | [isbang/compose-action](https://github.com/isbang/compose-action) | `3.0.0` | `3.1.0` | | [CodSpeedHQ/action](https://github.com/codspeedhq/action) | `4` | `5` | Updates `lycheeverse/lychee-action` from 2.8.0 to 2.9.0 - [Release notes](https://github.com/lycheeverse/lychee-action/releases) - [Commits](https://github.com/lycheeverse/lychee-action/compare/v2.8.0...v2.9.0) Updates `slackapi/slack-github-action` from 3.0.3 to 4.0.0 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/slackapi/slack-github-action/compare/v3.0.3...v4.0.0) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) Updates `isbang/compose-action` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/isbang/compose-action/releases) - [Commits](https://github.com/isbang/compose-action/compare/v3.0.0...v3.1.0) Updates `CodSpeedHQ/action` from 4 to 5 - [Release notes](https://github.com/codspeedhq/action/releases) - [Changelog](https://github.com/CodSpeedHQ/action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codspeedhq/action/compare/v4...v5) --- updated-dependencies: - dependency-name: lycheeverse/lychee-action dependency-version: 2.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: slackapi/slack-github-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: isbang/compose-action dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: CodSpeedHQ/action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot/github_actions/all-7af53f5331
6 hours ago
fix: Fix startup of IO-Integration Docker Compose (#7499) ## Changes Made Update the Docker Compose for setting up the IO and catalog integration tests so that startup is properly tracked. Pinned and switched some of the images in both
main
6 hours ago
address issues
slade/add-mutable-check
6 hours ago
also fix catalogs
slade/fix-integration
7 hours ago
fix(utf8): preserve backslashes in regexp_replace replacement (#7472) ## Changes Made Replaces the `regex_replace_posix_groups` rewrite `(|\\)(\\d*)` with a single left-to-right scan that translates POSIX group references (`\\1` -> `${1}`) for the `regex` crate: - `\\\\` collapses to one backslash (escaped backslash, takes precedence so `\\\\1` stays literal `\\1`) - `\\` + digits becomes a group reference (`\\1`, `\\12`, `\\0`) - lone/trailing backslashes are preserved literally (e.g. `a\\b` stays `a\\b`), since the `regex` crate treats backslashes in replacements literally - `$1`/`${1}`/`$$` pass through untouched, keeping exact `regex`-crate semantics - returns `Cow<str>` (borrowed when no backslash is present) instead of running a regex engine and always allocating per row This goes beyond the suggested `\\d+` minimal fix, which would leave `\\\\` as two backslashes and misparse `\\\\1` as a group reference starting at the second backslash. ## Related Issues Closes #7471 ## Verification - `cargo test -p daft-functions-utf8 --lib replace`: 8 passed (2 new tests) - Issue repro via `daft.functions.regexp_replace`: `a\\b` -> `aa\\bc`, `\\\\` -> `a\\c`, `x\\` -> `ax\\c` (were `aabc`/`ac`/`axc`) - `DAFT_RUNNER=native pytest tests/recordbatch/utf8/test_replace.py`: 16 passed (9 new parametrized cases) - `DAFT_RUNNER=native pytest tests/expressions/test_utf8.py tests/sql/test_utf8_exprs.py`: 23 passed --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
main
8 hours ago
feat(io): add WebDataset reader (#7493) Added read_webdataset for reading uncompressed WebDataset TAR shards through Daft's DataSource API. - Group archive members into samples using their filename prefixes - Decode JSON, text, and integer metadata fields - expose binary media as lazy byte-range-backed File columns - Support local and remote paths, globs, directories, and multiple shards - Add WebDataset support to read_huggingface - Document the API and add reader and integration tests Closes Eventual-Inc/Daft#7342
main
8 hours ago
save
slade/add-mutable-check
8 hours ago
Latest Branches
CodSpeed Performance Gauge
0%
chore: Add check for mutable values in default arguments
#7494
6 hours ago
5f34fb0
slade/add-mutable-check
CodSpeed Performance Gauge
N/A
chore(deps): bump the all group across 1 directory with 7 updates
#7501
6 hours ago
084d5e2
dependabot/github_actions/all-7af53f5331
CodSpeed Performance Gauge
0%
fix: Fix startup of IO-Integration Docker Compose
#7499
7 hours ago
fe7816d
slade/fix-integration
© 2026 CodSpeed Technology
Home
Terms
Privacy
Docs