Release 0.10.3a1 - #49
Open
github-actions[bot] wants to merge 7 commits into
Open
github-actions[bot] wants to merge 7 commits into
github-actions[bot] wants to merge 7 commits into
Conversation
…rdcoded pyproject value (#46) pyproject.toml pinned `version = "0.1.1a1"` under the hatchling backend, so every build shipped that exact string no matter how far version.py had been bumped by the release automation. Every dev-merge alpha publish since April has failed on PyPI with 400 File already exists because the wheel/sdist always claimed 0.1.1a1. Switch to the setuptools backend with dynamic version sourced from nebulento.version.__version__, matching the working palavreado/jurebes/linha-fina setup, so alpha publishes track the real bumped version again.
…on (#48) ovos-workshop's register_entity_file() emits entity registration names as <skill_id>:<entity>_<md5hex32>. Nebulento's own slot-tagging contract (IntentContainer.match_fuzzy) requires the registered entity name to be the bare token that appears literally as {token} in the skill's own intent templates, so a skill_id-prefixed and/or hash-suffixed name can never satisfy that check - the entity value is found in the sentence but never tagged into match_data, and detach_entity/deregister can never find the stored key to remove it either. Same wildcard/orphaned-slot bug class as ovos-padatious-pipeline-plugin#95, ported and adapted to nebulento's own bare-token lookup contract (which also strips the skill_id prefix, not just the hash, since templates never carry it). > 🤖 Auto-generated by Claude Fable 5 (claude-fable-5) via Claude Code — NOT human-reviewed. Verify before acting.
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.
Human review requested!