Release v1.1.0: docs, formats, and refactors#7
Merged
lupodevelop merged 2 commits intomainfrom Mar 20, 2026
Merged
Conversation
Bump version to 1.1.0 and prepare release: update changelog and README, add comprehensive examples, tighten CI, and refactor core modules. Highlights: - Bumped gleam.toml version to 1.1.0 and updated CHANGELOG.md for 1.1.0. - Added many docs/examples (schema, query, repo, types, encode, decode, changeset) and rewrote docs/quickstart.md with runnable examples. - Improved CI: consolidated workflows (removed release.yml and smoke-integration.yml) and made the ClickHouse readiness check fail the job if the service doesn't become ready. - CSV format handler rewritten for RFC 4180 compliance (escaping, parsing, header handling); added helpers for JSON->plain string conversion. - JSONEachRow handler simplified (per-row JSON encoding) and decode utilities made public for reuse by format handlers. - Expr helpers simplified (compact character checks), changeset email validation strengthened, and multiple modules refactored to reduce surface area and improve type safety. - Updated tests to reflect schema changes. See changelog and docs for full details and usage examples.
Adjust formatting for readability in src/sparkling/expr.gleam and src/sparkling/format/csv.gleam: break the string.contains call arguments onto separate lines in is_letter_or_underscore, and condense several match-arm bodies in do_parse_csv into single-line expressions. These are formatting-only changes and do not alter program behavior.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bump version to 1.1.0 and prepare release: update changelog and README, add comprehensive examples, tighten CI, and refactor core modules.
Highlights:
See changelog and docs for full details and usage examples.