jekyll-theme-zer0 0.8.1 → 0.10.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +201 -4
- data/README.md +58 -25
- data/_data/README.md +4 -5
- data/_includes/README.md +1 -1
- data/_includes/stats/README.md +14 -2
- data/_layouts/README.md +3 -3
- data/_sass/core/_theme.scss +4 -1
- data/scripts/bin/build +115 -0
- data/scripts/bin/release +240 -0
- data/scripts/bin/test +203 -0
- data/scripts/features/generate-preview-images +846 -0
- data/scripts/features/install-preview-generator +531 -0
- data/scripts/features/preview_generator.py +646 -0
- data/scripts/generate-preview-images.sh +38 -93
- data/scripts/lib/README.md +35 -7
- data/scripts/test/integration/auto-version +243 -0
- data/scripts/test/integration/mermaid +252 -0
- data/scripts/test/lib/run_tests.sh +151 -0
- data/scripts/test/lib/test_changelog.sh +90 -0
- data/scripts/test/lib/test_gem.sh +71 -0
- data/scripts/test/lib/test_git.sh +85 -0
- data/scripts/test/lib/test_validation.sh +75 -0
- data/scripts/test/lib/test_version.sh +101 -0
- data/scripts/test/theme/validate +120 -0
- data/scripts/utils/analyze-commits +300 -0
- data/scripts/utils/fix-markdown +251 -0
- data/scripts/utils/setup +137 -0
- data/scripts/version.sh +26 -0
- metadata +20 -8
- data/scripts/build.sh +0 -33
- data/scripts/build.sh.legacy +0 -174
- data/scripts/gem-publish.sh +0 -42
- data/scripts/gem-publish.sh.legacy +0 -700
- data/scripts/release.sh +0 -33
- data/scripts/release.sh.legacy +0 -342
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11f1a090a15824b7b1fc5754e858839d93318efad779deb8d63f5b5641a08f02
|
|
4
|
+
data.tar.gz: 476de246227f2f492eb142f7d4f9f0b1e20b9dc97350069bb6b3fff3ef295f8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a2aba3a52815a120646b1b094a973dd01e4c28555f37de5562a9a262d4ad6dda7944753c9f235862ef60b8ce99ad94c62b98bdabf821b983243812d07b27480
|
|
7
|
+
data.tar.gz: e54a3074c2d26c178211144219c9e934258edca74f498e073e37edc7e68d4a84d18181295d7467ac6de5647d6bc0d52e41605838171028f96b86dbbdd04caa1f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,175 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.0] - 2025-11-28
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **New: Zero Version Pin Strategy** - Enterprise-grade dependency management paradigm
|
|
8
|
+
- Always use latest compatible versions with zero pins anywhere
|
|
9
|
+
- Fail fast in CI if incompatible → caught early, not in production
|
|
10
|
+
- Production uses immutable image tags (date+commit hash), never `:latest`
|
|
11
|
+
- Full documentation in `docs/systems/ZERO_PIN_STRATEGY.md`
|
|
12
|
+
|
|
13
|
+
- **New: Docker Multi-Stage Dockerfile** (`docker/Dockerfile`)
|
|
14
|
+
- `base` stage: Ruby slim + build dependencies
|
|
15
|
+
- `dev-test` stage: Full dev/test gems for CI validation
|
|
16
|
+
- `build` stage: Production Jekyll build
|
|
17
|
+
- `production` stage: Minimal runtime for serving
|
|
18
|
+
|
|
19
|
+
- **New: Docker Compose Configurations**
|
|
20
|
+
- `docker-compose.yml`: Development environment with live reload
|
|
21
|
+
- `docker-compose.test.yml`: CI testing overlay with validation
|
|
22
|
+
- `docker-compose.prod.yml`: Production with immutable tags only
|
|
23
|
+
|
|
24
|
+
- **New: CI Workflow for Zero Pin Strategy** (`.github/workflows/test-latest.yml`)
|
|
25
|
+
- Builds with `--no-cache` for latest dependencies
|
|
26
|
+
- Documents resolved versions in workflow summary
|
|
27
|
+
- Tags and publishes immutable images on success
|
|
28
|
+
- Debug information on failure
|
|
29
|
+
|
|
30
|
+
- **New: `.dockerignore`** - Optimized Docker build context
|
|
31
|
+
- Excludes development files, tests, logs, and build artifacts
|
|
32
|
+
- Keeps only files needed for container builds
|
|
33
|
+
|
|
34
|
+
- **New: VS Code Workspace Configuration** (`zer0-mistakes.code-workspace`)
|
|
35
|
+
- Copilot settings for all file types
|
|
36
|
+
- File associations for Jekyll/Liquid
|
|
37
|
+
- Terminal environment variables for Docker
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- **Improved: `Gemfile`** - Refactored for zero version pin strategy
|
|
42
|
+
- Removed all version constraints
|
|
43
|
+
- Added development/test group with html-proofer, rspec, rake, rubocop
|
|
44
|
+
- Added platform-specific dependencies for Windows
|
|
45
|
+
- Comprehensive documentation comments
|
|
46
|
+
|
|
47
|
+
- **Improved: `docker-compose.yml`** - Enhanced for zero pin strategy
|
|
48
|
+
- Uses custom Dockerfile instead of jekyll/jekyll image
|
|
49
|
+
- Added bundle cache volume for faster rebuilds
|
|
50
|
+
- LiveReload port (35729) exposed
|
|
51
|
+
- TTY enabled for interactive commands
|
|
52
|
+
|
|
53
|
+
- **Improved: `jekyll-theme-zer0.gemspec`** - Compatibility updates
|
|
54
|
+
- Ruby requirement lowered to >= 2.7.0 (from 3.0.0) for broader compatibility
|
|
55
|
+
- Bundler dependency changed to ~> 2.3 (from >= 2.3)
|
|
56
|
+
|
|
57
|
+
- **Improved: CI Workflow** (`.github/workflows/ci.yml`)
|
|
58
|
+
- Added documentation comments explaining version strategy
|
|
59
|
+
- Clarified that explicit versions are for backwards compatibility testing
|
|
60
|
+
|
|
61
|
+
### Fixed
|
|
62
|
+
|
|
63
|
+
- **Fixed: `scripts/generate-preview-images.sh`** - Reverted to simpler collection handling
|
|
64
|
+
- Removed dynamic collection reading (caused issues in some environments)
|
|
65
|
+
- Restored hardcoded collection list for reliability
|
|
66
|
+
- Fixed yq vs sed front matter update logic
|
|
67
|
+
|
|
68
|
+
## [0.9.2] - 2025-11-28
|
|
69
|
+
|
|
70
|
+
### Changed
|
|
71
|
+
- Version bump: patch release
|
|
72
|
+
|
|
73
|
+
### Commits in this release
|
|
74
|
+
- 509d705 fix(ci): fix false positive failure detection in test report validation
|
|
75
|
+
- 77dc04b fix(ci): fix shell syntax error in test-suite validation step
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## [0.9.1] - 2025-11-27
|
|
79
|
+
|
|
80
|
+
### Fixed
|
|
81
|
+
|
|
82
|
+
- **CI: Test suite failures across Ruby versions** - Resolved issues causing CI failures
|
|
83
|
+
- Fixed `--skip-docker` option error by only passing it to deployment tests (not quality tests)
|
|
84
|
+
- Fixed bash arithmetic syntax error in Liquid tag validation by sanitizing grep output
|
|
85
|
+
- Added bundler 2.5 requirement to setup-ruby action for Ruby 3.0 compatibility
|
|
86
|
+
|
|
87
|
+
## [0.9.0] - 2025-06-30
|
|
88
|
+
|
|
89
|
+
### Changed
|
|
90
|
+
|
|
91
|
+
- **Refactored: Scripts Directory Structure** - Complete reorganization for better maintainability
|
|
92
|
+
- New `bin/` directory for main entry points (`release`, `build`, `test`)
|
|
93
|
+
- New `utils/` directory for utility scripts (`setup`, `analyze-commits`, `fix-markdown`)
|
|
94
|
+
- New `features/` directory for feature-specific scripts (`generate-preview-images`, `install-preview-generator`)
|
|
95
|
+
- New `test/` directory hierarchy with `lib/`, `theme/`, and `integration/` subdirectories
|
|
96
|
+
- Unified test runner in `bin/test` that runs all test suites with single command
|
|
97
|
+
|
|
98
|
+
- **Improved: Script Library Integration** - All scripts now use shared `lib/common.sh`
|
|
99
|
+
- Consistent logging functions (`log`, `info`, `success`, `warn`, `error`, `debug`)
|
|
100
|
+
- Standardized color output and formatting
|
|
101
|
+
- Removed duplicate code from individual scripts
|
|
102
|
+
|
|
103
|
+
- **Updated: Documentation** - Complete rewrite of `scripts/README.md`
|
|
104
|
+
- Clear directory structure overview
|
|
105
|
+
- Quick start guide for common operations
|
|
106
|
+
- Migration table from legacy to new script locations
|
|
107
|
+
- Dependency graph for library modules
|
|
108
|
+
|
|
109
|
+
### Added
|
|
110
|
+
|
|
111
|
+
- **New: `bin/test` Unified Test Runner** - Single command to run all tests
|
|
112
|
+
- Supports running specific test suites (`lib`, `theme`, `integration`, `all`)
|
|
113
|
+
- Verbose output mode with `--verbose` flag
|
|
114
|
+
- Summary of passed/failed test suites
|
|
115
|
+
|
|
116
|
+
- **New: `test/theme/validate`** - Theme structure validation tests
|
|
117
|
+
- Validates layouts, includes, and assets directories
|
|
118
|
+
- Sources shared library for consistent output
|
|
119
|
+
|
|
120
|
+
- **New: `test/integration/auto-version`** - Auto-version integration tests
|
|
121
|
+
- Moved from `tests/` directory with updated library paths
|
|
122
|
+
|
|
123
|
+
### Deprecated
|
|
124
|
+
|
|
125
|
+
- **Deprecated: `scripts/version.sh`** - Now displays deprecation warning
|
|
126
|
+
- Recommends using `bin/release` for full workflow
|
|
127
|
+
- Will be removed in future release
|
|
128
|
+
|
|
129
|
+
### Migration Guide
|
|
130
|
+
|
|
131
|
+
| Legacy Script | New Location |
|
|
132
|
+
|--------------|--------------|
|
|
133
|
+
| `version.sh` | `bin/release` |
|
|
134
|
+
| `setup.sh` | `utils/setup` |
|
|
135
|
+
| `test.sh` | `bin/test` or `test/theme/validate` |
|
|
136
|
+
| `analyze-commits.sh` | `utils/analyze-commits` |
|
|
137
|
+
| `fix-markdown-format.sh` | `utils/fix-markdown` |
|
|
138
|
+
| `generate-preview-images.sh` | `features/generate-preview-images` |
|
|
139
|
+
| `install-preview-generator.sh` | `features/install-preview-generator` |
|
|
140
|
+
|
|
141
|
+
## [0.8.2] - 2025-11-27
|
|
142
|
+
|
|
143
|
+
### Changed
|
|
144
|
+
|
|
145
|
+
- **Refactored: GitHub Actions Workflows** - Consolidated 5 workflows into 3 streamlined workflows
|
|
146
|
+
- Merged `auto-version-bump.yml` into `version-bump.yml` with both automatic and manual triggers
|
|
147
|
+
- Merged `gem-release.yml` and `github-release.yml` into unified `release.yml`
|
|
148
|
+
- Removed duplicate `quality` job from `ci.yml` (functionality retained in `quality-checks` job)
|
|
149
|
+
- Updated `ci.yml` build job to use `scripts/build` instead of deprecated `build.sh`
|
|
150
|
+
|
|
151
|
+
- **Updated: Composite Action `prepare-release`** - Now uses `scripts/build` instead of deprecated `build.sh`
|
|
152
|
+
|
|
153
|
+
### Added
|
|
154
|
+
|
|
155
|
+
- **New Documentation: `.github/workflows/README.md`** - Comprehensive workflow documentation
|
|
156
|
+
- Workflow trigger flow diagram
|
|
157
|
+
- Job descriptions and timeout configurations
|
|
158
|
+
- Manual dispatch options and troubleshooting guide
|
|
159
|
+
|
|
160
|
+
- **New Documentation: `.github/actions/README.md`** - Composite actions documentation
|
|
161
|
+
- Input/output specifications for all 5 actions
|
|
162
|
+
- Usage examples and best practices
|
|
163
|
+
- Action creation guide and troubleshooting
|
|
164
|
+
|
|
165
|
+
### Removed
|
|
166
|
+
|
|
167
|
+
- **Deleted: `auto-version-bump.yml`** - Functionality merged into `version-bump.yml`
|
|
168
|
+
- **Deleted: `gem-release.yml`** - Functionality merged into `release.yml`
|
|
169
|
+
- **Deleted: `github-release.yml`** - Functionality merged into `release.yml`
|
|
170
|
+
- **Deleted: Deprecated wrapper scripts** - `build.sh`, `gem-publish.sh`, `release.sh` and their `.legacy` versions
|
|
171
|
+
- These were deprecated redirects to the new modular commands (`scripts/build`, `scripts/release`)
|
|
172
|
+
|
|
3
173
|
## [0.8.1] - 2025-11-27
|
|
4
174
|
|
|
5
175
|
### Added
|
|
@@ -48,7 +218,7 @@
|
|
|
48
218
|
- One-command remote installation for other Jekyll sites
|
|
49
219
|
- **New Plugin: `_plugins/preview_image_generator.rb`** - Jekyll integration with:
|
|
50
220
|
- Liquid filters: `has_preview_image`, `preview_image_path`, `preview_filename`
|
|
51
|
-
- Liquid tags: `{% preview_image_status %}`, `{% preview_images_missing %}`
|
|
221
|
+
- Liquid tags: {% raw %}`{% preview_image_status %}`, `{% preview_images_missing %}`{% endraw %}
|
|
52
222
|
- Build hook that reports missing preview images during Jekyll build
|
|
53
223
|
- **New Script: `scripts/generate-preview-images.sh`** - Main CLI for image generation
|
|
54
224
|
- `--list-missing` to find posts without preview images
|
|
@@ -145,6 +315,7 @@
|
|
|
145
315
|
## [0.6.0] - 2025-11-22
|
|
146
316
|
|
|
147
317
|
### Added
|
|
318
|
+
|
|
148
319
|
- Implement PostHog analytics and cookie consent
|
|
149
320
|
- Add code copy functionality and enhance documentation structure
|
|
150
321
|
- Revise copilot instructions and add comprehensive Jekyll include development guidelines
|
|
@@ -154,6 +325,7 @@
|
|
|
154
325
|
- Enhance CI/CD testing framework with comprehensive documentation and automated workflows
|
|
155
326
|
|
|
156
327
|
### Changed
|
|
328
|
+
|
|
157
329
|
- Ignore .frontmatter directory
|
|
158
330
|
- Update VS Code settings
|
|
159
331
|
- Documentation: Update README with new features and architecture
|
|
@@ -162,6 +334,7 @@
|
|
|
162
334
|
- Update version control instructions and add feature documentation
|
|
163
335
|
|
|
164
336
|
### Other
|
|
337
|
+
|
|
165
338
|
- Revert "Merge pull request #10 from bamr87/copilot/plan-mdx-file-handling"
|
|
166
339
|
- Add Mermaid documentation and test suite, enhance site structure
|
|
167
340
|
- Merge pull request #9 from bamr87/copilot/setup-copilot-instructions
|
|
@@ -173,8 +346,6 @@
|
|
|
173
346
|
- Initial plan
|
|
174
347
|
- Initial plan
|
|
175
348
|
|
|
176
|
-
|
|
177
|
-
|
|
178
349
|
All notable changes to this project will be documented in this file.
|
|
179
350
|
|
|
180
351
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
@@ -183,17 +354,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
183
354
|
## [Unreleased]
|
|
184
355
|
|
|
185
356
|
### Added
|
|
357
|
+
|
|
186
358
|
- Comprehensive documentation organization system in `/docs/` directory
|
|
187
359
|
- Standardized templates for feature documentation, release notes, and change tracking
|
|
188
360
|
- Organized directory structure for releases, features, systems, and configuration documentation
|
|
189
361
|
|
|
190
362
|
### Changed
|
|
363
|
+
|
|
191
364
|
- Migrated scattered documentation files to organized structure
|
|
192
365
|
- Improved documentation discoverability and maintenance
|
|
193
366
|
|
|
194
367
|
## [0.5.0] - 2025-10-25
|
|
195
368
|
|
|
196
369
|
### Added
|
|
370
|
+
|
|
197
371
|
- **📊 Comprehensive Sitemap Integration**: Unified layout combining collections, statistics, and navigation
|
|
198
372
|
- Real-time site statistics dashboard with 6 key performance indicators
|
|
199
373
|
- Interactive search and filtering across all content types
|
|
@@ -208,16 +382,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
208
382
|
- Comprehensive documentation and implementation guides
|
|
209
383
|
|
|
210
384
|
### Changed
|
|
385
|
+
|
|
211
386
|
- **🏗️ Navigation System**: Consolidated duplicate sitemap entries into unified comprehensive view
|
|
212
387
|
- **🎨 Visual Design**: Updated to modern card-based layout with smooth transitions
|
|
213
388
|
- **📱 Mobile Experience**: Enhanced mobile responsiveness and touch interactions
|
|
214
389
|
|
|
215
390
|
### Fixed
|
|
391
|
+
|
|
216
392
|
- **🐛 Dark Mode Compatibility**: Resolved background color issues in dark theme
|
|
217
393
|
- **🔧 Collection Filtering**: Fixed functionality for dynamic content filtering
|
|
218
394
|
- **🔗 Link Navigation**: Corrected internal link behavior and navigation flow
|
|
219
395
|
|
|
220
396
|
### Technical Details
|
|
397
|
+
|
|
221
398
|
- **Files Added**: `_layouts/sitemap-collection.html`, enhanced navigation data files
|
|
222
399
|
- **Files Modified**: Main navigation configuration, sitemap pages
|
|
223
400
|
- **Performance**: Optimized DOM manipulation and content rendering
|
|
@@ -228,6 +405,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
228
405
|
## [0.4.0] - 2025-10-10
|
|
229
406
|
|
|
230
407
|
### Added
|
|
408
|
+
|
|
231
409
|
- **📊 Comprehensive Site Statistics Dashboard**: Complete analytics system for content insights
|
|
232
410
|
- Dynamic statistics generation from site content using Ruby script
|
|
233
411
|
- Real-time analytics showing content pieces, categories, tags, and word counts
|
|
@@ -249,6 +427,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
249
427
|
- Smooth scroll navigation and fade-in animations for modern UX
|
|
250
428
|
|
|
251
429
|
### Changed
|
|
430
|
+
|
|
252
431
|
- **📈 Activity Level Intelligence**: Dynamic threshold calculation replacing static values
|
|
253
432
|
- Categories: High activity (≥70% of max), Medium (≥40% of max), Low (remainder)
|
|
254
433
|
- Tags: Frequently used (≥60% of max), Moderately used (≥20% of max), Occasionally used (remainder)
|
|
@@ -259,6 +438,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
259
438
|
- Optimized data processing without complex sorting operations
|
|
260
439
|
|
|
261
440
|
### Fixed
|
|
441
|
+
|
|
262
442
|
- **🐛 Data Display Issues**: Resolved template rendering and data access problems
|
|
263
443
|
- Fixed Liquid template syntax errors causing empty displays
|
|
264
444
|
- Corrected data structure references across all components
|
|
@@ -270,6 +450,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
270
450
|
## [0.3.0] - 2025-01-27
|
|
271
451
|
|
|
272
452
|
### Added
|
|
453
|
+
|
|
273
454
|
- **🎨 Mermaid Diagram Integration v2.0**: Comprehensive diagramming system
|
|
274
455
|
- Complete diagram support: flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, Gantt charts, pie charts, git graphs, journey diagrams, and mindmaps
|
|
275
456
|
- GitHub Pages compatibility with both local development and deployment
|
|
@@ -288,11 +469,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
288
469
|
- Performance validation and benchmarking
|
|
289
470
|
|
|
290
471
|
### Changed
|
|
472
|
+
|
|
291
473
|
- **📁 File Organization**: 53% reduction from 15 to 7 Mermaid-related files
|
|
292
474
|
- **🏗️ Architecture**: Modular include system with clear responsibilities
|
|
293
475
|
- **📖 Documentation**: Consolidated and improved documentation structure
|
|
294
476
|
|
|
295
477
|
### Fixed
|
|
478
|
+
|
|
296
479
|
- **🔧 Configuration**: Enhanced Jekyll and GitHub Pages compatibility
|
|
297
480
|
- **⚡ Performance**: Optimized loading and rendering speed
|
|
298
481
|
- **🎯 Usability**: Improved setup process and error handling
|
|
@@ -302,27 +485,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
302
485
|
## [0.2.1] - 2025-09-30
|
|
303
486
|
|
|
304
487
|
### Added
|
|
488
|
+
|
|
305
489
|
- Enhanced markdown linting configuration
|
|
306
490
|
- Improved Jekyll template support for link checking
|
|
307
491
|
- Better configuration for markdown validation
|
|
308
492
|
|
|
309
493
|
### Changed
|
|
494
|
+
|
|
310
495
|
- Updated markdown-link-check configuration with Jekyll-specific patterns
|
|
311
496
|
- Relaxed line length requirements in markdownlint configuration
|
|
312
497
|
- Added support for more HTML elements in markdown
|
|
313
498
|
|
|
314
499
|
### Fixed
|
|
500
|
+
|
|
315
501
|
- Improved markdown validation for Jekyll projects
|
|
316
502
|
- Better handling of Liquid templates in link validation
|
|
317
503
|
|
|
318
504
|
## [0.2.0] - 2025-09-01
|
|
319
505
|
|
|
320
506
|
### Changed
|
|
507
|
+
|
|
321
508
|
- Version bump to 0.2.0 with improvements
|
|
322
509
|
|
|
323
510
|
## [0.1.9] - 2025-01-27
|
|
324
511
|
|
|
325
512
|
### Added
|
|
513
|
+
|
|
326
514
|
- **🐳 Docker-First Development Evolution**: Complete transformation to containerized development
|
|
327
515
|
- AI-powered `init_setup.sh` with intelligent environment detection and auto-healing
|
|
328
516
|
- Cross-platform Docker Compose configuration with Apple Silicon optimization
|
|
@@ -341,12 +529,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
341
529
|
- AI-generated documentation and setup instructions
|
|
342
530
|
|
|
343
531
|
### Changed
|
|
532
|
+
|
|
344
533
|
- **🔧 Installation Philosophy**: Shifted from traditional Ruby/Jekyll setup to Docker-first approach
|
|
345
534
|
- Disabled local theme dependencies to avoid gemspec issues
|
|
346
535
|
- Optimized for containerized development environments
|
|
347
536
|
- Enhanced cross-platform compatibility and consistency
|
|
348
537
|
|
|
349
538
|
### Fixed
|
|
539
|
+
|
|
350
540
|
- **🐛 Theme Dependency Issues**: Resolved Jekyll theme not found errors
|
|
351
541
|
- Commented out problematic Jekyll includes in README.md
|
|
352
542
|
- Disabled `remote_theme` in development configuration
|
|
@@ -359,6 +549,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
359
549
|
## [0.1.8] - 2025-01-03
|
|
360
550
|
|
|
361
551
|
### Added
|
|
552
|
+
|
|
362
553
|
- **Comprehensive Gem Automation System**: Unified automation ecosystem
|
|
363
554
|
- Zero-click releases with multi-environment testing
|
|
364
555
|
- Production-ready CI/CD pipeline with GitHub Actions integration
|
|
@@ -371,6 +562,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
371
562
|
- **Cleanup Functions**: Automatic cleanup of temporary files after remote installation
|
|
372
563
|
|
|
373
564
|
### Changed
|
|
565
|
+
|
|
374
566
|
- **Feature Documentation Restructure**: Consolidated redundant automation feature entries
|
|
375
567
|
- **Simplified Installation Process**: Updated to use single install command
|
|
376
568
|
- **Azure-Ready Configuration**: Pre-configured directory structure for Azure Static Web Apps
|
|
@@ -378,9 +570,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
378
570
|
- **Improved Help System**: Added remote installation examples
|
|
379
571
|
|
|
380
572
|
### Removed
|
|
573
|
+
|
|
381
574
|
- **Redundant Documentation**: Eliminated duplicate automation documentation files
|
|
382
575
|
|
|
383
576
|
### Fixed
|
|
577
|
+
|
|
384
578
|
- **Installation Script Compatibility**: Made compatible with both local and remote execution
|
|
385
579
|
- **Directory Structure**: Optimized for Azure Static Web Apps deployment
|
|
386
580
|
- **Markdown Lint Issues**: Fixed all markdown formatting violations
|
|
@@ -388,6 +582,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
388
582
|
## [0.1.7] - 2024-12-01
|
|
389
583
|
|
|
390
584
|
### Added
|
|
585
|
+
|
|
391
586
|
- Bootstrap Jekyll theme for headless GitHub Pages CMS
|
|
392
587
|
- Basic theme structure with layouts, includes, and assets
|
|
393
588
|
- Jekyll compatibility with GitHub Pages
|
|
@@ -396,6 +591,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
396
591
|
- Makefile for simplified command access
|
|
397
592
|
|
|
398
593
|
### Changed
|
|
594
|
+
|
|
399
595
|
- Initial theme implementation and project structure
|
|
400
596
|
|
|
401
597
|
---
|
|
@@ -403,6 +599,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
403
599
|
## Documentation
|
|
404
600
|
|
|
405
601
|
For detailed documentation on features, systems, and configuration:
|
|
602
|
+
|
|
406
603
|
- **[Documentation Center](docs/README.md)** - Complete documentation overview
|
|
407
604
|
- **[Release Documentation](docs/releases/README.md)** - Historical release information
|
|
408
605
|
- **[Feature Documentation](docs/features/README.md)** - Detailed feature guides
|
|
@@ -419,4 +616,4 @@ For detailed documentation on features, systems, and configuration:
|
|
|
419
616
|
[0.2.0]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.9...v0.2.0
|
|
420
617
|
[0.1.9]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.8...v0.1.9
|
|
421
618
|
[0.1.8]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.7...v0.1.8
|
|
422
|
-
[0.1.7]: https://github.com/bamr87/zer0-mistakes/releases/tag/v0.1.7
|
|
619
|
+
[0.1.7]: https://github.com/bamr87/zer0-mistakes/releases/tag/v0.1.7
|