Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Semantic-Org/Semantic-UI-React
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.81.0
Choose a base ref
...
head repository: Semantic-Org/Semantic-UI-React
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.81.1
Choose a head ref
  • 5 commits
  • 5 files changed
  • 2 contributors

Commits on Jun 3, 2018

  1. Copy the full SHA
    65a11dd View commit details
  2. Copy the full SHA
    19bec81 View commit details
  3. Copy the full SHA
    666facd View commit details

Commits on Jun 4, 2018

  1. Copy the full SHA
    9360d31 View commit details
  2. 0.81.1

    levithomason committed Jun 4, 2018
    Copy the full SHA
    b44681e View commit details
Showing with 25 additions and 4 deletions.
  1. +19 −0 CHANGELOG.md
  2. +1 −1 docs/src/routes.js
  3. +1 −1 gulp/tasks/dist.js
  4. +3 −1 gulp/tasks/docs.js
  5. +1 −1 package.json
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [v0.81.0](https://github.com/Semantic-Org/Semantic-UI-React/tree/v0.81.0) (2018-06-03)
[Full Changelog](https://github.com/Semantic-Org/Semantic-UI-React/compare/v0.80.2...v0.81.0)

**Merged pull requests:**

- fix\(ComponentExample\): remove filter effect [\#2866](https://github.com/Semantic-Org/Semantic-UI-React/pull/2866) ([levithomason](https://github.com/levithomason))
- refactor\(docs\): normalize dir naming and casing [\#2863](https://github.com/Semantic-Org/Semantic-UI-React/pull/2863) ([levithomason](https://github.com/levithomason))
- fix\(getComponentInfo\): subcomponents from js files [\#2862](https://github.com/Semantic-Org/Semantic-UI-React/pull/2862) ([levithomason](https://github.com/levithomason))
- test\(Search\): fix tests on second run [\#2859](https://github.com/Semantic-Org/Semantic-UI-React/pull/2859) ([mihai-dinculescu](https://github.com/mihai-dinculescu))
- chore\(package\): add types property [\#2857](https://github.com/Semantic-Org/Semantic-UI-React/pull/2857) ([traverse](https://github.com/traverse))
- fix\(Sticky\): prevent npe error after unmount of component [\#2854](https://github.com/Semantic-Org/Semantic-UI-React/pull/2854) ([fracmak](https://github.com/fracmak))
- chore\(package\): remove node-sass [\#2850](https://github.com/Semantic-Org/Semantic-UI-React/pull/2850) ([layershifter](https://github.com/layershifter))
- refactor\(\_meta\): replace with build time JSON [\#2840](https://github.com/Semantic-Org/Semantic-UI-React/pull/2840) ([levithomason](https://github.com/levithomason))
- refactor\(eventStack\): make eventStack immutable [\#2837](https://github.com/Semantic-Org/Semantic-UI-React/pull/2837) ([layershifter](https://github.com/layershifter))
- feat\(Dropdown\): open to side with most space left \#720 [\#2817](https://github.com/Semantic-Org/Semantic-UI-React/pull/2817) ([mihai-dinculescu](https://github.com/mihai-dinculescu))
- chore\(package\): update enzyme, puppeteer, sinon [\#2794](https://github.com/Semantic-Org/Semantic-UI-React/pull/2794) ([layershifter](https://github.com/layershifter))
- BREAKING\(package\): update SUI to 2.3 [\#2657](https://github.com/Semantic-Org/Semantic-UI-React/pull/2657) ([layershifter](https://github.com/layershifter))
- chore\(tests\): fail on console activity [\#1542](https://github.com/Semantic-Org/Semantic-UI-React/pull/1542) ([levithomason](https://github.com/levithomason))

## [v0.80.2](https://github.com/Semantic-Org/Semantic-UI-React/tree/v0.80.2) (2018-05-25)
[Full Changelog](https://github.com/Semantic-Org/Semantic-UI-React/compare/v0.80.1...v0.80.2)

2 changes: 1 addition & 1 deletion docs/src/routes.js
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ import LayoutsLayout from './components/LayoutsLayout'
import LayoutsRoot from './components/LayoutsRoot'

import Introduction from './views/Introduction'
import Layouts from './views/layouts'
import Layouts from './views/Layouts'
import PageNotFound from './views/PageNotFound'
import Theming from './views/Theming'
import Usage from './views/Usage'
2 changes: 1 addition & 1 deletion gulp/tasks/dist.js
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ const { log, PluginError } = g.util
// ----------------------------------------

task('clean:dist', (cb) => {
rimraf(config.paths.dist(), cb)
rimraf(`${config.paths.dist()}/*`, cb)
})

// ----------------------------------------
4 changes: 3 additions & 1 deletion gulp/tasks/docs.js
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ import historyApiFallback from 'connect-history-api-fallback'
import express from 'express'
import { task, src, dest, lastRun, parallel, series, watch } from 'gulp'
import loadPlugins from 'gulp-load-plugins'
import path from 'path'
import rimraf from 'rimraf'
import webpack from 'webpack'
import WebpackDevMiddleware from 'webpack-dev-middleware'
@@ -165,7 +166,8 @@ task('deploy:changelog', (cb) => {
})

task('deploy:docs', (cb) => {
sh(`gh-pages -d ${paths.docsDist()} -m "deploy docs [ci skip]"`, cb)
const relativePath = path.relative(process.cwd(), paths.docsDist())
sh(`gh-pages -d ${relativePath} -m "deploy docs [ci skip]"`, cb)
})

// ----------------------------------------
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui-react",
"version": "0.81.0",
"version": "0.81.1",
"description": "The official Semantic-UI-React integration.",
"jsnext:main": "dist/es/index.js",
"main": "dist/commonjs/index.js",