Skip to content

chore(deps): update devdependencies (non-major)

Renovate-Bot requested to merge renovate/devdependencies-(non-major) into dev

This MR contains the following updates:

Package Type Update Change
babel-preset-cozy-app devDependencies minor 2.1.0 -> 2.8.1
cozy-app-publish devDependencies minor ^0.33.0 -> ^0.40.0
eslint-plugin-react devDependencies patch 7.37.1 -> 7.37.2
redux-mock-store devDependencies patch 1.5.4 -> 1.5.5
typescript (source) devDependencies minor 5.3.3 -> 5.7.2
webextension-polyfill devDependencies minor ^0.10.0 -> ^0.12.0

Release Notes

cozy/cozy-libs (babel-preset-cozy-app)

v2.8.1

Compare Source

2.8.1 (2024-11-06)

Bug Fixes
  • Rename cozy-dataproxy to cozy-dataproxy-lib (635d421)

v2.8.0

Compare Source

2.8.0 (2024-11-06)

Features

v2.7.0

Compare Source

2.7.0 (2024-11-06)

Features
  • cozy-devtools: Remove logs and use hook to get client (df87cf5)

v2.6.0

Compare Source

2.6.0 (2024-11-06)

Features
  • cozy-devtools: Add first version to test providers (5689640)

v2.5.1

Compare Source

2.5.1 (2024-11-05)

Note: Version bump only for package babel-preset-cozy-app

v2.5.0

Compare Source

2.5.0 (2024-10-30)

Features
  • Update deps for cozy-viewer (b2e103a)

v2.4.0

Compare Source

2.4.0 (2024-10-30)

Features
  • Download file on mobile viewer on press (3c38062)

v2.3.0

Compare Source

2.3.0 (2024-10-25)

Features
  • Viewer: Replace Encrypted provider by cozy-ui one (aa81d02)

v2.2.2

Compare Source

2.2.2 (2024-10-23)

Note: Version bump only for package babel-preset-cozy-app

v2.2.1

Compare Source

2.2.1 (2024-10-16)

Note: Version bump only for package babel-preset-cozy-app

v2.2.0

Compare Source

cozy/cozy-libs (cozy-app-publish)
jsx-eslint/eslint-plugin-react

v7.37.2

Compare Source

Fixed
  • [destructuring-assignment]: fix false negative when using typeof props.a (#​3835 @​golopot)
Changed
  • [Refactor] [destructuring-assignment]: use getParentStatelessComponent (#​3835 @​golopot)
arnaudbenard/redux-mock-store

v1.5.5

Compare Source

This patch release deprecates the configureStore method, as this package does not align with the Redux team's recommended testing practices. Instead, we recommend testing with a real store.

Testing with a mock store leads to potentially confusing behaviour, such as state not updating when actions are dispatched. Additionally, it's a lot less useful to assert on the actions dispatched rather than the observable state changes.

You can test the entire combination of action creators, reducers, and selectors in a single test, for example:

it('should add a todo', () => {
  const store = makeStore() // a user defined reusable store factory

  store.dispatch(addTodo('Use Redux'))

  expect(selectTodos(store.getState())).toEqual([
    { text: 'Use Redux', completed: false }
  ])
})

This avoids common pitfalls of testing each of these in isolation, such as mocked state shape becoming out of sync with the actual application.

legacy_configureStore

We recognise that for many codebases, migration will be a major effort that some may not be able to allocate time for. The @deprecated tag is just a visual strikethrough, but some tools will add extra warnings when it is used.

We now have a legacy_configureStore export (similar to legacy_createStore in Redux core) which is the same function but without this tag. You can change any imports to use this if the deprecation notice presents significant issues for you.

- import configureStore from "redux-mock-store"
+ import { legacy_configureStore as configureStore } from "redux-mock-store"

// or

- import { configureStore } from "redux-mock-store"
+ import { legacy_configureStore as configureStore } from "redux-mock-store"

Full Changelog: https://github.com/reduxjs/redux-mock-store/compare/v1.5.4...v1.5.5

microsoft/TypeScript

v5.7.2

Compare Source

For release notes, check out the release announcement.

Downloads are available on:

v5.6.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.6.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.5.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

mozilla/webextension-polyfill

v0.12.0

Compare Source

Bug Fixes

See all changes for 0.12.0

v0.11.0

Compare Source

Bug Fixes

See all changes for 0.11.0


Configuration

📅 Schedule: At any time (no schedule defined).

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

♻️ Rebasing: Whenever MR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, click this checkbox.

This MR has been generated by Renovate Bot.

Edited by Renovate-Bot

Merge request reports

Loading