Skip to content

Commit 85abbd7

Browse files
authored
Prepare v1.1.0 release (#14)
* Update to configcat-common v8.1.0 * Fix dependency vulnerabilities * Bump version * Add public API re-exports
1 parent 0272cbd commit 85abbd7

File tree

3 files changed

+62
-60
lines changed

3 files changed

+62
-60
lines changed

Diff for: package-lock.json

+57-57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "configcat-js-chromium-extension",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "ConfigCat is a configuration as a service that lets you manage your features and configurations without actually deploying new code.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -33,7 +33,7 @@
3333
"homepage": "https://configcat.com",
3434
"dependencies": {
3535
"@types/chrome": "0.0.193",
36-
"configcat-common": "^8.0.2",
36+
"configcat-common": "^8.1.0",
3737
"tslib": "^2.4.1"
3838
},
3939
"devDependencies": {

Diff for: src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export type { IConfig, ISetting, ITargetingRule, IPercentageOption, SettingValue
9797

9898
export { SettingType, Comparator } from "configcat-common";
9999

100-
export type { IConfigCatClient } from "configcat-common";
100+
export type { IConfigCatClient, IConfigCatClientSnapshot } from "configcat-common";
101101

102102
export { SettingKeyValue } from "configcat-common";
103103

@@ -113,6 +113,8 @@ export { RefreshResult } from "configcat-common";
113113

114114
export type { IProvidesHooks, HookEvents } from "configcat-common";
115115

116+
export { ClientReadyState } from "configcat-common";
117+
116118
/* Default export */
117119

118120
export default function(sdkKey: string, options?: IJSAutoPollOptions): IConfigCatClient {

0 commit comments

Comments
 (0)