Skip to content

Commit 40dd9e4

Browse files
[App Config] changelog and update versions for GA (Azure#16115)
For 1.2.0 release
1 parent f143bcf commit 40dd9e4

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

sdk/appconfiguration/app-configuration/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Release History
22

3-
## 1.2.0-beta.3 (Unreleased)
3+
## 1.2.0 (2021-07-07)
44

55
### Features Added
6-
- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
76

8-
### Breaking Changes
7+
- Special configuration settings - feature flag and secret reference are now supported. 🎉
8+
9+
- For types, use `ConfigurationSetting<FeatureFlagValue>` and `ConfigurationSetting<SecretReferenceValue>`.
10+
- Use `parseFeatureFlag` and `parseSecretReference` methods to parse the configuration settings into feature flag and secret reference respectively.
911

10-
### Key Bugs Fixed
12+
- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
1113

1214
### Fixed
1315

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.3",
5+
"version": "1.2.0",
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.3";
73+
export const packageVersion = "1.2.0";
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.3";
13+
const packageVersion = "1.2.0";
1414

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

0 commit comments

Comments
 (0)