fix(deps): pin rebar3_kura to v0.15.4 (fixes nightly #172)#173
Open
Taure wants to merge 1 commit into
Open
Conversation
The `{branch, "main"}` pin is a moving target. rebar3_kura bundles its
own kura via its dep declaration; when main pointed at a commit pulling
an older kura (v2.6.0), that kura's `kura_dialect` behaviour (which
requires `delete/3`) shadowed asobi's kura 2.17.1 `kura_dialect_pg`
(which implements `delete/2`), failing the dep compile with
`undefined callback function delete/3 (behaviour 'kura_dialect')`.
Regular CI stayed green off cached _build; the nightly does a fresh
fetch, so it hit the shadow (nightly #172, 2026-07-15).
v0.15.4 (latest tag) declares `{kura, "~> 2.17"}`, matching asobi's own
kura line, so no foreign dialect behaviour shadows the compile. Verified
with a clean-fetch `rebar3 compile` and `rebar3 as test compile` (both
green) after wiping the plugin + kura from _build.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Nightly #172 (2026-07-15) failed at dependency compile, not in the property tests:
```
===> Compiling _build/default/lib/kura/src/kura_dialect_pg.erl failed
11 │ -behaviour(kura_dialect).
│ ╰── undefined callback function delete/3 (behaviour 'kura_dialect')
```
rebar.configpinnedrebar3_kurato{branch, "main"}— a moving target. rebar3_kura bundles its own kura via its dep declaration. When main pointed at a commit pulling an older kura (v2.6.0), that kura'skura_dialectbehaviour requiresdelete/3and shadowed asobi's kura 2.17.1kura_dialect_pg(which implementsdelete/2), breaking the compile. Regular CI stayed green off cached_build; the nightly's fresh fetch hit it.Fix
Pin to the latest tag v0.15.4, which declares
{kura, "~> 2.17"}— the same kura line asobi uses, so no foreign dialect behaviour shadows the compile.Verification
Wiped
rebar3_kura+kura+kura_postgresfrom_build(mimicking the nightly's clean fetch), then:rebar3 compile— greenrebar3 as test compile— green (the exact path that broke)Closes #172.