22 Commits

Author SHA1 Message Date
michalvankodev 8fcf0bd45d just small edits
test / cargo test (push) Failing after 1m26s
2026-04-01 23:06:03 +02:00
michalvankodev ff5dd27618 feat: add Pi agent blog post, AI tooling, and SVG support
Add new blog post documenting a week using the Pi CLI agent for 100% agentic development. Include AI agent configuration with custom prompts and skills to streamline content creation workflow.

- Publish "Week with my-pi-agent" article with Pi logo and screenshot assets
- Add .pi/ configuration with new-blog-post prompt and review-article skill
- Create AGENTS.md with comprehensive project documentation for AI assistants
- Fix SVG rendering to skip unsupported dimension extraction in markdown filter
- Update picture generator to handle SVG files with simple img tag
- Update syntect dependency to 5.3.0 with default-fancy features
- Swap featured segment from older post to new Pi agent article
2026-04-01 23:06:03 +02:00
michalvankodev 5768df96e5 Merge pull request #28 from michalvankodev/renovate/major-github-artifact-actions
chore(deps): update actions/upload-artifact action to v6
2026-02-03 09:25:24 +01:00
renovate[bot] b925da1b97 chore(deps): update actions/upload-artifact action to v6 2026-02-02 19:38:26 +00:00
michalvankodev 8a0d8632bb Merge pull request #31 from michalvankodev/renovate/askama_escape-0.x
fix(deps): update rust crate askama_escape to 0.15.0
2026-01-06 11:17:18 +01:00
renovate[bot] c396a9e3ff fix(deps): update rust crate askama_escape to 0.15.0 2025-12-28 22:11:06 +00:00
michalvankodev 4c84b84f1b Merge pull request #29 from michalvankodev/renovate/askama-0.x
fix(deps): update rust crate askama to 0.15
2025-12-22 22:08:59 +01:00
michalvankodev 198996d763 Merge pull request #30 from michalvankodev/renovate/askama_escape-0.x
fix(deps): update rust crate askama_escape to 0.14.0
2025-12-22 22:07:57 +01:00
renovate[bot] 8c9c008c77 fix(deps): update rust crate askama_escape to 0.14.0 2025-12-22 16:30:43 +00:00
renovate[bot] 2cbe8b82f4 fix(deps): update rust crate askama to 0.15 2025-12-22 16:30:39 +00:00
michalvankodev 36bd8e429c Merge pull request #25 from michalvankodev/renovate/node-24.x
chore(deps): update node.js to v24
2025-12-12 12:29:54 +01:00
renovate[bot] 6581ab1da7 chore(deps): update node.js to v24 2025-12-11 21:02:38 +00:00
michalvankodev d360c65e4f Merge pull request #27 from michalvankodev/renovate/actions-checkout-6.x
chore(deps): update actions/checkout action to v6
2025-11-21 08:35:00 +01:00
renovate[bot] d448e0beb9 chore(deps): update actions/checkout action to v6 2025-11-20 17:36:42 +00:00
michalvankodev 362fe390a8 Merge pull request #26 from michalvankodev/renovate/tower-livereload-0.x
fix(deps): update rust crate tower-livereload to 0.10.0
2025-11-17 10:42:35 +01:00
renovate[bot] d55eae4b6d fix(deps): update rust crate tower-livereload to 0.10.0 2025-11-17 01:57:45 +00:00
michalvankodev bb45b29bd0 Merge pull request #24 from michalvankodev/renovate/major-github-artifact-actions
chore(deps): update actions/upload-artifact action to v5
2025-10-28 08:11:42 +01:00
renovate[bot] bd77a96000 chore(deps): update actions/upload-artifact action to v5 2025-10-24 20:00:57 +00:00
michalvankodev f32e2a28e2 Merge pull request #23 from michalvankodev/renovate/actions-checkout-5.x
chore(deps): update actions/checkout action to v5
2025-08-12 15:27:47 +02:00
renovate[bot] 0124adfc3a chore(deps): update actions/checkout action to v5 2025-08-11 14:11:56 +00:00
michalvankodev e4fb9e030c Merge pull request #22 from michalvankodev/renovate/gray_matter-0.x
fix(deps): update rust crate gray_matter to 0.3.0
2025-08-11 11:20:00 +02:00
renovate[bot] 15af020e94 fix(deps): update rust crate gray_matter to 0.3.0 2025-08-10 14:39:45 +00:00
3 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -13,9 +13,9 @@ jobs:
name: release
runs-on: ubuntu-latest
container:
image: node:22
image: node:24
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: cache
uses: Swatinem/rust-cache@v2
@@ -47,7 +47,7 @@ jobs:
working-directory: axum_server
- name: Server log
run: cat axum_server/server.log
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: dist
path: axum_server/dist/
+1 -1
View File
@@ -6,7 +6,7 @@ jobs:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cd axum_server && cargo test --all-features
+4 -4
View File
@@ -6,17 +6,17 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = { version = "0.14" }
askama = { version = "0.15" }
axum = "0.8.0"
chrono = { version = "0.4.31", features = ["serde"] }
pulldown-cmark = { version = "0.13" }
gray_matter = "0.2.6"
gray_matter = "0.3.0"
rss = "2.0.7"
serde = "1.0.195"
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["full"] }
tower-http = { version = "0.6.0", features = ["trace", "fs"] }
tower-livereload = "0.9.2"
tower-livereload = "0.10.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
image = "0.25.6"
@@ -24,7 +24,7 @@ anyhow = "1.0.86"
rayon = "1.10.0"
syntect = { version = "5.3.0", default-features = false, features = ["default-fancy"] }
indoc = "2.0.5"
askama_escape = "0.13.0"
askama_escape = "0.15.0"
mime_guess = "2.0.5"
[dev-dependencies]