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

Merged
merged 3 commits into from
Jan 8, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@react-native-async-storage/async-storage (source) 1.18.2 -> 1.21.0 age adoption passing confidence dependencies minor
axum 0.6.12 -> 0.7.3 age adoption passing confidence dependencies minor
react-native (source, changelog) 0.72.6 -> 0.73.1 age adoption passing confidence dependencies minor
react-native-gesture-handler ~2.12.0 -> ~2.14.0 age adoption passing confidence dependencies minor
react-native-safe-area-context 4.6.3 -> 4.8.2 age adoption passing confidence dependencies minor
react-native-screens ~3.22.0 -> ~3.29.0 age adoption passing confidence dependencies minor
registry.docker.com/library/ruby 3.2.2-slim -> 3.3.0-slim age adoption passing confidence final minor

Release Notes

react-native-async-storage/async-storage (@​react-native-async-storage/async-storage)

v1.21.0

Compare Source

Bug Fixes
Features
  • windows: bump minimum target platform version to 10.0.17763.0 (#​1031) (5682e8c)

v1.20.0

Compare Source

❗ This version contains regression, please use v1.21.0 instead.

Features

v1.19.8

Compare Source

Bug Fixes

v1.19.7

Compare Source

Bug Fixes

v1.19.6

Compare Source

Bug Fixes

v1.19.5

Compare Source

Bug Fixes
  • android: add buildFeaturesbuildConfig for android gradle plugin 8 (#​1026) (f54a93b)

v1.19.4

Compare Source

Bug Fixes

v1.19.3

Compare Source

Bug Fixes

v1.19.2

Compare Source

Bug Fixes

v1.19.1

Compare Source

Bug Fixes

v1.19.0

Compare Source

Features

1.18.2 (2023-06-06)

Bug Fixes
  • allow consumption of RCTAsyncStorage as TurboModule (#​965) (62732d9)

1.18.1 (2023-03-29)

Bug Fixes
tokio-rs/axum (axum)

v0.7.3: axum - v0.7.3

Compare Source

  • added: Body implements From<()> now (#​2411)
  • change: Update version of multer used internally for multipart (#​2433)
  • change: Update tokio-tungstenite to 0.21 (#​2435)
  • added: Enable tracing feature by default (#​2460)
  • added: Support graceful shutdown on serve (#​2398)
  • added: RouterIntoService implements Clone (#​2456)

v0.7.2: axum - v0.7.2

Compare Source

  • added: Add axum::body::to_bytes (#​2373)
  • fixed: Gracefully handle accept errors in serve (#​2400)

v0.7.1: axum - v0.7.1

Compare Source

  • fix: Fix readme.

v0.7.0: axum - v0.7.0

Compare Source

  • breaking: Update public dependencies. axum now requires
  • breaking: axum now requires tower-http 0.5
  • breaking: Remove deprecated WebSocketUpgrade::max_send_queue
  • breaking: The following types/traits are no longer generic over the request body
    (i.e. the B type param has been removed) (#​1751 and #​1789):
    • FromRequestParts
    • FromRequest
    • HandlerService
    • HandlerWithoutStateExt
    • Handler
    • LayeredFuture
    • Layered
    • MethodRouter
    • Next
    • RequestExt
    • RouteFuture
    • Route
    • Router
  • breaking: axum no longer re-exports hyper::Body as that type is removed
    in hyper 1.0. Instead axum has its own body type at axum::body::Body (#​1751)
  • breaking: extract::BodyStream has been removed as body::Body
    implements Stream and FromRequest directly (#​1751)
  • breaking: Change sse::Event::json_data to use axum_core::Error as its error type (#​1762)
  • breaking: Rename DefaultOnFailedUpdgrade to DefaultOnFailedUpgrade (#​1664)
  • breaking: Rename OnFailedUpdgrade to OnFailedUpgrade (#​1664)
  • breaking: TypedHeader has been move to axum-extra (#​1850)
  • breaking: Removed re-exports of Empty and Full. Use
    axum::body::Body::empty and axum::body::Body::from respectively (#​1789)
  • breaking: The response returned by IntoResponse::into_response must use
    axum::body::Body as the body type. axum::response::Response does this
    (#​1789)
  • breaking: Removed the BoxBody type alias and its box_body
    constructor. Use axum::body::Body::new instead (#​1789)
  • breaking: Remove RawBody extractor. axum::body::Body implements FromRequest directly (#​1789)
  • breaking: The following types from http-body no longer implement IntoResponse:
    • Full, use Body::from instead
    • Empty, use Body::empty instead
    • BoxBody, use Body::new instead
    • UnsyncBoxBody, use Body::new instead
    • MapData, use Body::new instead
    • MapErr, use Body::new instead
  • added: Add axum::extract::Request type alias where the body is axum::body::Body (#​1789)
  • added: Add Router::as_service and Router::into_service to workaround
    type inference issues when calling ServiceExt methods on a Router (#​1835)
  • breaking: Removed axum::Server as it was removed in hyper 1.0. Instead
    use axum::serve(listener, service) or hyper/hyper-util for more configuration options (#​1868)
  • breaking: Only inherit fallbacks for routers nested with Router::nest.
    Routers nested with Router::nest_service will no longer inherit fallbacks (#​1956)
  • fixed: Don't remove the Sec-WebSocket-Key header in WebSocketUpgrade (#​1972)
  • added: Add axum::extract::Query::try_from_uri (#​2058)
  • added: Implement IntoResponse for Box<str> and Box<[u8]> ([#​2035])
  • breaking: Simplify MethodFilter. It no longer uses bitflags (#​2073)
  • fixed: Fix bugs around merging routers with nested fallbacks (#​2096)
  • fixed: Fix .source() of composite rejections (#​2030)
  • fixed: Allow unreachable code in #[debug_handler] (#​2014)
  • change: axum's MSRV is now 1.66 (#​1882)
  • added: Implement IntoResponse for (R,) where R: IntoResponse (#​2143)
  • changed: For SSE, add space between field and value for compatibility (#​2149)
  • added: Add NestedPath extractor (#​1924)
  • added: Add handle_error function to existing ServiceExt trait (#​2235)
  • breaking: impl<T> IntoResponse(Parts) for Extension<T> now requires
    T: Clone, as that is required by the http crate (#​1882)
  • added: Add axum::Json::from_bytes (#​2244)
  • added: Implement FromRequestParts for http::request::Parts (#​2328)
  • added: Implement FromRequestParts for http::Extensions (#​2328)
  • fixed: Clearly document applying DefaultBodyLimit to individual routes (#​2157)
facebook/react-native (react-native)

v0.73.1: 0.73.1

Compare Source

Added
  • Add enableNetworkInspector experiment to enable Network panel and CDP handlers in inspector proxy (8ef807bfb2 by @​byCedric)
Changed
Fixed
Android specific
iOS specific

You can participate in the conversation on the status of this release in this discussion


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the changelog.md file.

v0.73.0: 0.73.0

Compare Source

0.73 stable is out!

This release includes over 2259 commits from 68 contributors! Thank you to all our contributors new and old! See the highlights of the release in our release blog post.


You can participate in the conversation on the status of this release in this discussion


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the changelog.md file.

v0.72.9: 0.72.9

Compare Source

Fixed

You can participate in the conversation on the status of this release in this discussion


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the CHANGELOG.md file.

v0.72.8: 0.72.8

Compare Source

Fixed

You can participate in the conversation on the status of this release in this discussion


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the changelog.md file.

v0.72.7: 0.72.7

Compare Source

Changed
Fixed
Android specific

You can participate in the conversation on the status of this release in this discussion


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the changelog.md file.

software-mansion/react-native-gesture-handler (react-native-gesture-handler)

v2.14.0

Compare Source

❗ Important changes

🐛 Bug fixes

🔢 Miscellaneous

New Contributors

Full Changelog: software-mansion/react-native-gesture-handler@2.13.4...2.14.0

v2.13.4

Compare Source

🐛 Bug fixes

🔢 Miscellaneous

Full Changelog: software-mansion/react-native-gesture-handler@2.13.3...2.13.4

v2.13.3

Compare Source

👍 Improvements

What's Changed

New Contributors

Full Changelog: software-mansion/react-native-gesture-handler@2.13.2...2.13.3

v2.13.2

Compare Source

🐛 Bug fixes

👍 Improvements

🔢 Miscellaneous

New Contributors

Full Changelog: software-mansion/react-native-gesture-handler@2.13.1...2.13.2

v2.13.1

Compare Source

🐛 Bug fixes

New Contributors

Full Changelog: software-mansion/react-native-gesture-handler@2.13.0...2.13.1

v2.13.0

Compare Source

❗ Important changes

🐛 Bug fixes

👍 Improvements

🔢 Miscellaneous

New Contributors

Full Changelog: software-mansion/react-native-gesture-handler@2.12.0...2.13.0

th3rdwave/react-native-safe-area-context (react-native-safe-area-context)

v4.8.2: Release 4.8.2

Compare Source

Bug Fixes

v4.8.1: Release 4.8.1

Compare Source

Bug Fixes
  • android: enable buildFeatures.buildConfig for android gradle plugin 8+ (#​455) (c391781)

v4.8.0

Compare Source

v4.7.4: Release 4.7.4

Compare Source

  • resolve ViewProps type import #​446

v4.7.3: Release 4.7.3

Compare Source

  • Observe UIKeyboardDidChangeFrameNotification (#​440)

v4.7.2: Release 4.7.2

Compare Source

v4.7.1: Release 4.7.1

Compare Source

  • Update podspec to tvOS 12.4 (#​415)

v4.7.0: Release 4.7.0

Compare Source

Bug Fixes

v4.6.4: Release 4.6.4

Compare Source

software-mansion/react-native-screens (react-native-screens)

v3.29.0

Compare Source

Minor release including fix for iOS that was accidentally omitted from 3.28.0. It should be now possible to present modal in outer stack, from modal in nested stack (😄 )

What's Changed

🐛 Bug fixes

Full Changelog: software-mansion/react-native-screens@3.28.0...3.29.0

v3.28.0

Compare Source

Minor release adding a support for React Native 0.73, adding new iOS-like slide animation, fixing crashes with AVPlayer on iOS and resolving build issues on Android.

What's Changed

🐛 Bug fixes


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 has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Jan 8, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: desktop/src-tauri/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path desktop/src-tauri/Cargo.toml --workspace
    Updating crates.io index
error: failed to select a version for `axum`.
    ... required by package `desktop v0.0.0 (/tmp/renovate/repos/github/devramsean0/image-sync/desktop/src-tauri)`
versions that meet the requirements `^0.7.3` are: 0.7.3

the package `desktop` depends on `axum`, with features: `headers` but `axum` does not have these features.


failed to select a version for `axum` which could resolve this conflict

Copy link
Contributor Author

renovate bot commented Jan 8, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@devramsean0 devramsean0 merged commit 76abb9c into main Jan 8, 2024
5 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