app-settings-js 0.1.0 → 0.1.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/CHANGELOG.md +11 -1
- package/README.md +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.2] — 2026-09-13
|
|
10
|
+
|
|
11
|
+
No changes to this package; released to stay aligned with App Settings.
|
|
12
|
+
|
|
13
|
+
## [0.1.1] — 2026-09-12
|
|
14
|
+
|
|
15
|
+
No changes to this package; released to stay aligned with App Settings.
|
|
16
|
+
|
|
9
17
|
## [0.1.0] — 2026-09-12
|
|
10
18
|
|
|
11
19
|
First release.
|
|
@@ -29,5 +37,7 @@ First release.
|
|
|
29
37
|
- Automatic retries with jittered exponential backoff on network errors, 5xx
|
|
30
38
|
and 429, honouring `Retry-After` and never retrying a `POST`.
|
|
31
39
|
|
|
32
|
-
[Unreleased]: https://github.com/connordoman/app-settings/compare/v0.1.
|
|
40
|
+
[Unreleased]: https://github.com/connordoman/app-settings/compare/v0.1.2...HEAD
|
|
41
|
+
[0.1.2]: https://github.com/connordoman/app-settings/compare/v0.1.1...v0.1.2
|
|
42
|
+
[0.1.1]: https://github.com/connordoman/app-settings/compare/v0.1.0...v0.1.1
|
|
33
43
|
[0.1.0]: https://github.com/connordoman/app-settings/releases/tag/v0.1.0
|
package/README.md
CHANGED
|
@@ -314,10 +314,11 @@ check-all` runs the server's checks and the SDK's together.
|
|
|
314
314
|
|
|
315
315
|
### Releasing
|
|
316
316
|
|
|
317
|
+
The SDK shares one version with the Go server and the React registry, and
|
|
318
|
+
publishes from CI when a `v*` tag is pushed. See [Releasing](../README.md#releasing).
|
|
319
|
+
|
|
317
320
|
```sh
|
|
318
|
-
just version 0.2.0 # bump, then write the CHANGELOG entry
|
|
319
321
|
just preflight # tests, build, and the packaging checks below
|
|
320
|
-
just publish # bun publish; prepublishOnly re-runs the gate
|
|
321
322
|
```
|
|
322
323
|
|
|
323
324
|
`just verify` runs [`@arethetypeswrong/cli`](https://arethetypeswrong.github.io)
|
package/package.json
CHANGED