Skip to content
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

Update all non-major dependencies #23

Merged
merged 1 commit into from
Sep 1, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 16, 2024

This PR contains the following updates:

Package Type Update Change
aws-sdk-comprehend dependencies minor 1.38.0 -> 1.40.0
aws-sdk-s3 dependencies minor 1.44.0 -> 1.47.0
ocrs dependencies patch 0.8.0 -> 0.8.1
reqwest dependencies patch 0.12.5 -> 0.12.7
rten dependencies minor 0.10 -> 0.13
rten-imageproc dependencies minor 0.10 -> 0.13
serde (source) dependencies patch 1.0.208 -> 1.0.209
serde_json dependencies patch 1.0.122 -> 1.0.127
tokio (source) dependencies minor 1.39.2 -> 1.40.0
zip dependencies minor 2.1.6 -> 2.2.0

Release Notes

robertknight/ocrs (ocrs)

v0.8.1

Compare Source

seanmonstar/reqwest (reqwest)

v0.12.7

Compare Source

  • Revert adding impl Service<http::Request<_>> for Client.

v0.12.6

Compare Source

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precendence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.
robertknight/rten (rten)

v0.13.1

Compare Source

rten
New features
Bug fixes
rten-cli

v0.13.0

Compare Source

This release adds the infrastructure to support subgraphs, which are used in
control flow operators like If, plus an implementation of the If operator
and a TrOCR example which uses it.

rten
rten-cli
rten-generate
rten-tensor
  • Added Tensor::remove_axis (b823d46)
  • Added Tensor::from_storage_and_layout (54d2941)
rten-text
  • The BPE tokenizer no longer complains if a tokenizer contains tokens in the
    vocabulary which are never generated by merges and are not added special
    tokens (18e9b2a)

v0.12.0

Compare Source

rten
Breaking changes
Examples and documentation
New features
Performance improvements
rten-cli
  • Inputs with names matching the pattern *_ids now use zero as the
    auto-generated input value (78cd621)
rten-generate
  • TopKSampler now supports specifying a temperature (65b837b)

  • Added Generator::append_prompt to append to prompt after initial generation.
    This is useful for chat-like applications (5ef3cb2)

  • Fixed an issue where attention_mask input had the wrong size (cae6134)

rten-tensor
Breaking changes
Other changes
  • Tensor::from now supports creating tensors from scalar values (d2ca876)

  • Tensor::lanes iterator performance was improved by making them exact-sized
    and fused (9e31556)

rten-text

v0.11.1

Compare Source

rten

v0.11.0

Compare Source

rten
Breaking changes
  • The inputs argument to Model::run now accepts a Vec<(NodeId, InputOrOutput)> instead of &[(NodeId, Input)], where InputOrOutput is an
    enum that is either an owned Tensor or a TensorView. This enables passing
    ownership of an input to Model::run, which is in turn enables efficient
    in-place updates to cache-like inputs.

    The InputOrOutput type implements From for tensors and tensor views, so
    code such as:

    model.run(&[(input_id, tensor_view.into())], output_ids, None)

    Becomes:

    model.run(vec![(input_id, tensor_view.into())], output_ids, None)
New features
Bug fixes
Performance improvements

This release adds a new graph optimization step as part of loading models. This
performs fusions and other optimizations to speed up inference. These
optimizations are enabled by default, but can be disabled via options in
ModelOptions.

rten-examples
rten-generate

This is a new crate which provides a convenient Iterator-based interface for
running auto-regressive decoder models. See the gpt2 and distilvit examples
in the rten-examples crate for code samples.

rten-tensor
rten-text
serde-rs/serde (serde)

v1.0.209

Compare Source

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#​2805, thanks @​Mingun)
serde-rs/json (serde_json)

v1.0.127

Compare Source

v1.0.126

Compare Source

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#​1182, thanks @​CryZe)

v1.0.125

Compare Source

v1.0.124

Compare Source

v1.0.123

Compare Source

tokio-rs/tokio (tokio)

v1.40.0: Tokio v1.40.0

Compare Source

1.40.0 (August 30th, 2024)

Added
  • io: add util::SimplexStream (#​6589)
  • process: stabilize Command::process_group (#​6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#​6755)
  • task: add JoinSet::join_all (#​6784)
Added (unstable)
  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#​6742)
Changed
  • io: use vectored io for write_all_buf when possible (#​6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#​6744)
  • sync: mark mpsc types as UnwindSafe (#​6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#​6727)
  • task: use NonZeroU64 for task::Id (#​6733)
  • task: include panic message when printing JoinError (#​6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#​6762)
  • time: eliminate timer wheel allocations (#​6779)
Documented
  • docs: clarify that [build] section doesn't go in Cargo.toml (#​6728)
  • io: clarify zero remaining capacity case (#​6790)
  • macros: improve documentation for select! (#​6774)
  • sync: document mpsc channel allocation behavior (#​6773)

v1.39.3: Tokio v1.39.3

Compare Source

1.39.3 (August 17th, 2024)

This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#​6772)

zip-rs/zip2 (zip)

v2.2.0

Compare Source

🚀 Features
  • Expose ZipArchive::central_directory_start (#​232)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 force-pushed the renovate/all-minor-patch branch from 8a4afd8 to f7d4a53 Compare August 16, 2024 20:31
@renovate renovate bot changed the title Update Rust crate serde_json to v1.0.125 Update all non-major dependencies to v1.39.0 Aug 16, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 47ad09b to 82bf05b Compare August 17, 2024 18:54
@renovate renovate bot changed the title Update all non-major dependencies to v1.39.0 Update all non-major dependencies Aug 17, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ad528b0 to 89108f5 Compare August 24, 2024 14:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c86e3aa to 89b9e47 Compare August 30, 2024 19:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 89b9e47 to 5dab9ed Compare September 1, 2024 07:34
@abdolence abdolence merged commit 6592072 into master Sep 1, 2024
1 of 2 checks passed
@abdolence abdolence deleted the renovate/all-minor-patch branch September 1, 2024 09:20
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