Skip to content

Commit

Permalink
Merge pull request #142 from gitfool/renovate/yamldotnet-16.x
Browse files Browse the repository at this point in the history
  • Loading branch information
gitfool authored Jul 22, 2024
2 parents a0ac8ad + d945274 commit 3f4b1d7
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Aws/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@
},
"YamlDotNet": {
"type": "Transitive",
"resolved": "15.3.0",
"contentHash": "F93japYa9YrJ59AZGhgdaUGHN7ITJ55FBBg/D/8C0BDgahv/rQD6MOSwHxOJJpon1kYyslVbeBrQ2wcJhox01w=="
"resolved": "16.0.0",
"contentHash": "kZ4jR5ltFhnjaUqK9x81zXRIUTH4PTXTTEmJDNQdkDLQhcv+2Nl19r0dCSvPW1mstOYBfXTnjdieRbUO6gHMDw=="
},
"k8s": {
"type": "Project",
Expand All @@ -246,7 +246,7 @@
"Pulumi.Aws": "[5.11.0, )",
"Pulumi.Kubernetes": "[3.20.5, )",
"Scriban": "[5.10.0, )",
"YamlDotNet": "[15.3.0, )"
"YamlDotNet": "[16.0.0, )"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions Cli/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -611,8 +611,8 @@
},
"YamlDotNet": {
"type": "Transitive",
"resolved": "15.3.0",
"contentHash": "F93japYa9YrJ59AZGhgdaUGHN7ITJ55FBBg/D/8C0BDgahv/rQD6MOSwHxOJJpon1kYyslVbeBrQ2wcJhox01w=="
"resolved": "16.0.0",
"contentHash": "kZ4jR5ltFhnjaUqK9x81zXRIUTH4PTXTTEmJDNQdkDLQhcv+2Nl19r0dCSvPW1mstOYBfXTnjdieRbUO6gHMDw=="
},
"aws": {
"type": "Project",
Expand Down Expand Up @@ -649,7 +649,7 @@
"Pulumi.Aws": "[5.11.0, )",
"Pulumi.Kubernetes": "[3.20.5, )",
"Scriban": "[5.10.0, )",
"YamlDotNet": "[15.3.0, )"
"YamlDotNet": "[16.0.0, )"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions K8s/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@
},
"YamlDotNet": {
"type": "Transitive",
"resolved": "15.3.0",
"contentHash": "F93japYa9YrJ59AZGhgdaUGHN7ITJ55FBBg/D/8C0BDgahv/rQD6MOSwHxOJJpon1kYyslVbeBrQ2wcJhox01w=="
"resolved": "16.0.0",
"contentHash": "kZ4jR5ltFhnjaUqK9x81zXRIUTH4PTXTTEmJDNQdkDLQhcv+2Nl19r0dCSvPW1mstOYBfXTnjdieRbUO6gHMDw=="
},
"library": {
"type": "Project",
Expand All @@ -222,7 +222,7 @@
"Pulumi.Aws": "[5.11.0, )",
"Pulumi.Kubernetes": "[3.20.5, )",
"Scriban": "[5.10.0, )",
"YamlDotNet": "[15.3.0, )"
"YamlDotNet": "[16.0.0, )"
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions Library/ConfigTypeInspector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ public ConfigTypeInspector(ITypeInspector inner)
Inner = inner;
}

public override string GetEnumName(Type enumType, string name) => Inner.GetEnumName(enumType, name);

public override string GetEnumValue(object enumValue) => Inner.GetEnumValue(enumValue);

public override IEnumerable<IPropertyDescriptor> GetProperties(Type type, object? container) =>
Inner.GetProperties(type, container).Where(property => !Regex.IsMatch(property.Name, @"Password|Secret|Token")); // ignore secrets

Expand Down
2 changes: 1 addition & 1 deletion Library/Library.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
<PackageReference Include="Pulumi.Aws" Version="5.11.0" />
<PackageReference Include="Pulumi.Kubernetes" Version="3.20.5" />
<PackageReference Include="Scriban" Version="5.10.0" />
<PackageReference Include="YamlDotNet" Version="15.3.0" />
<PackageReference Include="YamlDotNet" Version="16.0.0" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Library/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@
},
"YamlDotNet": {
"type": "Direct",
"requested": "[15.3.0, )",
"resolved": "15.3.0",
"contentHash": "F93japYa9YrJ59AZGhgdaUGHN7ITJ55FBBg/D/8C0BDgahv/rQD6MOSwHxOJJpon1kYyslVbeBrQ2wcJhox01w=="
"requested": "[16.0.0, )",
"resolved": "16.0.0",
"contentHash": "kZ4jR5ltFhnjaUqK9x81zXRIUTH4PTXTTEmJDNQdkDLQhcv+2Nl19r0dCSvPW1mstOYBfXTnjdieRbUO6gHMDw=="
},
"Ben.Demystifier": {
"type": "Transitive",
Expand Down

0 comments on commit 3f4b1d7

Please sign in to comment.