From 63488436496823a9399ec5e4b66a6b52d324fbba Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Mon, 24 Oct 2016 09:32:29 -0700 Subject: [PATCH] Add and update content for 1.1 Preview 1 --- .../1.1/1.1.0-preview1-contibutor-list.md | 4 +- .../1.1/1.1.0-preview1-known-issues.md | 21 ++++++++++ release-notes/1.1/1.1.0-preview1.md | 38 ++++++++++++++++--- 3 files changed, 56 insertions(+), 7 deletions(-) create mode 100644 release-notes/1.1/1.1.0-preview1-known-issues.md diff --git a/release-notes/1.1/1.1.0-preview1-contibutor-list.md b/release-notes/1.1/1.1.0-preview1-contibutor-list.md index a354a4e2..b1f82753 100644 --- a/release-notes/1.1/1.1.0-preview1-contibutor-list.md +++ b/release-notes/1.1/1.1.0-preview1-contibutor-list.md @@ -1,8 +1,8 @@ # Contributions to .NET Core 1.1.0 Preview 1 -Still working out the best way to present contributors. The list below is generated with the following command against each repo. The release qualifier is different from the example in some cases. +We're still working out the best way to present contributors and trying to be as accurate as possible. The list below is generated with the following command against each repo. The release qualifier is different from the example in some cases. Also, where multiple email addresses were returned for a single person, the counts were aggregated with the email address reported the most commits. -``` +```bash git shortlog -sne --no-merges HEAD..release/1.1.0 --since master@{2016-09-07} --until master@{2016-10-23} ``` diff --git a/release-notes/1.1/1.1.0-preview1-known-issues.md b/release-notes/1.1/1.1.0-preview1-known-issues.md new file mode 100644 index 00000000..fa6dde46 --- /dev/null +++ b/release-notes/1.1/1.1.0-preview1-known-issues.md @@ -0,0 +1,21 @@ +# 1.1.0 Preview 1 Known Issues + +This document lists known issues for *.NET Core 1.1.0 Preview 1* and *.NET Core SDK 1.0.0 Preview 2.1* which may be encountered during usage. + +## Previous versions of the Host Resolver are removed + +Everything about .NET Core is designed to be side-by-side but there is an issue with the Preview 1 installers which removes previous versions of the Host Resolver (dotnet/host/fxr). The Preview 1 version is compatible with previous releases and you should see no changes in behavior. This will be fixed for the final 1.1.0 release. + +## Visual Studio unable to find the SDK + +Installing the SDK will create new side-by-side directories for each version under \Program Files\dotnet\sdk. Generally it should be safe to remove older versions but there is an issue in Visual Studio which prevents it from finding this Preview if previous versions are uninstalled. The work around is to either not remove the previous versions or rename the directory. + +- Directory name as installed is 1.0.0-preview2.1-003155 +- Rename from ***preview2.1*** to ***preview2-1*** + +This will be resolved in the final 1.1.0 release and is tracked by [CLI Issue 4466](https://github.com/dotnet/cli/issues/4466). + + +## C++ Math libraries can behave differently across platforms + +This is expected behavior. See discussion in [coreclr issue 4318](https://github.com/dotnet/coreclr/issues/4318) \ No newline at end of file diff --git a/release-notes/1.1/1.1.0-preview1.md b/release-notes/1.1/1.1.0-preview1.md index 2efd295e..a99abac0 100644 --- a/release-notes/1.1/1.1.0-preview1.md +++ b/release-notes/1.1/1.1.0-preview1.md @@ -1,10 +1,38 @@ # Release Notes -## .NET Core 1.1.0 Preview 1 released mm/dd/2016 - -### Added Linux Distro Support - -### Commits for 1.1.0 Preview 1 +## .NET Core 1.1.0 Preview 1 released 10/24/2016 +There are a few issues to be aware of, which are described in the [.NET Core 1.1.0 Preview 1 Known Issues](1.1.0-preview1-known-issues.md) document. + +### Linux Distros Added + +Support has been added tofor the distros highlighted below. + +* Red Hat Enterprise Linux 7.2 +* CentOS 7.1+ +* Debian 8.2+ +* Fedora 23, _**24**_ +* Linux Mint 17.1, _**18**_ +* OpenSUSE 13.2, _**42.1**_ +* Oracle Linux 7.1 +* Ubuntu 14.04 & 16.04 +* Mac OS X 10.11, _**10,12**_ +* Windows 7+ / Server 2012 R2+ +* Windows Nano Server TP5 + +### WCF + +XmlSerializer, DataContractSerializer, and DataContractJsonSerializer can now serialize or deserialize objects at runtime without using IL emit or code generation. Prior to this release, in Universal Windows Platform (UWP) applications, these serializers can only be generated at compile time by .NET Native toolchain. This new feature, therefore, is especially useful for UWP applications in scenarios where pre-generated serializers at compile time is hard to achieve when runtime information is required for seraization. For example, constructor XmlSerializer.ctor(Type, XmlRootAttribute) is now supported on UWP. + +### ASP.NET Core + +* Please see the [ASP.NET Core release page](https://github.com/aspnet/home/releases/1.1.0-preview1) for details on fixes from ASP.NET Core, MVC, Entitiy Framework Core and others. + +### Commits for 1.1 Preview 1 + +### Contributors + +The list of contributors can be found in the [1.1.0 Preview 1 Contributor List](1.1.0-preview1-contributor-list.md) +