Skip to content

Commit

Permalink
chore: Update minor and patch NPM dependencies (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Sep 30, 2024
1 parent a9b38b5 commit 30c3d1f
Show file tree
Hide file tree
Showing 4 changed files with 559 additions and 579 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Added
### Fixed

- Add truncation to `VoteProposalDateListItem` module component
- Fix truncation issue on `VoteProposalDataListItem` module component

### Changed

- Bump `actions/setup-node` from 4.0.3 to 4.0.4
- Update minor and patch NPM dependencies

## [1.0.47] - 2024-09-23

Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.0",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@tiptap/extension-code-block": "^2.6.0",
"@tiptap/extension-image": "^2.6.0",
"@tiptap/extension-link": "^2.6.0",
"@tiptap/extension-placeholder": "^2.6.0",
"@tiptap/pm": "^2.6.0",
"@tiptap/react": "^2.6.0",
"@tiptap/starter-kit": "^2.6.0",
"@tiptap/extension-code-block": "^2.7.0",
"@tiptap/extension-image": "^2.7.0",
"@tiptap/extension-link": "^2.7.0",
"@tiptap/extension-placeholder": "^2.7.0",
"@tiptap/pm": "^2.7.0",
"@tiptap/react": "^2.7.0",
"@tiptap/starter-kit": "^2.7.0",
"blockies-ts": "^1.0.0",
"classnames": "^2.0.0",
"framer-motion": "^11.5.0",
Expand All @@ -88,17 +88,17 @@
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-designs": "^8.0.3",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-essentials": "^8.3.2",
"@storybook/addon-links": "^8.3.2",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-webpack5": "^8.3.0",
"@storybook/blocks": "^8.3.2",
"@storybook/react": "^8.3.2",
"@storybook/react-webpack5": "^8.3.2",
"@storybook/storybook-deployer": "^2.8.16",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.1.0",
Expand All @@ -112,8 +112,8 @@
"@types/luxon": "^3.4.2",
"@types/react-dom": "^18.3.0",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
Expand All @@ -131,20 +131,20 @@
"postcss": "^8.4.45",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.21.3",
"rollup": "^4.22.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.3.0",
"tailwindcss": "^3.4.11",
"storybook": "^8.3.2",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"viem": "^2.21.3",
"wagmi": "^2.12.9"
"viem": "^2.21.12",
"wagmi": "^2.12.13"
},
"bugs": {
"url": "https://github.com/aragon/ods/issues"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ describe('<TextAreaRichText /> component', () => {
const onChange = jest.fn();
render(createTestComponent({ onChange }));
await userEvent.type(await screen.findByRole('textbox'), 'test');
// userEvent.type adds a new line character (\n\n) before tests causing the onChange callback
// to be called with an empty paragraph before the typed text
expect(onChange).toHaveBeenLastCalledWith('<p></p><p>test</p>');
expect(onChange).toHaveBeenLastCalledWith('<p>test</p>');
});

it('defaults to empty string instead of empty paragraph when input is empty', async () => {
Expand Down
Loading

0 comments on commit 30c3d1f

Please sign in to comment.