Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jupyter/merge main no squash #2783

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4e85881
change log level (#2719)
colombod Feb 11, 2023
7dd1eb9
fix handling of completions that rely on nested commands (#2727)
jonsequitur Feb 14, 2023
fbcafb8
fix package import (#2734)
colombod Feb 14, 2023
c8a0c6d
Rename the netstandard2.0 package (#2739)
shyamnamboodiripad Feb 15, 2023
bfc84b4
value kernel should not produce reference values (#2740)
colombod Feb 16, 2023
07807c1
readme link 404 fix
jbilinski Feb 16, 2023
63be6f4
share cancellation source (#2743)
colombod Feb 16, 2023
a23884e
fix size in style
colombod Feb 16, 2023
2139e49
use set command
colombod Feb 16, 2023
05d6872
Update publish-npm.yml
brettfo Feb 16, 2023
a8b18e9
report all errors when generating dynamic semantic tokens (#2747)
brettfo Feb 16, 2023
7ceff87
fix again ... (#2749)
colombod Feb 17, 2023
6e742e5
improve kql and sql connection experience (#2745)
colombod Feb 17, 2023
4f9f902
Update README.md
jonsequitur Feb 19, 2023
3731a79
Updating the test script with the latest saved content for .dib and .…
AbhitejJohn Feb 17, 2023
f41a3c6
allow persisting default values for new notebooks (#2712)
brettfo Feb 21, 2023
ad0cba2
cancelling doesn't leak infos
colombod Feb 21, 2023
63efda3
cleanup
jonsequitur Feb 21, 2023
2952c6c
throw on null FormattedValue
jonsequitur Feb 21, 2023
24cb18f
move #!set handling to custom parser, add support for --byref
jonsequitur Feb 22, 2023
be17230
cleanup
jonsequitur Feb 22, 2023
48e1a89
move #!set --value @sharing to custom parser, add --byref
jonsequitur Feb 24, 2023
20867aa
fix sql test assertion
colombod Feb 27, 2023
de531f0
honour content type
colombod Feb 27, 2023
7d2ebbb
Update dependencies from https://github.com/dotnet/arcade build 20230…
dotnet-maestro[bot] Feb 27, 2023
dcfe7bf
Remove not needed code
kant2002 Feb 28, 2023
42cbc9d
upgraded js
colombod Feb 28, 2023
1e0461b
Update developer guide with new notebook creation command
ocalles Mar 1, 2023
8ae9a3f
Removed unnecessary Imports or usings from all projects
ocalles Mar 1, 2023
3697635
Add .git-blame-ignore-revs files to repository
ocalles Mar 1, 2023
00df46d
merge main to release/jupyter
shibbas Mar 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# code cleanup
70c82049a20a39114fe21da8e31544080391ead1
2 changes: 1 addition & 1 deletion DEVELOPER-GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ To get started, you'll need:

5. Press F5 to launch the Visual Studio Code Extension Development Host.

6. Run `.NET Interactive: Create new blank notebook` or open a file with the `.ipynb` extension.
6. Run `Polyglot Notebook: Create new blank notebook` or open a file with the `.ipynb` extension.

### Use a local build of the `dotnet-interactive` tool

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
using Microsoft.AspNetCore.Routing;
using Microsoft.DotNet.Interactive.Commands;
using Microsoft.DotNet.Interactive.CSharp;
using Microsoft.DotNet.Interactive.Formatting;
using Microsoft.Extensions.Hosting;

namespace Microsoft.DotNet.Interactive.AspNetCore;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading.Tasks;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading.Tasks;
using FluentAssertions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System.Linq;
using FluentAssertions;
using Microsoft.DotNet.Interactive.CSharpProject.MLS.Project;
using Xunit;

namespace Microsoft.DotNet.Interactive.CSharpProject.Tests;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
using FluentAssertions;
using Microsoft.DotNet.Interactive.Utility;
using Xunit;
using Buffer = Microsoft.DotNet.Interactive.CSharpProject.Buffer;
using File = System.IO.File;
using Microsoft.DotNet.Interactive.CSharpProject.MLS.Project;

namespace Microsoft.DotNet.Interactive.CSharpProject.Tests;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject.Tests;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Generic;
using System.Linq;
using FluentAssertions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Text;
using Microsoft.DotNet.Interactive.CSharpProject.MLS.Project;
using Microsoft.DotNet.Interactive.CSharpProject.Servers.Roslyn.Instrumentation;
using Microsoft.DotNet.Interactive.CSharpProject.Utility;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Linq;
using System.Text.RegularExpressions;

namespace Microsoft.DotNet.Interactive.CSharpProject.Tests.Instrumentation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.Linq;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Text;
using Microsoft.DotNet.Interactive.CSharpProject.MLS.Project;
using Microsoft.DotNet.Interactive.CSharpProject.Servers.Roslyn.Instrumentation;
using Microsoft.DotNet.Interactive.CSharpProject.Utility;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Microsoft.DotNet.Interactive.Utility;
using Microsoft.DotNet.Interactive.CSharpProject.Packaging;
using Xunit;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject.Tests;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using FluentAssertions;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using Xunit;

namespace Microsoft.DotNet.Interactive.CSharpProject.Tests;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.DotNet.Interactive.CSharpProject.Packaging;
using Microsoft.DotNet.Interactive.CSharpProject.Servers.Roslyn;
using Xunit.Abstractions;
using System.Threading.Tasks;

namespace Microsoft.DotNet.Interactive.CSharpProject.Tests;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
using System.Collections.Generic;
using System.Linq;
using Microsoft.CodeAnalysis.Text;
using Microsoft.DotNet.Interactive.CSharpProject.MLS.Project;
using Workspace = Microsoft.DotNet.Interactive.CSharpProject.Workspace;

namespace Microsoft.DotNet.Interactive.CSharpProject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.DotNet.Interactive.CSharpProject.MLS.Project;

namespace Microsoft.DotNet.Interactive.CSharpProject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System;
using System.Text.Json.Serialization;
using Microsoft.DotNet.Interactive.Commands;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject.Commands;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.DotNet.Interactive.CSharpProject.Transformations;
using Workspace = Microsoft.DotNet.Interactive.CSharpProject.Workspace;

namespace Microsoft.DotNet.Interactive.CSharpProject;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using System;
using System.Threading.Tasks;
using Microsoft.DotNet.Interactive.CSharpProject.Packaging;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System;
using System.Text.Json.Serialization;
using Microsoft.DotNet.Interactive.CSharpProject.Commands;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using Microsoft.DotNet.Interactive.Events;

namespace Microsoft.DotNet.Interactive.CSharpProject.Events;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using Microsoft.DotNet.Interactive.Utility;

namespace Microsoft.DotNet.Interactive.CSharpProject;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using System.Threading.Tasks;
using Microsoft.DotNet.Interactive.CSharpProject.Packaging;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System.Collections.Generic;
using System.IO;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System.CommandLine.Parsing;
using System.Threading.Tasks;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject.Markdown;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using System.CommandLine.Parsing;
using System.Linq;
using Markdig;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject.Markdown;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System.IO;
using System.Linq;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject.Models.Execution;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System;
using System.IO;
using System.Linq;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using Newtonsoft.Json.Linq;

namespace Microsoft.DotNet.Interactive.CSharpProject.Packaging;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using System;
using System.IO;
using System.Threading.Tasks;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using System;
using System.Collections.Generic;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using System;

namespace Microsoft.DotNet.Interactive.CSharpProject.Packaging;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using Microsoft.DotNet.Interactive.Utility;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using Microsoft.DotNet.Interactive.CSharpProject.Servers.Roslyn;
using Microsoft.DotNet.Interactive.CSharpProject.Utility;

namespace Microsoft.DotNet.Interactive.CSharpProject.Packaging;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Buildalyzer;
using Microsoft.CodeAnalysis;
using Microsoft.DotNet.Interactive.Utility;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;
using Microsoft.DotNet.Interactive.CSharpProject.Servers.Roslyn;

namespace Microsoft.DotNet.Interactive.CSharpProject.Packaging;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using System.Text.Json.Serialization;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using System.IO;
using Microsoft.DotNet.Interactive.CSharpProject.Tools;

namespace Microsoft.DotNet.Interactive.CSharpProject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
using Microsoft.DotNet.Interactive.CSharpProject.Servers.Roslyn.Instrumentation;
using static System.Environment;
using Package = Microsoft.DotNet.Interactive.CSharpProject.Packaging.Package;
using Workspace = Microsoft.DotNet.Interactive.CSharpProject.Workspace;

namespace Microsoft.DotNet.Interactive.CSharpProject.Servers.Roslyn;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using FluentAssertions;
using Microsoft.DotNet.Interactive.Documents.Jupyter;
using Xunit;
using Xunit;

namespace Microsoft.DotNet.Interactive.Documents.Tests;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
using System.Linq;
using System.Text;
using FluentAssertions;
using FSharp.Compiler.Text;

using Microsoft.DotNet.Interactive.Connection;
using Microsoft.DotNet.Interactive.Documents.ParserServer;
using Newtonsoft.Json;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using FluentAssertions;
using Microsoft.Data.Sqlite;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
Expand All @@ -11,7 +10,6 @@
using Microsoft.DotNet.Interactive.CSharp;
using Microsoft.DotNet.Interactive.Events;
using Microsoft.DotNet.Interactive.Formatting;
using Microsoft.DotNet.Interactive.Tests.Utility;

using Xunit;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private string MakeValidMethodName(string value)

namespace Microsoft.ML
{

public static class DataViewExtensions
{
private static T GetValue<T>(ValueGetter<T> valueGetter)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Linq;
using System;
using System.Collections.Generic;
using Microsoft.CodeAnalysis;
using System.Runtime.Serialization;

namespace Microsoft.DotNet.Interactive.ExtensionLab.Inspector.CSharpCompiler;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Immutable;
using System.IO;
using Microsoft.CodeAnalysis;

namespace Microsoft.DotNet.Interactive.ExtensionLab.Inspector.CSharpCompiler;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Collections.Generic;
using FluentAssertions;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Reflection;

namespace Microsoft.DotNet.Interactive.Formatting;
Expand Down
Loading