Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d4e5d95
fix: resolve 30 CodeQL alerts - Remove unused imports/variables, fix …
overwrite00 Jun 13, 2026
bb946c0
fix: correct CodeQL resolution defects - Restore Any import, fix cont…
overwrite00 Jun 13, 2026
f569cb0
ci: trigger CodeQL rescan
overwrite00 Jun 13, 2026
b7a3e8d
fix: resolve remaining 10 CodeQL alerts - Correct PR #53 merge issues
overwrite00 Jun 13, 2026
4ca94ed
chore: configure dependabot to target develop branch for version updates
overwrite00 Jun 13, 2026
521efb6
Merge remote-tracking branch 'origin/main' into develop
overwrite00 Jun 13, 2026
ab0a1b8
chore(deps): bump pytest from 9.0.3 to 9.1.0 in /python (#55)
dependabot[bot] Jun 13, 2026
5cbcbaa
chore(deps-dev): bump tailwindcss from 3.4.19 to 4.3.1 in /frontend (…
dependabot[bot] Jun 13, 2026
c0393c9
chore(deps-dev): bump electron from 41.2.1 to 42.4.0 in /electron (#51)
dependabot[bot] Jun 13, 2026
64afcb9
chore(deps): bump react-dom from 19.2.5 to 19.2.7 in /frontend (#50)
dependabot[bot] Jun 13, 2026
402c09c
chore(deps): bump pywin32 from 310 to 312 in /python (#48)
dependabot[bot] Jun 13, 2026
ddcb506
chore(deps): bump xattr from 1.1.0 to 1.3.0 in /python (#47)
dependabot[bot] Jun 13, 2026
675c78e
chore(deps-dev): bump electron from 42.4.0 to 42.4.1 in /electron (#59)
dependabot[bot] Jun 22, 2026
f97049f
chore(deps): bump fastapi from 0.136.3 to 0.137.2 in /python (#58)
dependabot[bot] Jun 22, 2026
8811ae1
chore(deps): bump lucide-react from 1.18.0 to 1.21.0 in /frontend (#57)
dependabot[bot] Jun 22, 2026
d990869
chore(deps): bump pypdf from 6.13.2 to 6.13.3 in /python (#56)
dependabot[bot] Jun 22, 2026
e7304b4
fix: update Tailwind CSS v4 to use @tailwindcss/postcss plugin
overwrite00 Jun 22, 2026
6f91e64
chore: bump version 0.1.2 → 0.1.3 - Maintenance and dependency update…
overwrite00 Jun 22, 2026
aaf8261
chore(deps-dev): bump undici
dependabot[bot] Jun 22, 2026
224e814
chore: bump version 0.1.3 → 0.1.4 - Security release (undici update)
overwrite00 Jun 22, 2026
547feba
Merge main into develop - resolve version conflicts (0.1.3 → 0.1.4)
overwrite00 Jun 22, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@ Format: [Semantic Versioning](https://semver.org/) — `MAJOR.MINOR.PATCH`

---

## [0.1.4] — 2026-06-22

### Security
- **Critical**: Updated undici from 7.27.2 to 7.28.0 — **7 security vulnerabilities resolved**
- **3× HIGH**: WebSocket DoS (CVE-2026-12151), TLS bypass in SOCKS5 (CVE-2026-9697), Cross-origin routing (CVE-2026-6734)
- **2× MEDIUM**: Cache bypass (CVE-2026-9678), HTTP header injection (CVE-2026-9679)
- **2× LOW**: SameSite downgrade (CVE-2026-11525), HTTP response poisoning (CVE-2026-6733)
- Transitive dependency in @electron-forge
- Fixes WebSocket fragment exhaustion, SOCKS5 proxy pool reuse, TLS certificate validation

### Quality
- All tests passing: 47 passed, 1 skipped
- Electron build: verified with undici 7.28.0
- Frontend build: confirmed compatible
- No regressions

---

## [0.1.3] — 2026-06-22

### Fixed
Expand Down
10 changes: 5 additions & 5 deletions electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metalens",
"version": "0.1.3",
"version": "0.1.4",
"description": "Universal File Metadata Manager",
"author": "Graziano Mariella",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metalens-frontend",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion python/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from dataclasses import dataclass


VERSION = "0.1.3"
VERSION = "0.1.4"
APP_NAME = "MetaLens"
SIDECAR_HOST = "127.0.0.1"

Expand Down
Loading