Skip to content

Commit 923b3c2

Browse files
committed
Added 2.20 Release Notes
1 parent 98433b6 commit 923b3c2

1 file changed

Lines changed: 53 additions & 9 deletions

File tree

src/Docs/framework/release-notes.md

Lines changed: 53 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
#ServiceStack 2.20 Release Notes
2+
3+
### New Markdown Razor View Engine
4+
The biggest feature in this release is the new Markdown support built-into ServiceStack and more
5+
specifically its **Markdown Razor View Engine**. Markdown Razor is an MVC Razor-inspired templating
6+
engine that allows you to generate dynamic Markdown and HTML using plain Markdown and Razor Sytnax.
7+
8+
View the new [Markdown Razor Introduction](http://www.servicestack.net/docs/markdown/markdown-razor)
9+
for more information.
10+
11+
### ServiceStack.Docs Website Released
12+
The first website to take advantage of the new Markdown templating support in ServiceStack is
13+
**[http://www.servicestack.net/docs](http://www.servicestack.net/docs)** which is effectively built entirely
14+
using ServiceStack's GitHub project Markdown wiki and README.md pages. To render the entire website
15+
the transformed Markdown content is merged with a static **default.shtml** website template.
16+
17+
A nice feature of a Markdown-enabled website is that since the Content is decoupled from the website
18+
template we are easily able to enhance the site using Ajax to load partial content page loads. This
19+
provides a faster browsing experience since the entire webpage doesn't have to be reloaded.
20+
21+
See the [About ServiceStack Docs Website](http://www.servicestack.net/docs/markdown/about) for more
22+
information.
23+
24+
### MonoTouch support in ServiceStack C# Clients
25+
Support was added to the Generic JSON and JSV ServiceStack C# Clients to work around MonoTouch's
26+
No-JIT Restrictions. Unfortunately to do this we've had to create a new MonoTouch Build
27+
configuration which doesn't use any C# Expressions or Reflection.Emit. So you need to download the
28+
MonoTouch ServiceStack builds for running in MonoTouch.
29+
**[Download MonoTouch-v2.20.zip](https://github.com/ServiceStack/ServiceStack/tree/master/release/latest/MonoTouch)**
30+
31+
An example MonoTouch project that uses these Sync and Async C# ServiceClients to talk to the
32+
[RestFiles](www.servicestack.net/RestFiles/) web services is in the
33+
[RestFilesClient Example project](https://github.com/ServiceStack/ServiceStack.Examples/tree/master/src/MonoTouch/RestFilesClient).
34+
35+
## Other Features
36+
37+
- Added support for [IContainerAdapter](https://github.com/ServiceStack/ServiceStack/blob/master/src/ServiceStack.Interfaces/Configuration/IContainerAdapter.cs) to let you [plug-in and use different IOC Containers](https://groups.google.com/d/topic/servicestack/A-W9scHaEBA/discussion)
38+
- Allow alternate strategies [for resolving Service Types](https://groups.google.com/d/topic/servicestack/Sb7Rcnhte-E/discussion)
39+
- If your IService implements IDisposable, it will be disposed straight after it's been executed.
40+
41+
42+
43+
## Download
44+
* [**New users should download ServiceStack.Examples - v2.20**](https://github.com/ServiceStack/ServiceStack.Examples/downloads)
45+
* [Existing users can download just the ServiceStack.dlls - v2.20](https://github.com/ServiceStack/ServiceStack/downloads)
46+
47+
.
48+
49+
Follow [@demisbellot](http://twitter.com/demisbellot) and [@ServiceStack](http://twitter.com/ServiceStack) for twitter updates
50+
51+
*****
52+
53+
154
#ServiceStack 2.09 Release Notes
255

356
## ServiceStack is now on NuGet!
@@ -55,15 +108,6 @@ E.g. this is how you would disable 'JSV' and 'SOAP 1.1 & 1.2' endpoints:
55108
});
56109

57110

58-
59-
## Download
60-
* [**New users should download ServiceStack.Examples - v2.09**](https://github.com/ServiceStack/ServiceStack.Examples/downloads)
61-
* [Existing users can download just the ServiceStack.dlls - v2.09](https://github.com/ServiceStack/ServiceStack/downloads)
62-
63-
.
64-
65-
Follow [@demisbellot](http://twitter.com/demisbellot) and [@ServiceStack](http://twitter.com/ServiceStack) for twitter updates
66-
67111
*****
68112

69113
##ServiceStack 2.08 - ServiceStack meets Backbone.js

0 commit comments

Comments
 (0)