@ferrflow/win32-arm64 7.0.0 → 7.0.2
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/README.md +21 -7
- package/bin/ferrflow.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
1
3
|
# FerrFlow
|
|
2
4
|
|
|
5
|
+
**Universal semantic versioning for monorepos and classic repos.**
|
|
6
|
+
|
|
7
|
+
Reads your commit history, works out the right version bump, updates your version files,<br />
|
|
8
|
+
writes the changelog, and cuts the tagged release. Any language, any repo layout.
|
|
9
|
+
|
|
3
10
|
[](https://github.com/FerrLabs/FerrFlow/releases/latest)
|
|
4
11
|
[](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
|
|
5
12
|
[](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
|
|
@@ -7,13 +14,20 @@
|
|
|
7
14
|
[](https://badge.socket.dev/npm/package/ferrflow/latest)
|
|
8
15
|
[](https://scorecard.dev/viewer/?uri=github.com/FerrLabs/FerrFlow)
|
|
9
16
|
|
|
10
|
-
|
|
17
|
+
[Documentation](https://ferrflow.com/docs) | [Changelog](https://ferrlabs.com/changelog/) | [GitHub App](https://github.com/apps/ferrflow)
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
</div>
|
|
13
20
|
|
|
14
21
|
## Why FerrFlow?
|
|
15
22
|
|
|
16
|
-
|
|
23
|
+
One compiled binary, no runtime to install. Native monorepo support, 16 version-file formats
|
|
24
|
+
across every ecosystem below, and it works with whatever layout your repo already has.
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
ferrflow release
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
That is the whole release: bump, changelog, tag, GitHub release.
|
|
17
31
|
|
|
18
32
|
## Supported version files
|
|
19
33
|
|
|
@@ -33,7 +47,7 @@ A single compiled binary with no runtime dependencies. Native monorepo support,
|
|
|
33
47
|
| `packageswift` | `Package.swift` | Swift | top-level `let <name>Version = "…"` |
|
|
34
48
|
| `cabal` | `*.cabal` | Haskell | top-level `version:` field |
|
|
35
49
|
| `cmake` | `CMakeLists.txt` | C / C++ | `VERSION` argument of `project()` |
|
|
36
|
-
| `gomod` | `go.mod` | Go | git tag only
|
|
50
|
+
| `gomod` | `go.mod` | Go | git tag only, no file write |
|
|
37
51
|
| `txt` | `VERSION`, `VERSION.txt` | Any | entire file content |
|
|
38
52
|
|
|
39
53
|
## Installation
|
|
@@ -138,7 +152,7 @@ ferrflow migrate # auto-detects .releaserc
|
|
|
138
152
|
ferrflow migrate --from semantic-release
|
|
139
153
|
```
|
|
140
154
|
|
|
141
|
-
It maps `tagFormat`, `branches`, and the common plugins (`changelog`, `exec`, `github`/`gitlab`) to their FerrFlow equivalents, and prints a summary of what mapped, what was ignored, and what needs manual review
|
|
155
|
+
It maps `tagFormat`, `branches`, and the common plugins (`changelog`, `exec`, `github`/`gitlab`) to their FerrFlow equivalents, and prints a summary of what mapped, what was ignored, and what needs manual review. Anything without a FerrFlow equivalent is surfaced, never guessed. JSON `.releaserc` is supported today; YAML `.releaserc` and JS `release.config.js` are reported as unsupported rather than mis-parsed.
|
|
142
156
|
|
|
143
157
|
### JSON Schema
|
|
144
158
|
|
|
@@ -550,12 +564,12 @@ steps:
|
|
|
550
564
|
- uses: actions/checkout@v6
|
|
551
565
|
with:
|
|
552
566
|
fetch-depth: 0
|
|
553
|
-
- uses: FerrLabs/FerrFlow@
|
|
567
|
+
- uses: FerrLabs/FerrFlow@v7
|
|
554
568
|
with:
|
|
555
569
|
bot: true
|
|
556
570
|
```
|
|
557
571
|
|
|
558
|
-
That
|
|
572
|
+
That is the whole job. No `setup-node`, no extra dependencies. FerrFlow's Rust binary handles the OIDC exchange directly, so minimal self-hosted runners work out of the box.
|
|
559
573
|
|
|
560
574
|
Three auth modes are supported: `bot: true` uses the hosted FerrFlow App (recommended); `token: <PAT>` uses a personal access token or your own GitHub App token (DIY); omitting both falls back to the workflow's `GITHUB_TOKEN` (simplest, but release events won't trigger downstream workflows).
|
|
561
575
|
|
package/bin/ferrflow.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED