Skip to content

Commit

Permalink
3.8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Dec 10, 2020
2 parents 7cc73e0 + cb7e236 commit 681b7e3
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 35 deletions.
20 changes: 7 additions & 13 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ variables:
- name: vmImage
value: 'ubuntu-latest' # see https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml&viewFallbackFrom=vsts
- name: v
value: 3.8.1
value: 3.8.2
- name: av
value: 3.0.0

Expand All @@ -40,6 +40,11 @@ stages:

- script: echo "##vso[build.updatebuildnumber]$(v)"

- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '5.x'

- task: DotNetCoreCLI@2
displayName: 'build all'
inputs:
Expand All @@ -61,17 +66,6 @@ stages:
inputs:
ArtifactName: nuget

- task: NuGetCommand@2
condition: "ne(variables['Build.SourceBranch'], 'refs/heads/master')"
displayName: 'push to internal feed'
continueOnError: true
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg'
nuGetFeedType: 'internal'
publishVstsFeed: '4bab84c0-90f7-4425-afc6-ba077aa9757e/941c9975-4811-42dd-bd79-3cf33878bf77'
allowPackageConflicts: true

- stage: Test
#condition: succeeded('Build')
dependsOn: [] # remove explicit dependency, so it runs in parallel
Expand All @@ -92,7 +86,7 @@ stages:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '3.x'
version: '5.x'
- task: DotNetCoreCLI@2
displayName: 'run tests'
inputs:
Expand Down
5 changes: 2 additions & 3 deletions src/Parquet.CLI/Parquet.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NetBox" Version="2.3.5" />
<PackageReference Include="NetBox" Version="2.5.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="3.0.4" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.Trace" Version="2.1.0" />
</ItemGroup>

Expand Down
1 change: 0 additions & 1 deletion src/Parquet.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ private static void ConfigureTelemetry(Application app, string[] args)
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.Enrich.WithProperty("Version", app.Version)
.WriteTo.ApplicationInsights("aaf3c0f7-dc49-466c-848d-49ccfcdf86fe", TelemetryConverter.Events)
.WriteTo.Trace()
.CreateLogger();

Expand Down
2 changes: 1 addition & 1 deletion src/Parquet.Runner/Parquet.Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NetBox" Version="2.3.5" />
<PackageReference Include="NetBox" Version="2.5.1" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 6 additions & 4 deletions src/Parquet.Test/Parquet.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@


<PropertyGroup>
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>

<SignAssembly>true</SignAssembly>
Expand All @@ -15,13 +16,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NetBox" Version="2.3.5" />
<PackageReference Include="NetBox" Version="2.5.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

Expand Down
6 changes: 0 additions & 6 deletions src/Parquet.Test/SchemaTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,6 @@ public void Cannot_create_struct_with_no_elements()
Assert.Throws<ArgumentException>(() => new StructField("struct"));
}

[Fact]
public void Cannot_use_dots_in_field_names()
{
Assert.Throws<ArgumentException>(() => new DataField<int>("one.two"));
}

[Fact]
public void Identical_structs_field_are_equal()
{
Expand Down
6 changes: 0 additions & 6 deletions src/Parquet/Data/Schema/Field.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ internal virtual string PathPrefix { set { } }
protected Field(string name, SchemaType schemaType)
{
Name = name ?? throw new ArgumentNullException(nameof(name));

if(Name.Contains(Schema.PathSeparator))
{
throw new ArgumentException($"'{Schema.PathSeparator}' is not allowed in field name as it's used in Apache Parquet format as field path separator.");
}

SchemaType = schemaType;
Path = name;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Parquet/Parquet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Linux, Windows and Mac are first class citizens, but also works everywhere .NET
</PropertyGroup>

<ItemGroup>
<PackageReference Include="IronSnappy" Version="1.2.2" />
<PackageReference Include="IronSnappy" Version="1.3.0" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
<PackageReference Include="System.Memory" Version="4.5.4" />
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
Expand Down

0 comments on commit 681b7e3

Please sign in to comment.