Skip to content

Commit 01e90c2

Browse files
[App Config] 1.2.0-beta.2 release (Azure#15572)
1 parent 67be5d8 commit 01e90c2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

sdk/appconfiguration/app-configuration/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.2.0-beta.2 (Unreleased)
3+
## 1.2.0-beta.2 (2021-06-08)
44

55
- With [#15136](https://github.com/Azure/azure-sdk-for-js/pull/15136), if the key of a feature flag(setting with `contentType="application/vnd.microsoft.appconfig.ff+json;charset=utf-8"`) doesn't start with `".appconfig.featureflag/"` (featureFlagPrefix), SDK adds the prefix before sending the request.
66
- New design for feature flags and secret references,

sdk/appconfiguration/app-configuration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@azure/app-configuration",
33
"author": "Microsoft Corporation",
44
"description": "An isomorphic client library for the Azure App Configuration service.",
5-
"version": "1.2.0-beta.1",
5+
"version": "1.2.0-beta.2",
66
"sdk-type": "client",
77
"keywords": [
88
"node",

sdk/appconfiguration/app-configuration/src/appConfigurationClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const packageName = "azsdk-js-app-configuration";
7070
* User - Agent header. There's a unit test that makes sure it always stays in sync.
7171
* @internal
7272
*/
73-
export const packageVersion = "1.2.0-beta.1";
73+
export const packageVersion = "1.2.0-beta.2";
7474
const apiVersion = "1.0";
7575
const ConnectionStringRegex = /Endpoint=(.*);Id=(.*);Secret=(.*)/;
7676
const deserializationContentTypes = {

sdk/appconfiguration/app-configuration/src/generated/src/appConfigurationContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http";
1010
import { ApiVersion10, AppConfigurationOptionalParams } from "./models";
1111

1212
const packageName = "app-configuration";
13-
const packageVersion = "1.2.0-beta.1";
13+
const packageVersion = "1.2.0-beta.2";
1414

1515
/** @internal */
1616
export class AppConfigurationContext extends coreHttp.ServiceClient {

0 commit comments

Comments
 (0)