From f5bf0753f6b1dcc46e555d8809c14986ae548b15 Mon Sep 17 00:00:00 2001 From: Franco Correa Date: Tue, 18 Dec 2018 17:54:17 -0300 Subject: [PATCH] Release 0.11.0 (#1305) - [x] Make sure `stable` branch does not exist (on both github and local, delete it if it does) - [x] Pull master - [x] Create new local branch `stable` - [x] Update changelog - [x] Update root package version (only [root package.json](https://github.com/auth0/cosmos/blob/master/package.json#L3)) - [x] Commit and push (**pushing to stable branch with new version will trigger jenkins release task**) - [x] Wait for [jenkins task](https://tools-jenkins-us-west-2.forge.auth0.net/blue/organizations/jenkins/cosmos/activity/) to be completed (confirm it published the version you wanted under `npm run scripts deploy`) - [x] Run `yarn scripts deploy.catchup` on local `stable` branch and push - [ ] Merge PR to master - [ ] Go to [zeit dashboard](https://zeit.co/dashboard/deployments) and create an alias for the latest deployment) (example: `now alias cosmos-rzbpuowrox.now.sh auth0-cosmos-0-8-0.now.sh --team=auth0-design`) - [ ] Create a [new release on github](https://github.com/auth0/cosmos/releases) - [ ] Delete stable branch on github - [ ] Announce it on the slack channel: [design-system](https://auth0.slack.com/messages/C5ZK0DD8X/) --- changelog.md | 29 +++++++++++++++++++++++ core/babel-preset/package.json | 2 +- core/components/package.json | 4 ++-- core/tokens/package.json | 2 +- examples/manage/package.json | 4 ++-- examples/perf-tests/package.json | 4 ++-- examples/webpack-hello-world/package.json | 4 ++-- internal/cosmos-scripts/package.json | 2 +- internal/docs/package.json | 4 ++-- package.json | 2 +- 10 files changed, 43 insertions(+), 14 deletions(-) diff --git a/changelog.md b/changelog.md index 072695c02..26a081545 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). Currently, this project is using an `0.x` versioning system to indicate its preview status. As such, it does _not_ currently adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). Once we reach production readiness, we will follow semver beginning with our `1.0` release. In the meantime, please read this changelog for information on breaking changes! +## 0.11.0 [December 18, 2018] + +### Added +Sortable Resource List [#1098] +Integration tests for Tabs [#1278] + +### Fixed +Implement attrs to styled API [#1263] +Make Tabs accessible [#1264] +Examples: react + react-dom should have same version [#1284] +Tooltip: Fix wrapping for long text [#1262] +Fix dialog [#1260] +Fix react router dom dependency [#1300] +Fix Resource List columns [#1192] +Fix docs links [#1280] +Fix version switcher [#1256] +Fix button action onClick handler not including the item [#1276] + +Internal: Clean up code for masked TextInput [#1283] +Internal: Add module to all stories [#1288] + +### Changed +Internal: Massive find and replace for styled [#1249] +Remove line height declaration on tables [#1286] +Replace extend with styled [#1279] +Remove pointer events from icon [#1298] +Changes the Page Header from grid to flex [#1285] + + ## 0.10.1 [December 11, 2018] ### Fixed diff --git a/core/babel-preset/package.json b/core/babel-preset/package.json index 318c210b8..33a1ef0ec 100644 --- a/core/babel-preset/package.json +++ b/core/babel-preset/package.json @@ -1,7 +1,7 @@ { "name": "@auth0/babel-preset-cosmos", "description": "babel preset to use cosmos", - "version": "0.10.1", + "version": "0.11.0", "repository": "auth0/cosmos", "main": "index.js", "author": "siddharthkp", diff --git a/core/components/package.json b/core/components/package.json index de099b546..29235fd88 100644 --- a/core/components/package.json +++ b/core/components/package.json @@ -1,7 +1,7 @@ { "name": "@auth0/cosmos", "description": "Component library for Auth0 Design System", - "version": "0.10.1", + "version": "0.11.0", "repository": "auth0/cosmos", "main": "index.js", "scripts": {}, @@ -9,7 +9,7 @@ "author": "auth0", "license": "MIT", "dependencies": { - "@auth0/cosmos-tokens": "0.10.1", + "@auth0/cosmos-tokens": "0.11.0", "md5": "^2.2.1", "prop-types": "15.6.1", "react-sortable-hoc": "^0.8.3", diff --git a/core/tokens/package.json b/core/tokens/package.json index 976a083f2..9da3465d9 100644 --- a/core/tokens/package.json +++ b/core/tokens/package.json @@ -1,7 +1,7 @@ { "name": "@auth0/cosmos-tokens", "description": "Tokens for Auth0 Design System", - "version": "0.10.1", + "version": "0.11.0", "repository": "auth0/cosmos", "main": "index.js", "scripts": {}, diff --git a/examples/manage/package.json b/examples/manage/package.json index 4a5c6e09f..cdd92195a 100644 --- a/examples/manage/package.json +++ b/examples/manage/package.json @@ -9,13 +9,13 @@ "start": "cosmos-scripts start" }, "dependencies": { - "@auth0/cosmos": "0.10.1", + "@auth0/cosmos": "0.11.0", "@auth0/cosmos-fonts": "0.0.1", "react": "16.6.3", "react-dom": "16.6.3", "react-router-dom": "4.2.2" }, "devDependencies": { - "@auth0/cosmos-scripts": "0.10.1" + "@auth0/cosmos-scripts": "0.11.0" } } diff --git a/examples/perf-tests/package.json b/examples/perf-tests/package.json index 48edfea1d..a2d324c49 100644 --- a/examples/perf-tests/package.json +++ b/examples/perf-tests/package.json @@ -10,11 +10,11 @@ "start": "cosmos-scripts start" }, "dependencies": { - "@auth0/cosmos": "0.10.1", + "@auth0/cosmos": "0.11.0", "react": "16.3.0", "react-dom": "16.3.0" }, "devDependencies": { - "@auth0/cosmos-scripts": "0.10.1" + "@auth0/cosmos-scripts": "0.11.0" } } diff --git a/examples/webpack-hello-world/package.json b/examples/webpack-hello-world/package.json index d71678d35..a3b9b9aa3 100644 --- a/examples/webpack-hello-world/package.json +++ b/examples/webpack-hello-world/package.json @@ -10,12 +10,12 @@ "start": "cosmos-scripts start" }, "dependencies": { - "@auth0/cosmos": "0.10.1", + "@auth0/cosmos": "0.11.0", "@auth0/cosmos-fonts": "0.0.1", "react": "16.3.0", "react-dom": "16.3.0" }, "devDependencies": { - "@auth0/cosmos-scripts": "0.10.1" + "@auth0/cosmos-scripts": "0.11.0" } } diff --git a/internal/cosmos-scripts/package.json b/internal/cosmos-scripts/package.json index 138eb3987..6ef5b02fa 100644 --- a/internal/cosmos-scripts/package.json +++ b/internal/cosmos-scripts/package.json @@ -1,6 +1,6 @@ { "name": "@auth0/cosmos-scripts", - "version": "0.10.1", + "version": "0.11.0", "description": "", "bin": { "cosmos-scripts": "cli.js" diff --git a/internal/docs/package.json b/internal/docs/package.json index a7c0bae58..5a5bb8a71 100644 --- a/internal/docs/package.json +++ b/internal/docs/package.json @@ -9,7 +9,7 @@ "start": "cosmos-scripts start" }, "dependencies": { - "@auth0/cosmos": "0.10.1", + "@auth0/cosmos": "0.11.0", "@auth0/cosmos-fonts": "0.0.2", "fuzzysearch": "1.0.3", "js-beautify": "1.7.5", @@ -26,6 +26,6 @@ "yamljs": "0.3.0" }, "devDependencies": { - "@auth0/cosmos-scripts": "0.10.1" + "@auth0/cosmos-scripts": "0.11.0" } } diff --git a/package.json b/package.json index ce06ca5ba..e03d2d7ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cosmos", - "version": "0.10.1", + "version": "0.11.0", "engine": "^7.0.0", "private": true, "workspaces": [