cf-mcp 0.15.1 → 0.15.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/cf/mcp/server.rb +3 -2
- data/lib/cf/mcp/templates/index.erb +1 -0
- data/lib/cf/mcp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1658219b52900e3a60a06fae6b80bd90fd571a8bcf2160c8f0df5a7a3b511d25
|
|
4
|
+
data.tar.gz: 39710ad835537043a3474fddaa19489ffaca49b7cc2557ea0fee8a48a7085350
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ed0f8a7ba2103e65a3f39feca6a511290401483ef552365e8a8738ccdbecb220eb160cb27a9bc48f95cad595a9ab17a8fc67221fa47012e33a6490735b38624
|
|
7
|
+
data.tar.gz: e558148330f15b8b68a65a8b033cd3ea860c9af480d4b41faf512635e73dae5dbe5b25e78608dc5626e2268e6a17d0091d39839c04c2f8c9d7ebdc9f937bada5
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.15.2] - 2026-01-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Favicon support (48x48 PNG) served at `/favicon.png` and `/favicon.ico`
|
|
13
|
+
- Favicon link tag in HTML template for browser tab icons
|
|
14
|
+
|
|
8
15
|
## [0.15.1] - 2026-01-26
|
|
9
16
|
|
|
10
17
|
### Added
|
|
@@ -205,6 +212,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
205
212
|
- `cf_list_category` - List items by category
|
|
206
213
|
- `cf_get_details` - Get full documentation by name
|
|
207
214
|
|
|
215
|
+
[0.15.2]: https://github.com/pusewicz/cf-mcp/compare/v0.15.1...v0.15.2
|
|
208
216
|
[0.15.1]: https://github.com/pusewicz/cf-mcp/compare/v0.15.0...v0.15.1
|
|
209
217
|
[0.15.0]: https://github.com/pusewicz/cf-mcp/compare/v0.14.3...v0.15.0
|
|
210
218
|
[0.14.3]: https://github.com/pusewicz/cf-mcp/compare/v0.14.2...v0.14.3
|
data/lib/cf/mcp/server.rb
CHANGED
|
@@ -120,9 +120,10 @@ module CF
|
|
|
120
120
|
[404, {"content-type" => "application/json"}, ['{"error":"Not found"}']]
|
|
121
121
|
when %r{^/http(/|$)}
|
|
122
122
|
http_transport.handle_request(request)
|
|
123
|
-
when "/logo.svg", "/logo.png"
|
|
124
|
-
# Serve
|
|
123
|
+
when "/logo.svg", "/logo.png", "/favicon.png", "/favicon.ico"
|
|
124
|
+
# Serve static assets from public directory
|
|
125
125
|
filename = path.delete_prefix("/")
|
|
126
|
+
filename = "favicon.png" if filename == "favicon.ico" # Serve PNG for .ico requests
|
|
126
127
|
logo_path = File.join(public_dir, filename)
|
|
127
128
|
if File.exist?(logo_path)
|
|
128
129
|
content_type = filename.end_with?(".svg") ? "image/svg+xml" : "image/png"
|
data/lib/cf/mcp/version.rb
CHANGED