Skip to content

Commit 6772c3e

Browse files
committed
Release version 1.0.8
1 parent 4340027 commit 6772c3e

File tree

9 files changed

+242
-2188
lines changed

9 files changed

+242
-2188
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy Documentation
1+
name: Deploy Documentation to GitHub Pages
22

33
on:
44
push:
@@ -24,36 +24,38 @@ jobs:
2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v4
27-
27+
2828
- name: Setup Node.js
2929
uses: actions/setup-node@v4
3030
with:
3131
node-version: '18'
3232
cache: 'npm'
3333
cache-dependency-path: docs/package-lock.json
34-
34+
3535
- name: Install dependencies
36-
working-directory: docs
36+
working-directory: ./docs
3737
run: npm ci
38-
39-
- name: Build Docusaurus site
40-
working-directory: docs
38+
39+
- name: Build website
40+
working-directory: ./docs
4141
run: npm run build
42-
42+
4343
- name: Setup Pages
4444
uses: actions/configure-pages@v4
45-
45+
4646
- name: Upload artifact
4747
uses: actions/upload-pages-artifact@v3
4848
with:
4949
path: docs/build
5050

5151
deploy:
52-
environment:
53-
name: github-pages
54-
url: ${{ steps.deployment.outputs.page_url }}
5552
runs-on: ubuntu-latest
5653
needs: build
54+
permissions:
55+
pages: write
56+
id-token: write
57+
environment:
58+
name: github-pages
5759
steps:
5860
- name: Deploy to GitHub Pages
5961
id: deployment

CHANGELOG.md

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,37 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
98

10-
### Added
11-
- **DBF File Support**: Added support for reading DBF (dBase/FoxPro) database files using the `dbfread` library
12-
13-
## [1.0.7] - 2025-12-15
9+
## [1.0.8] - 2025-12-20
1410

1511
### Added
12+
- **Extensive Format Support**: Added support for 50+ new data formats including:
13+
- **Geospatial Formats**: GeoJSON, GeoPackage, GML, KML, Shapefile
14+
- **RDF Formats**: JSON-LD, RDF/XML, Turtle, N-Triples, N-Quads
15+
- **Log Formats**: Apache Log, CEF, GELF, WARC, CDX
16+
- **Email Formats**: EML, MBOX, MHTML
17+
- **Binary Formats**: MessagePack, CBOR, UBJSON, SMILE, Bencode, FlatBuffers, FlexBuffers, Thrift, Cap'n Proto, Protocol Buffers, ASN.1
18+
- **Columnar Formats**: Delta Lake, Iceberg, Hudi, Lance
19+
- **Database Formats**: SQLite, MySQL Dump, PostgreSQL Copy, R Data (RDS, RData)
20+
- **Statistical Formats**: SPSS, Stata, SAS, PX
21+
- **Web Formats**: CSVW (CSV on the Web), INI, HOCON, TOML, YAML, EDN
22+
- **Streaming Formats**: Kafka, Pulsar, Flink, Beam, RecordIO, SequenceFile, TFRecord
23+
- **Other Formats**: VCF, iCal, LDIF, ILP (InfluxDB Line Protocol), Fixed Width (FWF), PSV/SSV, LTSV, TXT, ODS
24+
- **Annotated CSV Support**: Added support for CSV files with type annotations and metadata
25+
- **Compression Codecs**: Added support for LZO, Snappy, and SZIP compression formats
26+
- **GitHub Actions Workflows**: Added CI/CD workflows for linting, testing, and documentation deployment
27+
- **Comprehensive Test Suite**: Added test coverage for all new formats with fixtures and test data
28+
- **Documentation**: Complete Docusaurus-based documentation site with format-specific guides, API reference, and use cases
1629
- **Performance Optimization Analysis**: Comprehensive performance analysis document identifying critical bottlenecks and optimization opportunities
1730
- **Development Documentation**: Added performance optimization guide in `dev/docs/PERFORMANCE_OPTIMIZATIONS.md`
1831

1932
### Improved
20-
- **Documentation**: Enhanced project documentation structure with development guides
33+
- **Format Detection**: Enhanced automatic format detection to support all new formats
34+
- **Documentation**: Complete documentation restructure with Docusaurus, format templates, and comprehensive guides
35+
- **Code Organization**: Better structured codebase with consistent patterns across all datatypes
36+
- **Test Infrastructure**: Improved test fixtures and utilities for format testing
2137

22-
## [1.0.6] - 2024-12-XX
38+
## [1.0.7] - 2024-12-15
2339

2440
### Added
2541
- **Comprehensive Documentation**: Enhanced README.md with detailed usage examples, API reference, and comprehensive guides

0 commit comments

Comments
 (0)