From 9c62eccf040da1788fab0348624aadd913a12051 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 19:34:35 +0000 Subject: [PATCH 1/3] chore(deps-dev): bump uuid from 8.3.2 to 14.0.0 Bumps [uuid](https://github.com/uuidjs/uuid) from 8.3.2 to 14.0.0. - [Release notes](https://github.com/uuidjs/uuid/releases) - [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md) - [Commits](https://github.com/uuidjs/uuid/compare/v8.3.2...v14.0.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 14.0.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package.json | 2 +- pnpm-lock.yaml | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 25793dd1..311c7074 100644 --- a/package.json +++ b/package.json @@ -146,7 +146,7 @@ "ts-node": "10.9.2", "ts-node-dev": "^1.1.8", "typescript": "~5.7.3", - "uuid": "^8.3.2" + "uuid": "^14.0.0" }, "engines": { "node": ">=24.14.1" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 27574e7f..d17d9f74 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -166,8 +166,8 @@ importers: specifier: ~5.7.3 version: 5.7.3 uuid: - specifier: ^8.3.2 - version: 8.3.2 + specifier: ^14.0.0 + version: 14.0.0 optionalDependencies: lzma-native: specifier: ^8.0.6 @@ -3213,6 +3213,10 @@ packages: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} + uuid@14.0.0: + resolution: {integrity: sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==} + hasBin: true + uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true @@ -6645,6 +6649,8 @@ snapshots: utils-merge@1.0.1: {} + uuid@14.0.0: {} + uuid@8.3.2: {} uuid@9.0.0: {} From 1748ecc04e6e2e935243032c96a58eb055d885ad Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 25 Apr 2026 20:41:57 -0400 Subject: [PATCH 2/3] ci: auto-create changeset for dependabot PRs (#582) --- .github/workflows/dependabot-changeset.yml | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/workflows/dependabot-changeset.yml diff --git a/.github/workflows/dependabot-changeset.yml b/.github/workflows/dependabot-changeset.yml new file mode 100644 index 00000000..6d585855 --- /dev/null +++ b/.github/workflows/dependabot-changeset.yml @@ -0,0 +1,46 @@ +name: Dependabot Changeset + +on: + pull_request: + types: [opened, reopened] + +jobs: + add-changeset: + name: Add Changeset + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + fetch-depth: 0 + + - name: Check for existing changeset + id: check + run: | + filename=".changeset/dependabot-pr-${{ github.event.pull_request.number }}.md" + if [ -f "$filename" ]; then + echo "exists=true" >> "$GITHUB_OUTPUT" + else + echo "exists=false" >> "$GITHUB_OUTPUT" + fi + + - name: Create changeset + if: steps.check.outputs.exists == 'false' + env: + PR_TITLE: ${{ github.event.pull_request.title }} + run: | + filename=".changeset/dependabot-pr-${{ github.event.pull_request.number }}.md" + printf -- '---\n"nostream": patch\n---\n\n%s\n' "$PR_TITLE" > "$filename" + + - name: Commit and push changeset + if: steps.check.outputs.exists == 'false' + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add .changeset/dependabot-pr-${{ github.event.pull_request.number }}.md + git commit -m "chore: add changeset for dependabot PR #${{ github.event.pull_request.number }}" + git push From c72fb4332bfc77661aac170c07db9176b117325b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 26 Apr 2026 00:48:00 +0000 Subject: [PATCH 3/3] chore: add changeset for uuid bump from 8.3.2 to 14.0.0 Agent-Logs-Url: https://github.com/cameri/nostream/sessions/a6da2cbf-2235-4c7e-93d7-4d11afe6a1d9 Co-authored-by: cameri <378886+cameri@users.noreply.github.com> --- .changeset/bump-uuid-to-v14.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/bump-uuid-to-v14.md diff --git a/.changeset/bump-uuid-to-v14.md b/.changeset/bump-uuid-to-v14.md new file mode 100644 index 00000000..8c0b3b35 --- /dev/null +++ b/.changeset/bump-uuid-to-v14.md @@ -0,0 +1,5 @@ +--- +"nostream": patch +--- + +Bump dev dependency uuid from 8.3.2 to 14.0.0