greptile 3.4.2 → 3.5.0
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 +20 -0
- package/README.md +1 -1
- package/dist/greptile.js +575 -429
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ All notable changes to the Greptile CLI.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 3.5.0 - 2026-09-02
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- A CLI running from inside a Claude Code plugin is now recognized as such.
|
|
12
|
+
It previously read as a standalone install and offered — and from
|
|
13
|
+
`greptile update`, ran — the `install.sh` installer, which cannot update a
|
|
14
|
+
plugin's copy. `greptile update` now explains that the plugin owns updates.
|
|
15
|
+
- `greptile update` now self-upgrades only for installs it can identify:
|
|
16
|
+
npm, bun, and pnpm globals, and `install.sh` bundles in the directory
|
|
17
|
+
`install.sh` writes to. Anything else — a distro package, a Nix store path,
|
|
18
|
+
a version-manager shim, a binary copied onto `PATH` — is reported as
|
|
19
|
+
unidentifiable rather than handed the standalone installer, which would
|
|
20
|
+
otherwise plant a second copy alongside the one already installed.
|
|
21
|
+
- The daily update notice still appears for those installs and for plugin
|
|
22
|
+
bundles; it now shows the new version without a command it cannot offer,
|
|
23
|
+
instead of naming an upgrade path that does not apply. Agent-skill notices
|
|
24
|
+
also survive, since `greptile skills` works regardless of how the CLI
|
|
25
|
+
itself was distributed.
|
|
26
|
+
|
|
7
27
|
## 3.4.2 - 2026-08-26
|
|
8
28
|
|
|
9
29
|
### Changed
|
package/README.md
CHANGED
|
@@ -284,7 +284,7 @@ The native handler prefills a shorter prompt and may require you to submit it.
|
|
|
284
284
|
greptile update
|
|
285
285
|
```
|
|
286
286
|
|
|
287
|
-
This checks for a newer release and upgrades in place.
|
|
287
|
+
This checks for a newer release and upgrades in place for npm, bun, pnpm, and standalone `install.sh` installs. Three cases are handled differently: Homebrew prints `brew upgrade greptile` for you to run, a CLI that ships inside a Claude Code plugin is updated by updating the plugin, and an install the CLI can't identify — a distro package, a Nix store path, a version-manager shim, a binary copied onto your `PATH` — is reported as such so you can update it the way you installed it. The CLI also checks for updates once a day and prints a notice when one is available; set `GREPTILE_NO_UPDATE_CHECK=1` to turn that off.
|
|
288
288
|
|
|
289
289
|
## Reference
|
|
290
290
|
|