Skip to content

Commit

Permalink
1.2.0 release announcement
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel15 committed Nov 23, 2014
1 parent db608ef commit 9fa6fc3
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ of patent rights can be found in the PATENTS file in the same directory.
<Project ToolsVersion="4.0" DefaultTargets="Build;Test;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Major>1</Major>
<Minor>1</Minor>
<Build>4</Build>
<Minor>2</Minor>
<Build>0</Build>
<Revision>0</Revision>
<DevNuGetServer>http://reactjs.net/packages/</DevNuGetServer>
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\tools\MSBuildTasks</MSBuildCommunityTasksPath>
Expand Down
27 changes: 27 additions & 0 deletions site/jekyll/_posts/2014-11-22-1.2.0-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
title: "ReactJS.NET 1.2.0"
layout: post
author: Daniel Lo Nigro
---

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:

* 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))
* React version upgraded from 0.12.0 to 0.12.1.

Server-side rendering:

* 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))
* 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))
* 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))

Under the hood:

* Allow custom `JsonSerializerSettings` to be provided. *Thanks to BartAdv. ([#43](https://github.com/reactjs/React.NET/pull/43))
* Switch various methods from `private` to `protected virtual` so they can be overridden. ([#39](https://github.com/reactjs/React.NET/issues/39))
* Use newer React factory syntax for instantiating components. ([#46](https://github.com/reactjs/React.NET/issues/46))

Have fun, and as always, please feel free to send feedback or bug reports
[on GitHub](https://github.com/reactjs/React.NET).

— Daniel

0 comments on commit 9fa6fc3

Please sign in to comment.