norn-cli 1.10.0 → 1.10.2

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 (44) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/cli.js +626 -554
  3. package/package.json +1 -1
  4. package/vendor/microsoft.data.sqlclient/README.md +25 -0
  5. package/vendor/microsoft.data.sqlclient/windows-netfx/Azure.Core.dll +0 -0
  6. package/vendor/microsoft.data.sqlclient/windows-netfx/Azure.Identity.dll +0 -0
  7. package/vendor/microsoft.data.sqlclient/windows-netfx/LICENSE.txt +46 -0
  8. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  9. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.Data.SqlClient.SNI.arm64.dll +0 -0
  10. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.Data.SqlClient.SNI.x64.dll +0 -0
  11. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.Data.SqlClient.SNI.x86.dll +0 -0
  12. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.Data.SqlClient.dll +0 -0
  13. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.Identity.Client.Extensions.Msal.dll +0 -0
  14. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.Identity.Client.dll +0 -0
  15. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.IdentityModel.Abstractions.dll +0 -0
  16. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
  17. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.IdentityModel.Logging.dll +0 -0
  18. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +0 -0
  19. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.IdentityModel.Protocols.dll +0 -0
  20. package/vendor/microsoft.data.sqlclient/windows-netfx/Microsoft.IdentityModel.Tokens.dll +0 -0
  21. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Buffers.dll +0 -0
  22. package/vendor/microsoft.data.sqlclient/windows-netfx/System.ClientModel.dll +0 -0
  23. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Configuration.ConfigurationManager.dll +0 -0
  24. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Diagnostics.DiagnosticSource.dll +0 -0
  25. package/vendor/microsoft.data.sqlclient/windows-netfx/System.IO.FileSystem.AccessControl.dll +0 -0
  26. package/vendor/microsoft.data.sqlclient/windows-netfx/System.IdentityModel.Tokens.Jwt.dll +0 -0
  27. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Memory.Data.dll +0 -0
  28. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Memory.dll +0 -0
  29. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Net.Http.dll +0 -0
  30. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Numerics.Vectors.dll +0 -0
  31. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Runtime.CompilerServices.Unsafe.dll +0 -0
  32. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Runtime.InteropServices.RuntimeInformation.dll +0 -0
  33. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.AccessControl.dll +0 -0
  34. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.Cryptography.Algorithms.dll +0 -0
  35. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.Cryptography.Encoding.dll +0 -0
  36. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.Cryptography.Primitives.dll +0 -0
  37. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.Cryptography.ProtectedData.dll +0 -0
  38. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.Cryptography.X509Certificates.dll +0 -0
  39. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.Permissions.dll +0 -0
  40. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Security.Principal.Windows.dll +0 -0
  41. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Text.Encodings.Web.dll +0 -0
  42. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Text.Json.dll +0 -0
  43. package/vendor/microsoft.data.sqlclient/windows-netfx/System.Threading.Tasks.Extensions.dll +0 -0
  44. package/vendor/microsoft.data.sqlclient/windows-netfx/System.ValueTuple.dll +0 -0
package/CHANGELOG.md CHANGED
@@ -4,6 +4,23 @@ All notable changes to the "Norn" extension will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [1.10.2] - 2026-03-15
8
+
9
+ ### Fixed
10
+ - **Sequence Return + Response Panel UX**:
11
+ - Fixed `var result = run SomeSequence` so single-value returns can capture literal values like `return "Bar"` instead of resolving to empty output.
12
+ - Fixed streaming/final response panel step timers so print/SQL rows show per-step duration instead of elapsed-from-start totals.
13
+ - Fixed the streaming step counter so hidden `wait` steps no longer inflate the top-bar step total.
14
+ - Fixed `.norn` syntax highlighting so quoted string literals after `return` use normal string coloring.
15
+
16
+ - **Request Parsing + CLI Error Output**:
17
+ - Fixed request parsing to stop bodies at the next Norn block boundary, preventing later named requests or sequence declarations from leaking into request bodies.
18
+ - Fixed CLI text and HTML reports to preserve multiline request/sequence error details instead of collapsing them into single-line output.
19
+
20
+ - **API Coverage + Import UX**:
21
+ - Fixed API coverage to follow status assertions on captured request variables and named requests that call `.nornapi` endpoints.
22
+ - Fixed the OpenAPI import section picker so selecting `All` stays mutually exclusive with individual section selections.
23
+
7
24
  ## [1.7.0] - 2026-03-07
8
25
 
9
26
  ### Added