diff --git a/docs/release-notes.rst b/docs/release-notes.rst index fdbfd66a888..509c1e02661 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -10,6 +10,31 @@ Version 0.26 ************** +Version 0.26.5 +============== + +**Release Date:** December 07, 2023 + +**Bug Fixes** + +- Fix an issue where ``log_policies`` would be compared against the trial log printing experiment + config, which could often cause patterns like ``(.*) match (.*)`` to incorrectly always match. + +- Fix an issue where the ``determined.launch.wrap_rank`` module, often used by custom launch + layers, was improperly buffering multiple lines separated by a carriage return, such as logs + emitted from the popular TQDM library. TQDM logs will pass now through without undue buffering. + +**New Features** + +- Authentication: Users can now provide a Pachyderm address in the master config under + ``integrations.pachyderm.address``. This address will be added as an environment variable called + ``PACHD_ADDRESS`` in task containers. The OIDC raw ID token will also be available as an + environment variable called ``DEX_TOKEN`` in task containers. + +- Authentication: In the enterprise edition, add synchronization of OIDC user group memberships + with existing groups. Configure by setting ``oidc.groups_claim_name`` in the master config to the + string value of the authenticator's claim name for groups. + Version 0.26.4 ============== diff --git a/docs/release-notes/8488-tqdm.rst b/docs/release-notes/8488-tqdm.rst deleted file mode 100644 index 74c72ee145f..00000000000 --- a/docs/release-notes/8488-tqdm.rst +++ /dev/null @@ -1,7 +0,0 @@ -:orphan: - -**Fixes** - -- Fix an issue where the determined.launch.wrap_rank module, often used by custom launch layers, - was improperly buffering multiple lines separated by a carriage return, such as logs emitted from - the popular TQDM library. TQDM logs will pass now through without undue buffering. diff --git a/docs/release-notes/fix-log-policies-match-itself.rst b/docs/release-notes/fix-log-policies-match-itself.rst deleted file mode 100644 index 97cbc3c03df..00000000000 --- a/docs/release-notes/fix-log-policies-match-itself.rst +++ /dev/null @@ -1,6 +0,0 @@ -:orphan: - -**Bug Fixes** - -- Fix an issue where ``log_policies`` would be compared against the trial log printing experiment - config which could often cause patterns like ``(.*) match (.*)`` to incorrectly always match. diff --git a/docs/release-notes/oidc-pachyderm-env-vars.rst b/docs/release-notes/oidc-pachyderm-env-vars.rst deleted file mode 100644 index 85469b22e5b..00000000000 --- a/docs/release-notes/oidc-pachyderm-env-vars.rst +++ /dev/null @@ -1,8 +0,0 @@ -:orphan: - -**New Features** - -- Authentication: Users can now provide a pachyderm address in the master config under - integrations.pachyderm.address. This address will be added as an environment variable called - ``PACHD_ADDRESS`` in the task container. The OIDC raw ID token will also be available as an - environment variable called ``DEX_TOKEN`` in the task container. diff --git a/docs/release-notes/oidc-sync-groups.rst b/docs/release-notes/oidc-sync-groups.rst deleted file mode 100644 index 3a5b7a5580d..00000000000 --- a/docs/release-notes/oidc-sync-groups.rst +++ /dev/null @@ -1,7 +0,0 @@ -:orphan: - -**New Features** - -Authentication: In the enterprise edition, add synchronization of OIDC user group memberships with -existing groups. Configure by setting oidc.groups_claim_name to the string value of the -authenticator's claim name for groups.