graphrefly 0.1.0__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.github/workflows/release.yml +4 -4
- graphrefly-0.2.0/CHANGELOG.md +26 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/PKG-INFO +1 -1
- {graphrefly-0.1.0 → graphrefly-0.2.0}/pyproject.toml +4 -2
- graphrefly-0.1.0/website/src/content/docs/spec.md +0 -868
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.claude/skills/dev-dispatch/SKILL.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.claude/skills/parity/SKILL.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.claude/skills/qa/SKILL.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.gemini/skills/dev-dispatch/SKILL.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.gemini/skills/parity/SKILL.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.github/workflows/pages.yml +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.gitignore +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/.mise.toml +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/CLAUDE.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/CONTRIBUTING.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/GEMINI.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/LICENSE +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/README.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/DESIGN-ARCHIVE-INDEX.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/SESSION-access-control-actor-guard.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/SESSION-cross-repo-implementation-audit.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/SESSION-demo-test-strategy.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/SESSION-graphrefly-spec-design.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/SESSION-serialization-memory-footprint.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/SESSION-tier2-parity-nonlocal-forward-inner.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/archive/docs/SESSION-universal-reduction-layer.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/benchmarks/py-baseline.json +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/docs/ADAPTER-CONTRACT.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/docs/benchmark.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/docs/docs-guidance.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/docs/optimizations.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/docs/roadmap.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/docs/test-guidance.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/examples/README.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/examples/basic_counter.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/llms.txt +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/compat/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/compat/async_utils.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/compat/asyncio_runner.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/compat/trio_runner.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/clock.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/dynamic_node.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/guard.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/meta.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/node.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/protocol.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/runner.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/subgraph_locks.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/sugar.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/core/versioning.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/adapters.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/backoff.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/backpressure.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/checkpoint.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/composite.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/cron.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/data_structures.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/resilience.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/sources.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/tier1.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/extra/tier2.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/graph/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/graph/graph.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/integrations/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/integrations/fastapi.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/ai.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/cqrs.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/memory.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/messaging.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/orchestration.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/reactive_layout/__init__.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/reactive_layout/measurement_adapters.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/reactive_layout/reactive_block_layout.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/patterns/reactive_layout/reactive_layout.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/src/graphrefly/py.typed +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/bench_core.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/conftest.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_adapter_contract.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_adapters_ingest.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_backpressure.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_concurrency.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_core.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_dynamic_node.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_edge_cases.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_extra_composite.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_extra_data_structures.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_extra_resilience.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_extra_sources.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_extra_sources_http.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_extra_tier1.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_extra_tier2.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_fastapi.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_graph.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_guard.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_measurement_adapters.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_patterns_ai.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_patterns_cqrs.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_patterns_memory.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_patterns_messaging.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_patterns_orchestration.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_perf_smoke.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_protocol.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_reactive_block_layout.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_reactive_layout.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_regressions.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_runner.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_smoke.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_sugar.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/tests/test_versioning.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/.gitignore +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/README.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/astro.config.mjs +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/content.config.ts +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/package.json +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/pnpm-lock.yaml +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/public/llms.txt +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/py-api-sidebar.mjs +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/scripts/gen_api_docs.py +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/scripts/sync-docs.mjs +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/components/GraphreflyHero.astro +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/components/Header.astro +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/components/MobileMenuFooter.astro +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/components/PyodidePlayground.tsx +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/components/Sidebar.astro +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/components/SiteTitle.astro +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/BackoffPreset.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/BackoffStrategy.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/CheckpointAdapter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/CircuitBreaker.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/CircuitOpenError.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/DeferWhen.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/DictCheckpointAdapter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/DistillBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/EmitStrategy.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/Extraction.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/FileCheckpointAdapter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/HttpBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/JitterMode.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/MemoryCheckpointAdapter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/Message.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/MessageType.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/Messages.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/NodeActions.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/NodeFn.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/NodeImpl.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/NodeStatus.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/PipeOperator.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/PubSubHub.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/ReactiveIndexBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/ReactiveListBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/ReactiveLogBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/ReactiveMapBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/SqliteCheckpointAdapter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/SubscribeHints.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/TokenBucket.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/VerifiableBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/Versioned.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/WithBreakerBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/WithStatusBundle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/audit.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/batch.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/buffer.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/buffer_count.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/buffer_time.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/cached.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/checkpoint_node_value.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/circuit_breaker.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/combine.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/concat.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/concat_map.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/constant.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/debounce.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/decorrelated_jitter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/delay.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/derived.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/dispatch_messages.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/distill.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/distinct_until_changed.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/effect.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/element_at.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/emit_with_batch.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/empty.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/exhaust_map.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/exponential.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/fibonacci.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/filter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/find.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/first.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/first_value_from.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/flat_map.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/for_each.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_any.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_async_iter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_awaitable.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_cron.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_event_emitter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_fs_watch.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_git_hook.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_http.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_iter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_mcp.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_timer.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_webhook.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/from_websocket.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/gate.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/index.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/interval.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/is_batching.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/is_phase2_message.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/is_terminal_message.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/last.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/linear.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/log_slice.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/map.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/merge.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/message_tier.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/never.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/node.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/of.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/operator.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/pairwise.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/partition_for_batch.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/pausable.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/pipe.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/producer.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/propagates_to_meta.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/pubsub.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/race.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/rate_limiter.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/reactive_index.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/reactive_list.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/reactive_log.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/reactive_map.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/reduce.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/repeat.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/replay.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/rescue.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/resolve_backoff_preset.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/restore_graph_checkpoint.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/retry.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/sample.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/save_graph_checkpoint.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/scan.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/share.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/skip.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/start_with.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/state.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/subscribe.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/switch_map.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/take.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/take_until.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/take_while.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/tap.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/throttle.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/throw_error.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/timeout.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/to_array.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/to_list.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/to_sse.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/to_websocket.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/token_bucket.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/token_tracker.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/verifiable.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/window.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/window_count.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/window_time.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/with_breaker.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/with_latest_from.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/with_max_attempts.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/with_status.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/api/zip.md +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/index.mdx +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content/docs/lab/python.mdx +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/content.config.ts +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/env.d.ts +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/src/styles/custom.css +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/theme-prototypes.html +0 -0
- {graphrefly-0.1.0 → graphrefly-0.2.0}/website/tsconfig.json +0 -0
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Versions from conventional commits, GitHub releases + PyPI publish on main.
|
|
2
|
-
#
|
|
2
|
+
# PyPI: add a Trusted Publisher (GitHub) for this repo — workflow file must match PyPI
|
|
3
|
+
# (this file: release.yml). Leave PyPI "Environment name" empty unless you add a GitHub
|
|
4
|
+
# Environment (e.g. "pypi") to this job and enter the same name on PyPI.
|
|
3
5
|
# python-semantic-release infers the last version from git tags; tag the current release line first
|
|
4
6
|
# (e.g. v0.1.0) if it is not already tagged, so bumps continue from the right baseline.
|
|
5
7
|
# Ensure GitHub Actions has workflow "Read and write" permissions (repo Settings → Actions → General).
|
|
@@ -51,8 +53,6 @@ jobs:
|
|
|
51
53
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
52
54
|
run: uv run semantic-release version
|
|
53
55
|
|
|
54
|
-
- name: Publish to PyPI
|
|
56
|
+
- name: Publish to PyPI (Trusted Publishing / OIDC)
|
|
55
57
|
if: steps.psr.outputs.released == 'true'
|
|
56
|
-
env:
|
|
57
|
-
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
58
58
|
run: uv publish
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# CHANGELOG
|
|
2
|
+
|
|
3
|
+
<!-- version list -->
|
|
4
|
+
|
|
5
|
+
## v0.2.0 (2026-04-04)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- Fix release version
|
|
10
|
+
([`2fb85ed`](https://github.com/graphrefly/graphrefly-py/commit/2fb85edb0b106c7253235f072adbe23f540ffa93))
|
|
11
|
+
|
|
12
|
+
- Use proper zero version
|
|
13
|
+
([`141805b`](https://github.com/graphrefly/graphrefly-py/commit/141805ba34d88c0a24527735f011f44c806915f2))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## v1.1.0 (2026-04-04)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- Update release
|
|
21
|
+
([`af1f04a`](https://github.com/graphrefly/graphrefly-py/commit/af1f04a0a5c984e8c70e1a3a1a30401fa6ba7ec9))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## v1.0.0 (2026-04-04)
|
|
25
|
+
|
|
26
|
+
- Initial Release
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: graphrefly
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Reactive graph protocol for human + LLM co-operation. Composable nodes, glitch-free diamond resolution, two-phase push, durable streaming. Zero dependencies.
|
|
5
5
|
Project-URL: Homepage, https://py.graphrefly.dev
|
|
6
6
|
Project-URL: Repository, https://github.com/graphrefly/graphrefly-py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "graphrefly"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.0"
|
|
4
4
|
description = "Reactive graph protocol for human + LLM co-operation. Composable nodes, glitch-free diamond resolution, two-phase push, durable streaming. Zero dependencies."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -54,7 +54,7 @@ dev = [
|
|
|
54
54
|
"pytest>=8.0",
|
|
55
55
|
"pytest-asyncio>=0.24",
|
|
56
56
|
"pytest-benchmark>=5.0",
|
|
57
|
-
"python-semantic-release>=10.
|
|
57
|
+
"python-semantic-release>=10.5.3,<11",
|
|
58
58
|
"ruff>=0.9",
|
|
59
59
|
"mypy>=1.14",
|
|
60
60
|
"croniter>=2.0",
|
|
@@ -66,6 +66,8 @@ dev = [
|
|
|
66
66
|
version_toml = ["pyproject.toml:project.version"]
|
|
67
67
|
build_command = "uv build"
|
|
68
68
|
commit_message = "chore(release): {version} [skip ci]\n\nAutomatically generated by python-semantic-release"
|
|
69
|
+
# TODO: Remove this once we have a proper release process.
|
|
70
|
+
allow_zero_version = true
|
|
69
71
|
|
|
70
72
|
[tool.ruff]
|
|
71
73
|
line-length = 100
|