Releases: JFusco/react-tagging-input
Releases · JFusco/react-tagging-input
v2.1.2
v2.1.1
v2.1.0
Minor Release
Updates
- Update
dependencies
anddevDependencies
- Add Flow types to Tag.js and Tags.js components
- Update tests to work with new versions of React and Jest
- Add .flowconfig to ignore/include folders and options to recognize scss imports
Breaking Changes
- None
v2.0.0
Major Release
Updates
Refactor the Tags component to be stateless and allow the state of
tags to be changed/controlled at the host component level. Keep all
other business logic in the component layer.
Update README to reflect new refactor of the component. Update
options and events, remove onChange
event.
Update tags tests to use stateless component. Create an
App
fixture to be able to capture events and state change
in the component so we can test properly.
Update webpack to extract the css in a production build
as well as a development build. Remove css-loader
rule from rules config.
Update example/docs to reflect new changes to the component.
Breaking Changes
- Component is now stateless, host component must provide tags
- Removed
onChange
event tags
is now a required attribute
v1.10.0
v1.9.0
Minor Release
Updates
- Update
dependencies
anddevDependencies
. - Remove gulp dependency completely and just use webpack and npm for running builds.
- Modify plugins in webpack
- Update package.json to include semver build scripts so we can easily bump the version.
- Update README documentation
Breaking Changes
- None
v1.8.6
Minor Release
Updates
- Update Jest and test suite to use snapshots
- Update webpack and remove loaders and add rules, update to 2.2.1
- Add in new style-loader, css-loader and sass-loader rules
- Update and modify
ExtractTextPlugin
in webpack - Remove '' in
extensions
because webpack does not require it anymore - Remove Dedupe plugin as webpack has deprecated this. Add
NoEmitOnErrorsPlugin
- Remove
NoErrorsPlugin
as webpack deprecated this - Update all outdated
devDependecnies
to latest builds - Update and simplify
.babelrc
- Remove all plugins from
.babelrc
and package.json and addstage-0
preset
Breaking Changes
- None
v1.7.6
v1.7.5
Minor Release
Updates
- Update the devDependencies to update React and Jest libraries.
- Add mocks directory and
styleMock.js
to be able to mock the scss that gets imported in to the component. - Change dev to development and prod to production in
package.json
andwebpack
configs. - Add
__DEV__
variable to.eslint
globals and Jest globals.
Breaking Changes
- None