feat: Entity Resolution Engine v1.1.0#9
Merged
Conversation
Sync changes from the upstream repo
- New ere.adapters.redis_client.RedisConnectionConfig: reads REDIS_HOST, REDIS_PORT, REDIS_DB, REDIS_PASSWORD, REDIS_TLS from env; creates the sync redis.Redis client via create_client() - entrypoints/app.py now delegates all Redis wiring to the adapter, removing inline env var reading and direct redis.Redis instantiation
- Remove unused pytest import from test_redis_client.py - Add REDIS_PASSWORD to entrypoints/app.py module docstring - Add two tests covering password=None (unset) and password passthrough - Also includes README update documenting REDIS_TLS
feat: add opt-in TLS support and extract Redis adapter
Align queue variable names with the ERSys naming convention. Affected: app.py, demo.py, .env.example, README, demo/README, test_app.py.
The fallback loop raised on the first failed host instead of continuing
to the next. The fallback also only covered the "redis" service name, not
"ersys-redis". After a successful fallback to localhost, the working host
is now written back into os.environ so that tests wiring main() via
os.environ.get("REDIS_HOST") resolve to a reachable address.
…-config feat(adapters): add opt-in TLS support for Redis and fix test infrastructure
chore: make Makefile compatible with macOS make tool
…sions chore: pin dependency versions to exact values
…index docs: add environment variable reference to configuration page
docs: reference ERSys installation guide, fix org URLs (ERS1-225)
chore: pre-release updates for v1.1.0
costezki
approved these changes
May 15, 2026
costezki
approved these changes
May 15, 2026
costezki
approved these changes
May 15, 2026
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.
Summary
Sync
meaningfy-ws/develop→OP-TED/developfor the v1.1.0 release of the Basic Entity Resolution Engine.What's new in 1.1.0
Added
REDIS_TLSenvironment variableREDIS_PASSWORDdocumented in configuration referenceChanged
REQUEST_QUEUE/RESPONSE_QUEUErenamed toERSYS_REQUEST_QUEUE/ERSYS_RESPONSE_QUEUE— update.envfiles accordinglymaketoolrdflibandpyyamlmoved from development to main dependencieslogging.exceptionused instead oflogging.errorfor exception logging with stack tracesFixed