-
Notifications
You must be signed in to change notification settings - Fork 3
Filesystem: Add read support for more fsspec-based filesystems #254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
b3c60b3
78d8145
49a43bc
2e14f64
7b4e5be
3b9b008
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,8 @@ | |
| ## in progress | ||
|
|
||
| - Filesystem: Migrated local filesystem access to Apache Arrow. | ||
| - Filesystem: Added support for reading from | ||
| Dropbox, FTP, HDFS, OCI, OneDrive, OSS, R2, SharePoint, SMB, WebDAV. | ||
|
Comment on lines
+6
to
+7
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Include all connectors added by this PR in the changelog. The bullet omits Databricks Files, Google Drive, and WebHDFS. Add them or explicitly make the wording non-exhaustive. 🤖 Prompt for AI Agents |
||
|
|
||
| ## 2026/07/16 v0.7.0 | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -73,13 +73,7 @@ | |
|
|
||
| # -- Intersphinx ---------------------------------------------------------- | ||
|
|
||
| intersphinx_mapping = { | ||
| "crash": ("https://cratedb.com/docs/crate/crash/en/latest/", None), | ||
| "cloud": ("https://cratedb.com/docs/cloud/en/latest/", None), | ||
| "croud": ("https://cratedb.com/docs/cloud/cli/en/latest/", None), | ||
| "guide": ("https://cratedb.com/docs/guide/", None), | ||
| "influxio": ("https://influxio.readthedocs.io/", None), | ||
| } | ||
| intersphinx_mapping = {} | ||
| linkcheck_ignore = [ | ||
| r"https://pulse.internetsociety.org/", | ||
| r"https://www.g2.com/", | ||
|
|
@@ -101,6 +95,7 @@ | |
| r"https://github.com/", | ||
| r"https://web.archive.org/", | ||
| r"https://images.minimus.io/", | ||
| r"https://medium.com/", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Changed lines files:"
git diff --stat || true
echo
if [ -f docs/conf.py ]; then
echo "docs/conf.py outline:"
ast-grep outline docs/conf.py || true
echo
echo "docs/conf.py relevant lines:"
nl -ba docs/conf.py | sed -n '80,110p'
fi
echo
echo "Search for medium ignore pattern:"
rg -n "medium\.com" docs/conf.py . || trueRepository: panodata/omniload Length of output: 1399 🏁 Script executed: #!/bin/bash
set -euo pipefail
if [ -f docs/conf.py ]; then
echo "docs/conf.py relevant linkcheck lines:"
sed -n '77,105p' docs/conf.py
fi
echo
echo "Medium references:"
rg -n "medium\.com|linkcheck_ignore|linkcheck_anchors_ignore_for_url" docs/conf.py . || trueRepository: panodata/omniload Length of output: 1719 Narrow the Medium link-check ignore pattern.
🤖 Prompt for AI Agents |
||
| ] | ||
| linkcheck_anchors_ignore_for_url = [ | ||
| r"https://developers.zoom.us/", | ||
|
|
||
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔒 Security & Privacy | 🟠 Major | ⚡ Quick win
Add the failing fixture to the allowlist.
The new entries stop at Line 58, but Gitleaks still reports
generic-api-keyattests/main/filesystem/test_remote_read.pyLine 59, blocking CI. Add the current fixture location (or rewrite that fake credential fixture so it does not match the rule).Proposed fix
tests/main/filesystem/test_remote_read.py:generic-api-key:58 +tests/main/filesystem/test_remote_read.py:generic-api-key:59📝 Committable suggestion
🤖 Prompt for AI Agents
Source: Pipeline failures