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

chore(deps): bump github.com/itchyny/gojq from 0.12.7 to 0.12.13 #179

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 22, 2023

Bumps github.com/itchyny/gojq from 0.12.7 to 0.12.13.

Release notes

Sourced from github.com/itchyny/gojq's releases.

Release v0.12.13

  • implement @urid format string to decode URI values
  • fix functions returning arrays not to emit nil slices (flatten, group_by, unique, unique_by, nth, indices, path, and modulemeta.deps)

Release v0.12.12

  • fix assignment operator (=) with overlapping paths and multiple values ([[]] | .. = ..)
  • fix crash on multiplying large numbers to an empty string (9223372036854775807 * "")
  • improve zsh completion file

Release v0.12.11

  • fix crash on the assignment operator (=) with multiple values (. = (0,0))
  • fix isnormal and normals functions against subnormal numbers

Release v0.12.10

  • fix break in try-catch query (label $x | try break $x catch .)
  • fix path value validation for getpath function (path(getpath([[0]][0])))
  • fix path value validation for custom iterator functions
  • fix walk function with argument emitting multiple values ([1],{x:1} | walk(.,0))
  • fix @csv, @tsv, @sh to escape the null character (["\u0000"] | @csv,@tsv,@sh)
  • improve performance of assignment operator (=), update-assignment operator (|=), map_values, del, delpaths, walk, ascii_downcase, and ascii_upcase functions

Release v0.12.9

  • fix fromjson to emit error on unexpected trailing string
  • fix path analyzer on variable argument evaluation (def f($x): .y; path(f(.x)))
  • fix raw input option --raw-input (-R) to keep carriage returns and support 64KiB+ lines

Release v0.12.8

  • implement gojq.Compare for comparing values in custom internal functions
  • implement gojq.TypeOf for obtaining type name of values in custom internal functions
  • implement gojq.Preview for previewing values for error messages of custom internal functions
  • fix query lexer to parse string literals as JSON to support surrogate pairs ("\ud83d\ude04")
  • fix priority bug of declared and builtin functions (def empty: .; null | select(.))
  • fix string indexing by index out of bounds to emit null ("abc" | .[3])
  • fix array binding pattern not to match against strings ("abc" as [$a] ?// $a | $a)
  • fix sub and gsub functions to emit results in the same order of jq
  • fix fromjson to keep integer precision ("10000000000000000" | fromjson + 1)
  • fix stream option to raise error against incomplete JSON input
  • improve array updating index and string repetition to increase limitations
  • improve mktime to support nanoseconds, just like gmtime and now
  • improve query lexer to report unterminated string literals
  • improve performance of string indexing and slicing by reducing allocations
  • improve performance of object and array indexing, slicing, and iteration, by validating path values by comparing data addresses. This change improves jq compatibility of path value validation ({} | {}.x = 0, [0] | [.[]][] = 1). Also optimize constant indexing and slicing by specialized instruction
  • improve performance of add (on array of strings), flatten, min, max, sort, unique, join, to_entries, from_entries, indices, index, rindex, startswith, endswith, ltrimstr, rtrimstr, explode,

... (truncated)

Changelog

Sourced from github.com/itchyny/gojq's changelog.

v0.12.13 (2023-06-01)

  • implement @urid format string to decode URI values
  • fix functions returning arrays not to emit nil slices (flatten, group_by, unique, unique_by, nth, indices, path, and modulemeta.deps)

v0.12.12 (2023-03-01)

  • fix assignment operator (=) with overlapping paths and multiple values ([[]] | .. = ..)
  • fix crash on multiplying large numbers to an empty string (9223372036854775807 * "")
  • improve zsh completion file

v0.12.11 (2022-12-24)

  • fix crash on assignment operator (=) with multiple values (. = (0,0))
  • fix isnormal and normals functions against subnormal numbers

v0.12.10 (2022-12-01)

  • fix break in try-catch query (label $x | try break $x catch .)
  • fix path value validation for getpath function (path(getpath([[0]][0])))
  • fix path value validation for custom iterator functions
  • fix walk function with argument emitting multiple values ([1],{x:1} | walk(.,0))
  • fix @csv, @tsv, @sh to escape the null character (["\u0000"] | @csv,@tsv,@sh)
  • improve performance of assignment operator (=), update-assignment operator (|=), map_values, del, delpaths, walk, ascii_downcase, and ascii_upcase functions

v0.12.9 (2022-09-01)

  • fix fromjson to emit error on unexpected trailing string
  • fix path analyzer on variable argument evaluation (def f($x): .y; path(f(.x)))
  • fix raw input option --raw-input (-R) to keep carriage returns and support 64KiB+ lines

v0.12.8 (2022-06-01)

  • implement gojq.Compare for comparing values in custom internal functions
  • implement gojq.TypeOf for obtaining type name of values in custom internal functions
  • implement gojq.Preview for previewing values for error messages of custom internal functions
  • fix query lexer to parse string literals as JSON to support surrogate pairs ("\ud83d\ude04")
  • fix priority bug of declared and builtin functions (def empty: .; null | select(.))
  • fix string indexing by index out of bounds to emit null ("abc" | .[3])
  • fix array binding pattern not to match against strings ("abc" as [$a] ?// $a | $a)
  • fix sub and gsub functions to emit results in the same order of jq
  • fix fromjson to keep integer precision ("10000000000000000" | fromjson + 1)
  • fix stream option to raise error against incomplete JSON input
  • improve array updating index and string repetition to increase limitations
  • improve mktime to support nanoseconds, just like gmtime and now
  • improve query lexer to report unterminated string literals
  • improve performance of string indexing and slicing by reducing allocations
  • improve performance of object and array indexing, slicing, and iteration, by validating path values by comparing data addresses. This change improves jq compatibility of path value validation ({} | {}.x = 0, [0] | [.[]][] = 1). Also optimize constant indexing and slicing by specialized instruction
  • improve performance of add (on array of strings), flatten, min, max, sort, unique, join, to_entries, from_entries, indices, index, rindex, startswith, endswith, ltrimstr, rtrimstr, explode,

... (truncated)

Commits
  • c882861 bump up version to 0.12.13
  • c310d5d update CHANGELOG.md for v0.12.13
  • 8fb5cc3 update dependencies
  • fb00b66 improve error message of indices, setpath, delpaths functions
  • e940c43 update GitHub action dependencies
  • 2d97ddb update jq links to the new jqlang organization
  • 2a6cb00 improve error message of various functions
  • 5e26bef add a note on differences of supported functions missing in jq
  • 96c4843 fix functions returning arrays not to emit nil slices
  • 4a681c8 improve .dockerignore
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/itchyny/gojq](https://github.com/itchyny/gojq) from 0.12.7 to 0.12.13.
- [Release notes](https://github.com/itchyny/gojq/releases)
- [Changelog](https://github.com/itchyny/gojq/blob/main/CHANGELOG.md)
- [Commits](itchyny/gojq@v0.12.7...v0.12.13)

---
updated-dependencies:
- dependency-name: github.com/itchyny/gojq
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Sep 22, 2023
@codecov
Copy link

codecov bot commented Sep 22, 2023

Codecov Report

Patch and project coverage have no change.

Comparison is base (d683002) 51.09% compared to head (38836b8) 51.09%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #179   +/-   ##
=======================================
  Coverage   51.09%   51.09%           
=======================================
  Files          54       54           
  Lines        4196     4196           
=======================================
  Hits         2144     2144           
  Misses       1833     1833           
  Partials      219      219           
Flag Coverage Δ
unittests 51.09% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@TobiaszCudnik TobiaszCudnik merged commit 117b24e into main Sep 26, 2023
@TobiaszCudnik TobiaszCudnik deleted the dependabot/go_modules/github.com/itchyny/gojq-0.12.13 branch September 26, 2023 06:04
TobiaszCudnik pushed a commit that referenced this pull request Sep 27, 2023
Bumps [github.com/itchyny/gojq](https://github.com/itchyny/gojq) from
0.12.7 to 0.12.13.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/itchyny/gojq/releases">github.com/itchyny/gojq's
releases</a>.</em></p>
<blockquote>
<h2>Release v0.12.13</h2>
<ul>
<li>implement <code>@urid</code> format string to decode URI values</li>
<li>fix functions returning arrays not to emit nil slices
(<code>flatten</code>, <code>group_by</code>,
<code>unique</code>, <code>unique_by</code>, <code>nth</code>,
<code>indices</code>, <code>path</code>, and
<code>modulemeta.deps</code>)</li>
</ul>
<h2>Release v0.12.12</h2>
<ul>
<li>fix assignment operator (<code>=</code>) with overlapping paths and
multiple values (<code>[[]] | .. = ..</code>)</li>
<li>fix crash on multiplying large numbers to an empty string
(<code>9223372036854775807 * &quot;&quot;</code>)</li>
<li>improve zsh completion file</li>
</ul>
<h2>Release v0.12.11</h2>
<ul>
<li>fix crash on the assignment operator (<code>=</code>) with multiple
values (<code>. = (0,0)</code>)</li>
<li>fix <code>isnormal</code> and <code>normals</code> functions against
subnormal numbers</li>
</ul>
<h2>Release v0.12.10</h2>
<ul>
<li>fix <code>break</code> in <code>try</code>-<code>catch</code> query
(<code>label $x | try break $x catch .</code>)</li>
<li>fix path value validation for <code>getpath</code> function
(<code>path(getpath([[0]][0]))</code>)</li>
<li>fix path value validation for custom iterator functions</li>
<li>fix <code>walk</code> function with argument emitting multiple
values (<code>[1],{x:1} | walk(.,0)</code>)</li>
<li>fix <code>@csv</code>, <code>@TSV</code>, <code>@sh</code> to escape
the null character (<code>[&quot;\u0000&quot;] |
@csv,@TSV,@sh</code>)</li>
<li>improve performance of assignment operator (<code>=</code>),
update-assignment operator (<code>|=</code>),
<code>map_values</code>, <code>del</code>, <code>delpaths</code>,
<code>walk</code>, <code>ascii_downcase</code>, and
<code>ascii_upcase</code> functions</li>
</ul>
<h2>Release v0.12.9</h2>
<ul>
<li>fix <code>fromjson</code> to emit error on unexpected trailing
string</li>
<li>fix path analyzer on variable argument evaluation (<code>def f($x):
.y; path(f(.x))</code>)</li>
<li>fix raw input option <code>--raw-input</code> (<code>-R</code>) to
keep carriage returns and support 64KiB+ lines</li>
</ul>
<h2>Release v0.12.8</h2>
<ul>
<li>implement <code>gojq.Compare</code> for comparing values in custom
internal functions</li>
<li>implement <code>gojq.TypeOf</code> for obtaining type name of values
in custom internal functions</li>
<li>implement <code>gojq.Preview</code> for previewing values for error
messages of custom internal functions</li>
<li>fix query lexer to parse string literals as JSON to support
surrogate pairs (<code>&quot;\ud83d\ude04&quot;</code>)</li>
<li>fix priority bug of declared and builtin functions (<code>def empty:
.; null | select(.)</code>)</li>
<li>fix string indexing by index out of bounds to emit <code>null</code>
(<code>&quot;abc&quot; | .[3]</code>)</li>
<li>fix array binding pattern not to match against strings
(<code>&quot;abc&quot; as [$a] ?// $a | $a</code>)</li>
<li>fix <code>sub</code> and <code>gsub</code> functions to emit results
in the same order of jq</li>
<li>fix <code>fromjson</code> to keep integer precision
(<code>&quot;10000000000000000&quot; | fromjson + 1</code>)</li>
<li>fix stream option to raise error against incomplete JSON input</li>
<li>improve array updating index and string repetition to increase
limitations</li>
<li>improve <code>mktime</code> to support nanoseconds, just like
<code>gmtime</code> and <code>now</code></li>
<li>improve query lexer to report unterminated string literals</li>
<li>improve performance of string indexing and slicing by reducing
allocations</li>
<li>improve performance of object and array indexing, slicing, and
iteration,
by validating path values by comparing data addresses. This change
improves jq
compatibility of path value validation (<code>{} | {}.x = 0</code>,
<code>[0] | [.[]][] = 1</code>).
Also optimize constant indexing and slicing by specialized
instruction</li>
<li>improve performance of <code>add</code> (on array of strings),
<code>flatten</code>, <code>min</code>, <code>max</code>,
<code>sort</code>, <code>unique</code>, <code>join</code>,
<code>to_entries</code>, <code>from_entries</code>,
<code>indices</code>, <code>index</code>,
<code>rindex</code>, <code>startswith</code>, <code>endswith</code>,
<code>ltrimstr</code>, <code>rtrimstr</code>, <code>explode</code>,</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/itchyny/gojq/blob/main/CHANGELOG.md">github.com/itchyny/gojq's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/itchyny/gojq/compare/v0.12.12..v0.12.13">v0.12.13</a>
(2023-06-01)</h2>
<ul>
<li>implement <code>@urid</code> format string to decode URI values</li>
<li>fix functions returning arrays not to emit nil slices
(<code>flatten</code>, <code>group_by</code>,
<code>unique</code>, <code>unique_by</code>, <code>nth</code>,
<code>indices</code>, <code>path</code>, and
<code>modulemeta.deps</code>)</li>
</ul>
<h2><a
href="https://github.com/itchyny/gojq/compare/v0.12.11..v0.12.12">v0.12.12</a>
(2023-03-01)</h2>
<ul>
<li>fix assignment operator (<code>=</code>) with overlapping paths and
multiple values (<code>[[]] | .. = ..</code>)</li>
<li>fix crash on multiplying large numbers to an empty string
(<code>9223372036854775807 * &quot;&quot;</code>)</li>
<li>improve zsh completion file</li>
</ul>
<h2><a
href="https://github.com/itchyny/gojq/compare/v0.12.10..v0.12.11">v0.12.11</a>
(2022-12-24)</h2>
<ul>
<li>fix crash on assignment operator (<code>=</code>) with multiple
values (<code>. = (0,0)</code>)</li>
<li>fix <code>isnormal</code> and <code>normals</code> functions against
subnormal numbers</li>
</ul>
<h2><a
href="https://github.com/itchyny/gojq/compare/v0.12.9..v0.12.10">v0.12.10</a>
(2022-12-01)</h2>
<ul>
<li>fix <code>break</code> in <code>try</code>-<code>catch</code> query
(<code>label $x | try break $x catch .</code>)</li>
<li>fix path value validation for <code>getpath</code> function
(<code>path(getpath([[0]][0]))</code>)</li>
<li>fix path value validation for custom iterator functions</li>
<li>fix <code>walk</code> function with argument emitting multiple
values (<code>[1],{x:1} | walk(.,0)</code>)</li>
<li>fix <code>@csv</code>, <code>@TSV</code>, <code>@sh</code> to escape
the null character (<code>[&quot;\u0000&quot;] |
@csv,@TSV,@sh</code>)</li>
<li>improve performance of assignment operator (<code>=</code>),
update-assignment operator (<code>|=</code>),
<code>map_values</code>, <code>del</code>, <code>delpaths</code>,
<code>walk</code>, <code>ascii_downcase</code>, and
<code>ascii_upcase</code> functions</li>
</ul>
<h2><a
href="https://github.com/itchyny/gojq/compare/v0.12.8..v0.12.9">v0.12.9</a>
(2022-09-01)</h2>
<ul>
<li>fix <code>fromjson</code> to emit error on unexpected trailing
string</li>
<li>fix path analyzer on variable argument evaluation (<code>def f($x):
.y; path(f(.x))</code>)</li>
<li>fix raw input option <code>--raw-input</code> (<code>-R</code>) to
keep carriage returns and support 64KiB+ lines</li>
</ul>
<h2><a
href="https://github.com/itchyny/gojq/compare/v0.12.7..v0.12.8">v0.12.8</a>
(2022-06-01)</h2>
<ul>
<li>implement <code>gojq.Compare</code> for comparing values in custom
internal functions</li>
<li>implement <code>gojq.TypeOf</code> for obtaining type name of values
in custom internal functions</li>
<li>implement <code>gojq.Preview</code> for previewing values for error
messages of custom internal functions</li>
<li>fix query lexer to parse string literals as JSON to support
surrogate pairs (<code>&quot;\ud83d\ude04&quot;</code>)</li>
<li>fix priority bug of declared and builtin functions (<code>def empty:
.; null | select(.)</code>)</li>
<li>fix string indexing by index out of bounds to emit <code>null</code>
(<code>&quot;abc&quot; | .[3]</code>)</li>
<li>fix array binding pattern not to match against strings
(<code>&quot;abc&quot; as [$a] ?// $a | $a</code>)</li>
<li>fix <code>sub</code> and <code>gsub</code> functions to emit results
in the same order of jq</li>
<li>fix <code>fromjson</code> to keep integer precision
(<code>&quot;10000000000000000&quot; | fromjson + 1</code>)</li>
<li>fix stream option to raise error against incomplete JSON input</li>
<li>improve array updating index and string repetition to increase
limitations</li>
<li>improve <code>mktime</code> to support nanoseconds, just like
<code>gmtime</code> and <code>now</code></li>
<li>improve query lexer to report unterminated string literals</li>
<li>improve performance of string indexing and slicing by reducing
allocations</li>
<li>improve performance of object and array indexing, slicing, and
iteration,
by validating path values by comparing data addresses. This change
improves jq
compatibility of path value validation (<code>{} | {}.x = 0</code>,
<code>[0] | [.[]][] = 1</code>).
Also optimize constant indexing and slicing by specialized
instruction</li>
<li>improve performance of <code>add</code> (on array of strings),
<code>flatten</code>, <code>min</code>, <code>max</code>,
<code>sort</code>, <code>unique</code>, <code>join</code>,
<code>to_entries</code>, <code>from_entries</code>,
<code>indices</code>, <code>index</code>,
<code>rindex</code>, <code>startswith</code>, <code>endswith</code>,
<code>ltrimstr</code>, <code>rtrimstr</code>, <code>explode</code>,</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/itchyny/gojq/commit/c882861ed1727ac715edf14bbcd0786173a42349"><code>c882861</code></a>
bump up version to 0.12.13</li>
<li><a
href="https://github.com/itchyny/gojq/commit/c310d5de984b1f4f078e7904ff695d8cd497335f"><code>c310d5d</code></a>
update CHANGELOG.md for v0.12.13</li>
<li><a
href="https://github.com/itchyny/gojq/commit/8fb5cc346534f5f55fbfa0e573b55db243f0afe9"><code>8fb5cc3</code></a>
update dependencies</li>
<li><a
href="https://github.com/itchyny/gojq/commit/fb00b6650d3d9aa3d0ae9b36d9ff291c5af2c515"><code>fb00b66</code></a>
improve error message of indices, setpath, delpaths functions</li>
<li><a
href="https://github.com/itchyny/gojq/commit/e940c434c1d8cedbde02c62cef9eacace551f52a"><code>e940c43</code></a>
update GitHub action dependencies</li>
<li><a
href="https://github.com/itchyny/gojq/commit/2d97ddbab4e812b47f66a2fbfc8b476eadde88a7"><code>2d97ddb</code></a>
update jq links to the new jqlang organization</li>
<li><a
href="https://github.com/itchyny/gojq/commit/2a6cb00129c3050cf4e792a5471afa46f9a41f92"><code>2a6cb00</code></a>
improve error message of various functions</li>
<li><a
href="https://github.com/itchyny/gojq/commit/5e26bef307eaacec209ccc9ac1ee8c930e27357d"><code>5e26bef</code></a>
add a note on differences of supported functions missing in jq</li>
<li><a
href="https://github.com/itchyny/gojq/commit/96c4843a74198af45140b61528a895007e81862d"><code>96c4843</code></a>
fix functions returning arrays not to emit nil slices</li>
<li><a
href="https://github.com/itchyny/gojq/commit/4a681c8b0d3049b9a73e5d255664f82786284fad"><code>4a681c8</code></a>
improve .dockerignore</li>
<li>Additional commits viewable in <a
href="https://github.com/itchyny/gojq/compare/v0.12.7...v0.12.13">compare
view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/itchyny/gojq&package-manager=go_modules&previous-version=0.12.7&new-version=0.12.13)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Tobias Cudnik <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
No open projects
Status: 👋 Done
Development

Successfully merging this pull request may close these issues.

2 participants