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

pkg: Update all non-major dependencies #3103

Merged
merged 2 commits into from
Jun 15, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 14, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@anansi/cli 3.1.27 -> 3.1.28 age adoption passing confidence
@anansi/core ^0.19.0 -> ^0.20.0 age adoption passing confidence
@anansi/router 0.10.1 -> 0.10.2 age adoption passing confidence
@data-client/react (source) 0.12.12 -> 0.12.15 age adoption passing confidence
@data-client/redux (source) ^0.12.0 -> ^0.13.0 age adoption passing confidence

Release Notes

reactive/data-client (@​data-client/react)

v0.12.15

Compare Source

Patch Changes
  • 233f400 Thanks @​ntucker! - Fix commonjs builds to keep same context instance

    There must be only one instance of a context, so we need to ensure our new entrypoints don't include createContext

v0.12.14

Compare Source

Patch Changes

v0.12.13

Compare Source

Patch Changes
  • #​3099 428ddd1 Thanks @​ntucker! - Add @​data-client/react/redux

    import {
      ExternalDataProvider,
      PromiseifyMiddleware,
      applyManager,
      initialState,
      createReducer,
      prepareStore,
    } from '@​data-client/react/redux';
  • d1b9e96 Thanks @​ntucker! - Add /ssr entrypoint - eliminating the need for @​data-client/ssr package completely

    import {
      createPersistedStore,
      createServerDataComponent,
    } from '@​data-client/react/ssr';
  • #​3099 428ddd1 Thanks @​ntucker! - Add middlewares argument to prepareStore()

    import {
      ExternalDataProvider,
      prepareStore,
      type Middleware,
    } from '@​data-client/react/redux';
    import { getDefaultManagers, Controller } from '@​data-client/react';
    import ReactDOM from 'react-dom';
    
    const managers = getDefaultManagers();
    // be sure to include your other reducers here
    const otherReducers = {};
    const extraMiddlewares: Middleware = [];
    
    const { store, selector, controller } = prepareStore(
      initialState,
      managers,
      Controller,
      otherReducers,
      extraMiddlewares,
    );
    
    ReactDOM.render(
      <ExternalDataProvider
        store={store}
        selector={selector}
        controller={controller}
      >
        <App />
      </ExternalDataProvider>,
      document.body,
    );
reactive/data-client (@​data-client/redux)

v0.13.0

Compare Source

Minor Changes

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 Jun 14, 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: examples/nextjs/package-lock.json
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: next-app@0.1.10
npm error Found: react@19.0.0-rc.0
npm error node_modules/react
npm error   peer react@"^16.14.0 || ^17.0.0 || ^18.0.0-0 || ^18.0.0 || ^19.0.0-0 || ^19.0.0" from @data-client/use-enhanced-reducer@0.1.10
npm error   node_modules/@data-client/use-enhanced-reducer
npm error   peer react@"19.0.0-rc.0" from next@15.0.0-canary.28
npm error   node_modules/next
npm error     next@"canary" from the root project
npm error   3 more (react-dom, styled-jsx, the root project)
npm error
npm error Could not resolve dependency:
npm error @data-client/react@"0.12.15" from the root project
npm error
npm error Conflicting peer dependency: react@18.2.0
npm error node_modules/react
npm error   peer react@"18.2.0" from react-native@0.74.2
npm error   node_modules/react-native
npm error     peer react-native@"*" from @react-navigation/native@6.1.17
npm error     node_modules/@react-navigation/native
npm error       peerOptional @react-navigation/native@"^6.0.0" from @data-client/react@0.12.15
npm error       node_modules/@data-client/react
npm error         @data-client/react@"0.12.15" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-06-14T20_25_19_815Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-06-14T20_25_19_815Z-debug-0.log

Copy link

changeset-bot bot commented Jun 14, 2024

⚠️ No Changeset found

Latest commit: a2c1839

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor Author

renovate bot commented Jun 15, 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.

Copy link

codecov bot commented Jun 15, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 98.72%. Comparing base (14bc09f) to head (a2c1839).

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #3103   +/-   ##
=======================================
  Coverage   98.72%   98.72%           
=======================================
  Files         123      123           
  Lines        2204     2204           
  Branches      452      452           
=======================================
  Hits         2176     2176           
  Misses         17       17           
  Partials       11       11           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@ntucker ntucker enabled auto-merge June 15, 2024 07:25
@ntucker ntucker added this pull request to the merge queue Jun 15, 2024
Merged via the queue into master with commit b9841ad Jun 15, 2024
24 checks passed
@ntucker ntucker deleted the renovate/all-minor-patch branch June 15, 2024 07:32
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.

None yet

1 participant