From c8cb08c0a0ab9852421ede38dc73e06203569f6f Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Sat, 22 Oct 2016 13:32:44 -0700 Subject: [PATCH 1/3] Add preview download page. --- release-notes/preview-download.md | 61 +++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 release-notes/preview-download.md diff --git a/release-notes/preview-download.md b/release-notes/preview-download.md new file mode 100644 index 00000000..2f8f18a5 --- /dev/null +++ b/release-notes/preview-download.md @@ -0,0 +1,61 @@ +# .NET Core 1.1 Preview 1 + +Download the installer or binary archive for your platform. + +| .NET Core 1.1 Preview 1 | Installer | Binaries | +| ----------------------- | :----------------------------------------------: | :----------------------------------------------:| +| Windows | [32-bit](https://go.microsoft.com/fwlink/?LinkID=831458) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=831453) | [32-bit](https://go.microsoft.com/fwlink/?LinkID=831474) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=831469) | +| macOS | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831445) | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831486) | +| CentOS 7.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831470) | +| Debian 8 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831481) | +| Fedora 23 / 24 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831489) | +| openSUSE 13.2 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831491) | +| openSUSE 42.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831475) | +| Ubuntu 14.04 | See notes below for Ubuntu and Mint installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831488) | +| Ubuntu 16.04 | See notes below for Ubuntu and Mint installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831471) | +| Ubuntu 16.10 | See notes below for Ubuntu and Mint installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831479) | + +## Installation from a binary archive + +When using binary archives to install, we recommend the contents be extracted to /opt/dotnet and a symbolic link created for dotnet. If an earlier release of .NET Core is already installed, the directory and symbolic link may already exist. + +```bash +sudo mkdir -p /opt/dotnet +sudo tar zxf [tar.gz filename] -C /opt/dotnet +sudo ln -s /opt/dotnet/dotnet /usr/local/bin +``` + +## Ubuntu installation + +### Set up package source + +The first step is to establish the source feed for the package manager. This is only needed if you have not previously set up the source or if you are installing on Ubuntu 16.10 for the first time. + +#### Ubuntu 14.04 and Linux Mint 17 +``` +sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' +sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 +``` +#### Ubuntu 16.04 and Linux Mint 18 +``` +sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list' +sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 +``` + +#### Ubunt 16.10 +``` +sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ yakkety main" > /etc/apt/sources.list.d/dotnetdev.list' +sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 +``` + +Now that the source feed is defined for you distro, apt-get update can be used to install the latest available version. + +```bash +sudo apt-get update +``` + + + + + + From 1ff2c6b83a32f6677f41a3aab30d5fbf56f689e4 Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Sat, 22 Oct 2016 16:49:41 -0700 Subject: [PATCH 2/3] Updating 1.1 release note placeholders. --- .../1.1/1.1.0-preview1-contibutor-list.md | 46 +++++++++++++++++++ release-notes/1.1/1.1.0-preview1.md | 10 ++++ release-notes/1.1/Release-Notes-1.1.0-beta.md | 2 - 3 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 release-notes/1.1/1.1.0-preview1-contibutor-list.md create mode 100644 release-notes/1.1/1.1.0-preview1.md delete mode 100644 release-notes/1.1/Release-Notes-1.1.0-beta.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 new file mode 100644 index 00000000..a354a4e2 --- /dev/null +++ b/release-notes/1.1/1.1.0-preview1-contibutor-list.md @@ -0,0 +1,46 @@ +# 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. + +``` +git shortlog -sne --no-merges HEAD..release/1.1.0 --since master@{2016-09-07} --until master@{2016-10-23} +``` + +When you navigate to a contributors commit page, the results are not filtered by release so more commits than are listed below will be shown. + +## CLI + +- [Livar Cunha (8)](https://github.com/dotnet/cli/commits/rel/1.0.0-preview2.1?author=livar@live.com) +- [Eric Mellino (3)](https://github.com/dotnet/cli/commits/rel/1.0.0-preview2.1?author=erme@microsoft.com) +- [eerhardt (1)](https://github.com/dotnet/cli/commits/rel/1.0.0-preview2.1?author=eric.erhardt@microsoft.com) + +## CoreCLR + +- [Mike McLaughlin (5)](https://github.com/dotnet/coreclr/commits/release/1.1.0?author=mikem@microsoft.com) +- [Jeremy Kuhne (1)](https://github.com/dotnet/coreclr/commits/release/1.1.0?author=jeremy.kuhne@microsoft.com) +- [John Chen (CLR) (2)](https://github.com/dotnet/coreclr/commits/release/1.1.0?author=jochen@microsoft.com) +- [Davis Goodin (1)](https://github.com/dotnet/coreclr/commits/release/1.1.0?author=dagood@users.noreply.github.com) +- [wtgodbe (1)](https://github.com/dotnet/coreclr/commits/release/1.1.0?author=wigodbe@microsoft.com) +- [Gaurav Khanna (1)](https://github.com/dotnet/coreclr/commits/release/1.1.0?author=gkhanna@microsoft.com) + +## CoreFX + +- [Eric St. John (16)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=ericstj@microsoft.com) +- [Stephen Toub (10)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=stoub@microsoft.com) +- [David Shulman (4)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=david.shulman@microsoft.com) +- [Davis Goodin (6)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=dagood@microsoft.com) +- [Eric Mellino (3)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=erme@microsoft.com) +- [Ian Hays (2)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=ianha@microsoft.com) +- [Jeremy Barton (2)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=jbarton@microsoft.com) +- [huanwu (1)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=huanwu@microsoft.com) +- [Jeremy Kuhne (1)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=jeremy.kuhne@microsoft.com) +- [Matt Connew (1)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=mconnew@microsoft.com) +- [Bryan P. Arant (1)](https://github.com/dotnet/corefx/commits/release/1.1.0?author=bryanar@microsoft.com) + +## WC + +- [Stephen Bonikowsky (7)](https://github.com/dotnet/wcf/commits/release/1.1.0?author=stebon@microsoft.com) +- [Matt Connew (4)](https://github.com/dotnet/wcf/commits/release/1.1.0?author=mconnew@microsoft.com) +- [Ron Cain (2)](https://github.com/dotnet/wcf/commits/release/1.1.0?author=roncain@microsoft.com) +- [Jason Pang (2)](https://github.com/dotnet/wcf/commits/release/1.1.0?author=iamjasonp@users.noreply.github.com) +- [Eric St. John (1)](https://github.com/dotnet/wcf/commits/release/1.1.0?author=ericstj@microsoft.com) diff --git a/release-notes/1.1/1.1.0-preview1.md b/release-notes/1.1/1.1.0-preview1.md new file mode 100644 index 00000000..2efd295e --- /dev/null +++ b/release-notes/1.1/1.1.0-preview1.md @@ -0,0 +1,10 @@ +# Release Notes + +## .NET Core 1.1.0 Preview 1 released mm/dd/2016 + +### Added Linux Distro Support + +### Commits for 1.1.0 Preview 1 + + + diff --git a/release-notes/1.1/Release-Notes-1.1.0-beta.md b/release-notes/1.1/Release-Notes-1.1.0-beta.md deleted file mode 100644 index 77d7f553..00000000 --- a/release-notes/1.1/Release-Notes-1.1.0-beta.md +++ /dev/null @@ -1,2 +0,0 @@ -# Release Notes -TBD From 63488436496823a9399ec5e4b66a6b52d324fbba Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Mon, 24 Oct 2016 09:32:29 -0700 Subject: [PATCH 3/3] 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) +