Fix runtime crash by declaring @opentelemetry/api as required dependency#204
Merged
bradygaster merged 1 commit intobradygaster:mainfrom Mar 5, 2026
Merged
Fix runtime crash by declaring @opentelemetry/api as required dependency#204bradygaster merged 1 commit intobradygaster:mainfrom
bradygaster merged 1 commit intobradygaster:mainfrom
Conversation
tmcclell
pushed a commit
to tmcclell/squad
that referenced
this pull request
Mar 5, 2026
M2: CI/CD publish workflows (squad-publish.yml, squad-insider-publish.yml, updated squad-ci.yml) M3: resolveSquad() walk-up algorithm + resolveGlobalSquadPath() platform defaults + 10 tests Closes bradygaster#202 Closes bradygaster#204 Closes bradygaster#205 Closes bradygaster#210 Closes bradygaster#211 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
bradygaster
added a commit
that referenced
this pull request
Mar 5, 2026
Fix runtime crash by declaring @opentelemetry/api as required dependency
bradygaster
added a commit
that referenced
this pull request
Mar 5, 2026
Session: 2026-03-05T21:05Z-release-planning Requested by: Copilot (Scribe role) Changes: - Logged orchestration entries for Keaton, McManus, Kobayashi, Fenster, Coordinator - Created session log documenting v0.8.21 release planning outcomes - Merged 3 decision inbox files into decisions.md - Deleted inbox files (contributor page, PR merges, user directives) Decision Merged: - Every release MUST include contributor page update - Workstreams MUST be included in v0.8.21 Outcomes documented: - 4 PRs merged to dev (#204, #203, #198, #189) - 2 issues fixed (#210, #195) - Build passing, 98.8% test coverage - Release scope: 18 unreleased commits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix runtime crash by declaring
@opentelemetry/apias a runtime dependencyProblem
squad-sdkimports@opentelemetry/apiat module load time (runtime path), but it is not guaranteed to be installed in fresh consumer installs.This causes:
npx squad initto fail withERR_MODULE_NOT_FOUND@opentelemetry/apias a workaroundChange
@opentelemetry/apitodependenciesinpackages/squad-sdk/package.jsonWhy this is correct
Because the package is imported at runtime, it must be resolvable as a runtime dependency.
Validation
@bradygaster/squad-clinpx squad init