Skip to content

Commit 5a6c1cb

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/fast-uri-3.1.2
2 parents c5a2ee0 + 42d9704 commit 5a6c1cb

10 files changed

Lines changed: 270 additions & 110 deletions

.github/workflows/security.yml

Lines changed: 51 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,54 @@ jobs:
4444
if: github.event_name == 'push'
4545
run: npm audit --audit-level=critical
4646

47-
- name: Trufflehog git history scan
48-
uses: trufflesecurity/trufflehog@main
49-
with:
50-
extra_args: --only-verified
47+
- name: Install TruffleHog
48+
env:
49+
TRUFFLEHOG_VERSION: v3.95.3
50+
TRUFFLEHOG_ARCHIVE: trufflehog_3.95.3_linux_amd64.tar.gz
51+
run: |
52+
set -euo pipefail
53+
curl -fsSL --retry 3 --retry-delay 2 \
54+
-o "/tmp/${TRUFFLEHOG_ARCHIVE}" \
55+
"https://github.com/trufflesecurity/trufflehog/releases/download/${TRUFFLEHOG_VERSION}/${TRUFFLEHOG_ARCHIVE}"
56+
curl -fsSL --retry 3 --retry-delay 2 \
57+
-o /tmp/trufflehog_checksums.txt \
58+
"https://github.com/trufflesecurity/trufflehog/releases/download/${TRUFFLEHOG_VERSION}/trufflehog_${TRUFFLEHOG_VERSION#v}_checksums.txt"
59+
cd /tmp
60+
grep " ${TRUFFLEHOG_ARCHIVE}\$" trufflehog_checksums.txt | sha256sum --check -
61+
tar -xzf "${TRUFFLEHOG_ARCHIVE}" trufflehog
62+
sudo install /tmp/trufflehog /usr/local/bin/trufflehog
63+
trufflehog --version
64+
65+
- name: TruffleHog git history scan
66+
env:
67+
PR_BASE_SHA: ${{ github.event.pull_request.base.sha }}
68+
PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
69+
PUSH_BEFORE_SHA: ${{ github.event.before }}
70+
PUSH_AFTER_SHA: ${{ github.event.after }}
71+
run: |
72+
set -euo pipefail
73+
74+
BASE=""
75+
HEAD=""
76+
77+
if [ "${{ github.event_name }}" = "pull_request" ]; then
78+
BASE="$PR_BASE_SHA"
79+
HEAD="$PR_HEAD_SHA"
80+
elif [ "${{ github.event_name }}" = "push" ]; then
81+
HEAD="$PUSH_AFTER_SHA"
82+
if [ "$PUSH_BEFORE_SHA" != "0000000000000000000000000000000000000000" ]; then
83+
BASE="$PUSH_BEFORE_SHA"
84+
fi
85+
fi
86+
87+
args=(git "file://${GITHUB_WORKSPACE}" --fail --no-update --github-actions --only-verified)
88+
89+
if [ -n "$BASE" ]; then
90+
args+=(--since-commit "$BASE")
91+
fi
92+
93+
if [ -n "$HEAD" ]; then
94+
args+=(--branch "$HEAD")
95+
fi
96+
97+
trufflehog "${args[@]}"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
".": "0.1.0-alpha.27",
3-
"apps/web": "0.1.0-alpha.25",
2+
".": "0.1.0-alpha.28",
3+
"apps/web": "0.1.0-alpha.26",
44
"apps/worker": "0.1.0-alpha.3"
55
}

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
".": "0.3.11",
3-
"apps/web": "0.2.10",
2+
".": "0.3.12",
3+
"apps/web": "0.2.11",
44
"apps/worker": "0.2.0"
55
}

CHANGELOG-DEVELOP.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.0-alpha.28](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.1.0-alpha.27...vibe-coding-profiler-v0.1.0-alpha.28) (2026-05-14)
4+
5+
6+
### Bug Fixes
7+
8+
* **web:** upgrade inngest sdk ([e3a4dde](https://github.com/devakone/vibe-coding-profiler/commit/e3a4ddebbdff6edc0fe73dcdc88997ac75f927ba))
9+
310
## [0.1.0-alpha.27](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.1.0-alpha.26...vibe-coding-profiler-v0.1.0-alpha.27) (2026-02-24)
411

512

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.3.12](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.3.11...vibe-coding-profiler-v0.3.12) (2026-05-14)
4+
5+
6+
### Bug Fixes
7+
8+
* **web:** upgrade inngest sdk ([e3a4dde](https://github.com/devakone/vibe-coding-profiler/commit/e3a4ddebbdff6edc0fe73dcdc88997ac75f927ba))
9+
310
## [0.3.11](https://github.com/devakone/vibe-coding-profiler/compare/vibe-coding-profiler-v0.3.10...vibe-coding-profiler-v0.3.11) (2026-03-16)
411

512

apps/web/CHANGELOG-DEVELOP.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.0-alpha.26](https://github.com/devakone/vibe-coding-profiler/compare/web-v0.1.0-alpha.25...web-v0.1.0-alpha.26) (2026-05-14)
4+
5+
6+
### Bug Fixes
7+
8+
* **web:** upgrade inngest sdk ([e3a4dde](https://github.com/devakone/vibe-coding-profiler/commit/e3a4ddebbdff6edc0fe73dcdc88997ac75f927ba))
9+
310
## [0.1.0-alpha.25](https://github.com/devakone/vibe-coding-profiler/compare/web-v0.1.0-alpha.24...web-v0.1.0-alpha.25) (2026-02-24)
411

512

apps/web/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.11](https://github.com/devakone/vibe-coding-profiler/compare/web-v0.2.10...web-v0.2.11) (2026-05-14)
4+
5+
6+
### Bug Fixes
7+
8+
* **web:** upgrade inngest sdk ([e3a4dde](https://github.com/devakone/vibe-coding-profiler/commit/e3a4ddebbdff6edc0fe73dcdc88997ac75f927ba))
9+
310
## [0.2.10](https://github.com/devakone/vibe-coding-profiler/compare/web-v0.2.9...web-v0.2.10) (2026-03-16)
411

512

apps/web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vibe-coding-profiler/web",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"private": true,
55
"scripts": {
66
"dev": "next dev -p 8108",
@@ -27,7 +27,7 @@
2727
"class-variance-authority": "^0.7.1",
2828
"clsx": "^2.1.1",
2929
"cmdk": "^1.1.1",
30-
"inngest": "^3.49.3",
30+
"inngest": "^3.54.2",
3131
"lucide-react": "^0.575.0",
3232
"next": "16.1.6",
3333
"qrcode": "^1.5.4",

0 commit comments

Comments
 (0)