|
1 | 1 | # Changelog |
2 | 2 |
|
3 | | -## UNRELEASED |
| 3 | +## v0.33.0 |
4 | 4 |
|
5 | 5 | ### Breaking |
6 | 6 |
|
@@ -510,54 +510,54 @@ ports before ready, like so: |
510 | 510 | apiVersion: v1 |
511 | 511 | kind: Service |
512 | 512 | metadata: |
513 | | - name: rauthy-headless |
| 513 | + name: rauthy-headless |
514 | 514 | spec: |
515 | | - type: ClusterIP |
516 | | - clusterIP: None |
517 | | - # Make sure to only publish them on the headless service |
518 | | - # and NOT the one you are using via your reverse proxy! |
519 | | - publishNotReadyAddresses: true |
520 | | - sessionAffinity: None |
521 | | - selector: |
522 | | - app: rauthy |
523 | | - ports: |
524 | | - - name: hiqlite-raft |
525 | | - protocol: TCP |
526 | | - port: 8100 |
527 | | - targetPort: 8100 |
528 | | - - name: hiqlite-api |
529 | | - protocol: TCP |
530 | | - port: 8200 |
531 | | - targetPort: 8200 |
| 515 | + type: ClusterIP |
| 516 | + clusterIP: None |
| 517 | + # Make sure to only publish them on the headless service |
| 518 | + # and NOT the one you are using via your reverse proxy! |
| 519 | + publishNotReadyAddresses: true |
| 520 | + sessionAffinity: None |
| 521 | + selector: |
| 522 | + app: rauthy |
| 523 | + ports: |
| 524 | + - name: hiqlite-raft |
| 525 | + protocol: TCP |
| 526 | + port: 8100 |
| 527 | + targetPort: 8100 |
| 528 | + - name: hiqlite-api |
| 529 | + protocol: TCP |
| 530 | + port: 8200 |
| 531 | + targetPort: 8200 |
532 | 532 | ``` |
533 | 533 |
|
534 | 534 | Then you can make use of the new readiness check in the `StatefulSet`: |
535 | 535 |
|
536 | 536 | ```yaml |
537 | 537 | readinessProbe: |
538 | | - httpGet: |
539 | | - scheme: HTTP |
540 | | - # Hiqlite API port |
541 | | - port: 8200 |
542 | | - path: /ready |
543 | | - initialDelaySeconds: 5 |
544 | | - # Do NOT increase this period, because otherwise K8s may not catch |
545 | | - # a shutting down pod fast enough and may keep routing requests to |
546 | | - # it while is will be unable to handle them properly because of |
547 | | - # the shutdown. |
548 | | - periodSeconds: 3 |
549 | | - # We may get a single failure during leader switches |
550 | | - failureThreshold: 2 |
| 538 | + httpGet: |
| 539 | + scheme: HTTP |
| 540 | + # Hiqlite API port |
| 541 | + port: 8200 |
| 542 | + path: /ready |
| 543 | + initialDelaySeconds: 5 |
| 544 | + # Do NOT increase this period, because otherwise K8s may not catch |
| 545 | + # a shutting down pod fast enough and may keep routing requests to |
| 546 | + # it while is will be unable to handle them properly because of |
| 547 | + # the shutdown. |
| 548 | + periodSeconds: 3 |
| 549 | + # We may get a single failure during leader switches |
| 550 | + failureThreshold: 2 |
551 | 551 | livenessProbe: |
552 | | - httpGet: |
553 | | - scheme: HTTP |
554 | | - # Rauthy API port |
555 | | - port: 8080 |
556 | | - path: /auth/v1/health |
557 | | - initialDelaySeconds: 60 |
558 | | - periodSeconds: 30 |
559 | | - # We may get a single failure during leader switches |
560 | | - failureThreshold: 2 |
| 552 | + httpGet: |
| 553 | + scheme: HTTP |
| 554 | + # Rauthy API port |
| 555 | + port: 8080 |
| 556 | + path: /auth/v1/health |
| 557 | + initialDelaySeconds: 60 |
| 558 | + periodSeconds: 30 |
| 559 | + # We may get a single failure during leader switches |
| 560 | + failureThreshold: 2 |
561 | 561 | ``` |
562 | 562 |
|
563 | 563 | Apart from that, the `hiqlite-wal` had a bug where the `last_purged_log_id` was overwritten with |
@@ -3589,8 +3589,8 @@ different values now: |
3589 | 3589 |
|
3590 | 3590 | ```rust |
3591 | 3591 | struct HealthResponse { |
3592 | | - db_healthy: bool, |
3593 | | - cache_healthy: bool, |
| 3592 | + db_healthy: bool, |
| 3593 | + cache_healthy: bool, |
3594 | 3594 | } |
3595 | 3595 | ``` |
3596 | 3596 |
|
@@ -5891,11 +5891,11 @@ flow will be started: |
5891 | 5891 |
|
5892 | 5892 | - A user changes the E-Mail in the Account view. |
5893 | 5893 | - The E-Mail will not be updated immediately, but: |
5894 | | - - A verification mail will be sent to the new address with an expiring magic link. |
5895 | | - - After the user clicked the link in the mail, the new address will be verified. |
| 5894 | + - A verification mail will be sent to the new address with an expiring magic link. |
| 5895 | + - After the user clicked the link in the mail, the new address will be verified. |
5896 | 5896 | - Once a user verifies the new E-Mail: |
5897 | | - - The address will finally be updated in the users profile. |
5898 | | - - Information E-Mails about the change will be sent to the old and the new address |
| 5897 | + - The address will finally be updated in the users profile. |
| 5898 | + - Information E-Mails about the change will be sent to the old and the new address |
5899 | 5899 |
|
5900 | 5900 | #### `EMAIL_SUB_PREFIX` config variable |
5901 | 5901 |
|
@@ -6003,9 +6003,9 @@ Webauthn / FIDO 2 updates and features coming in the near future. |
6003 | 6003 | - Removed duplicate `sub` claims from JWT ID Tokens |
6004 | 6004 | [a35db33](https://github.com/sebadob/rauthy/commit/a35db330ff7c6ee680a7d834f08a3db077e08073) |
6005 | 6005 | - Small UI improvements: |
6006 | | - - Show loading indicator when doing a password change |
6007 | | - - The Loading animation was changes from JS to a CSS animation |
6008 | | - [abd0a06](https://github.com/sebadob/rauthy/commit/abd0a06280de4fedef9028f142b6e844bf132d80) |
| 6006 | + - Show loading indicator when doing a password change |
| 6007 | + - The Loading animation was changes from JS to a CSS animation |
| 6008 | + [abd0a06](https://github.com/sebadob/rauthy/commit/abd0a06280de4fedef9028f142b6e844bf132d80) |
6009 | 6009 | - Upgrades to actix-web 4.4 + rustls 0.21 (and all other minor upgrades) |
6010 | 6010 | [070a453](https://github.com/sebadob/rauthy/commit/070a453aaa584ff8d024284de91477626fe5ea6c) |
6011 | 6011 |
|
@@ -6041,10 +6041,10 @@ than the docker hub free tier is. |
6041 | 6041 | [77886a9](https://github.com/sebadob/rauthy/commit/77886a958655b721e96c092df739627d0d5d9172) |
6042 | 6042 | [1061fc2](https://github.com/sebadob/rauthy/commit/1061fc212bb684b153ae99f1439ea312091e32cd) |
6043 | 6043 | - Update the users language in different places: |
6044 | | - - Language switch in the Account page |
6045 | | - - Fetch users chosen language from User Registration |
6046 | | - - Selector from Registration in Admin UI |
6047 | | - [5ade849](https://github.com/sebadob/rauthy/commit/5ade849dd5a0b139c73a61b8fefde03eff3036bf) |
| 6044 | + - Language switch in the Account page |
| 6045 | + - Fetch users chosen language from User Registration |
| 6046 | + - Selector from Registration in Admin UI |
| 6047 | + [5ade849](https://github.com/sebadob/rauthy/commit/5ade849dd5a0b139c73a61b8fefde03eff3036bf) |
6048 | 6048 |
|
6049 | 6049 | ## v0.14.2 |
6050 | 6050 |
|
|
0 commit comments