Вход на сайт

Просмотр новости

Найдите то, что Вас интересует

Announcing FusionAuth 1.64 - The Secret Shibe

Дата публикации: 19-03-2026 00:00:00

FusionAuth 1.64.0 stores secret values in lambdas like a doggo stores rawhide bones in your couch cushions.

Основное содержимое страницы с новостью.

Happy zero-th birthday, FusionAuth 1.64.0! This version includes Lambda Secrets, dynamic discovery for OAuth endpoints, codes for email passwordless login, and custom page titles for simple themes. As usual, we've also taken the time to quash some long(and short)standing bugs.

We're calling this release the Secret Shibe since this version stores secret values for your lambdas as assuredly as a faithful doggo stores rawhide bones in your couch cushions:

secret shibe

secret shibe Safely Access Secrets from Lambdas#

We all have secrets. Now FusionAuth enables you to store and access them securely with lambda secrets.

  1. In the Admin UI, visit Settings -> Key Master .
  2. From the dropdown in the upper right, select Import secret .
  3. Specify a unique secret name, which you will use to access your secret from a lambda.
  4. Specify your secret value (the value you are securing). entering a secret name and secret value in the Admin UIentering a secret name and secret value in the Admin UI

To access secrets, use the context parameter. Pass a secret name to context.services.secrets.get() to retrieve the corresponding secret value as a string:

function populate(jwt, user, registration, context) {
  // access a secret named 'super-secret-key'
  var apiKey = context.services.secrets.get('super-secret-key');

  // use that secret as an api credential
  var response = fetch("https://api.example.org/api/status?" + user.id, {
    method: "GET",
    headers: {
      "content-type": "application/x-www-form-urlencoded"
      "authorization": "Basic " + apiKey
    }
  });

  if (response.status === 200) {
    var jsonResponse = JSON.parse(response.body);
    console.log('response: ' + jsonResponse);
    jwt.status = jsonResponse.status;
  } else {
    console.warn('failed request: ' + response.status);
    jwt.status = "basic";
  }
}

All right then, keep your secrets.

Codes for Email Passwordless Login#

Previously, passwordless login via email always used the ClickableLink (magic link) option. But not everyone likes magic. Sometimes it's nicer to just get a code. To accommodate this preference, the email login strategy now supports both magic links and the FormField option, which provides a passwordless login code.

Entering a passwordless login code into the FusionAuth login page

Entering a passwordless login code into the FusionAuth login page

To configure the default email login strategy for /api/passwordless/start, set application.passwordlessConfiguration.emailLoginStrategy. However, you can also specify a method when you call the API.

Custom Page Titles for Simple Themes#

Previously, Simple Themes didn't include the ability to override the page title. As a result, Simple Theme users would occasionally notice tab names like "Login | FusionAuth". For users who aren't aware of their CIAM provider, this could be confusing:

tab displaying the default fusionauth page title

tab displaying the default fusionauth page title

1.64.0 adds the ability to set custom page titles for Simple Themes. Just add oauth2-authorize-page-title to your custom messages, for example:

oauth2-authorize-page-title=Even Though I Love FusionAuth I Still Want to Override This Page Title

We also fixed a large number of bugs: for a full list, take a look at changelog entries marked with the "fix" category in the release notes.

Thanks again for using FusionAuth! We still love you, even if many of you want to hide our name from your page titles.

Схожие новости

#Наименование новостиТональностьИнформативностьДата публикации
1Announcing FusionAuth 1.63 - The Proof Pangolin012.6726-02-2026
2Announcing FusionAuth 1.68 - Intelligent Kamfa018.1430-06-2026
3Announcing FusionAuth 1.65 - Tenant Manager SSO Tasmanian Mountain Skink015.7130-04-2026
4Announcing the FusionAuth Brainf* SDK010.401-04-2026
5Stop Being Your Customers' SSO Helpdesk013.4721-04-2026
6Intelligent MFA Should Challenge Risk, Not Loyal Customers013.8809-07-2026
7FusionAuth Launches Intelligent MFA in Latest Release as Demand Surges for Identity Infrastructure Customers Can Control011.514-07-2026
8Kickstart FusionAuth with the CLI05.1812-05-2026
9Django: introducing django-integrity-policy03503-06-2026
10Раскрыт секрет хранения личных данных0508-07-2026

Классификация: Пресс-релизы. Схожих патентов: 0. Схожих новостей: 10. Тональность: 0. Информативность: 13.89. Источник: fusionauth.io.