Skip to content

Commit 8a44adf

Browse files
committed
4.3.0
1 parent 2e23f77 commit 8a44adf

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
Changelog
22
=========
33

4+
5+
### 4.3.0 (8/10/2018)
6+
7+
- Add option to pass a URL explicitly instead of reading from settings.
8+
([jchen-eb](https://github.com/jchen-eb))
9+
https://github.com/markfinger/python-react/pull/88
10+
11+
412
### 4.2.1 (17/6/2018)
513

614
- Fix for a missing argument bug that could occur with rendering deactivated.
715

816

9-
1017
### 4.2.0 (17/6/2018)
1118

1219
- API for returning extra items returned by render server.
@@ -21,7 +28,6 @@ Changelog
2128
https://github.com/markfinger/python-react/pull/81
2229

2330

24-
2531
### 4.1.0 (1/3/2017)
2632

2733
- `render_component` now accepts a `timeout` keyword argument which is passed to `RenderServer.render`.
@@ -40,6 +46,7 @@ Changelog
4046
rendering.
4147
- Documentation updates regarding `RenderServer` API.
4248

49+
4350
### 3.0.1 (6/4/2016)
4451

4552
- Documentation updates.
@@ -65,6 +72,7 @@ Changelog
6572
([Pringels](https://github.com/Pringels))
6673
https://github.com/markfinger/python-react/pull/55
6774

75+
6876
### 2.0.0 (22/9/2015)
6977

7078
- **Breaking change** The base renderer's __init__ no longer accepts the RENDER_URL setting as an argument.
@@ -89,6 +97,7 @@ Changelog
8997
- Fixed a potential path issue in config files
9098
- Replaced the webpack-service dependency with webpack-wrapper.
9199

100+
92101
### 0.8.0 (26/1/2015)
93102

94103
- Boosting render performance by using a dedicated render server.
@@ -97,6 +106,7 @@ Changelog
97106
render server, 'django_react.render_server.ReactRenderServer'. The legacy renderer is useable by
98107
setting DJANGO_REACT['RENDERER'] = 'django_react.renderer.ReactRenderer'.
99108

109+
100110
### 0.7.0 (2/1/2015)
101111

102112
- Changed `django_react.exceptions.ReactComponentMissingSourceAttribute` to `django_react.exceptions.ReactComponentMissingSource`
@@ -107,10 +117,12 @@ Changelog
107117
- The Python<->JS bridge used to render components now relies on a `--serialized-props-file` argument, formerly it was `--serialized-props`.
108118
- Switched the JSX loader to a fork which improves the debug information provided during error handling
109119

120+
110121
### 0.6.0 (24/12/2014)
111122

112123
- The NODE_ENV environment setting is now controlled by the `DJANGO_REACT['DEBUG']` setting. Activating it will provides some improvements to the rendering performance.
113124

125+
114126
### 0.5.0 (14/12/2014)
115127

116128
- Renamed `django_react.exceptions.PropSerialisationError` to `django_react.exceptions.PropSerializationError`.
@@ -132,6 +144,7 @@ Changelog
132144
- Added a test suite and harness.
133145
- Added basic documentation.
134146

147+
135148
### 0.4.0 (11/12/2014)
136149

137150
- Fixed a bug where errors caused during a component's prop serialization could silently fail.
@@ -144,6 +157,7 @@ Changelog
144157
- `ReactComponent.get_component_variable` is now `ReactComponent.get_library`.
145158
- Moved the Webpack configuration into the ReactComponent class.
146159

160+
147161
### 0.3.0 (3/12/2014)
148162

149163
- `django_react.exceptions.ReactComponentSourceFileNotFound` is now `django_react.exceptions.SourceFileNotFound`
@@ -154,10 +168,12 @@ Changelog
154168
- `django_react.utils.render` no longer accepts a `ReactComponent` as an argument, it now takes `path_to_source`, `serialised_props`, and `to_static_markup`.
155169
- `django_react/render.js` no longer accepts the `--path-to-component` argument, instead it takes `--path-to-source`.
156170

171+
157172
### 0.2.0 (3/12/2014)
158173

159174
- Replaced the post-install step in setup.py with django-node's dependency and package resolver.
160175

176+
161177
### 0.1.0 (2/12/2014)
162178

163179
- Initial release

react/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '4.2.1'
1+
__version__ = '4.3.0'
22

33
default_app_config = 'react.apps.ReactConfig'

0 commit comments

Comments
 (0)