Skip to content

chore(deps): update all non-major dev dependencies#347

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch-dev
Open

chore(deps): update all non-major dev dependencies#347
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch-dev

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented May 26, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
datasets 4.0.04.5.0 age confidence
flask (changelog) 3.1.13.1.3 age confidence
freezegun (changelog) 1.5.11.5.5 age confidence
mypy (changelog) 1.15.01.19.1 age confidence
nltk (source) 3.9.13.9.3 age confidence
openai 1.79.01.109.1 age confidence
pre-commit 4.2.04.5.1 age confidence
pydantic (changelog) 2.11.72.12.5 age confidence
pytest (changelog) 8.3.58.4.2 age confidence
ragas 0.2.150.4.3 age confidence
rapidfuzz (changelog) 3.13.03.14.3 age confidence

Release Notes

huggingface/datasets (datasets)

v4.5.0

Compare Source

Dataset Features

  • Add lance format support by @​eddyxu in #​7913

    • Support for both Lance dataset (including metadata / manifests) and standalone .lance files
    • e.g. with lance-format/fineweb-edu
    from datasets import load_dataset
    
    ds = load_dataset("lance-format/fineweb-edu", streaming=True)
    for example in ds["train"]:
        ...

What's Changed

New Contributors

Full Changelog: huggingface/datasets@4.4.2...4.5.0

v4.4.2

Compare Source

Bug fixes

Minor additions

New Contributors

Full Changelog: huggingface/datasets@4.4.1...4.4.2

v4.4.1

Compare Source

Bug fixes and improvements

Full Changelog: huggingface/datasets@4.4.0...4.4.1

v4.4.0

Compare Source

Dataset Features

  • Add nifti support by @​CloseChoice in #​7815

    • Load medical imaging datasets from Hugging Face:
    ds = load_dataset("username/my_nifti_dataset")
    ds["train"][0]  # {"nifti": <nibabel.nifti1.Nifti1Image>}
    • Load medical imaging datasets from your disk:
    files = ["/path/to/scan_001.nii.gz", "/path/to/scan_002.nii.gz"]
    ds = Dataset.from_dict({"nifti": files}).cast_column("nifti", Nifti())
    ds["train"][0]  # {"nifti": <nibabel.nifti1.Nifti1Image>}
  • Add num channels to audio by @​CloseChoice in #​7840

# samples have shape (num_channels, num_samples)
ds = ds.cast_column("audio", Audio())  # default, use all channels
ds = ds.cast_column("audio", Audio(num_channels=2))  # use stereo
ds = ds.cast_column("audio", Audio(num_channels=1))  # use mono

What's Changed

New Contributors

Full Changelog: huggingface/datasets@4.3.0...4.4.0

v4.3.0

Compare Source

Dataset Features

Enable large scale distributed dataset streaming:

These improvements require huggingface_hub>=1.1.0 to take full effect

What's Changed

New Contributors

Full Changelog: huggingface/datasets@4.2.0...4.3.0

v4.2.0

Compare Source

Dataset Features

  • Sample without replacement option when interleaving datasets by @​radulescupetru in #​7786

    ds = interleave_datasets(datasets, stopping_strategy="all_exhausted_without_replacement")
  • Parquet: add on_bad_files argument to error/warn/skip bad files by @​lhoestq in #​7806

    ds = load_dataset(parquet_dataset_id, on_bad_files="warn")
  • Add parquet scan options and docs by @​lhoestq in #​7801

    • docs to select columns and filter data efficiently
    ds = load_dataset(parquet_dataset_id, columns=["col_0", "col_1"])
    ds = load_dataset(parquet_dataset_id, filters=[("col_0", "==", 0)])
    • new argument to control buffering and caching when streaming
    fragment_scan_options = pyarrow.dataset.ParquetFragmentScanOptions(cache_options=pyarrow.CacheOptions(prefetch_limit=1, range_size_limit=128 << 20))
    ds = load_dataset(parquet_dataset_id, streaming=True, fragment_scan_options=fragment_scan_options)

What's Changed

New Contributors

Full Changelog: huggingface/datasets@4.1.1...4.2.0

v4.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: huggingface/datasets@4.1.0...4.1.1

v4.1.0

Compare Source

Dataset Features

  • feat: use content defined chunking by @​kszucs in #​7589

    • internally uses use_content_defined_chunking=True when writing Parquet files
    • this enables fast deduped uploads to Hugging Face !
    # Now faster thanks to content defined chunking
    ds.push_to_hub("username/dataset_name")
    • this optimizes Parquet for Xet, the dedupe-based storage backend of Hugging Face. It allows to not have to upload data that already exist somewhere on HF (on an other file / version for example). Parquet content defined chunking defines Parquet pages boundaries based on the content of the data, in order to detect duplicate data easily.
    • with this change, the new default row group size for Parquet is set to 100MB
  • Concurrent push_to_hub by @​lhoestq in #​7708

  • Concurrent IterableDataset push_to_hub by @​lhoestq in #​7710

  • HDF5 support by @​klamike in #​7690

    • load HDF5 datasets in one line of code
    ds = load_dataset("username/dataset-with-hdf5-files")
    • each (possibly nested) field in the HDF5 file is parsed a a column, with the first dimension used for rows

Other improvements and bug fixes

New Contributors

Full Changelog: huggingface/datasets@4.0.0...4.1.0

pallets/flask (flask)

v3.1.3

Compare Source

Released 2026-02-18

  • The session is marked as accessed for operations that only access the keys
    but not the values, such as in and len. :ghsa:68rp-wp8r-4726

v3.1.2

Compare Source

Released 2025-08-19

  • stream_with_context does not fail inside async views. :issue:5774
  • When using follow_redirects in the test client, the final state
    of session is correct. :issue:5786
  • Relax type hint for passing bytes IO to send_file. :issue:5776
spulec/freezegun (freezegun)

v1.5.5

Compare Source

  • Allow parametrized arguments called 'func' (Broken in 1.5.4)

v1.5.4

Compare Source

  • Fix: Ability to yield fixtures (broken in 1.5.3)

v1.5.3

Compare Source

  • Fix compatibility with pytest 8.4.0 when using fixtures
  • Add (back) class-decorator overload to guarantee Pytype understands it

v1.5.2

Compare Source

  • Remove support for Python 3.7
  • Explicitly marks support for Python 3.13
  • Improved project documentation
python/mypy (mypy)

v1.19.1

Compare Source

  • Fix noncommutative joins with bounded TypeVars (Shantanu, PR 20345)
  • Respect output format for cached runs by serializing raw errors in cache metas (Ivan Levkivskyi, PR 20372)
  • Allow types.NoneType in match cases (A5rocks, PR 20383)
  • Fix mypyc generator regression with empty tuple (BobTheBuidler, PR 20371)
  • Fix crash involving Unpack-ed TypeVarTuple (Shantanu, PR 20323)
  • Fix crash on star import of redefinition (Ivan Levkivskyi, PR 20333)
  • Fix crash on typevar with forward ref used in other module (Ivan Levkivskyi, PR 20334)
  • Fail with an explicit error on PyPy (Ivan Levkivskyi, PR 20389)

v1.19.0

Compare Source

v1.18.2

Compare Source

  • Fix crash on recursive alias (Ivan Levkivskyi, PR 19845)
  • Add additional guidance for stubtest errors when runtime is object.__init__ (Stephen Morton, PR 19733)
  • Fix handling of None values in f-string expressions in mypyc (BobTheBuidler, PR 19846)

v1.18.1

Compare Source

v1.17.1

Compare Source

  • Retain None as constraints bottom if no bottoms were provided (Stanislav Terliakov, PR 19485)
  • Fix "ignored exception in hasattr" in dmypy (Stanislav Terliakov, PR 19428)
  • Prevent a crash when InitVar is redefined with a method in a subclass (Stanislav Terliakov, PR 19453)

v1.17.0

Compare Source

v1.16.1

Compare Source

v1.16.0

Compare Source

nltk/nltk (nltk)

v3.9.3

Compare Source

v3.9.2

Compare Source

openai/openai-python (openai)

v1.109.1

Compare Source

Full Changelog: v1.109.1...v2.0.0

⚠ BREAKING CHANGES
  • api: ResponseFunctionToolCallOutputItem.output and ResponseCustomToolCallOutput.output now return string | Array<ResponseInputText | ResponseInputImage | ResponseInputFile> instead of string only. This may break existing callsites that assume output is always a string.
Features
  • api: Support images and files for function call outputs in responses, BatchUsage (4105376)

v1.109.0

Compare Source

Full Changelog: v1.109.0...v1.109.1

Bug Fixes
  • compat: compat with pydantic&lt;2.8.0 when using additional fields (5d95ecf)

v1.108.2

Compare Source

Full Changelog: v1.108.2...v1.109.0

Features

v1.108.1

Compare Source

Full Changelog: v1.108.1...v1.108.2

Bug Fixes
Chores
  • api: openapi updates for conversations (3224f6f)
  • do not install brew dependencies in ./scripts/bootstrap by default (6764b00)
  • improve example values (20b58e1)

v1.108.0

Compare Source

Full Changelog: v1.108.0...v1.108.1

Features
  • api: add reasoning_text (18d8e12)
Chores
  • types: change optional parameter type from NotGiven to Omit (acc190a)

v1.107.3

Compare Source

Full Changelog: v1.107.3...v1.108.0

Features
  • api: type updates for conversations, reasoning_effort and results for evals (c2ee28c)
Chores
  • internal: update pydantic dependency (369d10a)

v1.107.2

Compare Source

Full Changelog: v1.107.2...v1.107.3

Chores
  • api: docs and spec refactoring (9bab5da)
  • tests: simplify get_platform test (0b1f6a2)

v1.107.1

Compare Source

Full Changelog: v1.107.1...v1.107.2

Chores
  • api: Minor docs and type updates for realtime (ab6a10d)
  • tests: simplify get_platform test (01f03e0)

v1.107.0

Compare Source

Full Changelog: v1.107.0...v1.107.1

Chores
  • api: fix realtime GA types (570fc5a)

v1.106.1

Compare Source

Full Changelog: v1.106.1...v1.107.0

Features
  • api: ship the RealtimeGA API shape (dc319d8)
Chores
  • internal: codegen related update (b79b7ca)

v1.106.0

Compare Source

Full Changelog: v1.106.0...v1.106.1

Chores
  • internal: move mypy configurations to pyproject.toml file (ca413a2)

v1.105.0

Compare Source

Full Changelog: v1.105.0...v1.106.0

Features

v1.104.2

Compare Source

Full Changelog: v1.104.2...v1.105.0

Features
  • api: Add gpt-realtime models (8502041)

v1.104.1

Compare Source

Full Changelog: v1.104.1...v1.104.2

Bug Fixes
  • types: add aliases back for web search tool types (2521cd8)

v1.104.0

Compare Source

Full Changelog: v1.104.0...v1.104.1

Chores
  • api: manual updates for ResponseInputAudio (0db5061)

v1.103.0

Compare Source

Full Changelog: v1.103.0...v1.104.0

Features
  • types: replace List[str] with SequenceNotStr in params (bc00bda)
Bug Fixes
  • types: update more types to use SequenceNotStr (cff135c)
  • types: update some types to SequenceNotStr (03f8b88)
Chores

v1.102.0

Compare Source

Full Changelog: v1.102.0...v1.103.0

Features
  • api: realtime API updates (b7c2ddc)
Bug Fixes
  • responses: add missing params to stream() method (bfc0673)
Chores
  • bump inline-snapshot version to 0.28.0 (#​2590) (a6b0872)
  • client: format imports (7ae3020)
  • internal: add Sequence related utils (d3d72b9)
  • internal: fix formatting (3ab273f)
  • internal: minor formatting change (478a348)
  • internal: update pyright exclude list (66e440f)

v1.101.0

Compare Source

Full Changelog: v1.101.0...v1.102.0

Features
  • api: add web search filters (1c199a8)
Bug Fixes
  • avoid newer type syntax (bd0c668)
Chores
  • internal: change ci workflow machines (3e129d5)
  • internal: codegen related update (b6dc170)

v1.100.2

Compare Source

Full Changelog: v1.100.2...v1.100.3

Chores
  • internal/ci: setup breaking change detection (ca2f936)

v1.100.1

Compare Source

Full Changelog: v1.100.1...v1.100.2

Chores
  • api: accurately represent shape for verbosity on Chat Completions (c39d5fd)

v1.100.0

Compare Source

Full Changelog: v1.100.0...v1.100.1

Bug Fixes
  • types: revert response text config deletion (ac4fb19)

v1.99.9

Compare Source

Full Changelog: v1.99.9...v1.100.0

Features
  • api: add new text parameters, expiration options (e3dfa7c)

v1.99.8

Compare Source

Full Changelog: v1.99.8...v1.99.9

Bug Fixes
  • types: actually fix ChatCompletionMessageToolCall type (20cb0c8)

v1.99.7

Compare Source

Full Changelog: v1.99.7...v1.99.8

Bug Fixes
  • internal/tests: correct snapshot update comment (2784a7a)
  • types: revert ChatCompletionMessageToolCallUnion breaking change (ba54e03)
Chores
  • internal/tests: add inline snapshot format command (8107db8)
  • internal: fix formatting (f03a03d)
  • tests: add responses output_text test (971347b)
Refactors
  • tests: share snapshot utils (791c567)

v1.99.6

Compare Source

Full Changelog: v1.99.6...v1.99.7

Bug Fixes
  • types: rename ChatCompletionMessageToolCallParam (48085e2)
  • types: revert ChatCompletionMessageToolCallParam to a TypedDict (c8e9cec)

v1.99.5

Compare Source

Full Changelog: v1.99.5...v1.99.6

Bug Fixes
  • types: re-export more tool call types (8fe5741)
Chores

v1.99.4

Compare Source

Full Changelog: v1.99.4...v1.99.5

Bug Fixes
  • client: fix verbosity parameter location in Responses (2764ff4)

v1.99.3

Compare Source

Full Changelog: v1.99.3...v1.99.4

Bug Fixes
  • types: rename chat completion tool (8d3bf88)
  • types: revert ChatCompletionToolParam to a TypedDict (3f4ae72)

v1.99.2

Compare Source

Full Changelog: v1.99.2...v1.99.3

Bug Fixes
  • responses: add output_text back (585a4f1)

v1.99.1

Compare Source

Full Changelog: v1.99.1...v1.99.2

Features
  • api: adds GPT-5 and new API features: platform.openai.com/docs/guides/gpt-5 (ed370d8)
Bug Fixes
  • types: correct tool types (0c57bd7)
Chores
  • tests: bump inline-snapshot dependency (e236fde)

v1.99.0

Compare Source

Full Changelog: v1.99.0...v1.99.1

Bug Fixes
  • internal: correct event imports (2a6d143)

v1.98.0

Compare Source

Full Changelog: v1.98.0...v1.99.0

Features
  • api: manual updates (d4aa726)
  • client: support file upload requests (0772e6e)
Bug Fixes
  • add missing prompt_cache_key & prompt_cache_key params (00b49ae)
Chores
  • internal: fix ruff target version (aa6b252)

v1.97.2

Compare Source


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone America/Chicago, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team May 26, 2025 05:41
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 10 times, most recently from c656373 to 4018d86 Compare June 3, 2025 18:35
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 4 times, most recently from bf02b23 to efbaab0 Compare June 9, 2025 18:40
adamnolte
adamnolte previously approved these changes Jun 10, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 2 times, most recently from b84cc85 to 2ee87ec Compare June 10, 2025 13:22
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 8 times, most recently from 26a2ed6 to 8f8dd07 Compare June 17, 2025 07:04
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 3 times, most recently from f41b380 to 9fde771 Compare June 20, 2025 23:10
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 3 times, most recently from e4bca99 to 6e86469 Compare July 3, 2025 05:56
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 8 times, most recently from fff246c to 4374a21 Compare July 12, 2025 21:58
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 6 times, most recently from 8d14ca9 to 0282e9b Compare July 18, 2025 19:18
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 5 times, most recently from cabc684 to f7e0ce2 Compare July 28, 2025 14:06
@renovate renovate bot changed the title Update all non-major dev dependencies chore(deps): update all non-major dev dependencies Jul 28, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch-dev branch 6 times, most recently from 15f14d6 to 2503002 Compare July 29, 2025 21:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant