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 #136

Merged
merged 1 commit into from
Dec 31, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 17, 2024

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.94 -> 1.0.95
env_logger dependencies patch 0.11.5 -> 0.11.6
fl_chart (source) dependencies minor ^0.69.0 -> ^0.70.0
ghcr.io/cirruslabs/flutter stage patch 3.27.0 -> 3.27.1
itertools dependencies minor 0.13.0 -> 0.14.0
reqwest dependencies patch 0.12.9 -> 0.12.11
sea-orm (source) dependencies patch 1.1.2 -> 1.1.3
sea-orm-migration (source) dependencies patch 1.1.2 -> 1.1.3
serde (source) dependencies patch 1.0.216 -> 1.0.217

Release Notes

dtolnay/anyhow (anyhow)

v1.0.95

Compare Source

rust-cli/env_logger (env_logger)

v0.11.6

Compare Source

Features
  • Opt-in file and line rendering
imaNNeo/fl_chart (fl_chart)

v0.70.0

Compare Source

  • FEATURE (by @​Peetee06) Implemented a 5 years-old feature request about scroll and zoom support in our axis-based charts. Special thanks to @​Peetee06 who made it happen, #​71
  • IMPROVEMENT (by @​Peetee06) Added functionality to control the transformation of axis-based charts using FlTransformationConfig class. You can now enable scaling and panning for LineChart, BarChart and ScatterChart using this class
  • IMPROVEMENT (by @​Peetee06) Added some new unit tests in bar_chart_data_extensions_test.dart, gradient_extension_test.dart and fixed a typo in bar_chart_data.dart
  • BREAKING (by @​Peetee06) Fixed the equatable functionality in our BarChart. We hope it will not affect anything in our chart, but because the behaviour is changed, we marked it as a breaking change. (read more here)
  • BREAKING (by @​Peetee06) BarChart is not const anymore due to adding an assert to check if transformations are allowed depending on the BarChartData.alignment property (read more here)
  • IMPROVEMENT (by @​Peetee06) Upgrade to the new Flutter version (3.27.0), #​1804
  • IMPROVEMENT (by @​AliAkberAakash) Minor typo fix in our line chart documentation, #​1795
  • IMPROVEMENT (by @​imaNNeo) Fixed the code coverage API rate-limit issue
  • Improvement (by @​imaNNeo) Published the example app in Google Play and App Store. Other stores (such as snap store and Microsoft Store) will come next. You can download the Android version here in Google Play and the iOS version here in App Store
rust-itertools/itertools (itertools)

v0.14.0

Breaking
  • Increased MSRV to 1.63.0 (#​960)
  • Removed generic parameter from cons_tuples (#​988)
Added
  • Added array_combinations (#​991)
  • Added k_smallest_relaxed and variants (#​925)
  • Added next_array and collect_array (#​560)
  • Implemented DoubleEndedIterator for FilterOk (#​948)
  • Implemented DoubleEndedIterator for FilterMapOk (#​950)
Changed
  • Allow Q: ?Sized in Itertools::contains (#​971)
  • Improved hygiene of chain! (#​943)
  • Improved into_group_map_by documentation (#​1000)
  • Improved tree_reduce documentation (#​955)
  • Improved discoverability of merge_join_by (#​966)
  • Improved discoverability of take_while_inclusive (#​972)
  • Improved documentation of find_or_last and find_or_first (#​984)
  • Prevented exponentially large type sizes in tuple_combinations (#​945)
  • Added track_caller attr for asser_equal (#​976)
Notable Internal Changes
  • Fixed clippy lints (#​956, #​987, #​1008)
  • Addressed warnings within doctests (#​964)
  • CI: Run most tests with miri (#​961)
  • CI: Speed up "cargo-semver-checks" action (#​938)
  • Changed an instance of default_features in Cargo.toml to default-features (#​985)
seanmonstar/reqwest (reqwest)

v0.12.11

Compare Source

  • Fix decompression returning an error when HTTP/2 ends with an empty data frame.

v0.12.10

Compare Source

  • Add ClientBuilder::connector_layer() to allow customizing the connector stack.
  • Add ClientBuilder::http2_max_header_list_size() option.
  • Fix propagating body size hint (content-length) information when wrapping bodies.
  • Fix decompression of chunked bodies so the connections can be reused more often.
SeaQL/sea-orm (sea-orm)

v1.1.3

Compare Source

New Features
pub mod prelude;

pub mod sea_orm_active_enums;

pub mod baker;
pub mod bakery;
pub mod cake;
pub mod cakes_bakers;
pub mod customer;
pub mod lineitem;
pub mod order;

seaography::register_entity_modules!([
    baker,
    bakery,
    cake,
    cakes_bakers,
    customer,
    lineitem,
    order,
]);

seaography::register_active_enums!([
    sea_orm_active_enums::Tea,
    sea_orm_active_enums::Color,
]);
Enhancements
// this previously panics
let apple = cake_filling::ActiveModel {
    cake_id: ActiveValue::set(2),
    filling_id: ActiveValue::NotSet,
};
let orange = cake_filling::ActiveModel {
    cake_id: ActiveValue::NotSet,
    filling_id: ActiveValue::set(3),
};
assert_eq!(
    Insert::<cake_filling::ActiveModel>::new()
        .add_many([apple, orange])
        .build(DbBackend::Postgres)
        .to_string(),
    r#"INSERT INTO "cake_filling" ("cake_id", "filling_id") VALUES (2, NULL), (NULL, 3)"#,
);
Bug Fixes
serde-rs/serde (serde)

v1.0.217

Compare Source

  • Support serializing externally tagged unit variant inside flattened field (#​2786, thanks @​Mingun)

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 35f4a73 to 40d3d79 Compare December 19, 2024 20:54
@renovate renovate bot changed the title Update ghcr.io/cirruslabs/flutter Docker tag to v3.27.1 Update all non-major dependencies Dec 19, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 871efd3 to 321c5b6 Compare December 27, 2024 15:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 321c5b6 to fed4773 Compare December 27, 2024 22:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fed4773 to ed24124 Compare December 31, 2024 13:13
@Lukas-Heiligenbrunner Lukas-Heiligenbrunner merged commit 3c7b429 into master Dec 31, 2024
3 checks passed
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