chore(deps): update devdependencies (non-major)
-
Review changes -
-
Download -
Patches
-
Plain diff
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.4 |
redux-mock-store | devDependencies | patch | 1.5.4 -> 1.5.5 |
typescript (source) | devDependencies | minor | 5.3.3 -> 5.7.3 |
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)
jsx-eslint/eslint-plugin-react
v7.37.4
Fixed
- [
no-unknown-property
]: supportonBeforeToggle
,popoverTarget
,popoverTargetAction
attributes (#3865 @acusti) - [types] fix types of flat configs (#3874 @ljharb)
v7.37.3
Fixed
- [
no-danger
]: avoid a crash on a nested component name (#3833 @ljharb) - [Fix] types: correct generated type declaration (#3840 @ocavue)
- [
no-unknown-property
]: supportprecedence
prop in react 19 (#3829 @acusti) - [
prop-types
]: props missing in validation when using generic types from a namespace import (#3859 @rbondoc96)
Changed
- [Tests] [
jsx-no-script-url
]: Improve tests (#3849 @radu2147) - [Docs] fix broken links: [
default-props-match-prop-types
], [jsx-boolean-value
], [jsx-curly-brace-presence
], [jsx-no-bind
], [no-array-index-key
], [no-is-mounted
], [no-render-return-value
], [require-default-props
] (#3841 @bastiendmt)
v7.37.2
Fixed
Changed
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.3
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).
- fixed issues query for Typescript 5.7.3 (Stable).
Downloads are available on npm
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.
Merge request reports
- version 68088b5dc0
- version 6758c8c5c6
- version 66bbd36e16
- version 65704618b0
- version 64fb18cba1
- version 6330b27f78
- version 621a4a86b5
- version 61982d28b8
- version 60390cd96f
- version 59181aad64
- version 58801b546d
- version 57500cd372
- version 56def5da84
- version 559fc20434
- version 541503d462
- version 53a36ff201
- version 52fc4b9695
- version 51cfda85a3
- version 502e1b80ce
- version 49508089a8
- version 4878e20e17
- version 47ce97ab12
- version 463571fc1b
- version 4510bba40a
- version 44cfc52373
- version 434f1305df
- version 423adc7809
- version 41da0f5450
- version 4026ca49b6
- version 39d93625d4
- version 3822e512e3
- version 3740ed887d
- version 362fade989
- version 3558e38815
- version 3499616434
- version 33842c7142
- version 32e783c49b
- version 313450596b
- version 30fbdb597b
- version 299751ddf0
- version 28e03a2e72
- version 2742692f29
- version 26eb58ab85
- version 2543ef6664
- version 2401c58959
- version 2381c003b1
- version 2224d3cdc4
- version 21a2f3875f
- version 20b6025eea
- version 19d5e8bd15
- version 189baa083a
- version 17ff32f2cb
- version 1603daa73f
- version 15adfafb98
- version 14e2ae60ab
- version 134b8bb146
- version 12760870a3
- version 111446b7b9
- version 1037c79f28
- version 9c8e987ee
- version 8103f4992
- version 78f7fdcd0
- version 6069ce765
- version 54871b130
- version 4538b016a
- version 3d45b107f
- version 2a179624a
- version 13f124fbb
- dev (HEAD)
- latest version57390c9d1 commit,
- version 68088b5dc01 commit,
- version 6758c8c5c61 commit,
- version 66bbd36e161 commit,
- version 65704618b01 commit,
- version 64fb18cba11 commit,
- version 6330b27f781 commit,
- version 621a4a86b51 commit,
- version 61982d28b81 commit,
- version 60390cd96f1 commit,
- version 59181aad641 commit,
- version 58801b546d1 commit,
- version 57500cd3721 commit,
- version 56def5da841 commit,
- version 559fc204341 commit,
- version 541503d4621 commit,
- version 53a36ff2011 commit,
- version 52fc4b96951 commit,
- version 51cfda85a31 commit,
- version 502e1b80ce1 commit,
- version 49508089a81 commit,
- version 4878e20e171 commit,
- version 47ce97ab121 commit,
- version 463571fc1b1 commit,
- version 4510bba40a1 commit,
- version 44cfc523731 commit,
- version 434f1305df1 commit,
- version 423adc78091 commit,
- version 41da0f54501 commit,
- version 4026ca49b61 commit,
- version 39d93625d41 commit,
- version 3822e512e31 commit,
- version 3740ed887d1 commit,
- version 362fade9891 commit,
- version 3558e388151 commit,
- version 34996164341 commit,
- version 33842c71421 commit,
- version 32e783c49b1 commit,
- version 313450596b1 commit,
- version 30fbdb597b1 commit,
- version 299751ddf01 commit,
- version 28e03a2e721 commit,
- version 2742692f291 commit,
- version 26eb58ab851 commit,
- version 2543ef66641 commit,
- version 2401c589591 commit,
- version 2381c003b11 commit,
- version 2224d3cdc41 commit,
- version 21a2f3875f1 commit,
- version 20b6025eea1 commit,
- version 19d5e8bd151 commit,
- version 189baa083a1 commit,
- version 17ff32f2cb1 commit,
- version 1603daa73f1 commit,
- version 15adfafb981 commit,
- version 14e2ae60ab1 commit,
- version 134b8bb1461 commit,
- version 12760870a31 commit,
- version 111446b7b91 commit,
- version 1037c79f281 commit,
- version 9c8e987ee1 commit,
- version 8103f49921 commit,
- version 78f7fdcd01 commit,
- version 6069ce7651 commit,
- version 54871b1301 commit,
- version 4538b016a1 commit,
- version 3d45b107f1 commit,
- version 2a179624a1 commit,
- version 13f124fbb1 commit,
- Side-by-side
- Inline
Some changes are not shown
For a faster browsing experience, some files are collapsed by default.