Skip to content

Commit dd748cc

Browse files
committed
1.3 release announcement
1 parent 517e96e commit dd748cc

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

site/jekyll/_posts/2014-11-22-1.2.0-release.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: "ReactJS.NET 1.2.0"
2+
title: "ReactJS.NET 1.2"
33
layout: post
44
author: Daniel Lo Nigro
55
---
66

7-
I'm happy to announce the release of ReactJS.NET 1.2.0! This is a minor release and includes a number of changes and fixes since version 1.1.3:
7+
I'm happy to announce the release of ReactJS.NET 1.2! This is a minor release and includes a number of changes and fixes since version 1.1.3:
88

99
* Basic source map support. Source maps will now be available when accessing .jsx files directly. It's not supported for combined/minified files at the moment since none of the common .NET minifiers support source maps. ([#8](https://github.com/reactjs/React.NET/issues/8))
1010
* React version upgraded from 0.12.0 to 0.12.1.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "ReactJS.NET 1.3 - Faster server-side rendering and Flow"
3+
layout: post
4+
author: Daniel Lo Nigro
5+
---
6+
7+
Hot on the heels of ReactJS.NET 1.2, I'm happy to announce the release of ReactJS.NET 1.3! This release significantly improves the performance of server-side rendering by pooling and reusing JavaScript engines rather than creating a new one on every request. Pooling of JavaScript engines is turned on by default but it can be disabled in your site's configuration (usually `ReactConfig.cs`) to revert back to the classic behaviour. This is still experimental, so please let me know if it works well for you!
8+
9+
This release also adds support for stripping out [Flow](http://flowtype.org/) type annotations from your code. Flow is a new open-source static type checker for JavaScript, recently released by Facebook. It adds static typing to JavaScript to improve developer productivity and code quality. You can learn more about Flow in [its release announcement](https://code.facebook.com/posts/1505962329687926/flow-a-new-static-type-checker-for-javascript/). Support for Flow is disabled by default but can be enabled in your site's configuration.
10+
11+
Other changes:
12+
13+
* [Harmony (ES6)](/guides/es6.html) transformations are enabled by default. They can be disabled in your site's configuration.
14+
* The Cassette integration now transforms all files in the bundle, not just `*.jsx` files. ([#52](https://github.com/reactjs/React.NET/issues/52))
15+
16+
Have fun, and as always, please feel free to send feedback or bug reports
17+
[on GitHub](https://github.com/reactjs/React.NET).
18+
19+
— Daniel

0 commit comments

Comments
 (0)