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

Release 9.4.2 #798

Merged
merged 5 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.

This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/).

## [9.4.2] - 2024-02-21

### Updated
- `LinkInput` should handle input debouncing better, and the delay is now configurable via the `inputDebounceDelay` prop

## [9.4.1] - 2024-02-19

### Updated
- Dependency updates

## [9.4.0] - 2024-02-14

### Added
Expand Down Expand Up @@ -959,6 +969,8 @@ Follow this migration script in order for you project to work correctly with the

[Unreleased]: https://github.com/infinum/eightshift-frontend-libs/compare/master...HEAD

[9.4.2]: https://github.com/infinum/eightshift-frontend-libs/compare/9.4.1...9.4.2
[9.4.1]: https://github.com/infinum/eightshift-frontend-libs/compare/9.4.0...9.4.1
[9.4.0]: https://github.com/infinum/eightshift-frontend-libs/compare/9.3.1...9.4.0
[9.3.1]: https://github.com/infinum/eightshift-frontend-libs/compare/9.3.0...9.3.1
[9.3.0]: https://github.com/infinum/eightshift-frontend-libs/compare/9.2.1...9.3.0
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eightshift/frontend-libs",
"version": "9.4.0",
"version": "9.4.2",
"description": "A collection of useful frontend utility modules. powered by Eightshift",
"author": {
"name": "Eightshift team",
Expand Down Expand Up @@ -29,7 +29,6 @@
"lint": "npm run lintJs && npm run lintStyle",
"storybookBuild": "storybook build -c .storybook -o docs/storybook",
"storybook": "storybook dev -c .storybook",
"sassdocBuild": "node ./node_modules/sassdoc/bin/sassdoc styles/scss --dest docs/sassdocs && cp ./styles/sassdocs/main.css ./docs/sassdocs/assets/css/",
"docsBuild": "rm -rf docs && npm run storybookBuild",
"docsDeploy": "npm run docsBuild && gh-pages -d docs",
"test": "jest --maxWorkers=2",
Expand All @@ -50,7 +49,8 @@
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@infinumjs/eslint-config-react-js": "^3.5.0",
"@stylistic/stylelint-plugin": "^2.0.0",
"@stylistic/stylelint-plugin": "^2.1.0",
"@uidotdev/usehooks": "^2.4.1",
"@wordpress/api-fetch": "^6.48.0",
"@wordpress/block-editor": "^12.19.1",
"@wordpress/dependency-extraction-webpack-plugin": "^5.2.0",
Expand Down Expand Up @@ -91,23 +91,23 @@
"react-html-parser": "^2.0.2",
"react-select": "^5.8.0",
"regenerator-runtime": "^0.14.1",
"sass": "^1.70.0",
"sass": "^1.71.0",
"sass-loader": "^14.1.0",
"storybook": "^7.6.15",
"storybook": "^7.6.16",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.10.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@eightshift/storybook": "^1.6.0",
"@eightshift/storybook": "^1.6.1",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
Expand Down
Loading
Loading