- Add `show-arguments` recipe documenting all version update commands - Add `complete-update-interactive` recipe for manual confirmations - Maintain `complete-update` as automatic mode (no prompts) - Update `update-help` to reference new recipes and modes - Document 7-step workflow and step-by-step differences Changes: - complete-update: Automatic mode (recommended for CI/CD) - complete-update-interactive: Interactive mode (with confirmations) - show-arguments: Complete documentation of all commands and modes - Both modes share same 7-step workflow with different behavior in Step 4
322 lines
13 KiB
Plaintext
322 lines
13 KiB
Plaintext
#!/usr/bin/env nu
|
|
# Nushell 0.108.0 Pattern Validation Results
|
|
# Structured output as requested
|
|
|
|
{
|
|
validation_date: "2025-10-18"
|
|
current_version: "0.107.1"
|
|
target_version: "0.108.0"
|
|
document: ".claude/best_nushell_code.md"
|
|
|
|
patterns_validated: [
|
|
{
|
|
pattern_number: 1
|
|
pattern_name: "Command Template Pattern"
|
|
status: "valid"
|
|
affected_by: "Documentation error in syntax (Rule 16)"
|
|
recommendation: "Pattern is valid but document shows INCORRECT syntax. Use ': input_type -> return_type' not ': return_type'"
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 2
|
|
pattern_name: "Pipeline Stage Pattern"
|
|
status: "valid"
|
|
affected_by: "None"
|
|
recommendation: "No changes needed. Pattern works correctly with proper input/output type annotations."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 3
|
|
pattern_name: "Error Context Pattern"
|
|
status: "valid"
|
|
affected_by: "Enhanced error propagation in streams (0.108.0 improvement)"
|
|
recommendation: "Pattern enhanced in 0.108.0 with better stream error handling. Try-catch with {|e|} works correctly."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 4
|
|
pattern_name: "Data Validation Pattern"
|
|
status: "valid"
|
|
affected_by: "None"
|
|
recommendation: "Column validation and type checking work correctly. No changes needed."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 5
|
|
pattern_name: "Table Transformation Pattern"
|
|
status: "valid"
|
|
affected_by: "None"
|
|
recommendation: "Table operations (insert, update, group-by, select) remain stable. No changes needed."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 6
|
|
pattern_name: "Schema Definition Pattern"
|
|
status: "valid"
|
|
affected_by: "None"
|
|
recommendation: "Const schema definitions and validation work as documented. No changes needed."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 7
|
|
pattern_name: "Self-Documenting Code Pattern"
|
|
status: "valid"
|
|
affected_by: "None"
|
|
recommendation: "Inline documentation comments are conventions and remain valid. No changes needed."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 8
|
|
pattern_name: "Testable Unit Pattern"
|
|
status: "valid"
|
|
affected_by: "None"
|
|
recommendation: "Test examples and unit test functions work correctly. No changes needed."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
{
|
|
pattern_number: 9
|
|
pattern_name: "Incremental Computation Pattern"
|
|
status: "valid"
|
|
affected_by: "None"
|
|
recommendation: "Incremental processing with intermediate output works as expected. No changes needed."
|
|
test_result: "passed"
|
|
breaking_in_108: false
|
|
}
|
|
]
|
|
|
|
new_patterns: [
|
|
{
|
|
pattern_name: "Stream Error Handling Pattern"
|
|
version_introduced: "0.108.0"
|
|
description: "Enhanced error propagation in streams - errors now properly propagate when collected"
|
|
example: "
|
|
# Errors in streams now raise when collected
|
|
def process-stream []: nothing -> nothing {
|
|
[1 2 3]
|
|
| each {|x|
|
|
if $x == 2 { error make {msg: 'error at 2'} }
|
|
$x
|
|
}
|
|
| collect # This will now raise the error
|
|
}
|
|
"
|
|
benefit: "Better error visibility and debugging in pipeline operations"
|
|
}
|
|
{
|
|
pattern_name: "Type Detection Pattern"
|
|
version_introduced: "0.108.0"
|
|
description: "Use 'detect type' instead of deprecated 'into value' for table cell type detection"
|
|
example: "
|
|
# Old (deprecated):
|
|
# $table | into value
|
|
|
|
# New (0.108.0):
|
|
$table | update cells {detect type}
|
|
"
|
|
benefit: "Clearer semantics - 'detect type' only for tables, 'into value' for custom values"
|
|
}
|
|
{
|
|
pattern_name: "Compile-Time Loop Validation"
|
|
version_introduced: "0.107.1"
|
|
description: "break/continue outside loops now caught at compile time instead of runtime"
|
|
example: "
|
|
# This now fails at parse time:
|
|
# def invalid []: nothing -> nothing {
|
|
# if true { break } # Compile error!
|
|
# }
|
|
|
|
# Must be in a loop:
|
|
def valid []: nothing -> nothing {
|
|
loop { break } # OK
|
|
}
|
|
"
|
|
benefit: "Catches errors earlier in development cycle"
|
|
}
|
|
]
|
|
|
|
deprecated_patterns: [
|
|
{
|
|
pattern_name: "Using 'into value' for type detection"
|
|
deprecated_in: "0.108.0"
|
|
reason: "Command renamed and behavior changed. 'into value' now converts custom values, not detects types."
|
|
replacement: "Use 'update cells {detect type}' for table type detection"
|
|
removal_timeline: "Will become no-op for native values in future versions"
|
|
}
|
|
]
|
|
|
|
critical_issues: [
|
|
{
|
|
severity: "critical"
|
|
location: "Rule 16 (lines 573-602)"
|
|
issue: "Function signature syntax is INCORRECT in documentation"
|
|
current_doc_shows: "def command [param: type]: return_type { }"
|
|
correct_syntax: "def command [param: type]: input_type -> return_type { }"
|
|
impact: "Code following document will fail with parse error"
|
|
action: "Update Rule 16 immediately with correct syntax"
|
|
evidence: "Tested: 'def test [x: string] -> string' FAILS with 'expected colon (:) before type signature'"
|
|
}
|
|
{
|
|
severity: "high"
|
|
location: "Rule 17 (lines 603-634)"
|
|
issue: "String interpolation recommendation uses non-standard syntax"
|
|
current_doc_shows: "Recommends [$var] for variables, ($var) for expressions"
|
|
correct_syntax: "($var) is standard Nushell syntax for all interpolations"
|
|
impact: "Creates confusion; [$var] works but is not documented standard"
|
|
action: "Clarify that ($var) is standard, or remove this rule"
|
|
evidence: "Nushell official docs only document ($var) syntax"
|
|
}
|
|
{
|
|
severity: "medium"
|
|
location: "Document overall"
|
|
issue: "Missing 0.108.0 breaking changes documentation"
|
|
current_doc_shows: "No mention of 'into value' deprecation or stream error changes"
|
|
correct_syntax: "Should document: into value→detect type, stream errors, break/continue"
|
|
impact: "Users unaware of breaking changes when upgrading"
|
|
action: "Add '0.108.0 Breaking Changes' section"
|
|
evidence: "Confirmed via testing and official release notes"
|
|
}
|
|
]
|
|
|
|
breaking_changes_108: [
|
|
{
|
|
change: "into value → detect type"
|
|
description: "'into value' deprecated for type detection, renamed to 'detect type'. 'into value' now converts custom values."
|
|
migration: "Replace 'into value' with 'update cells {detect type}' for tables"
|
|
status_in_107: "Already deprecated with warnings"
|
|
status_in_108: "Deprecated, will become no-op"
|
|
}
|
|
{
|
|
change: "Stream error collection"
|
|
description: "Errors in streams now propagate when stream is collected into a value"
|
|
migration: "Ensure proper error handling for stream operations"
|
|
status_in_107: "Partial support"
|
|
status_in_108: "Full support"
|
|
}
|
|
{
|
|
change: "break/continue outside loops"
|
|
description: "Using break/continue outside loops now compile-time error"
|
|
migration: "Ensure break/continue only used within loops"
|
|
status_in_107: "Already enforced (compile error)"
|
|
status_in_108: "Continues to be enforced"
|
|
}
|
|
{
|
|
change: "format bits endianness"
|
|
description: "Added --endian flag for explicit control (was native, changed to big endian in 0.107, now configurable)"
|
|
migration: "Use 'format bits --endian native' for original behavior"
|
|
status_in_107: "Default big endian"
|
|
status_in_108: "Configurable with --endian flag"
|
|
}
|
|
{
|
|
change: "Plugin signatures"
|
|
description: "Breaking change for plugin signature format"
|
|
migration: "Update plugins to new signature format"
|
|
status_in_107: "Old format"
|
|
status_in_108: "New format required"
|
|
}
|
|
]
|
|
|
|
behavior_changes_108: [
|
|
{
|
|
change: "Enhanced error context in nested each"
|
|
description: "Errors in nested each calls now preserve full context"
|
|
impact: "Better debugging and error messages"
|
|
backward_compatible: true
|
|
}
|
|
{
|
|
change: "Error handler cleanup with break/continue"
|
|
description: "Fixed bug where break/continue in try blocks didn't clean up error handlers"
|
|
impact: "More predictable error handling behavior"
|
|
backward_compatible: true
|
|
}
|
|
{
|
|
change: "UNC/device path handling on Windows"
|
|
description: "UNC and device paths no longer get trailing backslash"
|
|
impact: "Better path handling on Windows"
|
|
backward_compatible: false
|
|
platform: "windows"
|
|
}
|
|
]
|
|
|
|
syntax_validation: {
|
|
function_signatures: {
|
|
correct: "def command [param: type]: input_type -> return_type { }"
|
|
incorrect: "def command [param: type] -> return_type { }"
|
|
document_shows: "def command [param: type]: return_type { }"
|
|
status: "Document incorrect - missing input_type"
|
|
test_evidence: "Arrow without colon fails: 'expected colon (:) before type signature'"
|
|
}
|
|
string_interpolation: {
|
|
standard: "($var) for all interpolations"
|
|
works_but_nonstandard: "[$var] for variables"
|
|
document_recommends: "[$var] for vars, ($var) for expressions"
|
|
status: "Document recommends non-standard syntax"
|
|
test_evidence: "Both work, but ($var) is documented standard"
|
|
}
|
|
try_catch: {
|
|
syntax: "try { } catch {|e| }"
|
|
status: "Valid in both 0.107.1 and 0.108.0"
|
|
test_evidence: "Error parameter works correctly"
|
|
}
|
|
}
|
|
|
|
test_coverage: {
|
|
patterns_tested: 9
|
|
patterns_passed: 9
|
|
patterns_failed: 0
|
|
rules_tested: 17
|
|
rules_valid: 15
|
|
rules_incorrect: 2
|
|
test_script: "test_patterns.nu"
|
|
test_date: "2025-10-18"
|
|
}
|
|
|
|
recommendations: [
|
|
{
|
|
priority: "urgent"
|
|
action: "Fix Rule 16 function signature syntax"
|
|
reason: "Current syntax is invalid and will cause parse errors"
|
|
change_required: "Replace ': return_type' with ': input_type -> return_type' throughout"
|
|
}
|
|
{
|
|
priority: "high"
|
|
action: "Update Quick Reference Card"
|
|
reason: "Template shows incorrect syntax"
|
|
change_required: "Update template at lines 636-674 with correct signature format"
|
|
}
|
|
{
|
|
priority: "medium"
|
|
action: "Clarify or remove Rule 17"
|
|
reason: "Recommends non-standard string interpolation syntax"
|
|
change_required: "Note that ($var) is standard, or remove the [$var] recommendation"
|
|
}
|
|
{
|
|
priority: "medium"
|
|
action: "Add 0.108.0 breaking changes section"
|
|
reason: "Users need to know about deprecated commands and behavior changes"
|
|
change_required: "Document into value deprecation, stream errors, plugin signatures"
|
|
}
|
|
{
|
|
priority: "low"
|
|
action: "Add compatibility matrix"
|
|
reason: "Help users understand version differences"
|
|
change_required: "Create table showing feature support across versions"
|
|
}
|
|
{
|
|
priority: "low"
|
|
action: "Include test scripts"
|
|
reason: "Allow validation of patterns"
|
|
change_required: "Add test_patterns.nu or similar validation script"
|
|
}
|
|
]
|
|
|
|
conclusion: "All 9 patterns are fundamentally valid for Nushell 0.108.0, but the documentation contains critical syntax errors in Rule 16 that must be fixed immediately. With correct syntax, patterns will work in both 0.107.1 and 0.108.0."
|
|
}
|