19

I can't find what's new in Razor 3. It seems like a silly question, but I can easily find what's new in MVC 5, in EF 6, etc. - but I tried to google it, I tried asp.net, I tried Scott's blog - nothing. So I'm curious, does anyone actually know what's new in Razor 3? Thanks!

Satpal
  • 132,252
  • 13
  • 159
  • 168
Robert Goldwein
  • 5,805
  • 6
  • 33
  • 38

2 Answers2

9

Here is a list of all the bugs fixed in Razor 3.

https://aspnetwebstack.codeplex.com/workitem/list/advanced?keyword=&status=Closed&type=All&priority=All&release=v5.0%2bPreview%7cv5.0%2bRC%7cv5.0%2bRTM&assignedTo=All&component=Web%2bPages%252fRazor&reasonClosed=Fixed&sortField=LastUpdatedDate&sortDirection=Descending&page=0

The three highlights are:

  1. Support for editing with tabs in VS2013.
  2. Support for URL rewrite
  3. Removing of the security transparent attribute.

The official release notes are coming out shortly.

Sklivvz
  • 30,601
  • 24
  • 116
  • 172
Yishai Galatzer
  • 8,791
  • 2
  • 32
  • 41
4

There are no new features added in Razor 3 or Web Pages 3 - just some bug fixes. Given that, I have no idea why Microsoft haven't publicised any release notes specific to these two products. I have reached out to them on that. I shall update the answer when I get a response.

UPDATE

Yishai has kindly come back to me and provided details below as well.

Mike Brind
  • 28,238
  • 6
  • 56
  • 88
  • Thanks, I tried to write them too before I posted this question - just out of the curiosity - so no response, so I just understand that once we want to switch to MVC5, we need to switch to Razor 3 as well. Or maybe in some long Winter nights I'll just check the source code... :) – Robert Goldwein Oct 28 '13 at 08:32
  • I also considered getting Code Compare out, but in the meantime I am optimistic that I will get some kind of response. I know of one fix though - in relation to Web Pages validation controls not working in RenderPage scenarios in Web Pages 2. They do in version 3. – Mike Brind Oct 28 '13 at 09:56