Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
1a235a0
fix: secret update hanging due to missing stdin input
parallel-m Jan 23, 2026
0192e1e
fix: use python312 runtime for cloud function (package requires >=3.12)
parallel-m Jan 23, 2026
c077cf0
fix: include stdout in error messages (bq outputs errors to stdout)
parallel-m Jan 23, 2026
a448160
fix: move --format=json flag before positional argument in bq command
parallel-m Jan 23, 2026
44d7708
fix: add project_id flag to bq query and add progress output
parallel-m Jan 23, 2026
76b0d6a
fix: strip SQL comments before detecting CREATE statements
parallel-m Jan 23, 2026
f9305bf
fix: check for gcloud and bq CLI tools before deployment
parallel-m Jan 23, 2026
ad6e312
fix: remove parallel_enrich_company convenience function, keep only g…
parallel-m Jan 23, 2026
121e53e
fix: wrap JSON_OBJECT/JSON_ARRAY with TO_JSON_STRING in example query
parallel-m Jan 23, 2026
0f9e65f
fix: use JSON type for function parameters and return value (cleaner …
parallel-m Jan 23, 2026
44acdc4
docs: add example showing how to parse JSON result with JSON_VALUE
parallel-m Jan 23, 2026
6baa4ca
docs: add basis/citations to example query
parallel-m Jan 23, 2026
c6d3666
use json
parallel-m Jan 23, 2026
9785c88
bump to 0.0.4
parallel-m Jan 23, 2026
8eb0bbc
feat: Snowflake integration with PyPI package support
parallel-m Jan 24, 2026
8f49812
fix: use pyrefly config excludes in CI
parallel-m Jan 24, 2026
4cbc59c
fix: update run_tasks test to mock Parallel SDK instead of httpx
parallel-m Jan 24, 2026
020eeba
bump to 0.0.5
parallel-m Jan 24, 2026
1b7f790
ci: retrigger
parallel-m Jan 24, 2026
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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ jobs:
run: uv run ruff format --check parallel_web_tools/ tests/

- name: Type check with pyrefly
run: uv run pyrefly check parallel_web_tools/
continue-on-error: true
run: uv run pyrefly check

cli-test:
runs-on: ubuntu-latest
Expand Down
Loading