Skip to content

chore(deps): bump the all-dependencies group across 1 directory with 3 updates#138

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/all-dependencies-8b29fbbf3f
Closed

chore(deps): bump the all-dependencies group across 1 directory with 3 updates#138
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/all-dependencies-8b29fbbf3f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 7, 2025

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 3 updates in the / directory: plotly, python-dotenv and sentence-transformers.

Updates plotly from 6.1.2 to 6.2.0

Release notes

Sourced from plotly's releases.

v6.2.0

Added

  • Add SRI (Subresource Integrity) hash support for CDN script tags when using include_plotlyjs='cdn'. This enhances security by ensuring browser verification of CDN-served plotly.js files [#5165] (with thanks to @​ddworken)

Fixed

  • Allow setting Plotly.js path via pio.defaults [#5207]

Changed

  • Refactor validation code to reduce bundle size [#5214] (with thanks to @​bmaranville)
  • Add deprecation warnings when using Kaleido v0 or deprecated image export features [#5177]
Changelog

Sourced from plotly's changelog.

[6.2.0] - 2025-06-26

Added

  • Add SRI (Subresource Integrity) hash support for CDN script tags when using include_plotlyjs='cdn'. This enhances security by ensuring browser verification of CDN-served plotly.js files [#5165] (with thanks to @​ddworken)

Fixed

  • Allow setting Plotly.js path via pio.defaults [#5207]

Changed

  • Refactor validation code to reduce bundle size [#5214] (with thanks to @​bmaranville)
  • Add deprecation warnings when using Kaleido v0 or deprecated image export features [#5177]
Commits

Updates python-dotenv from 1.1.0 to 1.1.1

Release notes

Sourced from python-dotenv's releases.

v1.1.1

What's Changed

New Contributors

Full Changelog: theskumar/python-dotenv@v1.1.0...v1.1.1

Changelog

Sourced from python-dotenv's changelog.

[1.1.1] - 2025-06-24

Fixed

Commits

Updates sentence-transformers from 4.1.0 to 5.0.0

Release notes

Sourced from sentence-transformers's releases.

v5.0.0 - SparseEncoder support; encode_query & encode_document; multi-processing in encode; Router; and more

This release consists of significant updates including the introduction of Sparse Encoder models, new methods encode_query and encode_document, multi-processing support in encode, the Router module for asymmetric models, custom learning rates for parameter groups, composite loss logging, and various small improvements and bug fixes.

Install this version with

# Training + Inference
pip install sentence-transformers[train]==5.0.0
Inference only, use one of:
pip install sentence-transformers==5.0.0
pip install sentence-transformers[onnx-gpu]==5.0.0
pip install sentence-transformers[onnx]==5.0.0
pip install sentence-transformers[openvino]==5.0.0

[!TIP] Our Training and Finetuning Sparse Embedding Models with Sentence Transformers v5 blogpost is an excellent place to learn about finetuning sparse embedding models!

[!NOTE] This release is designed to be fully backwards compatible, meaning that you should be able to upgrade from older versions to v5.x without any issues. If you are running into issues when upgrading, feel free to open an issue. Also see the Migration Guide for changes that we would recommend.

Sparse Encoder models

The Sentence Transformers v5.0 release introduces Sparse Embedding models, also known as Sparse Encoders. These models generate high-dimensional embeddings, often with 30,000+ dimensions, where often only <1% of dimensions are non-zero. This is in contrast to the standard dense embedding models, which produce low-dimensional embeddings (e.g., 384, 768, or 1024 dimensions) where all values are non-zero.

Usually, each active dimension (i.e. the dimension with a non-zero value) in a sparse embedding corresponds to a specific token in the model's vocabulary, allowing for interpretability. This means that you can e.g. see exactly which words/tokens are important in an embedding, and that you can inspect exactly because of which words/tokens two texts are deemed similar.

Let's have a look at naver/splade-v3, a strong sparse embedding model, as an example:

from sentence_transformers import SparseEncoder
Download from the 🤗 Hub
model = SparseEncoder("naver/splade-v3")
Run inference
sentences = [
"The weather is lovely today.",
"It's so sunny outside!",
"He drove to the stadium.",
]
embeddings = model.encode(sentences)
print(embeddings.shape)
(3, 30522)
Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
tensor([[   32.4323,     5.8528,     0.0258],
</tr></table>

... (truncated)

Commits
  • 8dc0fca Release v5.0.0
  • e91af6a Update links for SPLADE and Inference-Free SPLADE models collections in docum...
  • 4c00aea [fix] Remove hub_kwargs in SparseStaticEmbedding.from_json in favor of more...
  • 28685bb Clean up gitignore (#3409)
  • 85dd175 Fix formatting of docstring arguments in SpladeRegularizerWeightSchedulerCall...
  • 14afc4b Merge PR #3401: [v5] Add support for Sparse Embedding models
  • 2d24841 Update tip phrasing and fix links
  • ed043c5 typo
  • b2679d1 fix broken link
  • d30341e Update tips to prepared for v5.0
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…3 updates

Bumps the all-dependencies group with 3 updates in the / directory: [plotly](https://github.com/plotly/plotly.py), [python-dotenv](https://github.com/theskumar/python-dotenv) and [sentence-transformers](https://github.com/UKPLab/sentence-transformers).


Updates `plotly` from 6.1.2 to 6.2.0
- [Release notes](https://github.com/plotly/plotly.py/releases)
- [Changelog](https://github.com/plotly/plotly.py/blob/main/CHANGELOG.md)
- [Commits](plotly/plotly.py@v6.1.2...v6.2.0)

Updates `python-dotenv` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.1.0...v1.1.1)

Updates `sentence-transformers` from 4.1.0 to 5.0.0
- [Release notes](https://github.com/UKPLab/sentence-transformers/releases)
- [Commits](huggingface/sentence-transformers@v4.1.0...v5.0.0)

---
updated-dependencies:
- dependency-name: plotly
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: python-dotenv
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: sentence-transformers
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python labels Jul 7, 2025
@dependabot @github

dependabot Bot commented on behalf of github Jul 14, 2025

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 14, 2025
@dependabot
dependabot Bot deleted the dependabot/pip/all-dependencies-8b29fbbf3f branch July 14, 2025 14:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants