ur-agent 1.50.3 → 1.50.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/dist/cli.js +9633 -12726
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.50.5
|
|
4
|
+
|
|
5
|
+
- Added `.github/workflows/release.yml`. The repository had only a test
|
|
6
|
+
workflow, so tags never became production releases: 18 tags existed with no
|
|
7
|
+
GitHub Release and no automated publish. Pushing a `v*` tag now runs the full
|
|
8
|
+
gate (typecheck, lint, tests, build, `release:check`, CLI smoke test),
|
|
9
|
+
publishes a GitHub Release whose notes are the matching `CHANGELOG.md`
|
|
10
|
+
section, and pushes the verified tarball to npm.
|
|
11
|
+
- The tag is not trusted on its own. The run fails if it disagrees with
|
|
12
|
+
`package.json` or if `CHANGELOG.md` has no section for that version, and the
|
|
13
|
+
artifact published to npm is the same one the gate verified rather than a
|
|
14
|
+
fresh pack. Publishing is skipped, not failed, when the version is already on
|
|
15
|
+
npm or when `NPM_TOKEN` is absent.
|
|
16
|
+
|
|
17
|
+
## 1.50.4
|
|
18
|
+
|
|
19
|
+
- Removed the `/install-github-app` command and its GitHub App setup flow,
|
|
20
|
+
along with the startup tip suggesting `@ur` be tagged from issues and pull
|
|
21
|
+
requests. The composite action at the repository root is removed with it.
|
|
22
|
+
- The agent is unchanged. `ur agent-ci` and the Agentic CI engine still compile
|
|
23
|
+
workflows, evaluate triggers, and run isolated verified patches exactly as
|
|
24
|
+
before; only the interactive installer that wrote those files into a
|
|
25
|
+
repository is gone.
|
|
26
|
+
|
|
3
27
|
## 1.50.3
|
|
4
28
|
|
|
5
29
|
- Removed the GitHub App installation step from `/install-github-app`. UR
|