Skip to content

Commit 9fa6fc3

Browse files
committed
1.2.0 release announcement
1 parent db608ef commit 9fa6fc3

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

build.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ of patent rights can be found in the PATENTS file in the same directory.
1010
<Project ToolsVersion="4.0" DefaultTargets="Build;Test;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1111
<PropertyGroup>
1212
<Major>1</Major>
13-
<Minor>1</Minor>
14-
<Build>4</Build>
13+
<Minor>2</Minor>
14+
<Build>0</Build>
1515
<Revision>0</Revision>
1616
<DevNuGetServer>http://reactjs.net/packages/</DevNuGetServer>
1717
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\tools\MSBuildTasks</MSBuildCommunityTasksPath>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: "ReactJS.NET 1.2.0"
3+
layout: post
4+
author: Daniel Lo Nigro
5+
---
6+
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:
8+
9+
* 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))
10+
* React version upgraded from 0.12.0 to 0.12.1.
11+
12+
Server-side rendering:
13+
14+
* The HTML tag used as the component's container can now be changed. Previously it was hardcoded to be a `div`. ([#45](https://github.com/reactjs/React.NET/issues/45))
15+
* The ID of the container element can now be changed. Previously it was always an auto-generated ID in the format "react1", "react2", etc. ([#50](https://github.com/reactjs/React.NET/issues/50))
16+
* New `Html.ReactWithInit` helper method to render both the HTML component and its client-side JavaScript initialisation script. This is useful when rendering self-contained partial views containing React components. *Thanks to BartAdv*. ([#42](https://github.com/reactjs/React.NET/pull/42))
17+
18+
Under the hood:
19+
20+
* Allow custom `JsonSerializerSettings` to be provided. *Thanks to BartAdv. ([#43](https://github.com/reactjs/React.NET/pull/43))
21+
* Switch various methods from `private` to `protected virtual` so they can be overridden. ([#39](https://github.com/reactjs/React.NET/issues/39))
22+
* Use newer React factory syntax for instantiating components. ([#46](https://github.com/reactjs/React.NET/issues/46))
23+
24+
Have fun, and as always, please feel free to send feedback or bug reports
25+
[on GitHub](https://github.com/reactjs/React.NET).
26+
27+
— Daniel

0 commit comments

Comments
 (0)