functualize-lambda 0.1.0__tar.gz → 0.1.2__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.
@@ -11,13 +11,17 @@ build/
11
11
 
12
12
  # Agents
13
13
  .spec/archive/
14
- .spec/features/
15
14
  .spec/scrutiny-reports/
15
+ .spec/proposals/
16
+ .spec/plans/
16
17
  .spec/.agentic-coding
17
18
  .spec/STATE.md
18
- .spec/PROJECT.md
19
- .spec/REQUIREMENTS.md
20
- .spec/ROADMAP.md
19
+ # A one-hour spec-gate bypass token, not a repository artifact. The *ledger* of
20
+ # uses (.spec/exemptions.log) is committed and is the real mitigation; the token
21
+ # itself is per-session, and committing it would hand everyone else a live
22
+ # bypass. Ignored because the documented escape hatch otherwise sits in
23
+ # `git status` waiting to be added by accident.
24
+ .spec/EXEMPT
21
25
  .opencode/
22
26
 
23
27
 
@@ -86,6 +90,15 @@ site/
86
90
  .sidecar-base
87
91
  .td-root
88
92
  .functualize/
93
+ # ...except the committed example plugin, which the blanket rule above swallowed.
94
+ # Git will not descend into an excluded directory, so every level must be un-excluded
95
+ # in turn, and each level re-ignores its own contents so that only the plugin sources
96
+ # become trackable — never the cache, state or lock files a run drops beside them.
97
+ !examples/plugins/file_based_plugin/.functualize/
98
+ examples/plugins/file_based_plugin/.functualize/*
99
+ !examples/plugins/file_based_plugin/.functualize/plugins/
100
+ examples/plugins/file_based_plugin/.functualize/plugins/*
101
+ !examples/plugins/file_based_plugin/.functualize/plugins/*.py
89
102
  .import_linter_cache/
90
103
  .mypy_cache/
91
104
  .pytest_cache/
@@ -94,8 +107,7 @@ site/
94
107
  # OmO / OpenCode agent run-continuation scratch state
95
108
  .omo/
96
109
  .mcp.json
97
- .agentsroom/handoff-transcript-*.txt
98
- .agentsroom/handoff-summary-*.md
99
110
 
100
111
  # Internal pre-release audit reports (contain session IDs / local infra notes)
101
112
  .release/
113
+ .worktrees/
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.5
2
2
  Name: functualize-lambda
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: AWS Lambda adapter plugin for functualize - supports fat and thin Lambda deployment patterns
5
5
  Author-email: Mohammad Hakim Adiprasetya <viltohmyst@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "functualize-lambda"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  description = "AWS Lambda adapter plugin for functualize - supports fat and thin Lambda deployment patterns"
5
5
  readme = "README.md"
6
6
  license = "MIT"