This repository has been archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
chore(deps): update dependency react-styleguidist to v9.2.0 #617
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/react-styleguidist-9.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This pull request is being automatically deployed with ZEIT Now (learn more). 🔍 Inspect: https://zeit.co/nordnet/nordnet-ui-kit/qvyv4n1ed |
3f984ff
to
1e03743
Compare
1e03743
to
d296c68
Compare
d296c68
to
cc68acd
Compare
Codecov Report
@@ Coverage Diff @@
## master #617 +/- ##
==========================================
+ Coverage 84.07% 84.12% +0.05%
==========================================
Files 213 212 -1
Lines 1557 1556 -1
Branches 295 294 -1
==========================================
Hits 1309 1309
+ Misses 213 212 -1
Partials 35 35 |
cc68acd
to
da1d9ef
Compare
da1d9ef
to
462fd4c
Compare
462fd4c
to
28312d3
Compare
28312d3
to
d073a64
Compare
d073a64
to
1fdbee4
Compare
1fdbee4
to
deee343
Compare
deee343
to
dac3a4c
Compare
05934a2
to
1688593
Compare
Codecov Report
@@ Coverage Diff @@
## master #617 +/- ##
=======================================
Coverage 84.03% 84.03%
=======================================
Files 213 213
Lines 1560 1560
Branches 296 296
=======================================
Hits 1311 1311
Misses 214 214
Partials 35 35 |
1688593
to
836fa07
Compare
836fa07
to
6b00de5
Compare
6b00de5
to
945513c
Compare
945513c
to
4bdcda8
Compare
4bdcda8
to
0f539cd
Compare
0f539cd
to
a849c30
Compare
a849c30
to
f71b21d
Compare
f71b21d
to
899e43c
Compare
899e43c
to
cf40e01
Compare
cf40e01
to
f14af8c
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.0.5
->9.2.0
Release Notes
styleguidist/react-styleguidist
v9.2.0
Compare Source
New features
minimize
option to disable JavaScript compression (#1442, #1443 by @kopax)v9.1.16
Compare Source
v9.1.15
Compare Source
v9.1.14
Compare Source
Fixed: Single sections can contain only sections (#1414)
If a section contains only one subsection, Styleguidist will try to optimize. It will make the section disappear and show its components instead. If this section only contain sections, no components, it should optimize to sections and not to components.
v9.1.13
Compare Source
Fixed: Highlighting currently selected page on sidebar broken with sections (#1405)
Fixes #1375
v9.1.12
Compare Source
Fixed: Disable HTML minification (#1402)
Fixes #1189
v9.1.11
Compare Source
Fixed: Fix incorrect component name capitalization (#1388)
Fixes #1381
It is happening in a case when react-docgen (any propsParser) is failed and we are trying to guess displayName based on file path. We capitalized every case in the string instead of just words separated by
-
started with small letter. So, by mistakeButtonTS
in file name becomesButtonTs
display name for component when we expectButtonTS
Use [startCase]:(https://lodash.com/docs/4.17.11#startCase) and then remove spaces which covers most our cases likemy-buttonTS => MyButtonTSv9.1.10
Compare Source
Fixed: Encode sublinks in URLs to fix broken routes (#1389)
Follow up of #1332. This appears to have fixed the top level section link, but any sub-links within that section are still unencoded and result in "Page not found".
v9.1.9
Compare Source
Fixed: Add .wasm and .mjs to default extensions in webpack config (#1386)
Fixes #1385
v9.1.8
Compare Source
Fixed: Replace 'walkes' with 'estree-walker' (#1349)
Because walkes has LGPL-3 license.
Fixes #1210
v9.1.7
Compare Source
Fixed: Encode section pages URLs if a section name has special symbols (#1384)
Closes #1332
v9.1.6
Compare Source
Fixed: Fix named export for example components (#1380)
Closes #1281
v9.1.5
Compare Source
Fixed: to make async/await work by default (#1379)
Add transforms: { asyncAwait: false } for default compilerConfig to make async/await work by default. Bublé doesn't have transform for async/await so they raise an error if asyncAwait transformation in configuration is not false (true by default) since bublé v0.9.7.
Closes #1371
v9.1.4
Compare Source
Fixed: Add .ts and .tsx to default extensions in webpack config
#750
v9.1.3
Compare Source
v9.1.2
Compare Source
Fixed: A build should't break when assetsDir is an array (#1367)
copy-webpack-plugin is not allowed
from
to be as an array. If we still want to usefrom
and support array format for assetsDir, then we should pass array of objects{from: ...}
to the plugin.Closes #1320
v9.1.1
Compare Source
Fixed: Section anchors shouldn't conflict with component anchors (#1364)
Prefix section anchors with
section-
.Closes #1342
v9.1.0
Compare Source
New features
Support React Hooks in examples
You can now use hooks in the examples, like the
useState
hook:(#1353 by @eragon512)
Bug fixes
getExampleFilename
should use default example if file does not exist (#1362) by @mendrew, closes #1338v9.0.9
Compare Source
Fixed: Correctly render sections with href in sidebar (#1346)
Closes #1141
v9.0.8
Compare Source
Fixed: Allow code base color to be customized with theme config (#1335)
theme.color.codeBase
propertyv9.0.7
Compare Source
v9.0.6
Compare Source
Fixed: Add output.publicPath option to webpack config to make Create React App happy
Fix #1247
Configuration
📅 Schedule: "before 3am on Monday" (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.