Skip to content

Commit d5452c0

Browse files
authored
Merge pull request #1330 from jbampton/fix-bare-urls
Fix bare URLs.
2 parents 7672f73 + 40f39bd commit d5452c0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ clientside JavaScript callbacks via inline strings.
246246
- Change `hot_reload_interval` from msec to seconds, for consistency with `hot_reload_watch_interval`
247247
- When called from `enable_dev_tools`, `debug=True` by default. It's still `False` by default from `run_server`.
248248

249-
-[#744](https://github.com/plotly/dash/pull/744) Introducing Dash Testing (`dash.testing`) - read the full tutorial at https://dash.plotly.com/testing.
249+
-[#744](https://github.com/plotly/dash/pull/744) Introducing Dash Testing (`dash.testing`) - read the full tutorial at <https://dash.plotly.com/testing>.
250250

251251
- [#753](https://github.com/plotly/dash/pull/753) `Component` no longer inherits `MutableMapping`, so `values`, `keys`, and more are no longer methods. Fixes an issue reported in [dcc#440](https://github.com/plotly/dash-core-components/issues/440) where components with certain prop names defined but not provided would cause a failure to render. During component generation we now disallow all props with leading underscores or matching a few remaining reserved words: `UNDEFINED`, `REQUIRED`, `to_plotly_json`, `available_properties`, and `available_wildcard_properties`.
252252

@@ -572,7 +572,7 @@ app = dash.Dash(...)
572572

573573
## 0.20.0 - 2018-01-19
574574
### Added
575-
- [#190](https://github.com/plotly/dash/pull/190) `exceptions.PreventUpdate` can be raised inside a callback to prevent the callback from updating the app. See https://community.plotly.com/t/improving-handling-of-aborted-callbacks/7536/2.
575+
- [#190](https://github.com/plotly/dash/pull/190) `exceptions.PreventUpdate` can be raised inside a callback to prevent the callback from updating the app. See <https://community.plotly.com/t/improving-handling-of-aborted-callbacks/7536/2>.
576576

577577
### Removed
578578
- Removes logging from redux middleware from production build based on process.env.NODE_ENV.
@@ -596,9 +596,9 @@ app = dash.Dash(...)
596596

597597
### Fixed
598598
- Fix a bug from 0.18.2 that removed the ability for dash to serve the app on any route besides `/`.
599-
- Fix a bug from 0.18.0 with the new config variables when used in a multi-app setting, causing config to be shared across apps. Originally reported in https://community.plotly.com/t/flask-endpoint-error/5691/7
599+
- Fix a bug from 0.18.0 with the new config variables when used in a multi-app setting, causing config to be shared across apps. Originally reported in <https://community.plotly.com/t/flask-endpoint-error/5691/7>
600600
- Rename config setting `supress_callback_exceptions` to `suppress_callback_exceptions`. The original spelling is kept for backward compatibility.
601-
- 🐞 (renderer) Fix a bug where Dash would fire updates for each parent of a grandchild node that shared the same grandparent. Originally reported in https://community.plotly.com/t/specifying-dependency-tree-traversal/5080/5
601+
- 🐞 (renderer) Fix a bug where Dash would fire updates for each parent of a grandchild node that shared the same grandparent. Originally reported in <https://community.plotly.com/t/specifying-dependency-tree-traversal/5080/5>
602602
- 🐞 (renderer) Fix a bug where the document title that displays "Updating..." wouldn't change if the callback raised an Exception. Now it will be removed on any response, even a failure.
603603

604604
## 0.18.2 - 2017-09-07
@@ -612,7 +612,7 @@ app = dash.Dash(...)
612612
## 0.18.0 - 2017-09-07
613613
### Changed
614614
- 🔒 Remove the `/static/` folder and endpoint that is implicitly initialized by flask. This is too implicit for my comfort level: I worry that users will not be aware that their files in their `static` folder are accessible
615-
- ⚡️ Remove all API calls to the Plotly API (https://api.plotly.com/), the authentication endpoints and decorators, and the associated `filename`, `sharing` and `app_url` arguments. This was never documented or officially supported. Authentication has been moved to the [`dash-auth` package](https://github.com/plotly/dash-auth).
615+
- ⚡️ Remove all API calls to the Plotly API (<https://api.plotly.com/>), the authentication endpoints and decorators, and the associated `filename`, `sharing` and `app_url` arguments. This was never documented or officially supported. Authentication has been moved to the [`dash-auth` package](https://github.com/plotly/dash-auth).
616616
- [#107](https://github.com/plotly/dash/pull/107) ✏️ Sort prop names in exception messages.
617617

618618
### Added

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ For pull request with notable file changes or a big feature development, we high
7070

7171
Git command veterans might argue that a simple terminal and a cherry switch keyboard is the most elegant solution. But in general, a desktop tool makes the task easier.
7272

73-
1. https://www.gitkraken.com/git-client
74-
2. https://desktop.github.com/
73+
1. <https://www.gitkraken.com/git-client>
74+
2. <https://desktop.github.com/>
7575

7676
### Emoji
7777

0 commit comments

Comments
 (0)