Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2025

This PR contains the following updates:

Package Change Age Confidence
github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0 -> v1.5.0 age confidence

Release Notes

AzureAD/microsoft-authentication-library-for-go (github.com/AzureAD/microsoft-authentication-library-for-go)

v1.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: AzureAD/microsoft-authentication-library-for-go@v1.4.2...v1.5.0

v1.4.2

Compare Source

What's Changed

Full Changelog: AzureAD/microsoft-authentication-library-for-go@v1.4.1...v1.4.2

v1.4.1

Compare Source

What's Changed

Full Changelog: AzureAD/microsoft-authentication-library-for-go@v1.4.0...v1.4.1

v1.4.0

Compare Source

Release Summary: Add Managed Identity Support
Overview

This Release introduces Managed Identity support to the Microsoft Authentication Library for Go through a new client. The new client supports multiple sources for managed identities, including:

  • IMDS
  • Azure Arc
  • Service Fabric
  • App Service
  • Azure Machine Learning
  • Cloud Shell

The client can handle both System Assigned Managed Identities and User Assigned Managed Identities.
For user-assigned identities, you can specify:

  • Client ID
  • Resource ID
  • Object ID
Key Changes
  • New Managed Identity Client: Added a new client to handle managed identity authentication.
  • Multiple Sources Support: The client supports various managed identity sources, enhancing flexibility and usability.
  • Tests: Comprehensive tests have been added to ensure the reliability and correctness of the new functionality.
  • Documentation: Updated documentation to include details on the new managed identity client and usage instructions.
Code Sample

Here's a basic example of how to use the new managed identity client to acquire a token:

package main

import (
    "context"
    "fmt"
    "github.com/AzureAD/microsoft-authentication-library-for-go/msal"
)

func main() {
	miSystemAssigned, err := mi.New(mi.SystemAssigned())
	if err != nil {
		log.Fatal(err)
	}
	result, err := miSystemAssigned.AcquireToken(context.TODO(), "https://management.azure.com")
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println("token expire at : ", result.ExpiresOn)
}

v1.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: AzureAD/microsoft-authentication-library-for-go@v1.3.2...v1.3.3

v1.3.2

Compare Source

Re-release v1.3.2, which was accidentally tagged as v.1.3.2

What's Changed

Full Changelog: AzureAD/microsoft-authentication-library-for-go@v1.3.1...v1.3.2

v1.3.1

Compare Source

What's Changed

Full Changelog: AzureAD/microsoft-authentication-library-for-go@v1.2.3...v1.3.1

v1.3.0

Compare Source

v1.2.3

Compare Source

What's Changed

New Contributors

Full Changelog: AzureAD/microsoft-authentication-library-for-go@v1.2.2...v1.2.3

v1.2.2: MSAL Go 1.2.2

Compare Source

Adds support for using the AuthScheme extensibility point for ROPC Support authnscheme in AcquireByUsernamePassword

v1.2.1: MSAL Go 1.2.1

Compare Source

Bug fixes

ADFS token caching fix - #​459
Token cache schema upgrade - #​454

v1.2.0: MSAL Go 1.2.0

Compare Source

Add an extensibility point for Azure Arc to request and cache Access Token of type POP #​443

v1.1.1: MSAL Go 1.1.1

Compare Source

Bug Fixes

Fix AcquireTokenSilent for ADFS users #​446

v1.1.0: MSAL Go 1.1.0

Compare Source

New Features

Allow public client app developers to take control of opening the browser #​422

Bug fixes

Normalize token cache keys #​425
Require an account in public client silent auth #​426
Bump dependency github.com/golang-jwt/jwt/ to v5 #​414


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/azure-ad-microsoft-authentication-library-for-go-monorepo branch from f15b89a to 6d78226 Compare February 14, 2025 16:24
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.3.3 fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.0 Feb 14, 2025
@renovate renovate bot force-pushed the renovate/azure-ad-microsoft-authentication-library-for-go-monorepo branch from 6d78226 to 683472e Compare February 27, 2025 19:27
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.0 fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.1 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/azure-ad-microsoft-authentication-library-for-go-monorepo branch from 683472e to e57bb82 Compare March 26, 2025 16:02
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.1 fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.2 Mar 26, 2025
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.2 fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.2 - autoclosed Aug 13, 2025
@renovate renovate bot closed this Aug 13, 2025
@renovate renovate bot deleted the renovate/azure-ad-microsoft-authentication-library-for-go-monorepo branch August 13, 2025 09:09
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.2 - autoclosed fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.2 Aug 13, 2025
@renovate renovate bot reopened this Aug 13, 2025
@renovate renovate bot force-pushed the renovate/azure-ad-microsoft-authentication-library-for-go-monorepo branch from fa435bc to e57bb82 Compare August 13, 2025 15:45
@renovate renovate bot force-pushed the renovate/azure-ad-microsoft-authentication-library-for-go-monorepo branch from e57bb82 to 20881a4 Compare September 8, 2025 00:00
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.4.2 fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.5.0 Sep 8, 2025
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.5.0 fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.5.0 - autoclosed Oct 17, 2025
@renovate renovate bot closed this Oct 17, 2025
@renovate renovate bot changed the title fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.5.0 - autoclosed fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.5.0 Oct 17, 2025
@renovate renovate bot reopened this Oct 17, 2025
@renovate renovate bot force-pushed the renovate/azure-ad-microsoft-authentication-library-for-go-monorepo branch from 20881a4 to b7adc4f Compare October 17, 2025 05:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant