Skip to content

Commit

Permalink
Reset changes to the patch version.
Browse files Browse the repository at this point in the history
  • Loading branch information
billwert committed Mar 1, 2024
1 parent 9bd80a3 commit dc279c0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 34 deletions.
10 changes: 0 additions & 10 deletions sdk/identity/azure-identity-broker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
# Release History

## 1.1.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 1.0.2 (2024-02-05)

### Other Changes
Expand Down
4 changes: 2 additions & 2 deletions sdk/identity/azure-identity-broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.azure</groupId>
<artifactId>azure-identity-broker</artifactId>
<version>1.1.0-beta.1</version><!-- {x-version-update;com.azure:azure-identity-broker;current} -->
<version>1.0.2</version><!-- {x-version-update;com.azure:azure-identity-broker;current} -->

<name>Microsoft Azure Identity Brokered Authentication Library</name>
<description>This module contains brokered authentication extensions for Microsoft Azure Identity.</description>
Expand All @@ -34,7 +34,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.11.3</version> <!-- {x-version-update;com.azure:azure-identity;current} -->
<version>1.11.2</version> <!-- {x-version-update;com.azure:azure-identity;current} -->
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,6 @@ public InteractiveBrowserBrokerCredentialBuilder enableLegacyMsaPassthrough() {
return this;
}

/**
* Enables automatically using the signed-in user's account for brokered authentication instead of
* of prompting the user with a login dialog.
*
* @param useOperatingSystemAccount Boolean value to determine if the operating system account should be used.
* @return An updated instance of this builder with useOperatingSystemAccount set.
*/
public InteractiveBrowserCredentialBuilder useOperatingSystemAccount(boolean useOperatingSystemAccount) {
CredentialBuilderBaseHelper.getClientOptions(this).
setUseOperatingSystemAccount(useOperatingSystemAccount);
return this;
}

/**
* {@inheritDoc}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,4 @@ void proxyOptions() {
builder.proxyOptions(null);
});
}

@Test
void setUseOperatingSystemAccount() {
assertDoesNotThrow(() -> {
InteractiveBrowserBrokerCredentialBuilder builder = new InteractiveBrowserBrokerCredentialBuilder();
builder.useOperatingSystemAccount(true);
builder.build();
});
}
}

0 comments on commit dc279c0

Please sign in to comment.