authentik-api 2026.2.2.rc1 → 2026.2.2.rc2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e10f01b0610c1a29713c57ae6f0ec6527a376002cb66b13f59fff9c2310926dc
4
- data.tar.gz: 651aa892a36986a89d32d576c9e7653059284d9a1b28640270cd08c26caaa6c4
3
+ metadata.gz: 7afc70d357545745eeeb1942afd19f139dd7df27a713c8237710571318652520
4
+ data.tar.gz: eb308906c1241c50b65782d014cfeaeadd2a1d5e86751badf75fb5381655a8eb
5
5
  SHA512:
6
- metadata.gz: 9b7f9cee019a26aa8bc3b115925fe243184de444c4556d49c01dd3e536cec10419342ffbc48401d549c168534690af56a04981c634d31a36427c3c51750999f4
7
- data.tar.gz: e6b7f61ce5ab27b404b422cad118d91f67436c3eccdff23bad71094e8e3466baf005f58f2bdc250efe261f643996d4b5ec718dfbddaeddc5709a7d3272c3b3cc
6
+ metadata.gz: 125fc528310f6b96d265e07d43a5de17c4874a8ce90454071268392faecc56230beeca81050428d81bb7b11403703718efab0c32323d35277c91eb7e4b6152dd
7
+ data.tar.gz: 182e89851f224c9d44964f0e06edd0cec05cd03a1ca2006cd2d69f1f77a5cb957bdbf61997445afb7e586e3936291878668d829a0b0c4b80a7d797820ea22d85
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # 🔓 authentik API Client
2
2
 
3
3
  [![Gem Version](http://img.shields.io/gem/v/authentik-api.svg)][gem]
4
- [![License: MIT](https://img.shields.io/github/license/david-uhlig/authentik-api?label=License&labelColor=343B42&color=blue)][license]
4
+ [![Static Badge](https://img.shields.io/badge/License-MIT-blue)][license]
5
5
  [![Tests](https://github.com/david-uhlig/authentik-api/actions/workflows/main.yml/badge.svg)][tests]
6
6
 
7
- ## Baseline client generated directly from OpenAPI definitions
7
+ ## Baseline client generated directly from OpenAPI definitions
8
8
 
9
9
  A Ruby client for the [authentik] API; an open-source Identity Provider (IdP) and Single Sign On (SSO) platform, auto-generated using the [OpenAPI Generator].
10
10
 
@@ -33,7 +33,7 @@ gem "authentik-api" "~> 2026.2.0"
33
33
  # An exact patch version tracking your authentik instance.
34
34
  gem "authentik-api" "2026.2.1"
35
35
  # To test out a release candidate, you have to specify the exact version.
36
- gem "authentik-api" "2026.5.0-rc1"
36
+ gem "authentik-api" "2026.5.0.rc1"
37
37
  # If you want to incorporate the latest (unreleased) changes, you can add this
38
38
  # repo's GitHub source. It tracks authentik's main branch. Updates daily, but
39
39
  # only when authentik's OpenAPI schema changes.
@@ -46,7 +46,7 @@ Please see the auto-generated [API Readme]. Consider using the [authentik-client
46
46
 
47
47
  ## Versioning
48
48
 
49
- This library's versioning tracks authentik's versioning scheme of `<YYYY>.<M>.<PATCH>[<-PRERELEASE>]`, for example `2026.2.0-rc1`. Under the rare circumstance that the library itself needs an intermediate update, we add a fourth component, e.g. `2026.2.0.1-rc1`. Note: The prerelease component always appears last.
49
+ This library's versioning tracks authentik's versioning scheme of `<YYYY>.<M>.<PATCH>[.<PRERELEASE>]`, for example `2026.2.0.rc1`. Under the rare circumstance that the library itself needs an intermediate update, we add a fourth component, e.g. `2026.2.0.1.rc1`. Note: The prerelease component always appears last.
50
50
 
51
51
  ## Changelog
52
52
 
data/README_API.md CHANGED
@@ -6,8 +6,8 @@ Making authentication simple.
6
6
 
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
- - API version: 2026.2.2-rc1
10
- - Package version: 2026.2.2-rc1
9
+ - API version: 2026.2.2-rc2
10
+ - Package version: 2026.2.2.rc2
11
11
  - Generator version: 7.22.0-SNAPSHOT
12
12
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
13
13
 
@@ -24,16 +24,16 @@ gem build authentik-api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./authentik-api-2026.2.2-rc1.gem
27
+ gem install ./authentik-api-2026.2.2.rc2.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./authentik-api-2026.2.2-rc1.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./authentik-api-2026.2.2.rc2.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'authentik-api', '~> 2026.2.2-rc1'
36
+ gem 'authentik-api', '~> 2026.2.2.rc2'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -6,6 +6,6 @@ Any manual changes will be lost when the OpenAPI scheme changes.
6
6
 
7
7
  module Authentik
8
8
  module Api
9
- VERSION = '2026.2.2.rc1'
9
+ VERSION = '2026.2.2.rc2'
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authentik-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2026.2.2.rc1
4
+ version: 2026.2.2.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Uhlig
@@ -1887,7 +1887,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1887
1887
  requirements:
1888
1888
  - - ">="
1889
1889
  - !ruby/object:Gem::Version
1890
- version: 3.2.0
1890
+ version: 3.3.0
1891
1891
  required_rubygems_version: !ruby/object:Gem::Requirement
1892
1892
  requirements:
1893
1893
  - - ">="