diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5585ee61..9b2e9acafb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,73 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Bug Fixes + +* **instui-cli:** don't use yarn to run jscodeshift ([992e250](https://github.com/instructure/instructure-ui/commit/992e250)) +* **instui-cli,ui-codemods:** codemod paths should work when cli is globally installed ([0948a76](https://github.com/instructure/instructure-ui/commit/0948a76)) +* **instui-cli,ui-codemods,ui-scripts:** require uncached version of configs ([7130c12](https://github.com/instructure/instructure-ui/commit/7130c12)) +* **ui-docs-client:** fix search icon import path ([7390556](https://github.com/instructure/instructure-ui/commit/7390556)) +* **ui-layout:** position should account for documentElement offset ([701b08e](https://github.com/instructure/instructure-ui/commit/701b08e)) +* **ui-utils:** ensure 'getActiveElement' is using the instui 'contains' ([26f7d98](https://github.com/instructure/instructure-ui/commit/26f7d98)) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **babel-plugin-themeable-styles:** deprecate themeable config ([f3228bc](https://github.com/instructure/instructure-ui/commit/f3228bc)) +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **instui-cli,instui-config,ui-codemods:** add upgrade command ([a805ed6](https://github.com/instructure/instructure-ui/commit/a805ed6)) +* **instui-cli,instui-config,ui-scripts:** Allow upgrade to specific version ([55c3c16](https://github.com/instructure/instructure-ui/commit/55c3c16)) +* **instui-config,ui-codemods:** configure codemod updates for simple prop values ([4049122](https://github.com/instructure/instructure-ui/commit/4049122)) +* **instui-config,ui-forms:** add deprecation + codemod for old TextInput to TextInputControlled ([eb83528](https://github.com/instructure/instructure-ui/commit/eb83528)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* **ui-core:** entire package has been removed +* **ui-elements:** ContextBox has been removed +* **ui-testbed:** entire package has been removed +* **ui-forms:** NumberInput has been removed +* **ui-container:** entire package has been removed +* **ui-menu:** MenuItemFlyout has been removed +* **ui-forms:** FormField & FormFieldGroup have been removed +* **ui-svg-images:** height and width props removed from SVGIcon +* **ui-utils:** Decimal has been removed +* **ui-overlays:** applicationElement, closeButtonLabel, closeButtonRef, closeButtonVariant props removed from Tray (as well as dep warnings from InstUI 3) +* **ui-overlays:** applicationElement, closeButtonLabel, closeButtonRef props removed from Popover (as well as dep warnings from InstUI 3) +* **ui-overlays:** applicationElement, closeButtonLabel, closeButtonRef props removed from Modal (as well as dep warnings from InstUI 3) +* **ui-overlays:** fullScreen prop removed from Mask +* **ui-menu:** active prop removed from MenuItem +* **ui-menu:** title, labelledBy and controls props removed from Menu +* **ui-a11y:** applicationElement prop removed from Dialog +* **ui-code-editor:** code prop removed from CodeEditor +* **ui-layout:** size prop removed from View +* **ui-elements:** ellipsis prop removed from Link +* **ui-overlays:** size prop removed from Tooltip, switched variant so the inverse Tooltip is what a consumer gets out of the box, default (light has to be explicitly set) +* **ui-alerts:** 3.0 deprecations removed from Alert +* **ui-elements:** 3.0 deprecations removed from Table, prop values from Heading, ListItem +* **ui-portal:** 3.0 deprecations removed from Portal +* **ui-component-examples:** should not be referencing a size prop for Tooltip +* **ui-utils:** deprecated util has updated messaging +* **scripts:** update component and package template dependancy from '^5' to '^6' +* **ui-forms, ui-icons, ui-overlays, ui-utils:** remove 'config' folder as they now reside in their own package +* **ui-themeable:** added warning in dev env when using react version < 15 +* All package peerDependencies updated to remove support for React v0.14 +* **ui-utils:** deprecated utils removed +* **ui-themes:** remove deprecated canvas-a11y theme +* removed /components and /utils directories, add codemods to update imports + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) diff --git a/lerna.json b/lerna.json index 31e9694832..0c02e5089e 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "3.1.4", - "version": "5.52.3", + "version": "6.0.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/package.json b/package.json index 763abe3251..53a2465d33 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "instructure-ui", "description": "UI libraries made by Instructure Inc.", "private": true, - "version": "5.52.3", + "version": "6.0.0", "author": "Instructure, Inc. Engineering and Product Design", "repository": { "type": "git", diff --git a/packages/__docs__/CHANGELOG.md b/packages/__docs__/CHANGELOG.md index b537d341bf..f29ab0c49d 100644 --- a/packages/__docs__/CHANGELOG.md +++ b/packages/__docs__/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package docs-app diff --git a/packages/__docs__/package.json b/packages/__docs__/package.json index 07a103ee73..d1ec19e949 100644 --- a/packages/__docs__/package.json +++ b/packages/__docs__/package.json @@ -1,7 +1,7 @@ { "name": "docs-app", "private": true, - "version": "5.52.3", + "version": "6.0.0", "description": "Documentation for A UI library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "repository": { @@ -21,50 +21,50 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-polyfill-loader": "^5.52.3", - "@instructure/ui-webpack-config": "^5.52.3", + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-polyfill-loader": "^6.0.0", + "@instructure/ui-webpack-config": "^6.0.0", "raw-loader": "^2.0.0", "svg-inline-loader": "^0.8.0" }, "dependencies": { - "@instructure/canvas-theme": "^5.52.3", - "@instructure/canvas-high-contrast-theme": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-alerts": "^5.52.3", - "@instructure/ui-billboard": "^5.52.3", - "@instructure/ui-breadcrumb": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-calendar": "^5.52.3", - "@instructure/ui-code-editor": "^5.52.3", - "@instructure/ui-date-input": "^5.52.3", - "@instructure/ui-docs-client": "^5.52.3", - "@instructure/ui-docs-plugin": "^5.52.3", - "@instructure/ui-editable": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-focusable": "^5.52.3", - "@instructure/ui-form-field": "^5.52.3", - "@instructure/ui-forms": "^5.52.3", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-menu": "^5.52.3", - "@instructure/ui-motion": "^5.52.3", - "@instructure/ui-navigation": "^5.52.3", - "@instructure/ui-number-input": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-pages": "^5.52.3", - "@instructure/ui-pagination": "^5.52.3", - "@instructure/ui-portal": "^5.52.3", - "@instructure/ui-selectable": "^5.52.3", - "@instructure/ui-svg-images": "^5.52.3", - "@instructure/ui-table": "^5.52.3", - "@instructure/ui-tabs": "^5.52.3", - "@instructure/ui-text-input": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-toggle-details": "^5.52.3", - "@instructure/ui-tree-browser": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/canvas-high-contrast-theme": "^6.0.0", + "@instructure/canvas-theme": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-alerts": "^6.0.0", + "@instructure/ui-billboard": "^6.0.0", + "@instructure/ui-breadcrumb": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-calendar": "^6.0.0", + "@instructure/ui-code-editor": "^6.0.0", + "@instructure/ui-date-input": "^6.0.0", + "@instructure/ui-docs-client": "^6.0.0", + "@instructure/ui-docs-plugin": "^6.0.0", + "@instructure/ui-editable": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-focusable": "^6.0.0", + "@instructure/ui-form-field": "^6.0.0", + "@instructure/ui-forms": "^6.0.0", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-menu": "^6.0.0", + "@instructure/ui-motion": "^6.0.0", + "@instructure/ui-navigation": "^6.0.0", + "@instructure/ui-number-input": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-pages": "^6.0.0", + "@instructure/ui-pagination": "^6.0.0", + "@instructure/ui-portal": "^6.0.0", + "@instructure/ui-selectable": "^6.0.0", + "@instructure/ui-svg-images": "^6.0.0", + "@instructure/ui-table": "^6.0.0", + "@instructure/ui-tabs": "^6.0.0", + "@instructure/ui-text-input": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-toggle-details": "^6.0.0", + "@instructure/ui-tree-browser": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "lorem-ipsum": "^1.0.6", "moment": "^2.23.0", "react": "^15 || ^16", diff --git a/packages/__examples__/CHANGELOG.md b/packages/__examples__/CHANGELOG.md index 976edc0aac..32771e332e 100644 --- a/packages/__examples__/CHANGELOG.md +++ b/packages/__examples__/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package docs-examples diff --git a/packages/__examples__/package.json b/packages/__examples__/package.json index 5da7dea360..ac784e0336 100644 --- a/packages/__examples__/package.json +++ b/packages/__examples__/package.json @@ -2,7 +2,7 @@ "name": "docs-examples", "description": "UI libraries made by Instructure Inc.", "private": true, - "version": "5.52.3", + "version": "6.0.0", "author": "Instructure, Inc. Engineering and Product Design", "repository": { "type": "git", @@ -24,10 +24,10 @@ "license": "MIT", "dependencies": { "@babel/runtime": "^7", - "@instructure/canvas-theme": "^5.52.3", - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-component-examples": "^5.52.3", - "@instructure/ui-webpack-config": "^5.52.3", + "@instructure/canvas-theme": "^6.0.0", + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-component-examples": "^6.0.0", + "@instructure/ui-webpack-config": "^6.0.0", "@storybook/react": "^5.0.11", "@storybook/theming": "^5.0.11", "react": "^15 || ^16", diff --git a/packages/babel-plugin-themeable-styles/CHANGELOG.md b/packages/babel-plugin-themeable-styles/CHANGELOG.md index 66d8042148..625b0a3492 100644 --- a/packages/babel-plugin-themeable-styles/CHANGELOG.md +++ b/packages/babel-plugin-themeable-styles/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **babel-plugin-themeable-styles:** deprecate themeable config ([f3228bc](https://github.com/instructure/instructure-ui/commit/f3228bc)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/babel-plugin-themeable-styles diff --git a/packages/babel-plugin-themeable-styles/package.json b/packages/babel-plugin-themeable-styles/package.json index cdd695199e..4bfbca459b 100644 --- a/packages/babel-plugin-themeable-styles/package.json +++ b/packages/babel-plugin-themeable-styles/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/babel-plugin-themeable-styles", - "version": "5.52.3", + "version": "6.0.0", "description": "A babel plugin to transform CSS imports for themeable components", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -17,10 +17,10 @@ "license": "MIT", "dependencies": { "@babel/template": "^7.4.4", - "@instructure/config-loader": "^5.52.3", - "@instructure/pkg-utils": "^5.52.3", - "@instructure/postcss-themeable-styles": "^5.52.3", - "@instructure/ui-postcss-config": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/pkg-utils": "^6.0.0", + "@instructure/postcss-themeable-styles": "^6.0.0", + "@instructure/ui-postcss-config": "^6.0.0", "css-modules-require-hook": "^4.2.3", "loader-utils": "^1.2.3", "postcss": "^7", diff --git a/packages/babel-plugin-transform-class-display-name/CHANGELOG.md b/packages/babel-plugin-transform-class-display-name/CHANGELOG.md index e5f1d3b3bb..73e0dcff55 100644 --- a/packages/babel-plugin-transform-class-display-name/CHANGELOG.md +++ b/packages/babel-plugin-transform-class-display-name/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/babel-plugin-transform-class-display-name diff --git a/packages/babel-plugin-transform-class-display-name/package.json b/packages/babel-plugin-transform-class-display-name/package.json index d329e3a393..1f64c253c4 100644 --- a/packages/babel-plugin-transform-class-display-name/package.json +++ b/packages/babel-plugin-transform-class-display-name/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/babel-plugin-transform-class-display-name", - "version": "5.52.3", + "version": "6.0.0", "private": true, "description": "A babel plugin to add a displayName property to React component class declarations", "author": "Instructure, Inc. Engineering and Product Design", diff --git a/packages/babel-plugin-transform-imports/CHANGELOG.md b/packages/babel-plugin-transform-imports/CHANGELOG.md index 5787969dda..6d86b78802 100644 --- a/packages/babel-plugin-transform-imports/CHANGELOG.md +++ b/packages/babel-plugin-transform-imports/CHANGELOG.md @@ -1 +1,17 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + See the instructure-ui mono-repo [change log](#CHANGELOG) for past changes. diff --git a/packages/babel-plugin-transform-imports/package.json b/packages/babel-plugin-transform-imports/package.json index ac9c701886..3f8f24486e 100644 --- a/packages/babel-plugin-transform-imports/package.json +++ b/packages/babel-plugin-transform-imports/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/babel-plugin-transform-imports", - "version": "5.52.3", + "version": "6.0.0", "description": "A babel plugin made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", diff --git a/packages/canvas-high-contrast-theme/CHANGELOG.md b/packages/canvas-high-contrast-theme/CHANGELOG.md index 5787969dda..c2c143fb86 100644 --- a/packages/canvas-high-contrast-theme/CHANGELOG.md +++ b/packages/canvas-high-contrast-theme/CHANGELOG.md @@ -1 +1,19 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + + + + See the instructure-ui mono-repo [change log](#CHANGELOG) for past changes. diff --git a/packages/canvas-high-contrast-theme/package.json b/packages/canvas-high-contrast-theme/package.json index c448396437..d5cecf8441 100644 --- a/packages/canvas-high-contrast-theme/package.json +++ b/packages/canvas-high-contrast-theme/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/canvas-high-contrast-theme", - "version": "5.52.3", + "version": "6.0.0", "description": "A high contrast theme for Canvas LMS made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,14 +20,14 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/canvas-theme": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3" + "@instructure/canvas-theme": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0" }, "publishConfig": { "access": "public" diff --git a/packages/canvas-theme/CHANGELOG.md b/packages/canvas-theme/CHANGELOG.md index 5787969dda..c2c143fb86 100644 --- a/packages/canvas-theme/CHANGELOG.md +++ b/packages/canvas-theme/CHANGELOG.md @@ -1 +1,19 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + + + + See the instructure-ui mono-repo [change log](#CHANGELOG) for past changes. diff --git a/packages/canvas-theme/package.json b/packages/canvas-theme/package.json index e7ec9bdf39..db46e97d13 100644 --- a/packages/canvas-theme/package.json +++ b/packages/canvas-theme/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/canvas-theme", - "version": "5.52.3", + "version": "6.0.0", "description": "A theme for Canvas LMS made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,13 +20,13 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-themeable": "^5.52.3" + "@instructure/ui-themeable": "^6.0.0" }, "publishConfig": { "access": "public" diff --git a/packages/command-utils/CHANGELOG.md b/packages/command-utils/CHANGELOG.md index b4286a6f4e..8d1b194f0b 100644 --- a/packages/command-utils/CHANGELOG.md +++ b/packages/command-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/command-utils + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/command-utils diff --git a/packages/command-utils/package.json b/packages/command-utils/package.json index ebf134a74c..f11e13546c 100644 --- a/packages/command-utils/package.json +++ b/packages/command-utils/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/command-utils", - "version": "5.52.3", + "version": "6.0.0", "description": "Node CLI utilties made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", diff --git a/packages/config-loader/CHANGELOG.md b/packages/config-loader/CHANGELOG.md index e519710262..97371369c6 100644 --- a/packages/config-loader/CHANGELOG.md +++ b/packages/config-loader/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/config-loader + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/config-loader diff --git a/packages/config-loader/package.json b/packages/config-loader/package.json index 03a58e14f5..557be6b160 100644 --- a/packages/config-loader/package.json +++ b/packages/config-loader/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/config-loader", - "version": "5.52.3", + "version": "6.0.0", "description": "A library to load config files", "main": "./lib/index.js", "scripts": { diff --git a/packages/console/CHANGELOG.md b/packages/console/CHANGELOG.md index a5af09f127..c207599180 100644 --- a/packages/console/CHANGELOG.md +++ b/packages/console/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/console diff --git a/packages/console/package.json b/packages/console/package.json index 957b272784..769e5cd3e7 100644 --- a/packages/console/package.json +++ b/packages/console/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/console", - "version": "5.52.3", + "version": "6.0.0", "description": "A babel macro made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,7 +20,7 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { "@babel/helper-annotate-as-pure": "^7.0.0", diff --git a/packages/cz-lerna-changelog/CHANGELOG.md b/packages/cz-lerna-changelog/CHANGELOG.md index 9b94581124..fd467321a3 100644 --- a/packages/cz-lerna-changelog/CHANGELOG.md +++ b/packages/cz-lerna-changelog/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/cz-lerna-changelog + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/cz-lerna-changelog diff --git a/packages/cz-lerna-changelog/package.json b/packages/cz-lerna-changelog/package.json index 740130b775..f1f86f05bb 100644 --- a/packages/cz-lerna-changelog/package.json +++ b/packages/cz-lerna-changelog/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/cz-lerna-changelog", - "version": "5.52.3", + "version": "6.0.0", "description": "Prompts for conventional changelog standard in a lerna environment.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -16,7 +16,7 @@ }, "license": "MIT", "dependencies": { - "@instructure/pkg-utils": "^5.52.3", + "@instructure/pkg-utils": "^6.0.0", "@semantic-release/commit-analyzer": "^6.1.0", "chalk": "^2.4.2", "cz-customizable": "^6.0.0", diff --git a/packages/debounce/CHANGELOG.md b/packages/debounce/CHANGELOG.md index 94ca1f448f..2cfc4cd01e 100644 --- a/packages/debounce/CHANGELOG.md +++ b/packages/debounce/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/debounce diff --git a/packages/debounce/package.json b/packages/debounce/package.json index 3ddfa63af1..d875018cc6 100644 --- a/packages/debounce/package.json +++ b/packages/debounce/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/debounce", - "version": "5.52.3", + "version": "6.0.0", "description": "A debounce util made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,7 +20,7 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7" diff --git a/packages/eslint-plugin-instructure-ui/CHANGELOG.md b/packages/eslint-plugin-instructure-ui/CHANGELOG.md index 6f3c3c3f18..4a67d9c602 100644 --- a/packages/eslint-plugin-instructure-ui/CHANGELOG.md +++ b/packages/eslint-plugin-instructure-ui/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package eslint-plugin-instructure-ui + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package eslint-plugin-instructure-ui diff --git a/packages/eslint-plugin-instructure-ui/package.json b/packages/eslint-plugin-instructure-ui/package.json index 46af2e15a7..b58e5b41cf 100644 --- a/packages/eslint-plugin-instructure-ui/package.json +++ b/packages/eslint-plugin-instructure-ui/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-instructure-ui", - "version": "5.52.3", + "version": "6.0.0", "description": "An eslint plugin made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -16,7 +16,7 @@ }, "license": "MIT", "dependencies": { - "@instructure/pkg-utils": "^5.52.3", + "@instructure/pkg-utils": "^6.0.0", "eslint-module-utils": "^2.4.0", "eslint-plugin-import": "^2.17.2" }, diff --git a/packages/generate-examples/CHANGELOG.md b/packages/generate-examples/CHANGELOG.md index 3a55c86c8f..634165e1e5 100644 --- a/packages/generate-examples/CHANGELOG.md +++ b/packages/generate-examples/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/generate-examples diff --git a/packages/generate-examples/package.json b/packages/generate-examples/package.json index 100ffaf128..a1dba31c06 100644 --- a/packages/generate-examples/package.json +++ b/packages/generate-examples/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/generate-examples", - "version": "5.52.3", + "version": "6.0.0", "private": true, "description": "A utility for automatically generating component examples", "author": "Instructure, Inc. Engineering and Product Design", @@ -21,13 +21,13 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { - "@instructure/config-loader": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "globby": "^9.2.0", "loader-utils": "^1.2.3", "object-hash": "^1.3.1", diff --git a/packages/instui-cli/CHANGELOG.md b/packages/instui-cli/CHANGELOG.md index d9984da214..989374f553 100644 --- a/packages/instui-cli/CHANGELOG.md +++ b/packages/instui-cli/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Bug Fixes + +* **instui-cli:** don't use yarn to run jscodeshift ([992e250](https://github.com/instructure/instructure-ui/commit/992e250)) +* **instui-cli,ui-codemods:** codemod paths should work when cli is globally installed ([0948a76](https://github.com/instructure/instructure-ui/commit/0948a76)) +* **instui-cli,ui-codemods,ui-scripts:** require uncached version of configs ([7130c12](https://github.com/instructure/instructure-ui/commit/7130c12)) + + +### Features + +* **instui-cli,instui-config,ui-codemods:** add upgrade command ([a805ed6](https://github.com/instructure/instructure-ui/commit/a805ed6)) +* **instui-cli,instui-config,ui-scripts:** Allow upgrade to specific version ([55c3c16](https://github.com/instructure/instructure-ui/commit/55c3c16)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/instui-cli diff --git a/packages/instui-cli/package.json b/packages/instui-cli/package.json index abcee38033..8fe423240a 100644 --- a/packages/instui-cli/package.json +++ b/packages/instui-cli/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/instui-cli", - "version": "5.52.3", + "version": "6.0.0", "description": "A cli for working with instructure-ui packages", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -19,10 +19,10 @@ }, "license": "MIT", "dependencies": { - "@instructure/command-utils": "^5.52.3", - "@instructure/instui-config": "^5.52.3", - "@instructure/ui-codemods": "^5.52.3", - "@instructure/ui-scripts": "^5.52.3", + "@instructure/command-utils": "^6.0.0", + "@instructure/instui-config": "^6.0.0", + "@instructure/ui-codemods": "^6.0.0", + "@instructure/ui-scripts": "^6.0.0", "semver": "^6.0.0", "yargs": "^13" }, diff --git a/packages/instui-config/CHANGELOG.md b/packages/instui-config/CHANGELOG.md index 7e8ec9423e..66c47b2897 100644 --- a/packages/instui-config/CHANGELOG.md +++ b/packages/instui-config/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **instui-cli,instui-config,ui-codemods:** add upgrade command ([a805ed6](https://github.com/instructure/instructure-ui/commit/a805ed6)) +* **instui-cli,instui-config,ui-scripts:** Allow upgrade to specific version ([55c3c16](https://github.com/instructure/instructure-ui/commit/55c3c16)) +* **instui-config,ui-codemods:** configure codemod updates for simple prop values ([4049122](https://github.com/instructure/instructure-ui/commit/4049122)) +* **instui-config,ui-forms:** add deprecation + codemod for old TextInput to TextInputControlled ([eb83528](https://github.com/instructure/instructure-ui/commit/eb83528)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/instui-config diff --git a/packages/instui-config/package.json b/packages/instui-config/package.json index f6381417bd..ab0767228e 100644 --- a/packages/instui-config/package.json +++ b/packages/instui-config/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/instui-config", - "version": "5.52.3", + "version": "6.0.0", "description": "A package containing Instructure-UI specific configuration data for operations such as upgrades and codemod scripts", "author": "Instructure, Inc. Engineering and Product Design", "repository": { diff --git a/packages/mocha-environment-jsdom/CHANGELOG.md b/packages/mocha-environment-jsdom/CHANGELOG.md index 4f6618372c..2466e9c0e6 100644 --- a/packages/mocha-environment-jsdom/CHANGELOG.md +++ b/packages/mocha-environment-jsdom/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/mocha-environment-jsdom diff --git a/packages/mocha-environment-jsdom/package.json b/packages/mocha-environment-jsdom/package.json index 6fccf20652..8a1507268a 100644 --- a/packages/mocha-environment-jsdom/package.json +++ b/packages/mocha-environment-jsdom/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/mocha-environment-jsdom", - "version": "5.52.3", + "version": "6.0.0", "description": "jsdom environment setup for use with mocha tests", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", diff --git a/packages/pkg-utils/CHANGELOG.md b/packages/pkg-utils/CHANGELOG.md index d142f500a8..922317d37a 100644 --- a/packages/pkg-utils/CHANGELOG.md +++ b/packages/pkg-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/pkg-utils + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/pkg-utils diff --git a/packages/pkg-utils/package.json b/packages/pkg-utils/package.json index 0f78842109..4a7c835165 100644 --- a/packages/pkg-utils/package.json +++ b/packages/pkg-utils/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/pkg-utils", - "version": "5.52.3", + "version": "6.0.0", "description": "Utilities for managing node packages in a monorepo.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -16,7 +16,7 @@ }, "license": "MIT", "dependencies": { - "@instructure/command-utils": "^5.52.3", + "@instructure/command-utils": "^6.0.0", "@lerna/package": "^3", "read-pkg-up": "^5.0.0" }, diff --git a/packages/postcss-themeable-styles/CHANGELOG.md b/packages/postcss-themeable-styles/CHANGELOG.md index 9545a8efc8..bdb9efd3b6 100644 --- a/packages/postcss-themeable-styles/CHANGELOG.md +++ b/packages/postcss-themeable-styles/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/postcss-themeable-styles + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/postcss-themeable-styles diff --git a/packages/postcss-themeable-styles/package.json b/packages/postcss-themeable-styles/package.json index 10432e9fb5..d7251e176b 100644 --- a/packages/postcss-themeable-styles/package.json +++ b/packages/postcss-themeable-styles/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/postcss-themeable-styles", - "version": "5.52.3", + "version": "6.0.0", "description": "PostCSS plugin for themeable component styles", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", diff --git a/packages/ui-a11y/CHANGELOG.md b/packages/ui-a11y/CHANGELOG.md index f73a892ed0..e5ab989647 100644 --- a/packages/ui-a11y/CHANGELOG.md +++ b/packages/ui-a11y/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-a11y diff --git a/packages/ui-a11y/package.json b/packages/ui-a11y/package.json index 49d9719c46..af75a14969 100644 --- a/packages/ui-a11y/package.json +++ b/packages/ui-a11y/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-a11y", - "version": "5.52.3", + "version": "6.0.0", "description": "A collection of utilities and components to make UI components accessible", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,17 +20,17 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "keycode": "^2", "prop-types": "^15" }, diff --git a/packages/ui-alerts/CHANGELOG.md b/packages/ui-alerts/CHANGELOG.md index bf4d6cda2a..9e29c05d92 100644 --- a/packages/ui-alerts/CHANGELOG.md +++ b/packages/ui-alerts/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-alerts diff --git a/packages/ui-alerts/package.json b/packages/ui-alerts/package.json index b3d9a52284..5482871569 100644 --- a/packages/ui-alerts/package.json +++ b/packages/ui-alerts/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-alerts", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,21 +20,21 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-motion": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-motion": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "keycode": "^2", "prop-types": "^15" diff --git a/packages/ui-axe-check/CHANGELOG.md b/packages/ui-axe-check/CHANGELOG.md index 186b0de9b7..344adc7ff1 100644 --- a/packages/ui-axe-check/CHANGELOG.md +++ b/packages/ui-axe-check/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-axe-check diff --git a/packages/ui-axe-check/package.json b/packages/ui-axe-check/package.json index 004d68f74f..9be73940f6 100644 --- a/packages/ui-axe-check/package.json +++ b/packages/ui-axe-check/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-axe-check", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI a11y testing library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -19,7 +19,7 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", diff --git a/packages/ui-babel-preset/CHANGELOG.md b/packages/ui-babel-preset/CHANGELOG.md index 6ddf3635d6..a6fe818b6c 100644 --- a/packages/ui-babel-preset/CHANGELOG.md +++ b/packages/ui-babel-preset/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-babel-preset diff --git a/packages/ui-babel-preset/package.json b/packages/ui-babel-preset/package.json index caf5450650..7089af0a2b 100644 --- a/packages/ui-babel-preset/package.json +++ b/packages/ui-babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-babel-preset", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI babel preset made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -29,11 +29,11 @@ "@babel/plugin-transform-runtime": "^7.4.4", "@babel/preset-env": "^7.4.3", "@babel/preset-react": "^7.0.0", - "@instructure/babel-plugin-themeable-styles": "^5.52.3", - "@instructure/babel-plugin-transform-imports": "^5.52.3", + "@instructure/babel-plugin-themeable-styles": "^6.0.0", + "@instructure/babel-plugin-transform-imports": "^6.0.0", "@instructure/canvas-supported-browsers": "^1", - "@instructure/config-loader": "^5.52.3", - "@instructure/ui-postcss-config": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/ui-postcss-config": "^6.0.0", "babel-loader": "^8.0.5", "babel-plugin-dynamic-import-node": "^2.2.0", "babel-plugin-istanbul": "^5.1.3", diff --git a/packages/ui-billboard/CHANGELOG.md b/packages/ui-billboard/CHANGELOG.md index 3a0889ef0d..ee58bc4a57 100644 --- a/packages/ui-billboard/CHANGELOG.md +++ b/packages/ui-billboard/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-billboard diff --git a/packages/ui-billboard/package.json b/packages/ui-billboard/package.json index 12d181157f..05e39cc532 100644 --- a/packages/ui-billboard/package.json +++ b/packages/ui-billboard/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-billboard", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component to display empty states, 404 pages, redirects, etc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,17 +20,17 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-breadcrumb/CHANGELOG.md b/packages/ui-breadcrumb/CHANGELOG.md index 82501f1f7f..6d43d5659b 100644 --- a/packages/ui-breadcrumb/CHANGELOG.md +++ b/packages/ui-breadcrumb/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-breadcrumb diff --git a/packages/ui-breadcrumb/package.json b/packages/ui-breadcrumb/package.json index 37eee7cbb4..bf2eca106d 100644 --- a/packages/ui-breadcrumb/package.json +++ b/packages/ui-breadcrumb/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-breadcrumb", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,20 +20,20 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-buttons/CHANGELOG.md b/packages/ui-buttons/CHANGELOG.md index 1cf9138662..0211c9df35 100644 --- a/packages/ui-buttons/CHANGELOG.md +++ b/packages/ui-buttons/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-buttons diff --git a/packages/ui-buttons/package.json b/packages/ui-buttons/package.json index db0fc001bd..6c6d1ec080 100644 --- a/packages/ui-buttons/package.json +++ b/packages/ui-buttons/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-buttons", - "version": "5.52.3", + "version": "6.0.0", "description": "Accessible button components", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,20 +20,20 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", "classnames": "^2", "keycode": "^2", "prop-types": "^15" diff --git a/packages/ui-calendar/CHANGELOG.md b/packages/ui-calendar/CHANGELOG.md index 053bc87bf5..c8df9b10d4 100644 --- a/packages/ui-calendar/CHANGELOG.md +++ b/packages/ui-calendar/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-calendar diff --git a/packages/ui-calendar/package.json b/packages/ui-calendar/package.json index 25b421b619..615bd788fa 100644 --- a/packages/ui-calendar/package.json +++ b/packages/ui-calendar/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-calendar", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -21,23 +21,23 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-focusable": "^5.52.3", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-focusable": "^6.0.0", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "prop-types": "^15", "react": "^15 || ^16" diff --git a/packages/ui-code-editor/CHANGELOG.md b/packages/ui-code-editor/CHANGELOG.md index 37db490644..191b9dc88e 100644 --- a/packages/ui-code-editor/CHANGELOG.md +++ b/packages/ui-code-editor/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-code-editor diff --git a/packages/ui-code-editor/package.json b/packages/ui-code-editor/package.json index ada3e054d4..f18d948186 100644 --- a/packages/ui-code-editor/package.json +++ b/packages/ui-code-editor/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-code-editor", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,17 +20,17 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "codemirror": "^5.46.0", "prop-types": "^15", diff --git a/packages/ui-codemods/CHANGELOG.md b/packages/ui-codemods/CHANGELOG.md index 836141c18d..8439df640b 100644 --- a/packages/ui-codemods/CHANGELOG.md +++ b/packages/ui-codemods/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Bug Fixes + +* **instui-cli,ui-codemods:** codemod paths should work when cli is globally installed ([0948a76](https://github.com/instructure/instructure-ui/commit/0948a76)) +* **instui-cli,ui-codemods,ui-scripts:** require uncached version of configs ([7130c12](https://github.com/instructure/instructure-ui/commit/7130c12)) + + +### Features + +* **instui-cli,instui-config,ui-codemods:** add upgrade command ([a805ed6](https://github.com/instructure/instructure-ui/commit/a805ed6)) +* **instui-config,ui-codemods:** configure codemod updates for simple prop values ([4049122](https://github.com/instructure/instructure-ui/commit/4049122)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-codemods diff --git a/packages/ui-codemods/package.json b/packages/ui-codemods/package.json index 2ea2b8f704..736ef3d9d0 100644 --- a/packages/ui-codemods/package.json +++ b/packages/ui-codemods/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-codemods", - "version": "5.52.3", + "version": "6.0.0", "description": "Codemod scripts to help upgrade instructure-ui libraries.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", diff --git a/packages/ui-color-utils/CHANGELOG.md b/packages/ui-color-utils/CHANGELOG.md index 5787969dda..1fba8b6940 100644 --- a/packages/ui-color-utils/CHANGELOG.md +++ b/packages/ui-color-utils/CHANGELOG.md @@ -1 +1,18 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + + + + See the instructure-ui mono-repo [change log](#CHANGELOG) for past changes. diff --git a/packages/ui-color-utils/package.json b/packages/ui-color-utils/package.json index f227988c10..ad1f757024 100644 --- a/packages/ui-color-utils/package.json +++ b/packages/ui-color-utils/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-color-utils", - "version": "5.52.3", + "version": "6.0.0", "description": "A color utility library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,8 +20,8 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", diff --git a/packages/ui-component-examples/CHANGELOG.md b/packages/ui-component-examples/CHANGELOG.md index 2678d8d6f8..098c3ba681 100644 --- a/packages/ui-component-examples/CHANGELOG.md +++ b/packages/ui-component-examples/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-component-examples diff --git a/packages/ui-component-examples/package.json b/packages/ui-component-examples/package.json index 0a7b0ebb87..bd1e677f65 100644 --- a/packages/ui-component-examples/package.json +++ b/packages/ui-component-examples/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-component-examples", - "version": "5.52.3", + "version": "6.0.0", "description": "A utility for automatically generating component examples", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,19 +20,19 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { - "@instructure/config-loader": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/uid": "^6.0.0", "loader-utils": "^1.2.3", "prop-types": "^15", "react-docgen": "^4" diff --git a/packages/ui-date-input/CHANGELOG.md b/packages/ui-date-input/CHANGELOG.md index d8bccd66d2..47de0888bf 100644 --- a/packages/ui-date-input/CHANGELOG.md +++ b/packages/ui-date-input/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-date-input diff --git a/packages/ui-date-input/package.json b/packages/ui-date-input/package.json index a1ea7c6bef..1e8f3b61b1 100644 --- a/packages/ui-date-input/package.json +++ b/packages/ui-date-input/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-date-input", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,23 +20,23 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-calendar": "^5.52.3", - "@instructure/ui-form-field": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-selectable": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-text-input": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-calendar": "^6.0.0", + "@instructure/ui-form-field": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-selectable": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-text-input": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-decorator/CHANGELOG.md b/packages/ui-decorator/CHANGELOG.md index 2b98134c64..7e3ba78f78 100644 --- a/packages/ui-decorator/CHANGELOG.md +++ b/packages/ui-decorator/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-decorator diff --git a/packages/ui-decorator/package.json b/packages/ui-decorator/package.json index 1a0476ee70..7e62909063 100644 --- a/packages/ui-decorator/package.json +++ b/packages/ui-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-decorator", - "version": "5.52.3", + "version": "6.0.0", "description": "A utility to wrap (decorates) a React component class adding functionality.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,7 +20,7 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7" diff --git a/packages/ui-docs-client/CHANGELOG.md b/packages/ui-docs-client/CHANGELOG.md index fa24415cdc..3b1e11b663 100644 --- a/packages/ui-docs-client/CHANGELOG.md +++ b/packages/ui-docs-client/CHANGELOG.md @@ -3,6 +3,33 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Bug Fixes + +* **ui-docs-client:** fix search icon import path ([7390556](https://github.com/instructure/instructure-ui/commit/7390556)) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **instui-config,ui-forms:** add deprecation + codemod for old TextInput to TextInputControlled ([eb83528](https://github.com/instructure/instructure-ui/commit/eb83528)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-docs-client diff --git a/packages/ui-docs-client/package.json b/packages/ui-docs-client/package.json index 75801e3f3a..3ffde31452 100644 --- a/packages/ui-docs-client/package.json +++ b/packages/ui-docs-client/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-docs-client", - "version": "5.52.3", + "version": "6.0.0", "description": "A React application to display documentation made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,30 +20,30 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", "@babel/standalone": "^7.4.4", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-code-editor": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-form-field": "^5.52.3", - "@instructure/ui-forms": "^5.52.3", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-svg-images": "^5.52.3", - "@instructure/ui-tabs": "^5.52.3", - "@instructure/ui-text-input": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-toggle-details": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-code-editor": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-form-field": "^6.0.0", + "@instructure/ui-forms": "^6.0.0", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-svg-images": "^6.0.0", + "@instructure/ui-tabs": "^6.0.0", + "@instructure/ui-text-input": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-toggle-details": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "classnames": "^2", "gray-matter": "3.1.1", "marked": "^0.6.2", diff --git a/packages/ui-docs-plugin/CHANGELOG.md b/packages/ui-docs-plugin/CHANGELOG.md index ba709df90c..241b7ffd46 100644 --- a/packages/ui-docs-plugin/CHANGELOG.md +++ b/packages/ui-docs-plugin/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-docs-plugin diff --git a/packages/ui-docs-plugin/package.json b/packages/ui-docs-plugin/package.json index 035f01295c..e1817c9465 100644 --- a/packages/ui-docs-plugin/package.json +++ b/packages/ui-docs-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-docs-plugin", - "version": "5.52.3", + "version": "6.0.0", "description": "A webpack plugin to generate documentation made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -18,11 +18,11 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { - "@instructure/config-loader": "^5.52.3", - "@instructure/ui-docs-client": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/ui-docs-client": "^6.0.0", "favicons-webpack-plugin": "junyper/favicons-webpack-plugin#master", "globby": "^9.2.0", "gray-matter": "3.1.1", diff --git a/packages/ui-dom-utils/CHANGELOG.md b/packages/ui-dom-utils/CHANGELOG.md index 5787969dda..1fba8b6940 100644 --- a/packages/ui-dom-utils/CHANGELOG.md +++ b/packages/ui-dom-utils/CHANGELOG.md @@ -1 +1,18 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + + + + See the instructure-ui mono-repo [change log](#CHANGELOG) for past changes. diff --git a/packages/ui-dom-utils/package.json b/packages/ui-dom-utils/package.json index 007e0b9206..addf6b27b4 100644 --- a/packages/ui-dom-utils/package.json +++ b/packages/ui-dom-utils/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-dom-utils", - "version": "5.52.3", + "version": "6.0.0", "description": "A DOM utility library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,12 +20,12 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3" + "@instructure/console": "^6.0.0" }, "peerDependencies": { "react": "^15 || ^16", diff --git a/packages/ui-editable/CHANGELOG.md b/packages/ui-editable/CHANGELOG.md index 1200c9852c..2f4c2875bc 100644 --- a/packages/ui-editable/CHANGELOG.md +++ b/packages/ui-editable/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-editable diff --git a/packages/ui-editable/package.json b/packages/ui-editable/package.json index 09f950528e..da08fe22dd 100644 --- a/packages/ui-editable/package.json +++ b/packages/ui-editable/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-editable", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,19 +20,19 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-focusable": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-focusable": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-elements/CHANGELOG.md b/packages/ui-elements/CHANGELOG.md index cf6891e8e6..1cb42b665b 100644 --- a/packages/ui-elements/CHANGELOG.md +++ b/packages/ui-elements/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-elements diff --git a/packages/ui-elements/package.json b/packages/ui-elements/package.json index bce2ea831f..a2a24f893a 100644 --- a/packages/ui-elements/package.json +++ b/packages/ui-elements/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-elements", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,27 +20,27 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/debounce": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-focusable": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-motion": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/debounce": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-focusable": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-motion": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "escape-html": "^1", "prop-types": "^15" diff --git a/packages/ui-eslint-config/CHANGELOG.md b/packages/ui-eslint-config/CHANGELOG.md index 27fe2c8b40..56c74836be 100644 --- a/packages/ui-eslint-config/CHANGELOG.md +++ b/packages/ui-eslint-config/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-eslint-config diff --git a/packages/ui-eslint-config/package.json b/packages/ui-eslint-config/package.json index 4af59cb49a..b2469b9928 100644 --- a/packages/ui-eslint-config/package.json +++ b/packages/ui-eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-eslint-config", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI shared eslint config made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -19,7 +19,7 @@ "babel-eslint": "^10.0.1", "eslint": "^5", "eslint-plugin-import": "^2.17.2", - "eslint-plugin-instructure-ui": "^5.52.3", + "eslint-plugin-instructure-ui": "^6.0.0", "eslint-plugin-jsx-a11y": "^6.2.1", "eslint-plugin-mocha": "^5.2.1", "eslint-plugin-notice": "^0.7.8", diff --git a/packages/ui-focusable/CHANGELOG.md b/packages/ui-focusable/CHANGELOG.md index e80427229f..7c5c3adfaa 100644 --- a/packages/ui-focusable/CHANGELOG.md +++ b/packages/ui-focusable/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-focusable diff --git a/packages/ui-focusable/package.json b/packages/ui-focusable/package.json index 233825e261..a2b497a4eb 100644 --- a/packages/ui-focusable/package.json +++ b/packages/ui-focusable/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-focusable", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,18 +20,18 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-form-field/CHANGELOG.md b/packages/ui-form-field/CHANGELOG.md index e35d91c1c9..cd05c09281 100644 --- a/packages/ui-form-field/CHANGELOG.md +++ b/packages/ui-form-field/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-form-field diff --git a/packages/ui-form-field/package.json b/packages/ui-form-field/package.json index 0e5e36431d..d3e31c2278 100644 --- a/packages/ui-form-field/package.json +++ b/packages/ui-form-field/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-form-field", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,19 +20,19 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-forms/CHANGELOG.md b/packages/ui-forms/CHANGELOG.md index ad8a72f031..8c11dcc425 100644 --- a/packages/ui-forms/CHANGELOG.md +++ b/packages/ui-forms/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **instui-config,ui-forms:** add deprecation + codemod for old TextInput to TextInputControlled ([eb83528](https://github.com/instructure/instructure-ui/commit/eb83528)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-forms diff --git a/packages/ui-forms/package.json b/packages/ui-forms/package.json index fc00e755e7..15c0512b74 100644 --- a/packages/ui-forms/package.json +++ b/packages/ui-forms/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-forms", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,32 +20,32 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/debounce": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-form-field": "^5.52.3", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-number-input": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-svg-images": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-text-input": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/debounce": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-form-field": "^6.0.0", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-number-input": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-svg-images": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-text-input": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "deep-equal": "^1.0.1", "keycode": "^2", diff --git a/packages/ui-i18n/CHANGELOG.md b/packages/ui-i18n/CHANGELOG.md index 3098bcf118..3f462a3e9f 100644 --- a/packages/ui-i18n/CHANGELOG.md +++ b/packages/ui-i18n/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-i18n diff --git a/packages/ui-i18n/package.json b/packages/ui-i18n/package.json index 3de0850932..02f1028b18 100644 --- a/packages/ui-i18n/package.json +++ b/packages/ui-i18n/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-i18n", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,16 +20,16 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-decorator": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-decorator": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "decimal.js": "^10", "moment-timezone": "^0.5", "prop-types": "^15" diff --git a/packages/ui-icons-build/CHANGELOG.md b/packages/ui-icons-build/CHANGELOG.md index b6de8d866a..94996771a9 100644 --- a/packages/ui-icons-build/CHANGELOG.md +++ b/packages/ui-icons-build/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-icons-build diff --git a/packages/ui-icons-build/package.json b/packages/ui-icons-build/package.json index 947f787b9d..4dd191b49e 100644 --- a/packages/ui-icons-build/package.json +++ b/packages/ui-icons-build/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-icons-build", - "version": "5.52.3", + "version": "6.0.0", "description": "Build scripts to export icons from Sketch files", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -16,7 +16,7 @@ }, "license": "MIT", "dependencies": { - "@instructure/config-loader": "^5.52.3", + "@instructure/config-loader": "^6.0.0", "clean-sketch": "^1.0.1", "del": "^4.1.1", "glob": "^7.1.3", diff --git a/packages/ui-icons/CHANGELOG.md b/packages/ui-icons/CHANGELOG.md index cbee056aa1..78da437eb1 100644 --- a/packages/ui-icons/CHANGELOG.md +++ b/packages/ui-icons/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-icons diff --git a/packages/ui-icons/package.json b/packages/ui-icons/package.json index a905e2d313..51e00ce904 100644 --- a/packages/ui-icons/package.json +++ b/packages/ui-icons/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-icons", - "version": "5.52.3", + "version": "6.0.0", "description": "Icon set for Instructure, Inc. products", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -19,13 +19,13 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-icons-build": "^5.52.3", + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-icons-build": "^6.0.0", "gulp": "^4.0.1" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-svg-images": "^5.52.3", + "@instructure/ui-svg-images": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-karma-config/CHANGELOG.md b/packages/ui-karma-config/CHANGELOG.md index 6dd029e921..377f03c7b5 100644 --- a/packages/ui-karma-config/CHANGELOG.md +++ b/packages/ui-karma-config/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-karma-config diff --git a/packages/ui-karma-config/package.json b/packages/ui-karma-config/package.json index 6147e1b156..ba25d5cc5d 100644 --- a/packages/ui-karma-config/package.json +++ b/packages/ui-karma-config/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-karma-config", - "version": "5.52.3", + "version": "6.0.0", "description": "A shared karma config made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -16,8 +16,8 @@ }, "license": "MIT", "dependencies": { - "@instructure/config-loader": "^5.52.3", - "@instructure/ui-webpack-config": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/ui-webpack-config": "^6.0.0", "choma": "^1", "globby": "^9.2.0", "karma": "^4.1.0", diff --git a/packages/ui-layout/CHANGELOG.md b/packages/ui-layout/CHANGELOG.md index 4a0f9132d8..3d2265296d 100644 --- a/packages/ui-layout/CHANGELOG.md +++ b/packages/ui-layout/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Bug Fixes + +* **ui-layout:** position should account for documentElement offset ([701b08e](https://github.com/instructure/instructure-ui/commit/701b08e)) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) diff --git a/packages/ui-layout/package.json b/packages/ui-layout/package.json index 669b466b0a..bd86a866c1 100644 --- a/packages/ui-layout/package.json +++ b/packages/ui-layout/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-layout", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,25 +20,25 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/debounce": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-motion": "^5.52.3", - "@instructure/ui-portal": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/debounce": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-motion": "^6.0.0", + "@instructure/ui-portal": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-menu/CHANGELOG.md b/packages/ui-menu/CHANGELOG.md index c92df9616e..0863133988 100644 --- a/packages/ui-menu/CHANGELOG.md +++ b/packages/ui-menu/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-menu diff --git a/packages/ui-menu/package.json b/packages/ui-menu/package.json index 641913185c..c1389fd5a4 100644 --- a/packages/ui-menu/package.json +++ b/packages/ui-menu/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-menu", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,25 +20,25 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "keycode": "^2", "prop-types": "^15" diff --git a/packages/ui-motion/CHANGELOG.md b/packages/ui-motion/CHANGELOG.md index b2d5a6487c..1127bb4253 100644 --- a/packages/ui-motion/CHANGELOG.md +++ b/packages/ui-motion/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-motion diff --git a/packages/ui-motion/package.json b/packages/ui-motion/package.json index dcdffc6ff8..f598660d95 100644 --- a/packages/ui-motion/package.json +++ b/packages/ui-motion/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-motion", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,16 +20,16 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-navigation/CHANGELOG.md b/packages/ui-navigation/CHANGELOG.md index d29f8ac063..b2757a56ce 100644 --- a/packages/ui-navigation/CHANGELOG.md +++ b/packages/ui-navigation/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-navigation diff --git a/packages/ui-navigation/package.json b/packages/ui-navigation/package.json index c3243ba53d..22d9a2658a 100644 --- a/packages/ui-navigation/package.json +++ b/packages/ui-navigation/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-navigation", - "version": "5.52.3", + "version": "6.0.0", "description": "", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,22 +20,22 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-number-input/CHANGELOG.md b/packages/ui-number-input/CHANGELOG.md index 2c1bc75b3b..25d93c9e40 100644 --- a/packages/ui-number-input/CHANGELOG.md +++ b/packages/ui-number-input/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-number-input diff --git a/packages/ui-number-input/package.json b/packages/ui-number-input/package.json index 31f03e371a..d29541aa26 100644 --- a/packages/ui-number-input/package.json +++ b/packages/ui-number-input/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-number-input", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "homepage": "https://instructure.github.io/instructure-ui/", @@ -20,18 +20,18 @@ "build:watch": "ui-build --watch" }, "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-form-field": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/ui-form-field": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "keycode": "^2", "prop-types": "^15" diff --git a/packages/ui-overlays/CHANGELOG.md b/packages/ui-overlays/CHANGELOG.md index a418a4a2a2..0c6f881c3f 100644 --- a/packages/ui-overlays/CHANGELOG.md +++ b/packages/ui-overlays/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-overlays diff --git a/packages/ui-overlays/package.json b/packages/ui-overlays/package.json index 197daa1035..945ad326cd 100644 --- a/packages/ui-overlays/package.json +++ b/packages/ui-overlays/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-overlays", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,26 +20,26 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-focusable": "^5.52.3", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-motion": "^5.52.3", - "@instructure/ui-portal": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-focusable": "^6.0.0", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-motion": "^6.0.0", + "@instructure/ui-portal": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "keycode": "^2", "no-scroll": "^2.1.0", diff --git a/packages/ui-pages/CHANGELOG.md b/packages/ui-pages/CHANGELOG.md index fb45236fff..64839ef4ae 100644 --- a/packages/ui-pages/CHANGELOG.md +++ b/packages/ui-pages/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-pages diff --git a/packages/ui-pages/package.json b/packages/ui-pages/package.json index 99bd55a492..b86fda4ff5 100644 --- a/packages/ui-pages/package.json +++ b/packages/ui-pages/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-pages", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,22 +20,22 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-pagination/CHANGELOG.md b/packages/ui-pagination/CHANGELOG.md index f0bd874fc9..1650a9a01e 100644 --- a/packages/ui-pagination/CHANGELOG.md +++ b/packages/ui-pagination/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-pagination diff --git a/packages/ui-pagination/package.json b/packages/ui-pagination/package.json index 8163a4a54e..5033680ae3 100644 --- a/packages/ui-pagination/package.json +++ b/packages/ui-pagination/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-pagination", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,24 +20,24 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-overlays": "^5.52.3", - "@instructure/ui-portal": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-overlays": "^6.0.0", + "@instructure/ui-portal": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-polyfill-loader/CHANGELOG.md b/packages/ui-polyfill-loader/CHANGELOG.md index 8aefde7893..0fcca47fa3 100644 --- a/packages/ui-polyfill-loader/CHANGELOG.md +++ b/packages/ui-polyfill-loader/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/ui-polyfill-loader + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-polyfill-loader diff --git a/packages/ui-polyfill-loader/package.json b/packages/ui-polyfill-loader/package.json index 8a96bd1cff..ee9fc9143f 100644 --- a/packages/ui-polyfill-loader/package.json +++ b/packages/ui-polyfill-loader/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-polyfill-loader", - "version": "5.52.3", + "version": "6.0.0", "description": "A webpack loader that generates a customized polyfill", "main": "./index.js", "scripts": { @@ -15,8 +15,8 @@ "bugs": "https://github.com/instructure/instructure-ui/issues", "license": "MIT", "dependencies": { - "@instructure/config-loader": "^5.52.3", - "@instructure/ui-babel-preset": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/ui-babel-preset": "^6.0.0", "core-js-builder": "^3.0.1", "loader-utils": "^1.2.3", "webpack": "^4" diff --git a/packages/ui-portal/CHANGELOG.md b/packages/ui-portal/CHANGELOG.md index bb1aa87fc7..2a79117bd1 100644 --- a/packages/ui-portal/CHANGELOG.md +++ b/packages/ui-portal/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-portal diff --git a/packages/ui-portal/package.json b/packages/ui-portal/package.json index e50b3e01bf..5c34b2e6d3 100644 --- a/packages/ui-portal/package.json +++ b/packages/ui-portal/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-portal", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,15 +20,15 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-i18n": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-i18n": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-postcss-config/CHANGELOG.md b/packages/ui-postcss-config/CHANGELOG.md index 08fa5f4137..348624bd8e 100644 --- a/packages/ui-postcss-config/CHANGELOG.md +++ b/packages/ui-postcss-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/ui-postcss-config + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-postcss-config diff --git a/packages/ui-postcss-config/package.json b/packages/ui-postcss-config/package.json index 0366f6865e..11a439bb6e 100644 --- a/packages/ui-postcss-config/package.json +++ b/packages/ui-postcss-config/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-postcss-config", - "version": "5.52.3", + "version": "6.0.0", "description": "A shared postcss config made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -17,8 +17,8 @@ "license": "MIT", "dependencies": { "@instructure/canvas-supported-browsers": "^1", - "@instructure/config-loader": "^5.52.3", - "@instructure/postcss-themeable-styles": "^5.52.3", + "@instructure/config-loader": "^6.0.0", + "@instructure/postcss-themeable-styles": "^6.0.0", "autoprefixer": "^9.5.1", "cssnano-preset-default": "^4", "postcss": "^7", diff --git a/packages/ui-presets/CHANGELOG.md b/packages/ui-presets/CHANGELOG.md index e93e023651..80f3ad75a2 100644 --- a/packages/ui-presets/CHANGELOG.md +++ b/packages/ui-presets/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-presets diff --git a/packages/ui-presets/package.json b/packages/ui-presets/package.json index 8747201068..2b00d0ca74 100644 --- a/packages/ui-presets/package.json +++ b/packages/ui-presets/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-presets", - "version": "5.52.3", + "version": "6.0.0", "private": true, "description": "Shared build config files for UI libraries", "author": "Instructure, Inc. Engineering and Product Design", @@ -17,17 +17,17 @@ }, "license": "MIT", "dependencies": { - "@instructure/babel-plugin-themeable-styles": "^5.52.3", + "@instructure/babel-plugin-themeable-styles": "^6.0.0", "@instructure/canvas-supported-browsers": "^1", - "@instructure/config-loader": "^5.52.3", - "@instructure/generate-examples": "^5.52.3", - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-eslint-config": "^5.52.3", - "@instructure/ui-karma-config": "^5.52.3", - "@instructure/ui-postcss-config": "^5.52.3", - "@instructure/ui-scripts": "^5.52.3", - "@instructure/ui-stylelint-config": "^5.52.3", - "@instructure/ui-webpack-config": "^5.52.3" + "@instructure/config-loader": "^6.0.0", + "@instructure/generate-examples": "^6.0.0", + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-eslint-config": "^6.0.0", + "@instructure/ui-karma-config": "^6.0.0", + "@instructure/ui-postcss-config": "^6.0.0", + "@instructure/ui-scripts": "^6.0.0", + "@instructure/ui-stylelint-config": "^6.0.0", + "@instructure/ui-webpack-config": "^6.0.0" }, "peerDependencies": { "react": "^15 || ^16" diff --git a/packages/ui-prop-types/CHANGELOG.md b/packages/ui-prop-types/CHANGELOG.md index 03bc2cd1c6..16cef88c84 100644 --- a/packages/ui-prop-types/CHANGELOG.md +++ b/packages/ui-prop-types/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-prop-types diff --git a/packages/ui-prop-types/package.json b/packages/ui-prop-types/package.json index 9566db3891..b33b5ebb40 100644 --- a/packages/ui-prop-types/package.json +++ b/packages/ui-prop-types/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-prop-types", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,8 +20,8 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", diff --git a/packages/ui-react-utils/CHANGELOG.md b/packages/ui-react-utils/CHANGELOG.md index 5787969dda..1fba8b6940 100644 --- a/packages/ui-react-utils/CHANGELOG.md +++ b/packages/ui-react-utils/CHANGELOG.md @@ -1 +1,18 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + + + + See the instructure-ui mono-repo [change log](#CHANGELOG) for past changes. diff --git a/packages/ui-react-utils/package.json b/packages/ui-react-utils/package.json index 33b6c596a3..705c3415c0 100644 --- a/packages/ui-react-utils/package.json +++ b/packages/ui-react-utils/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-react-utils", - "version": "5.52.3", + "version": "6.0.0", "description": "A React utility library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,15 +20,15 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-decorator": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-decorator": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-scripts/CHANGELOG.md b/packages/ui-scripts/CHANGELOG.md index c60c13be24..988edbd8be 100644 --- a/packages/ui-scripts/CHANGELOG.md +++ b/packages/ui-scripts/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Bug Fixes + +* **instui-cli,ui-codemods,ui-scripts:** require uncached version of configs ([7130c12](https://github.com/instructure/instructure-ui/commit/7130c12)) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **instui-cli,instui-config,ui-codemods:** add upgrade command ([a805ed6](https://github.com/instructure/instructure-ui/commit/a805ed6)) +* **instui-cli,instui-config,ui-scripts:** Allow upgrade to specific version ([55c3c16](https://github.com/instructure/instructure-ui/commit/55c3c16)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-scripts diff --git a/packages/ui-scripts/package.json b/packages/ui-scripts/package.json index ce60198a48..cb5142e9c6 100644 --- a/packages/ui-scripts/package.json +++ b/packages/ui-scripts/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-scripts", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI build scripts library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -22,9 +22,9 @@ "license": "MIT", "dependencies": { "@babel/cli": "^7.4.4", - "@instructure/command-utils": "^5.52.3", - "@instructure/cz-lerna-changelog": "^5.52.3", - "@instructure/pkg-utils": "^5.52.3", + "@instructure/command-utils": "^6.0.0", + "@instructure/cz-lerna-changelog": "^6.0.0", + "@instructure/pkg-utils": "^6.0.0", "@lerna/project": "^3", "commitizen": "^3.1.1", "depcheck": "^0.7.2", @@ -48,7 +48,7 @@ "webpack-dev-server": "^3.3.1" }, "optionalDependencies": { - "@instructure/mocha-environment-jsdom": "^5.52.3", + "@instructure/mocha-environment-jsdom": "^6.0.0", "@storybook/react": "^4 || ^5", "storybook-chromatic": "^1" }, diff --git a/packages/ui-selectable/CHANGELOG.md b/packages/ui-selectable/CHANGELOG.md index 1e3d0f0a76..e48c75b34f 100644 --- a/packages/ui-selectable/CHANGELOG.md +++ b/packages/ui-selectable/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-selectable diff --git a/packages/ui-selectable/package.json b/packages/ui-selectable/package.json index 9acce87f3f..449c64ddd4 100644 --- a/packages/ui-selectable/package.json +++ b/packages/ui-selectable/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-selectable", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -21,17 +21,17 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "keycode": "^2", "prop-types": "^15", "react": "^15 || ^16" diff --git a/packages/ui-stylelint-config/CHANGELOG.md b/packages/ui-stylelint-config/CHANGELOG.md index 70df8de9e8..ef6c4388a8 100644 --- a/packages/ui-stylelint-config/CHANGELOG.md +++ b/packages/ui-stylelint-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/ui-stylelint-config + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-stylelint-config diff --git a/packages/ui-stylelint-config/package.json b/packages/ui-stylelint-config/package.json index f460f55e39..ec0f61050f 100644 --- a/packages/ui-stylelint-config/package.json +++ b/packages/ui-stylelint-config/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-stylelint-config", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI shared stylelint config made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", diff --git a/packages/ui-stylesheet/CHANGELOG.md b/packages/ui-stylesheet/CHANGELOG.md index 131e0b00e2..ce273911cf 100644 --- a/packages/ui-stylesheet/CHANGELOG.md +++ b/packages/ui-stylesheet/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-stylesheet diff --git a/packages/ui-stylesheet/package.json b/packages/ui-stylesheet/package.json index 2855301298..00bfbe27ce 100644 --- a/packages/ui-stylesheet/package.json +++ b/packages/ui-stylesheet/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-stylesheet", - "version": "5.52.3", + "version": "6.0.0", "description": "A wrapper around a Glamor StyleSheet.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,7 +20,7 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", diff --git a/packages/ui-svg-images/CHANGELOG.md b/packages/ui-svg-images/CHANGELOG.md index d939f6982b..148e91df39 100644 --- a/packages/ui-svg-images/CHANGELOG.md +++ b/packages/ui-svg-images/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-svg-images diff --git a/packages/ui-svg-images/package.json b/packages/ui-svg-images/package.json index fb7e3b0a87..923479ffb7 100644 --- a/packages/ui-svg-images/package.json +++ b/packages/ui-svg-images/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-svg-images", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,16 +20,16 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-table/CHANGELOG.md b/packages/ui-table/CHANGELOG.md index 0cd882ee97..8533395f8f 100644 --- a/packages/ui-table/CHANGELOG.md +++ b/packages/ui-table/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-table diff --git a/packages/ui-table/package.json b/packages/ui-table/package.json index 1ff7d4cc59..4a8eed04be 100644 --- a/packages/ui-table/package.json +++ b/packages/ui-table/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-table", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,21 +20,21 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-forms": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-forms": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "classnames": "^2", "prop-types": "^15", "react": "^15 || ^16" diff --git a/packages/ui-tabs/CHANGELOG.md b/packages/ui-tabs/CHANGELOG.md index 03b545302f..162a73936d 100644 --- a/packages/ui-tabs/CHANGELOG.md +++ b/packages/ui-tabs/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-tabs diff --git a/packages/ui-tabs/package.json b/packages/ui-tabs/package.json index 5251e494b2..31e698aad5 100644 --- a/packages/ui-tabs/package.json +++ b/packages/ui-tabs/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-tabs", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,22 +20,22 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-motion": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-motion": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "keycode": "^2", "prop-types": "^15" diff --git a/packages/ui-test-utils/CHANGELOG.md b/packages/ui-test-utils/CHANGELOG.md index dd0212464e..da8de9547b 100644 --- a/packages/ui-test-utils/CHANGELOG.md +++ b/packages/ui-test-utils/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-test-utils diff --git a/packages/ui-test-utils/package.json b/packages/ui-test-utils/package.json index 77c5e32d74..5a3d3a2d68 100644 --- a/packages/ui-test-utils/package.json +++ b/packages/ui-test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-test-utils", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI testing library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,13 +20,13 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", + "@instructure/ui-babel-preset": "^6.0.0", "prop-types": "^15.6.2" }, "dependencies": { - "@instructure/debounce": "^5.52.3", - "@instructure/ui-axe-check": "^5.52.3", - "@instructure/ui-stylesheet": "^5.52.3", + "@instructure/debounce": "^6.0.0", + "@instructure/ui-axe-check": "^6.0.0", + "@instructure/ui-stylesheet": "^6.0.0", "@sheerun/mutationobserver-shim": "^0.3.2", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", diff --git a/packages/ui-testable/CHANGELOG.md b/packages/ui-testable/CHANGELOG.md index 1c51025c6a..e38b4f78fa 100644 --- a/packages/ui-testable/CHANGELOG.md +++ b/packages/ui-testable/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-testable diff --git a/packages/ui-testable/package.json b/packages/ui-testable/package.json index e1e21d28db..a2472d44da 100644 --- a/packages/ui-testable/package.json +++ b/packages/ui-testable/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-testable", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component test utility made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,12 +20,12 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0", "prop-types": "^15.6.2" }, "dependencies": { - "@instructure/ui-decorator": "^5.52.3" + "@instructure/ui-decorator": "^6.0.0" }, "peerDependencies": { "react": "^15.0.0 || ^16.0.0", diff --git a/packages/ui-text-input/CHANGELOG.md b/packages/ui-text-input/CHANGELOG.md index c8ccbb0430..5707dc7e75 100644 --- a/packages/ui-text-input/CHANGELOG.md +++ b/packages/ui-text-input/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-text-input diff --git a/packages/ui-text-input/package.json b/packages/ui-text-input/package.json index c2757a3ba1..d7112cfbc8 100644 --- a/packages/ui-text-input/package.json +++ b/packages/ui-text-input/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-text-input", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,23 +20,23 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-form-field": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-form-field": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "prop-types": "^15", "react": "^15 || ^16" diff --git a/packages/ui-themeable/CHANGELOG.md b/packages/ui-themeable/CHANGELOG.md index bb60311d5a..682fe76f9b 100644 --- a/packages/ui-themeable/CHANGELOG.md +++ b/packages/ui-themeable/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-themeable diff --git a/packages/ui-themeable/package.json b/packages/ui-themeable/package.json index 5f7c6720c3..a781e89f64 100644 --- a/packages/ui-themeable/package.json +++ b/packages/ui-themeable/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-themeable", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,20 +20,20 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-color-utils": "^5.52.3", - "@instructure/ui-decorator": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-stylesheet": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-color-utils": "^6.0.0", + "@instructure/ui-decorator": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-stylesheet": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "prop-types": "^15" }, "peerDependencies": { diff --git a/packages/ui-themes/CHANGELOG.md b/packages/ui-themes/CHANGELOG.md index 3fc190726b..e1ff2365ee 100644 --- a/packages/ui-themes/CHANGELOG.md +++ b/packages/ui-themes/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **canvas-theme,canvas-high-contrast-theme:** separate canvas theme packages ([ef2e1d0](https://github.com/instructure/instructure-ui/commit/ef2e1d0)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-themes diff --git a/packages/ui-themes/package.json b/packages/ui-themes/package.json index 6a6555dea3..0b24977c1d 100644 --- a/packages/ui-themes/package.json +++ b/packages/ui-themes/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-themes", - "version": "5.52.3", + "version": "6.0.0", "description": "A library of @instructure/ui-themeable themes", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,11 +20,11 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0" }, "dependencies": { - "@instructure/canvas-theme": "^5.52.3", - "@instructure/canvas-high-contrast-theme": "^5.52.3" + "@instructure/canvas-high-contrast-theme": "^6.0.0", + "@instructure/canvas-theme": "^6.0.0" }, "publishConfig": { "access": "public" diff --git a/packages/ui-toggle-details/CHANGELOG.md b/packages/ui-toggle-details/CHANGELOG.md index b237707ab2..4bf70bcc26 100644 --- a/packages/ui-toggle-details/CHANGELOG.md +++ b/packages/ui-toggle-details/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-toggle-details diff --git a/packages/ui-toggle-details/package.json b/packages/ui-toggle-details/package.json index 7bd85f4247..eebe36109a 100644 --- a/packages/ui-toggle-details/package.json +++ b/packages/ui-toggle-details/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-toggle-details", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,25 +20,25 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-a11y": "^5.52.3", - "@instructure/ui-buttons": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-layout": "^5.52.3", - "@instructure/ui-menu": "^5.52.3", - "@instructure/ui-motion": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", - "@instructure/uid": "^5.52.3", + "@instructure/ui-a11y": "^6.0.0", + "@instructure/ui-buttons": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-layout": "^6.0.0", + "@instructure/ui-menu": "^6.0.0", + "@instructure/ui-motion": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", + "@instructure/uid": "^6.0.0", "classnames": "^2", "prop-types": "^15" }, diff --git a/packages/ui-tree-browser/CHANGELOG.md b/packages/ui-tree-browser/CHANGELOG.md index da45a8bcf7..82611312a8 100644 --- a/packages/ui-tree-browser/CHANGELOG.md +++ b/packages/ui-tree-browser/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### Performance Improvements + +* **ui-icons,ui-icons-build:** remove default exports for React icons ([95195ee](https://github.com/instructure/instructure-ui/commit/95195ee)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-tree-browser diff --git a/packages/ui-tree-browser/package.json b/packages/ui-tree-browser/package.json index 9160f97ca6..165925b604 100644 --- a/packages/ui-tree-browser/package.json +++ b/packages/ui-tree-browser/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-tree-browser", - "version": "5.52.3", + "version": "6.0.0", "description": "A UI component library made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,18 +20,18 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/ui-elements": "^5.52.3", - "@instructure/ui-icons": "^5.52.3", - "@instructure/ui-prop-types": "^5.52.3", - "@instructure/ui-react-utils": "^5.52.3", - "@instructure/ui-testable": "^5.52.3", - "@instructure/ui-themeable": "^5.52.3", - "@instructure/ui-utils": "^5.52.3", + "@instructure/ui-elements": "^6.0.0", + "@instructure/ui-icons": "^6.0.0", + "@instructure/ui-prop-types": "^6.0.0", + "@instructure/ui-react-utils": "^6.0.0", + "@instructure/ui-testable": "^6.0.0", + "@instructure/ui-themeable": "^6.0.0", + "@instructure/ui-utils": "^6.0.0", "classnames": "^2", "keycode": "^2", "prop-types": "^15" diff --git a/packages/ui-utils/CHANGELOG.md b/packages/ui-utils/CHANGELOG.md index 07a4f28c39..e3b7bc44ea 100644 --- a/packages/ui-utils/CHANGELOG.md +++ b/packages/ui-utils/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Bug Fixes + +* **ui-utils:** ensure 'getActiveElement' is using the instui 'contains' ([26f7d98](https://github.com/instructure/instructure-ui/commit/26f7d98)) + + +### Features + +* remove deprecated packages/props ([1d8813c](https://github.com/instructure/instructure-ui/commit/1d8813c)) +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) +* **ui-dom-utils,ui-react-utils,ui-color-utils:** new utils packages ([03e8ee2](https://github.com/instructure/instructure-ui/commit/03e8ee2)) + + +### BREAKING CHANGES + +* - ui-core package has been removed + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-utils diff --git a/packages/ui-utils/package.json b/packages/ui-utils/package.json index 99d9ce9c84..c4c48573b9 100644 --- a/packages/ui-utils/package.json +++ b/packages/ui-utils/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-utils", - "version": "5.52.3", + "version": "6.0.0", "description": "A collection of utilities for UI components", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -20,13 +20,13 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7", - "@instructure/console": "^5.52.3", - "@instructure/ui-dom-utils": "^5.52.3", + "@instructure/console": "^6.0.0", + "@instructure/ui-dom-utils": "^6.0.0", "bowser": "^1.9.4", "fast-deep-equal": "^2", "keycode": "^2" diff --git a/packages/ui-webpack-config/CHANGELOG.md b/packages/ui-webpack-config/CHANGELOG.md index 47d60f8c6b..fe7d94374c 100644 --- a/packages/ui-webpack-config/CHANGELOG.md +++ b/packages/ui-webpack-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + +**Note:** Version bump only for package @instructure/ui-webpack-config + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/ui-webpack-config diff --git a/packages/ui-webpack-config/package.json b/packages/ui-webpack-config/package.json index 062c4ca29b..0254d00fe7 100644 --- a/packages/ui-webpack-config/package.json +++ b/packages/ui-webpack-config/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/ui-webpack-config", - "version": "5.52.3", + "version": "6.0.0", "description": "A shared webpack config made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./config/index.js", @@ -16,10 +16,10 @@ }, "license": "MIT", "dependencies": { - "@instructure/babel-plugin-themeable-styles": "^5.52.3", - "@instructure/config-loader": "^5.52.3", - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-component-examples": "^5.52.3", + "@instructure/babel-plugin-themeable-styles": "^6.0.0", + "@instructure/config-loader": "^6.0.0", + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-component-examples": "^6.0.0", "css-loader": "^2.1.1", "eslint-loader": "^2.1.2", "file-loader": "^3.0.1", diff --git a/packages/uid/CHANGELOG.md b/packages/uid/CHANGELOG.md index 025498ad33..6b572ee163 100644 --- a/packages/uid/CHANGELOG.md +++ b/packages/uid/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/instructure/instructure-ui/compare/v5.52.3...v6.0.0) (2019-05-03) + + +### Features + +* **ui-babel-preset:** transform member imports to full paths ([d02cc45](https://github.com/instructure/instructure-ui/commit/d02cc45)) + + + + + ## [5.52.3](https://github.com/instructure/instructure-ui/compare/v5.52.2...v5.52.3) (2019-04-25) **Note:** Version bump only for package @instructure/uid diff --git a/packages/uid/package.json b/packages/uid/package.json index 7a56b7edc5..be954f2566 100644 --- a/packages/uid/package.json +++ b/packages/uid/package.json @@ -1,6 +1,6 @@ { "name": "@instructure/uid", - "version": "5.52.3", + "version": "6.0.0", "description": "A unique (CSS-safe) id generator made by Instructure Inc.", "author": "Instructure, Inc. Engineering and Product Design", "main": "./lib/index.js", @@ -21,8 +21,8 @@ }, "license": "MIT", "devDependencies": { - "@instructure/ui-babel-preset": "^5.52.3", - "@instructure/ui-test-utils": "^5.52.3" + "@instructure/ui-babel-preset": "^6.0.0", + "@instructure/ui-test-utils": "^6.0.0" }, "dependencies": { "@babel/runtime": "^7"