greptile 3.4.1 → 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 CHANGED
@@ -4,6 +4,41 @@ 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
+
27
+ ## 3.4.2 - 2026-08-26
28
+
29
+ ### Changed
30
+
31
+ - The organization settings editor now shows pull request update reviews as
32
+ disabled when the setting is absent, matching Greptile's default.
33
+
34
+ ### Fixed
35
+
36
+ - `greptile login` now completes sign-in against self-hosted Greptile
37
+ deployments whose authorization server binds loopback redirects to
38
+ `localhost`.
39
+ - Messages with counts now use the correct singular label for one review,
40
+ file, email, second, or comment.
41
+
7
42
  ## 3.4.1 - 2026-08-17
8
43
 
9
44
  ### 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. Homebrew installs are the exception: run `brew upgrade greptile` instead (the command will tell you). 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.
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