5 Commits
Author SHA1 Message Date
Rene Nochebuena 27ad07793f chore(core): framework version alignment to v1.2.0 2026-08-08 02:22:57 -06:00
Rene Nochebuena e8503d4758 chore(core): framework version alignment to v1.1.3 2026-08-08 01:26:03 -06:00
Rene Nochebuena 9ad775457c chore(core): framework version alignment to v1.1.2 2026-08-08 00:42:17 -06:00
Rene Nochebuena d75086f361 chore(core): framework version alignment to v1.1.1 2026-08-07 23:31:15 -06:00
Rene Nochebuena b01cbd3be6 docs(core): fix logz.Options -> logz.Config; bump to v1.1.0 (#1)
docs(core): fix logz.Options -> logz.Config in doc examples; bump to v1.1.0

Coordinated framework release. Documentation-only code change plus the shared
version bump.

- core/launcher/doc.go, core/logz/doc.go: logz.New(logz.Options{...}) ->
  logz.Config (Options was retired per ADR-003; the constructor takes Config).
- go.mod: contracts -> v1.1.0 (via go get + go mod tidy).

Verified by compiling the example patterns against the real API. Badge -> v1.1.0.

Reviewed-on: #1
Co-authored-by: Rene Nochebuena Guerrero <rene@nochebuena.dev>
Co-committed-by: Rene Nochebuena Guerrero <rene@nochebuena.dev>
2026-08-07 18:47:18 -06:00
6 changed files with 51 additions and 6 deletions
+45
View File
@@ -6,6 +6,51 @@ This module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html
---
## [1.2.0] — 2026-08-08
Minor — coordinated framework version alignment. No code or API changes in this module.
### Changed
- Bumped `contracts` to v1.2.0.
## [1.1.3] — 2026-08-08
Patch — coordinated framework version alignment.
### Changed
- Bumped einherjar dependencies (\`contracts\`) to v1.1.3. No code or API changes.## [1.1.2] — 2026-08-08
Patch — coordinated framework version alignment.
### Changed
- Bumped `contracts` to v1.1.2. No code or API changes.
## [1.1.1] — 2026-08-07
Patch — coordinated framework version alignment.
### Changed
- Bumped `contracts` to v1.1.1 (framework version alignment). No code or API changes.
## [1.1.0] — 2026-08-07
Coordinated framework release. Documentation fix plus the framework version bump.
### Fixed
- **Package doc examples referenced the retired `logz.Options`.** `logz.New` takes
`logz.Config`; the `launcher` and `logz` package docs showed `logz.New(logz.Options{…})`,
which does not compile. Both corrected to `logz.Config`, verified by compiling the example
patterns against the real API.
### Changed
- Bumped `contracts` to v1.1.0 (framework version alignment).
## [1.0.0] — 2026-05-28
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
# einherjar/core
[![version](https://img.shields.io/badge/version-v1.0.0-5C4EE5?style=flat-square)](https://code.nochebuena.dev/einherjar/core)
[![version](https://img.shields.io/badge/version-v1.2.0-5C4EE5?style=flat-square)](https://code.nochebuena.dev/einherjar/core)
[![license](https://img.shields.io/badge/license-AGPL--3.0-22863A?style=flat-square)](LICENSE)
[![go](https://img.shields.io/badge/Go-1.26+-00ADD8?style=flat-square&logo=go&logoColor=white)](https://go.dev)
+1 -1
View File
@@ -3,7 +3,7 @@ module code.nochebuena.dev/einherjar/core
go 1.26
require (
code.nochebuena.dev/einherjar/contracts v1.0.0
code.nochebuena.dev/einherjar/contracts v1.2.0
github.com/go-playground/validator/v10 v10.30.1
)
+2 -2
View File
@@ -1,5 +1,5 @@
code.nochebuena.dev/einherjar/contracts v1.0.0 h1:hRudEtOIqU7vwedYLsCh8+9q5dCnKb61qX+zibqImRU=
code.nochebuena.dev/einherjar/contracts v1.0.0/go.mod h1:ccltUtrFb5+MEJdkx2VVEUL+xC5pupVlVVsMM8AlCWI=
code.nochebuena.dev/einherjar/contracts v1.2.0 h1:i1qschvttqXJTd7yaFmHkvtj4weGfTcTkj8q9sG6pRI=
code.nochebuena.dev/einherjar/contracts v1.2.0/go.mod h1:ccltUtrFb5+MEJdkx2VVEUL+xC5pupVlVVsMM8AlCWI=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/gabriel-vasile/mimetype v1.4.12 h1:e9hWvmLYvtp846tLHam2o++qitpguFiYCKbn0w9jyqw=
+1 -1
View File
@@ -12,7 +12,7 @@
//
// Usage:
//
// logger := logz.New(logz.Options{JSON: true})
// logger := logz.New(logz.Config{JSON: true})
// lc := launcher.New(logger)
//
// lc.Append(db, cache, server)
+1 -1
View File
@@ -15,7 +15,7 @@
//
// Usage:
//
// logger := logz.New(logz.Options{
// logger := logz.New(logz.Config{
// Level: slog.LevelDebug,
// JSON: true,
// StaticArgs: []any{"service", "api"},