# May 2021

> **21 May 2021**

**21 May 2021**

## Improvements

Starting with this release, Action Center users can bulk self-assign actions from different Orchestrator folders.

## Bug Fixes

You may know that the **Select all** ![](https://dev-assets.cms.uipath.com/assets/images/action-center/action-center-image-select_all_icon-58dc1337-2e50e080.png) feature selects the first 30 items in an action list. Bulk operations using **Select all** remove the selected items from the current list and automatically load the next set of items. A bug that prevented the loading was fixed in this release.

**3 May 2021**

## What's New

### New Regions

Action Center is now hosted in Australia and Canada.

:::note
For information about the existing regions, click [here](https://docs.uipath.com/automation-cloud/docs/regions-and-instances#tenant-and-service-regions).
:::

### Shared Queues Across Folders

To greet the [shared queue feature from Orchestrator](https://docs.uipath.com/orchestrator/automation-cloud/latest/user-guide/managing-queues-in-orchestrator#managing-queue-links), we improved the Action Center Processes functionality by adding the `FolderPath` attribute to the queue schema.

:::note
To allow file uploads, it is mandatory to [create a Storage Bucket in Orchestrator](https://docs.uipath.com/orchestrator/docs/managing-storage-buckets#creating-storage-buckets) and provide the `BucketName` inside the queue schema.
:::

:fa-unlock: You can use only the folders you have access to.

Consider the following scenarios:

 <colgroup>
  <col/>
  <col/>
 </colgroup>
 
  
     RPA Developer Perspective  
     Business User Perspective  
  
 
 
  
   
      
         <code>FolderPath</code> is not set in the queue schema 
         <code>BucketFolderPath</code> is not set in the queue schema 
      

   
      
         When you run the queue process in Action Center, the right-side panel allows you to select one of the folders the shared queue resides in. 
         The process creates the queue item inside the selected folder. 
         Files are uploaded inside the specified storage bucket of the selected folder. 
      

  
  
   
      
         <code>FolderPath</code> is not set in the queue schema 
         <code>BucketFolderPath</code> is set in the queue schema 
      

   
      
         When you run the queue process in Action Center, the right-side panel allows you to select one of the folders the shared queue resides in. 
         The process creates the queue item inside the selected folder. 
         Files are uploaded inside the specified storage bucket that is found at the path set in the queue schema. 
      

  
  
   
      
         <code>FolderPath</code> is set in the queue schema 
         <code>BucketFolderPath</code> is set in the queue schema 
      

   
      
         When you run the process in Action Center, it creates the queue item inside the folder you set in the queue schema. 
         Files are uploaded inside the specified storage bucket that is found at the path set in the queue schema. 
      

  
 

**Example of a queue schema containing the** `FolderPath` attribute:
```
{
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "type": "object",
    "title": "The Root Schema",
    "additionalProperties": {
        "type": "string"
    },
    "required": [
        "stringTest",
        "intTest",
        "boolTest"
    ],
    "properties": {
        "stringTest": {
            "$id": "#/properties/stringTest",
            "type": "string",
            "title": "The Stringtest Schema",
            "default": "",
            "examples": [
                "stringTest"
            ],
            "pattern": "^(.*)$"
        },
        "intTest": {
            "$id": "#/properties/intTest",
            "type": "integer",
            "title": "The Inttest Schema",
            "default": 0,
            "examples": [
                30
            ]
        },
        "boolTest": {
            "$id": "#/properties/boolTest",
            "type": "boolean",
            "title": "The Booltest Schema",
            "default": false,
            "examples": [
                false
            ]
        },
        "BucketName": {
            "$id": "#/properties/BucketName",
            "type": "string",
            "title": "Bucket Name",
            "default": "Local_OR"
        },
        "FolderPath": {
            "$id": "#/properties/FolderPath",
            "type": "string",
            "title": "FolderPath",
            "default": "NewModernFolder"
        },
        "Photo_storage": {
            "title": "Photo",
            "type": "string"
        },
        "Signature_storage": {
            "title": "Photo",
            "type": "string"
        }
    }
}
```

**1 May 2021**

## Browser Update

Bye, bye, Internet Explorer!

Starting today, the Action Center cloud service is no longer available in Internet Explorer, as we have [dropped support for this browser](https://forum.uipath.com/t/internet-explorer-support-is-ending-for-orchestrator-and-automation-cloud/246419). To continue using Action Center, make sure you switch to one of the [supported browsers](https://docs.uipath.com/automation-cloud/docs/software-requirements#browser-compatibility).
