Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Update all dependencies #274

Merged
merged 6 commits into from
Dec 4, 2018
Merged

Update all dependencies #274

merged 6 commits into from
Dec 4, 2018

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 3, 2018

This PR contains the following updates:

Package Type Update Change References
@​storybook/cli devDependencies patch ^4.0.8 -> ^4.0.11 source
@​storybook/react devDependencies patch ^4.0.8 -> ^4.0.11 source
@​types/react devDependencies patch ^16.7.7 -> ^16.7.11 source
@​types/react-select devDependencies minor ^1.2.1 -> ^1.3.4 source
less devDependencies minor ^3.8.1 -> ^3.9.0 homepage, source
npm-run-all devDependencies patch ^4.1.3 -> ^4.1.5 source
ramda devDependencies patch ^0.26.0 -> ^0.26.1 homepage, source
react-select devDependencies minor ^1.2.1 -> ^1.3.0 source
ts-loader devDependencies patch ^5.3.0 -> ^5.3.1 source
typescript devDependencies minor ^3.1.6 -> ^3.2.1 homepage, source
webpack devDependencies patch ^4.26.0 -> ^4.26.1 source

Release Notes

storybooks/storybook

v4.0.11

Compare Source

Bug Fixes
  • Restore index.html in cra-kitchen-sink (#​4856)
  • Add try, catch for IE11 as it breaks script execution (#​4870)

v4.0.10

Compare Source

Fixes 4.0.9

Bug Fixes
  • Core: Use correct cache directory path (#​4792)
  • Addon-Info: fix docgen description display (#​4685)
  • Addon-storyshots-puppeteer: fix peerDependencies (#​4828)

v4.0.9

Compare Source

Broken release (see #​4897)

less/less.js

v3.9.0

Compare Source

2018-11-28

mysticatea/npm-run-all

v4.1.5

Compare Source

🐛 Bug fixes

  • 52eaf86...1b41ac5 switched ps-tree package to pidtree package for security reason.

v4.1.4

Compare Source

ramda/ramda

v0.26.1

Compare Source

JedWatson/react-select

v1.3.0

Compare Source

TypeStrong/ts-loader

v5.3.1

Compare Source

Microsoft/TypeScript

v3.2.1

Compare Source

For release notes, check out the release announcement

For new features, check out the What's new in TypeScript 3.2.

For breaking changes, check out the Breaking changes in TypeScript 3.2 page.

For the complete list of fixed issues, check out the fixed issues query for Typescript 3.2.

Download:

Special thanks to all our contributors in this release:

  • Alessandro Vergani
  • Alexander
  • Alexander Tarasyuk
  • Anders Hejlsberg
  • Andrew Casey
  • Andy Hanson
  • Aziz Khambati
  • Basarat Ali Syed
  • Benjamin Lichtman
  • Brandon Banks
  • Caleb Sander
  • @​csigs
  • Daiki Nishikawa
  • Daniel Rosenwasser
  • David Sherret
  • Dhruv Rajvanshi
  • Eddie Jaoude
  • @​EECOLOR
  • @​falsandtru
  • Igor Oleinikov
  • iliashkolyar
  • IllusionMH
  • Jack Williams
  • Jordi Oliveras Rovira
  • Kagami Sascha Rosylight
  • Klaus Meinhardt
  • Leon Aves
  • Limon Monte
  • Marcus Noble
  • Markus Wolf
  • Martin Probst
  • Matt McCutchen
  • Michael Tang
  • Mine Starks
  • Nathan Shively-Sanders
  • Noel Yoo
  • Patrick McCartney
  • Philip Pesca
  • Prateek Goel
  • Prateek Nayak
  • Roger Spratley
  • Roger Spratley
  • Ron Buckton
  • Ryan Cavanaugh
  • Ryan Clarke
  • Sam Drugan
  • Sergio Baidon
  • Sheetal Nandi
  • TypeScript Bot
  • Valera Rozuvan
  • Wenlu Wang
  • Wesley Wigham
webpack/webpack

v4.26.1

Compare Source

Bugfixes

  • fix a bug where splitChunks.maxSize causes a hanging build
  • fix a bug where splitChunks.maxSize crashes when minSize > maxSize
  • fix a edgecase where splitChunks.maxSize can cause chunks bigger than minSize
  • remove unnecessary code from global builtin

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


This PR has been generated by Renovate Bot. View repository job log here.

@chriddyp chriddyp temporarily deployed to dash-table-review-pr-274 December 3, 2018 15:38 Inactive
@chriddyp chriddyp temporarily deployed to dash-table-review-pr-274 December 3, 2018 16:21 Inactive
@renovate
Copy link
Contributor Author

renovate bot commented Dec 3, 2018

PR has been edited

👷 This PR has received other commits, so Renovate will stop updating it to avoid conflicts or other problems. If you wish to abandon your changes and have Renovate start over then you can add the label rebase to this PR and Renovate will reset/recreate it.

@chriddyp chriddyp temporarily deployed to dash-table-review-pr-274 December 3, 2018 16:44 Inactive
@chriddyp chriddyp temporarily deployed to dash-table-review-pr-274 December 3, 2018 16:51 Inactive
@chriddyp chriddyp temporarily deployed to dash-table-review-pr-274 December 3, 2018 16:57 Inactive
@@ -7,7 +7,7 @@ export default (
labels: any[][],
mergeHeaders: boolean
): number[][] => {
return R.map(rowLabels => {
return R.map<any[], number[]>(rowLabels => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TS 3.2 improves / tightens some of the typing checks

"target": "esnext",
"traceResolution": false
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Base config used by all

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Had to add / modify some configs because of the new TS 3.2 -- don't want to do it in 3 places each time

@@ -72,7 +72,7 @@ const getter = (
dropdown_properties[column.id][realIndex] :
null
)
) || column || {}
) || column || { options: undefined }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TS 3.2 type checking

Copy link
Contributor

@valentijnnieman valentijnnieman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good 👍 renovate seems pretty useful here, when the changes are not braking / version upgrades aren't major!

@Marc-Andre-Rivet Marc-Andre-Rivet merged commit beef020 into master Dec 4, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants