Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2026

Bumps rsa from 0.9.9 to 0.9.10.

Changelog

Sourced from rsa's changelog.

0.9.10 (2026-01-06)

Fixed

  • do not panic on a prime being 1 when loading a secret key (#624)

#624: RustCrypto/RSA#624

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.9.9 to 0.9.10.
- [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.10/CHANGELOG.md)
- [Commits](RustCrypto/RSA@v0.9.9...v0.9.10)

---
updated-dependencies:
- dependency-name: rsa
  dependency-version: 0.9.10
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 6, 2026
@philjb philjb merged commit 370eda6 into main Jan 6, 2026
12 checks passed
@philjb philjb deleted the dependabot/cargo/rsa-0.9.10 branch January 6, 2026 19:37
waynr pushed a commit that referenced this pull request Jan 12, 2026
Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.9.9 to 0.9.10.
- [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.10/CHANGELOG.md)
- [Commits](RustCrypto/RSA@v0.9.9...v0.9.10)

---
updated-dependencies:
- dependency-name: rsa
  dependency-version: 0.9.10
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
waynr added a commit that referenced this pull request Jan 12, 2026
* fix: improve various error messages (#27084)

* fix: show WriteLineError.error_message in ParseError display
* fix: show source of reqwest::Error in influxdb3_client

* feat: add --tls-no-verify option to CLI subcommands (#2096) (#27102)

* feat: add --tls-no-verify option to non-serve subcommands
* test: validate --tls-no-verify flag

* fix: ignore cargo audit for unmaintained crate bincode (#27101)

Ignores RUSTSEC-2025-0141 until we can migrate away.

We have previously accepted unmaintained crates in the past via
* #27009
* #26112

* chore: point install script to 3.8.0 (#27030)

* feat(port): backport retention and delete fixes from ent to core (#27074)

This PR backports several bug fixes and improvements related to retention and deletion from the `influxdata/influxdb_pro` repository:

- **influxdb_pro PR # 1986**: Fix catalog to prevent deleting tables from already deleted databases
- **influxdb_pro PR # 1991**: Update error message from "delete" to "modify" for `AlreadyDeleted` error
- **influxdb_pro PR # 2043**: Add resource name to `AlreadyDeleted` error for better error messages
- **influxdb_pro PR # 2046**: Set default retention period for `_internal` database to 7 days

Changes:
- Add check in soft_delete_table to return `AlreadyDeleted` error if database is already deleted
- Change `CatalogError::AlreadyDeleted` to include resource name
- Update all `AlreadyDeleted` error sites to include resource name
- Add `INTERNAL_DB_RETENTION_PERIOD` constant (7 days)
- Update `create_internal_db` to use retention period

* fix(tests): use a 2125 date for "future dates" instead of 2025. (#27080)

* fix: add EOF marker to end of metrics scrape (#27083)

* fix: add EOF marker to end of metrics scrape

* fix: add EOF marker to end of metrics scrape

* chore(deps): bump rsa from 0.9.9 to 0.9.10 (#27088)

Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.9.9 to 0.9.10.
- [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.10/CHANGELOG.md)
- [Commits](RustCrypto/RSA@v0.9.9...v0.9.10)

---
updated-dependencies:
- dependency-name: rsa
  dependency-version: 0.9.10
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(write-buffer): use explicit capacity instead of defaults (#27099)

This change is based on an assumed issue in data which spans
many months with very small wal files; we assume the data is present
in most of the 10 minute table chunks over the time range; this is
sparse data that has only a few rows per 10 minutes. The TableBuffer
creates a MutableTableChunk for each 10 min chunk in the months range.
With arrow's default 1024 element allocations for our tag and field
information, this can be a substantial in-memory use for wal files
that serialize to a few megs or less. It is akin to a zipbomb. If the
wal files were larger, snapshots would have been triggered. Instead,
the TableBuffer grows to many GBs.

The changes here use the exact capacity that can be determined when rows
are added to the MutableTableChunk. Some workloads that were coincidentally
tuned to the 1024 element default will see more allocations but like Vecs
the exponential reservations will catch up fast.

* port of influxdata/influxdb_pro#2071

* feat: add retention to show output (#1680) (#27107)

* chore: additional retention logging

* feat: retention show output

* chore: display retention period in human readable format

Co-authored-by: Joe-Blount <73478756+Joe-Blount@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Phil Bracikowski <13472206+philjb@users.noreply.github.com>
Co-authored-by: Chunchun Ye <14298407+appletreeisyellow@users.noreply.github.com>
Co-authored-by: Joe-Blount <73478756+Joe-Blount@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lili Cosic <cosiclili@gmail.com>
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 rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants