Before you begin
Required roles
To get the permissions that you need to update Dataform,
ask your administrator to grant you the
Dataform Editor (roles/dataform.editor
) IAM role on workspaces.
For more information about granting roles, see Manage access.
You might also be able to get the required permissions through custom roles or other predefined roles.
Update Dataform
- Look up the latest version of
@dataform/core
on the Dataform releases page in GitHub. - Go to your development workspace.
- In the Files pane, open the
package.json
file. Update the
@dataform/core
dependency with the latest Dataform version in the following format:{ "dependencies": { "@dataform/core": "XXXX" } }
Replace XXXX with the latest version of Dataform.
Click Install packages.
The following code sample updates Dataform to the 2.3.2 version inside
the package.json
file:
{
"dependencies": {
"@dataform/core": "2.3.2"
}
}
What's next
- To learn how to set up Dataform permissions, see Control access with IAM.
- To learn how to configure Dataform settings, see Configure Dataform settings.
- To learn more about Dataform, see Dataform overview.