chore(deps): update devdependencies (non-major)
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
2.8.1 (2024-11-06)
Bug Fixes
- Rename cozy-dataproxy to cozy-dataproxy-lib (635d421)
v2.8.0
2.8.0 (2024-11-06)
Features
- Upgrade cozy-client and cozy-pouch-link (67f5241), closes cozy/cozy-client#1553 cozy/cozy-client#1556
v2.7.0
2.7.0 (2024-11-06)
Features
-
cozy-devtools: Remove logs and use hook to get
client
(df87cf5)
v2.6.0
2.6.0 (2024-11-06)
Features
- cozy-devtools: Add first version to test providers (5689640)
v2.5.1
2.5.1 (2024-11-05)
Note: Version bump only for package babel-preset-cozy-app
v2.5.0
2.5.0 (2024-10-30)
Features
- Update deps for cozy-viewer (b2e103a)
v2.4.0
2.4.0 (2024-10-30)
Features
- Download file on mobile viewer on press (3c38062)
v2.3.0
2.3.0 (2024-10-25)
Features
- Viewer: Replace Encrypted provider by cozy-ui one (aa81d02)
v2.2.2
2.2.2 (2024-10-23)
Note: Version bump only for package babel-preset-cozy-app
v2.2.1
2.2.1 (2024-10-16)
Note: Version bump only for package babel-preset-cozy-app
v2.2.0
cozy/cozy-libs (cozy-app-publish)
arnaudbenard/redux-mock-store
v1.5.5
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
For release notes, check out the release announcement.
- fixed issues query for Typescript 5.7.0 (Beta).
- fixed issues query for Typescript 5.7.1 (RC).
- fixed issues query for Typescript 5.7.2 (Stable).
Downloads are available on:
v5.6.3
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.6.0 (Beta).
- fixed issues query for Typescript 5.6.1 (RC).
- fixed issues query for Typescript 5.6.2 (Stable).
- fixed issues query for Typescript 5.6.3 (Stable).
Downloads are available on:
v5.6.2
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.6.0 (Beta).
- fixed issues query for Typescript 5.6.1 (RC).
- fixed issues query for Typescript 5.6.2 (Stable).
Downloads are available on:
v5.5.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for TypeScript v5.5.4 (Stable).
- fixed issues query for TypeScript v5.5.3 (Stable).
- fixed issues query for TypeScript v5.5.2 (Stable).
- fixed issues query for TypeScript v5.5.1 (RC).
- fixed issues query for TypeScript v5.5.0 (Beta).
Downloads are available on:
- npm
- NuGet package (soon!)
v5.5.3
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for TypeScript v5.5.3 (Stable).
- fixed issues query for TypeScript v5.5.2 (Stable).
- fixed issues query for TypeScript v5.5.1 (RC).
- fixed issues query for TypeScript v5.5.0 (Beta).
Downloads are available on:
v5.5.2
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for TypeScript v5.5.2 (Stable).
- fixed issues query for TypeScript v5.5.1 (RC).
- fixed issues query for TypeScript v5.5.0 (Beta).
Downloads are available on:
v5.4.5
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
- fixed issues query for Typescript 5.4.4 (Stable).
- fixed issues query for Typescript 5.4.5 (Stable).
Downloads are available on:
v5.4.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
- fixed issues query for Typescript 5.4.4 (Stable).
Downloads are available on:
v5.4.3
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
Downloads are available on:
v5.4.2
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
Downloads are available on:
mozilla/webextension-polyfill
v0.12.0
Bug Fixes
- Removed unnecessary webpack and webpack-cli npm packages from webextension-polyfill npm package dependencies (#614) (https://github.com/mozilla/webextension-polyfill/issues/604)
v0.11.0
Bug Fixes
- Fix no-op check to work with Safari and support of old browsers (#582) (https://github.com/mozilla/webextension-polyfill/issues/364)
Configuration
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot.