pyjev 0.1.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.
Files changed (103) hide show
  1. pyjev-0.1.0/.codecrate.toml +23 -0
  2. pyjev-0.1.0/.github/workflows/codecov.yml +20 -0
  3. pyjev-0.1.0/.github/workflows/pre-commit.yml +31 -0
  4. pyjev-0.1.0/.github/workflows/python-publish.yml +39 -0
  5. pyjev-0.1.0/.github/workflows/tests.yml +31 -0
  6. pyjev-0.1.0/.gitignore +220 -0
  7. pyjev-0.1.0/.ledger/ledger.toml +24 -0
  8. pyjev-0.1.0/.ledger/releaseledger/.ledger-project.toml +6 -0
  9. pyjev-0.1.0/.ledger/releaseledger/config.toml +57 -0
  10. pyjev-0.1.0/.ledger/releaseledger/data/.ledger-project.toml +6 -0
  11. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/events/events.jsonl +6 -0
  12. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/audit/commit-audit.yaml +452 -0
  13. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0001.md +33 -0
  14. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0002.md +34 -0
  15. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0003.md +34 -0
  16. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0004.md +30 -0
  17. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0005.md +28 -0
  18. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0006.md +31 -0
  19. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0007.md +32 -0
  20. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0008.md +33 -0
  21. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0009.md +28 -0
  22. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0010.md +38 -0
  23. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/entries/entry-0011.md +36 -0
  24. pyjev-0.1.0/.ledger/releaseledger/data/ledgers/main/releases/v0.1.0/release.md +27 -0
  25. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/audit-decisions.yaml +224 -0
  26. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/audit.yaml +292 -0
  27. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/entries.yaml +206 -0
  28. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/40e9e15.patch +349 -0
  29. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/50bf96b.patch +899 -0
  30. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/5c07c84.patch +1800 -0
  31. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/7750057.patch +39 -0
  32. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/8177c9c.patch +2906 -0
  33. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/8a0ae0f.patch +222 -0
  34. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/a6a09dc.patch +677 -0
  35. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/aa852b7.patch +1268 -0
  36. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/b0d59e0.patch +296 -0
  37. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/cb50f89.patch +1805 -0
  38. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/d17a50b.patch +464 -0
  39. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/evidence/manifest.json +242 -0
  40. pyjev-0.1.0/.ledger/releaseledger/work/v0.1.0/range.json +13 -0
  41. pyjev-0.1.0/.ledger/taskledger/.ledger-project.toml +6 -0
  42. pyjev-0.1.0/.ledger/taskledger/config.toml +7 -0
  43. pyjev-0.1.0/.pre-commit-config.yaml +66 -0
  44. pyjev-0.1.0/LICENSE +201 -0
  45. pyjev-0.1.0/PKG-INFO +113 -0
  46. pyjev-0.1.0/README.md +73 -0
  47. pyjev-0.1.0/docs/Makefile +32 -0
  48. pyjev-0.1.0/docs/api/client.md +6 -0
  49. pyjev-0.1.0/docs/api/index.md +11 -0
  50. pyjev-0.1.0/docs/api/results.md +6 -0
  51. pyjev-0.1.0/docs/authentication.md +30 -0
  52. pyjev-0.1.0/docs/changelog.md +29 -0
  53. pyjev-0.1.0/docs/cli.md +71 -0
  54. pyjev-0.1.0/docs/comparisons.md +19 -0
  55. pyjev-0.1.0/docs/concepts.md +58 -0
  56. pyjev-0.1.0/docs/conf.py +53 -0
  57. pyjev-0.1.0/docs/confidence.md +35 -0
  58. pyjev-0.1.0/docs/debugging.md +26 -0
  59. pyjev-0.1.0/docs/development.md +27 -0
  60. pyjev-0.1.0/docs/examples.md +27 -0
  61. pyjev-0.1.0/docs/getting-started.md +92 -0
  62. pyjev-0.1.0/docs/index.md +68 -0
  63. pyjev-0.1.0/docs/make.bat +113 -0
  64. pyjev-0.1.0/docs/make.py +58 -0
  65. pyjev-0.1.0/docs/named-decisions.md +82 -0
  66. pyjev-0.1.0/docs/python-api.md +83 -0
  67. pyjev-0.1.0/docs/requirements.txt +5 -0
  68. pyjev-0.1.0/examples/.pyjev.toml +36 -0
  69. pyjev-0.1.0/examples/README.md +66 -0
  70. pyjev-0.1.0/examples/connect_four.py +1039 -0
  71. pyjev-0.1.0/examples/emergency_snack.py +87 -0
  72. pyjev-0.1.0/examples/haunted_ci.py +86 -0
  73. pyjev-0.1.0/examples/meeting_escape.sh +18 -0
  74. pyjev-0.1.0/pyjev/__init__.py +47 -0
  75. pyjev-0.1.0/pyjev/__main__.py +3 -0
  76. pyjev-0.1.0/pyjev/_version.py +24 -0
  77. pyjev-0.1.0/pyjev/cli.py +614 -0
  78. pyjev-0.1.0/pyjev/client.py +401 -0
  79. pyjev-0.1.0/pyjev/compile.py +151 -0
  80. pyjev-0.1.0/pyjev/credentials.py +164 -0
  81. pyjev-0.1.0/pyjev/decisions.py +312 -0
  82. pyjev-0.1.0/pyjev/py.typed +0 -0
  83. pyjev-0.1.0/pyjev/results.py +80 -0
  84. pyjev-0.1.0/pyjev.egg-info/PKG-INFO +113 -0
  85. pyjev-0.1.0/pyjev.egg-info/SOURCES.txt +101 -0
  86. pyjev-0.1.0/pyjev.egg-info/dependency_links.txt +1 -0
  87. pyjev-0.1.0/pyjev.egg-info/entry_points.txt +2 -0
  88. pyjev-0.1.0/pyjev.egg-info/requires.txt +17 -0
  89. pyjev-0.1.0/pyjev.egg-info/scm_file_list.json +96 -0
  90. pyjev-0.1.0/pyjev.egg-info/scm_version.json +8 -0
  91. pyjev-0.1.0/pyjev.egg-info/top_level.txt +1 -0
  92. pyjev-0.1.0/pyproject.toml +82 -0
  93. pyjev-0.1.0/setup.cfg +4 -0
  94. pyjev-0.1.0/tests/test_async.py +67 -0
  95. pyjev-0.1.0/tests/test_bundles.py +146 -0
  96. pyjev-0.1.0/tests/test_cli.py +171 -0
  97. pyjev-0.1.0/tests/test_client.py +178 -0
  98. pyjev-0.1.0/tests/test_compile.py +54 -0
  99. pyjev-0.1.0/tests/test_connect_four.py +394 -0
  100. pyjev-0.1.0/tests/test_credentials.py +146 -0
  101. pyjev-0.1.0/tests/test_decisions.py +135 -0
  102. pyjev-0.1.0/tests/test_docs.py +28 -0
  103. pyjev-0.1.0/tests/test_release_contract.py +168 -0
@@ -0,0 +1,23 @@
1
+ [codecrate]
2
+ output = "context_pyjev.md"
3
+ keep_docstrings = true
4
+ dedupe = true
5
+ respect_gitignore = true
6
+ # exclude = ["*/.venv/*", "integration_tests", "examples", "docs"]
7
+ gitignore_allow = ["pyjev/_version.py"]
8
+ exclude = [
9
+ "*/.venv/*",
10
+ "todo.md",
11
+ "run.html",
12
+ "pi-session-*.html",
13
+ "*-session-*.html",
14
+ ".pytest_cache/*",
15
+ ".ruff_cache/*",
16
+ ".mypy_cache/*",
17
+ ]
18
+ include = ["**/*.py", "**/*.toml", "**/*.rst", "**/*.md", "**/*.typed", "**/*.js", "**/*.css", "**/*.html", "**/*.conf"]
19
+ split_max_chars = 0
20
+ manifest = false
21
+ layout = "full"
22
+ profile = "portable-agent"
23
+ emit_standalone_unpacker = true
@@ -0,0 +1,20 @@
1
+ name: CodeCov
2
+ on: push
3
+ jobs:
4
+ run:
5
+ runs-on: ubuntu-latest
6
+ env:
7
+ OS: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ - name: Setup Python
11
+ uses: actions/setup-python@master
12
+ - name: 'generate report'
13
+ run: |
14
+ pip install coverage click pytest pytest-cov
15
+ pip install -e .
16
+ pytest --cov --cov-branch --cov-report=xml
17
+ - name: Upload coverage to Codecov
18
+ uses: codecov/codecov-action@v5
19
+ with:
20
+ token: ${{ secrets.CODECOV_TOKEN }} # required
@@ -0,0 +1,31 @@
1
+ name: pre-commit
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+
7
+ jobs:
8
+ pre-commit:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+
14
+ - uses: actions/setup-python@v5
15
+ with:
16
+ python-version: "3.13"
17
+
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: "20"
21
+
22
+ - name: Install Python tools
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ python -m pip install "ruff==0.16.0"
26
+
27
+ - name: Install Node tools
28
+ run: |
29
+ npm install -g prettier@2.7.1 @prettier/plugin-xml@2.2.0 eslint
30
+
31
+ - uses: pre-commit/action@v3.0.1
@@ -0,0 +1,39 @@
1
+ # This workflow will upload a Python Package using Twine when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3
+
4
+ # This workflow uses actions that are not certified by GitHub.
5
+ # They are provided by a third-party and are governed by
6
+ # separate terms of service, privacy policy, and support
7
+ # documentation.
8
+
9
+ name: Upload Python Package
10
+
11
+ on:
12
+ release:
13
+ types: [published]
14
+
15
+ permissions:
16
+ contents: read
17
+
18
+ jobs:
19
+ deploy:
20
+
21
+ runs-on: ubuntu-latest
22
+
23
+ steps:
24
+ - uses: actions/checkout@v3
25
+ - name: Set up Python
26
+ uses: actions/setup-python@v3
27
+ with:
28
+ python-version: '3.x'
29
+ - name: Install dependencies
30
+ run: |
31
+ python -m pip install --upgrade pip
32
+ pip install build
33
+ - name: Build package
34
+ run: python -m build
35
+ - name: Publish package
36
+ uses: pypa/gh-action-pypi-publish@v1.13.0
37
+ with:
38
+ user: __token__
39
+ password: ${{ secrets.PYPI_API_TOKEN }}
@@ -0,0 +1,31 @@
1
+ name: Run tests
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ run:
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest, windows-latest, macos-latest]
11
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Setup Python
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: ${{ matrix.python-version }}
18
+ - name: Install packages
19
+ run: python -m pip install -e ".[dev,docs]"
20
+ - name: Compile sources
21
+ run: python -m compileall pyjev examples docs
22
+ - name: Run tests
23
+ run: python -m pytest
24
+ - name: Lint
25
+ run: ruff check .
26
+ - name: Build documentation
27
+ run: python docs/make.py html
28
+ - name: Build package
29
+ run: python -m build
30
+ - name: Check distributions
31
+ run: twine check dist/*
pyjev-0.1.0/.gitignore ADDED
@@ -0,0 +1,220 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ # Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ # poetry.lock
109
+ # poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ # pdm.lock
116
+ # pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ # pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # Redis
135
+ *.rdb
136
+ *.aof
137
+ *.pid
138
+
139
+ # RabbitMQ
140
+ mnesia/
141
+ rabbitmq/
142
+ rabbitmq-data/
143
+
144
+ # ActiveMQ
145
+ activemq-data/
146
+
147
+ # SageMath parsed files
148
+ *.sage.py
149
+
150
+ # Environments
151
+ .env
152
+ .envrc
153
+ .venv
154
+ env/
155
+ venv/
156
+ ENV/
157
+ env.bak/
158
+ venv.bak/
159
+
160
+ # Spyder project settings
161
+ .spyderproject
162
+ .spyproject
163
+
164
+ # Rope project settings
165
+ .ropeproject
166
+
167
+ # mkdocs documentation
168
+ /site
169
+
170
+ # mypy
171
+ .mypy_cache/
172
+ .dmypy.json
173
+ dmypy.json
174
+
175
+ # Pyre type checker
176
+ .pyre/
177
+
178
+ # pytype static type analyzer
179
+ .pytype/
180
+
181
+ # Cython debug symbols
182
+ cython_debug/
183
+
184
+ # PyCharm
185
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
186
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
187
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
188
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
189
+ # .idea/
190
+
191
+ # Abstra
192
+ # Abstra is an AI-powered process automation framework.
193
+ # Ignore directories containing user credentials, local state, and settings.
194
+ # Learn more at https://abstra.io/docs
195
+ .abstra/
196
+
197
+ # Visual Studio Code
198
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
199
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
200
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
201
+ # you could uncomment the following to ignore the entire vscode folder
202
+ # .vscode/
203
+ # Temporary file for partial code execution
204
+ tempCodeRunnerFile.py
205
+
206
+ # Ruff stuff:
207
+ .ruff_cache/
208
+
209
+ # PyPI configuration file
210
+ .pypirc
211
+
212
+ # Marimo
213
+ marimo/_static/
214
+ marimo/_lsp/
215
+ __marimo__/
216
+
217
+ # Streamlit
218
+ .streamlit/secrets.toml
219
+ pyjev/_version.py
220
+ context_pyjev*.*
@@ -0,0 +1,24 @@
1
+ schema_version = 3
2
+
3
+ [project]
4
+ uuid = "a082b190-008a-45ca-b1cc-afa475214a3b"
5
+ name = "pyjev"
6
+
7
+ [ledgers.taskledger.mounts.data]
8
+ storage = "external"
9
+ root = "../ledger"
10
+
11
+ [ledgers.taskledger.mounts.runtime]
12
+ storage = "user-data"
13
+
14
+ [ledgers.taskledger.mounts.logs]
15
+ storage = "user-data"
16
+
17
+ [ledgers.taskledger.mounts.indexes]
18
+ storage = "cache"
19
+
20
+ [ledgers.releaseledger.mounts.data]
21
+ storage = "project"
22
+
23
+ [ledgers.releaseledger.mounts.indexes]
24
+ storage = "cache"
@@ -0,0 +1,6 @@
1
+ schema_version = 1
2
+ layout_version = 3
3
+ project_uuid = "a082b190-008a-45ca-b1cc-afa475214a3b"
4
+ tool = "releaseledger"
5
+ mount = "config"
6
+ storage = "project"
@@ -0,0 +1,57 @@
1
+ config_version = 2
2
+ # Branch-scoped release state. This block is safe to commit.
3
+ ledger_ref = "main"
4
+ ledger_parent_ref = ""
5
+ ledger_branch_guard = "off"
6
+ # Cross-ledger identity. Local record IDs stay unchanged.
7
+
8
+ [ledger]
9
+ code = "rl"
10
+ # Release defaults.
11
+
12
+ [release]
13
+ default_changelog = "CHANGELOG.md"
14
+ default_status = "planned"
15
+ allow_dirty_worktree = true
16
+ # Changelog build defaults.
17
+
18
+ [changelog]
19
+ output = "docs/changelog.md"
20
+ header = ""
21
+ body = """## {% if release.date %}[{{ release.version }}] - {{ release.date }}{% else %}[{{ release.version }}] - Unreleased{% endif %}
22
+
23
+ {% for group in groups %}
24
+ ### {{ group.title }}
25
+ {% for entry in group.entries %}
26
+ - {% if entry.breaking %}**BREAKING:** {% endif %}{{ entry.summary }}
27
+ {% endfor %}
28
+
29
+ {% endfor %}
30
+ """
31
+ footer = "<!-- generated by releaseledger -->"
32
+ trim = true
33
+ render_always = false
34
+ postprocessors = []
35
+ standard = ""
36
+ group_mode = "extended"
37
+ link_references = false
38
+ repository_url = ""
39
+ tag_prefix = "v"
40
+ compare_url_template = ""
41
+ release_url_template = ""
42
+ preamble = ""
43
+ semver = false
44
+ unreleased = true
45
+ # Git-first release evidence.
46
+
47
+ [git]
48
+ enabled = true
49
+ tag_creation = "local"
50
+ default_base = "previous_release_tag"
51
+ default_head = "HEAD"
52
+ previous_tag_patterns = ["v{version}", "{version}"]
53
+ include_merges = "nontrivial"
54
+ require_clean_worktree = false
55
+ max_commits = 500
56
+ max_diff_chars_per_commit = 12000
57
+ candidate_status = "draft"
@@ -0,0 +1,6 @@
1
+ schema_version = 1
2
+ layout_version = 3
3
+ project_uuid = "a082b190-008a-45ca-b1cc-afa475214a3b"
4
+ tool = "releaseledger"
5
+ mount = "data"
6
+ storage = "project"
@@ -0,0 +1,6 @@
1
+ {"data":{"status":"planned"},"event":"release.created","event_id":"event-0001","record_revisions":{"release:v0.1.0":1},"release_version":"v0.1.0","schema_version":2}
2
+ {"data":{"fields":["git_base_ref","git_base_sha","git_commit_count","git_head_ref","git_head_sha","git_range"]},"event":"release.updated","event_id":"event-0002","record_revisions":{"release:v0.1.0":2},"release_version":"v0.1.0","schema_version":2}
3
+ {"data":{"row_count":11},"event":"audit.created","event_id":"event-0003","record_revisions":{"commit_audit_sheet":1},"release_version":"v0.1.0","schema_version":2}
4
+ {"data":{"updated_rows":11},"event":"audit.updated","event_id":"event-0004","record_revisions":{"commit_audit_sheet":2},"release_version":"v0.1.0","schema_version":2}
5
+ {"data":{"entry_ids":["entry-0001","entry-0002","entry-0003","entry-0004","entry-0005","entry-0006","entry-0007","entry-0008","entry-0009","entry-0010","entry-0011"],"synced_audit_rows":11},"event":"entry.batch_added","event_id":"event-0005","record_revisions":{"commit_audit_sheet":3,"entry:v0.1.0/entry-0001":1,"entry:v0.1.0/entry-0002":1,"entry:v0.1.0/entry-0003":1,"entry:v0.1.0/entry-0004":1,"entry:v0.1.0/entry-0005":1,"entry:v0.1.0/entry-0006":1,"entry:v0.1.0/entry-0007":1,"entry:v0.1.0/entry-0008":1,"entry:v0.1.0/entry-0009":1,"entry:v0.1.0/entry-0010":1,"entry:v0.1.0/entry-0011":1,"release:v0.1.0":3},"release_version":"v0.1.0","schema_version":2}
6
+ {"data":{"released_at":"2026-09-20"},"event":"release.finalized","event_id":"event-0006","record_revisions":{"release:v0.1.0":4},"release_version":"v0.1.0","schema_version":2}