Skip to content

Commit

Permalink
Bump the all-dependencies group across 1 directory with 5 updates (#735)
Browse files Browse the repository at this point in the history
* Bump the all-dependencies group across 1 directory with 5 updates

Bumps the all-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [DotLiquid](https://github.com/dotliquid/dotliquid) | `2.2.717` | `2.3.0` |
| [Scriban](https://github.com/scriban/scriban) | `5.12.0` | `5.12.1` |
| [xunit.analyzers](https://github.com/xunit/xunit.analyzers) | `1.17.0` | `1.18.0` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.8.2` | `3.0.0` |
| [Parlot](https://github.com/sebastienros/parlot) | `1.2.2` | `1.3.0` |



Updates `DotLiquid` from 2.2.717 to 2.3.0
- [Release notes](https://github.com/dotliquid/dotliquid/releases)
- [Changelog](https://github.com/dotliquid/dotliquid/blob/master/CHANGELOG.markdown)
- [Commits](https://github.com/dotliquid/dotliquid/commits)

Updates `Scriban` from 5.12.0 to 5.12.1
- [Release notes](https://github.com/scriban/scriban/releases)
- [Changelog](https://github.com/scriban/scriban/blob/master/changelog.md)
- [Commits](scriban/scriban@5.12.0...5.12.1)

Updates `xunit.analyzers` from 1.17.0 to 1.18.0
- [Commits](xunit/xunit.analyzers@1.17.0...1.18.0)

Updates `xunit.runner.visualstudio` from 2.8.2 to 3.0.0
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@2.8.2...3.0.0)

Updates `Parlot` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/sebastienros/parlot/releases)
- [Commits](sebastienros/parlot@v1.2.2...v1.3.0)

---
updated-dependencies:
- dependency-name: DotLiquid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Scriban
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: xunit.analyzers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Parlot
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* Downgrade package versions in Versions.props

* Fix obsolete method usage

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sébastien Ros <[email protected]>
  • Loading branch information
dependabot[bot] and sebastienros authored Dec 30, 2024
1 parent 8b88d96 commit 9f862f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@
<PackageVersion Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />

<!-- Common to all TFMs -->
<PackageVersion Include="Parlot" Version="1.2.2" />
<PackageVersion Include="Parlot" Version="1.3.0" />
<PackageVersion Include="TimeZoneConverter" Version="6.1.0" />

<!-- Benchmarks -->
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
<PackageVersion Include="DotLiquid" Version="2.2.717" />
<PackageVersion Include="DotLiquid" Version="2.3.0" />
<PackageVersion Include="Liquid.NET" Version="0.10.0" />
<PackageVersion Include="Scriban" Version="5.12.0" />
<PackageVersion Include="Scriban" Version="5.12.1" />
<PackageVersion Include="Handlebars.Net" Version="2.1.6" />

<!-- Testing -->
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="xunit" Version="2.9.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageVersion Include="xunit.analyzers" Version="1.17.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.0" />
<PackageVersion Include="xunit.analyzers" Version="1.18.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Fluid/FluidParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public FluidParser(FluidParserOptions parserOptions)
// Seek anything that looks like a binary operator (==, !=, <, >, <=, >=, contains, startswith, endswith) then validates it with the registered operators
// An "identifier" operator should always be followed by a space so we ensure it's doing it with AndSkip(Literals.WhiteSpace())
CombinatoryExpression = Primary.And(ZeroOrOne(OneOf(Terms.AnyOf("=!<>", maxSize: 2), Terms.Identifier().AndSkip(Literals.WhiteSpace())).Then(x => x.ToString())
.When(RegisteredOperators.ContainsKey).And(Primary)))
.When((ctx, s) => RegisteredOperators.ContainsKey(s)).And(Primary)))
.Then(x =>
{
if (x.Item2.Item1 == null)
Expand Down

0 comments on commit 9f862f9

Please sign in to comment.