keycloak-sdk 0.1.0 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +13 -6
- data/lib/keycloak_sdk/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39cf848bf3f01443707855e1a981e8bcaf4fdbb3a5ac9fbf17a7b6ac010e33f4
|
|
4
|
+
data.tar.gz: 489cfcf03654e7da757bfcd6020cf148d3fb9550c89ea9f14c09569977aa47b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2c51c7d06751f6ae0c6ed76d83083400f679354a011d1dbc720c93fd374cf1047092c4dc8214931ea8f25fd2a6099e5103577c35aee998194e0c56b7645c9fb
|
|
7
|
+
data.tar.gz: 3d112a01d129df0a1bbebb7ef3b0ba75b4947fd5bb1014a7471beef728f2d22be9020d264f98660d887f1820e58e6014caa4bf12cd0dc8787571568b4c320a56
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Authentication (OIDC / OAuth2) and the Admin REST API for [Keycloak](https://www
|
|
|
4
4
|
|
|
5
5
|
Part of a **nine-language polyglot SDK** (Java · Python · Node · Go · C# · PHP · Rust · Ruby · Kotlin) — one API surface, isomorphic across all of them: [github.com/xzawed/KeyCloakSDK](https://github.com/xzawed/KeyCloakSDK).
|
|
6
6
|
|
|
7
|
-
>
|
|
7
|
+
> **`1.0.0` is on RubyGems** — the first release carrying the stability guarantee. A bare `gem install keycloak-sdk` resolves it.
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -14,16 +14,16 @@ Part of a **nine-language polyglot SDK** (Java · Python · Node · Go · C# ·
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
gem install keycloak-sdk
|
|
17
|
+
gem install keycloak-sdk
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Or in a `Gemfile`:
|
|
21
21
|
|
|
22
22
|
```ruby
|
|
23
|
-
gem "keycloak-sdk", "
|
|
23
|
+
gem "keycloak-sdk", "~> 1.0"
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
`~> 1.0` accepts every `1.x` release and stops before `2.0` — the boundary a breaking change has to cross under the promise below.
|
|
27
27
|
|
|
28
28
|
> **Name mismatch, on purpose:** the gem is `keycloak-sdk` (hyphen) but the require path and module are `keycloak_sdk` / `KeycloakSdk` (underscore) — this avoids colliding with the existing `keycloak` gem's `Keycloak` module.
|
|
29
29
|
|
|
@@ -73,11 +73,18 @@ Masking covers this SDK's own `#inspect`; it cannot cover what your logging fram
|
|
|
73
73
|
|
|
74
74
|
## Versioning and support
|
|
75
75
|
|
|
76
|
-
This SDK is
|
|
76
|
+
This SDK is **`1.0`** and follows SemVer: a breaking change to the public API requires a **major** bump. That promise is machine-backed — CI diffs this lane's public API against the **previously published artifact** on every build (`yard diff`), and a removal or an incompatible change fails the build. ⚠️ **This lane’s gate is narrower than its siblings’**: Ruby has no equivalent of `japicmp`/`gorelease`, so the gate catches a **removed** public object but not a changed method signature — that case is caught by review, not by machine. ⚠️ **The gate compares the API _surface_.** A change that leaves the surface identical but alters behaviour is not caught by it, so read the release notes before upgrading.
|
|
77
|
+
|
|
78
|
+
Only the newest released version of each language SDK receives security fixes; there are no long-term-support lines and older releases are not backported to.
|
|
79
|
+
|
|
80
|
+
**Each of the nine languages versions independently.** All nine reached `1.0.0` on the same day because they earned the same guarantee at the same time — they do **not** move in lockstep afterwards.
|
|
77
81
|
|
|
78
82
|
## Documentation
|
|
79
83
|
|
|
80
|
-
- [
|
|
84
|
+
- [Project overview](https://github.com/xzawed/KeyCloakSDK) — all nine languages, what is identical and what is not
|
|
85
|
+
- [Changelog](https://github.com/xzawed/KeyCloakSDK/blob/main/CHANGELOG.md) — **read this before upgrading**; breaking changes are listed per language
|
|
86
|
+
- [Getting started](https://github.com/xzawed/KeyCloakSDK/blob/main/docs/guides/getting-started.md#ruby) — install and quickstart for this language
|
|
87
|
+
- [Compatibility](https://github.com/xzawed/KeyCloakSDK/blob/main/docs/reference/compatibility.md) — which Keycloak server range and base libraries each published version shipped against
|
|
81
88
|
- [Deploying a Keycloak server](https://github.com/xzawed/KeyCloakSDK/blob/main/docs/guides/deploying-keycloak-server.md) — the server this SDK talks to
|
|
82
89
|
- [Security policy](https://github.com/xzawed/KeyCloakSDK/blob/main/SECURITY.md)
|
|
83
90
|
- Full example: [`examples/quickstart.rb`](https://github.com/xzawed/KeyCloakSDK/blob/main/ruby/examples/quickstart.rb)
|
data/lib/keycloak_sdk/version.rb
CHANGED