Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release

on:
workflow_dispatch: # Actions tab → Release → Run workflow (version read from package.json)
push:
tags: ['v*']

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 10

- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm

- run: pnpm install --frozen-lockfile
- run: pnpm wxt prepare # pnpm 10 blocks postinstall scripts
- run: pnpm compile
- run: pnpm test
- run: pnpm zip # .output/netdigest-<version>-chrome.zip

- id: meta
run: echo "version=$(node -p "require('./package.json').version")" >> "$GITHUB_OUTPUT"

- uses: softprops/action-gh-release@v2
with:
tag_name: v${{ steps.meta.outputs.version }}
name: NetDigest ${{ steps.meta.outputs.version }}
generate_release_notes: true
files: .output/netdigest-${{ steps.meta.outputs.version }}-chrome.zip
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.1.0 (2026-06-12)

- Public landing page at https://djdevpro.github.io/net-digest/ embedding the real panel on scripted demo traffic, with a marquee feature carousel, full SEO layer (Open Graph, JSON-LD, sitemap) and mobile spacing.
- Marketing README with a measured token benchmark (pnpm bench: about 7x smaller than a HAR export).
- Community standards: license, contributing guide, code of conduct, security policy, issue and PR templates.
- Quality gates: vitest suite (42 tests over the compaction, redaction, filtering, initiator and sourcemap logic) wired into CI; merges to main require green checks.
- Release automation: this workflow builds, tests, zips and publishes the extension package.
- Extension polish: subtle button gradients and shadows, humanized UI texts.

## 1.0.0 (2026-06-12)

Initial release.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "netdigest",
"description": "Compact network capture for DevTools, exported as token-efficient TOON",
"private": true,
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"icons": "node scripts/icons.mjs",
Expand Down
Loading