p-backlog 0.5.1 → 0.6.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 +13 -0
- package/README.md +4 -0
- package/README.ru.md +5 -0
- package/dist/cli.js +546 -233
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
- Statistics on the server read only what was appended to project journals and the CLI run log, keep parsed task
|
|
6
|
+
histories between requests, and rescan git only for new commits (a new day no longer rescans the 90-day window, and
|
|
7
|
+
if reading the main branch's log fails, the repository is shown as unavailable for that refresh instead of silently
|
|
8
|
+
showing no changes); a change in one project no longer drops the cached reports of the others.
|
|
9
|
+
- The Code tab's commit counts now also include commits of merged branches that git history simplification used to
|
|
10
|
+
skip (a merge tree-same with a parent: a change and its revert, `merge -s ours`, a change already cherry-picked) —
|
|
11
|
+
on ordinary histories nothing changes.
|
|
12
|
+
- The code cache file format changed, so the first run after this update rescans git once.
|
|
13
|
+
- An event appended to a project journal or the CLI run log no longer merges with the last line when that line lacks
|
|
14
|
+
a trailing newline (a hand edit, an interrupted write): both events stay readable.
|
|
15
|
+
|
|
3
16
|
## 0.5.1
|
|
4
17
|
|
|
5
18
|
- Every statistics chart (debt, created, check precision, effect, usage) has its own "week / day" toggle: 12 weeks or
|
package/README.md
CHANGED
|
@@ -309,3 +309,7 @@ To try a build the way a published package would install, without publishing it:
|
|
|
309
309
|
```bash
|
|
310
310
|
npm pack && npm i -g ./p-backlog-0.2.0.tgz
|
|
311
311
|
```
|
|
312
|
+
|
|
313
|
+
Releases are published to npm by the `Release` GitHub Actions workflow through npm Trusted Publishing: bump the
|
|
314
|
+
version and the CHANGELOG, run `npm run plugins`, commit, push, then push the tag `v<version>` — the workflow checks that
|
|
315
|
+
the tag matches `package.json`, runs the checks and publishes with provenance. No npm token is stored anywhere.
|
package/README.ru.md
CHANGED
|
@@ -303,3 +303,8 @@ npm run screenshots # скриншоты для README на дем
|
|
|
303
303
|
```bash
|
|
304
304
|
npm pack && npm i -g ./p-backlog-0.2.0.tgz
|
|
305
305
|
```
|
|
306
|
+
|
|
307
|
+
Версии публикует в npm workflow GitHub Actions `Release` через Trusted Publishing: поднимите версию и CHANGELOG,
|
|
308
|
+
выполните `npm run plugins`, закоммитьте, запушьте и запушьте тег `v<версия>` — workflow проверит, что тег совпадает
|
|
309
|
+
с `package.json`, прогонит проверки и опубликует пакет с подтверждением происхождения (provenance). Токен npm нигде не
|
|
310
|
+
хранится.
|