Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9cf2d70226 | |||
| e5f3e1714f | |||
| 4fe1c41b82 | |||
| c60e745665 |
@@ -0,0 +1,55 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project are documented here. Format loosely
|
||||||
|
follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions
|
||||||
|
correspond to git tags (`vX.Y.Z`). Entries here cover theta-env's own
|
||||||
|
orchestration code; see each submodule's own `CHANGELOG.md`
|
||||||
|
([proxy](https://github.com/theta42/proxy/blob/master/CHANGELOG.md),
|
||||||
|
[sso-manager-node](https://github.com/theta42/sso-manager-node/blob/master/CHANGELOG.md))
|
||||||
|
for what changed inside the apps it composes.
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.1.3] - 2026-07-16
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- `CHANGELOG.md` (this file). Closes [#43](https://github.com/theta42/theta-env/issues/43).
|
||||||
|
|
||||||
|
### Bumped
|
||||||
|
- proxy -> [v1.1.3](https://github.com/theta42/proxy/releases/tag/v1.1.3)
|
||||||
|
- sso-manager-node -> [v1.1.3](https://github.com/theta42/sso-manager-node/releases/tag/v1.1.3)
|
||||||
|
|
||||||
|
## [1.1.2] - 2026-07-16
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- `docs/index.md` (the published site's home page) never linked to `architecture.md`, `quickstart.md`, or `standalone.md` — added a "More docs" section so they're reachable from the site instead of only by direct URL.
|
||||||
|
|
||||||
|
### Bumped
|
||||||
|
- proxy -> [v1.1.2](https://github.com/theta42/proxy/releases/tag/v1.1.2)
|
||||||
|
- sso-manager-node -> [v1.1.2](https://github.com/theta42/sso-manager-node/releases/tag/v1.1.2)
|
||||||
|
|
||||||
|
## [1.1.1] - 2026-07-16
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- `setup.sh` now pins `proxy` and `sso-manager-node` to their latest release tag (`vX.Y.Z`) instead of the tip of `master`. A rebuild now always lands on a tagged, versioned release of each app rather than whatever was most recently merged upstream.
|
||||||
|
|
||||||
|
### Bumped
|
||||||
|
- proxy -> [v1.1.1](https://github.com/theta42/proxy/releases/tag/v1.1.1)
|
||||||
|
- sso-manager-node -> [v1.1.1](https://github.com/theta42/sso-manager-node/releases/tag/v1.1.1)
|
||||||
|
|
||||||
|
## [1.1.0] - 2026-07-16
|
||||||
|
|
||||||
|
First tagged release. Establishes the `vX.Y.Z` tag convention going forward.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- `setup.sh` now reports which submodules actually moved to a newer commit during an update, instead of updating silently.
|
||||||
|
|
||||||
|
### Bumped
|
||||||
|
- proxy -> [v1.1.0](https://github.com/theta42/proxy/releases/tag/v1.1.0)
|
||||||
|
- sso-manager-node -> [v1.1.0](https://github.com/theta42/sso-manager-node/releases/tag/v1.1.0)
|
||||||
|
|
||||||
|
[Unreleased]: https://github.com/theta42/theta-env/compare/v1.1.3...HEAD
|
||||||
|
[1.1.3]: https://github.com/theta42/theta-env/compare/v1.1.2...v1.1.3
|
||||||
|
[1.1.2]: https://github.com/theta42/theta-env/compare/v1.1.1...v1.1.2
|
||||||
|
[1.1.1]: https://github.com/theta42/theta-env/compare/v1.1.0...v1.1.1
|
||||||
|
[1.1.0]: https://github.com/theta42/theta-env/releases/tag/v1.1.0
|
||||||
@@ -475,4 +475,10 @@ the gitignored `./backups/` before each rebuild.
|
|||||||
before building — not the tip of `master` — so each run builds the newest
|
before building — not the tip of `master` — so each run builds the newest
|
||||||
tagged release of each app, not whatever's most recently merged upstream. To
|
tagged release of each app, not whatever's most recently merged upstream. To
|
||||||
lock to the pinned commits (offline rebuild, or a deliberate pin), run
|
lock to the pinned commits (offline rebuild, or a deliberate pin), run
|
||||||
`SKIP_SUBMODULE_UPDATE=1 ./setup.sh`.
|
`SKIP_SUBMODULE_UPDATE=1 ./setup.sh`.
|
||||||
|
|
||||||
|
See [CHANGELOG.md](CHANGELOG.md) for what changed in each theta-env release
|
||||||
|
(and each submodule's own `CHANGELOG.md` —
|
||||||
|
[proxy](https://github.com/theta42/proxy/blob/master/CHANGELOG.md),
|
||||||
|
[sso-manager-node](https://github.com/theta42/sso-manager-node/blob/master/CHANGELOG.md)
|
||||||
|
— for what changed inside the apps themselves).
|
||||||
@@ -58,6 +58,15 @@ any time to converge the stack to `./config/`. For the full config reference,
|
|||||||
architecture, and running each project standalone, see the
|
architecture, and running each project standalone, see the
|
||||||
**[GitHub repository](https://github.com/theta42/theta-env)**.
|
**[GitHub repository](https://github.com/theta42/theta-env)**.
|
||||||
|
|
||||||
|
## More docs
|
||||||
|
|
||||||
|
- **[Quickstart](quickstart.html)** — prerequisites and a step-by-step first run.
|
||||||
|
- **[Architecture](architecture.html)** — how the pieces fit together.
|
||||||
|
- **[Running each project standalone](standalone.html)** — using the SSO
|
||||||
|
Manager or the proxy on their own, without theta-env.
|
||||||
|
- **[Changelog](https://github.com/theta42/theta-env/blob/master/CHANGELOG.md)**
|
||||||
|
— what changed in each release.
|
||||||
|
|
||||||
## Related projects
|
## Related projects
|
||||||
|
|
||||||
- **[SSO Manager](https://theta42.github.io/sso-manager-node/)** — the OIDC
|
- **[SSO Manager](https://theta42.github.io/sso-manager-node/)** — the OIDC
|
||||||
|
|||||||
+1
-1
Submodule proxy updated: 5a685e9dd7...1c29ba7206
+1
-1
Submodule sso-manager-node updated: 65e43a5677...4c4fc34dcf
Reference in New Issue
Block a user