Alloy Announcements logo

Announcements

Back to Homepage Subscribe to Updates

Labels

  • All Posts
  • Improvement
  • highlight
  • feature
  • deprecation
  • Fix
  • API
  • mesh
  • mobile
  • web

Jump to Month

  • June 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • March 2022
  • February 2022
  • December 2021
  • November 2021
  • September 2021
  • June 2021
  • April 2021
  • February 2021
  • January 2021
  • September 2020
  • July 2020
Powered️ byAnnounceKit

Create yours, for free!

highlightfeature
a month ago

Alloy May 2025 Update

We hope you've been enjoying all the recent Bank Holidays! 🌞 We've been onboarding the first Alloy Apps users and listening to their initial feedback. Lots of positive vibes but there are always ways to improve things, so we're keen to hear your thoughts!

Work is continuing on the Permissions app, with this month's focus being on new features that make user management much simpler and easier to perform. The update took place during the evening of the 29th of May. For a full list of changes, see v2.72 in the Alloy Changelog.

Please note: we are delaying the update of Alloy Mobile by one week. This is just a precautionary measure to make sure it's compatible with a recent foundational change to Alloy's engine.

Manage users in the Permissions app 👤

We've added a new User Management area to the Permissions app! If you're an admin, this provides a view of all the users in your customer project, where you can see all their properties at once. You can filter and sort the columns as needed, making it easy to isolate and group users by email address or membership.

Select a user's  >  button to show their details in a side panel. This provides a way to easily manage their membership of teams, groups and roles. You can also disable or delete the user as needed.

Need to manage users in bulk? Just select one or more users in the left list and then use the bottom toolbar to add or remove them from teams, groups or roles.

Finally, we've added a new Create User wizard to streamline the process of adding new people to your customer project.


New DesignProperty AQS node 🗄️

A new node type has been added to Alloy Query Syntax. This doesn't happen often! Currently, it can only be used via the API, or when editing code in the Advanced Query Editor of the AQS Builder.

The new DesignProperty node lets you filter queried items based on properties of their design. For now, the node has one property: Implements. It can be used in conjunction with a Guc node to filter items based on whether their design does - or doesn't – implement one or more specific interfaces.

    {
  "type": "Equals",
  "children": [
    {
      "type": "DesignProperty",
      "properties": {
        "designPropertyName": "Implements"
       }
    },
    {
      "type": "Guc",
      "properties": {
        "value": ["designInterfaces_MyExampleInterface_67f67"]
      }
    }
  ]
    }

Seasoned API users may be aware of the Design endpoint, which can return a list of designs that implement a single interface (see ReDoc). The new DesignProperty node makes this functionality more available by bringing it to all scenarios that involve AQS. It also improves upon it by letting you negate it and specify multiple interfaces when needed.

Avatar of authorBen Tookey