Skip to content

Commit 53bcc68

Browse files
authored
Prepare v9.6.0 release (#108)
* Upgrade to configcat-common v9.4.0 * Adjust tests * Bump version
1 parent 4f050ba commit 53bcc68

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

package-lock.json

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "configcat-js",
3-
"version": "9.5.1",
3+
"version": "9.6.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
"license": "MIT",
3434
"homepage": "https://configcat.com",
3535
"dependencies": {
36-
"configcat-common": "9.3.1",
36+
"configcat-common": "9.4.0",
3737
"tslib": "^2.4.1"
3838
},
3939
"devDependencies": {

test/HttpTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe("HTTP tests", () => {
6161
const defaultValue = "NOT_CAT";
6262
assert.strictEqual(defaultValue, await client.getValueAsync("stringDefaultCat", defaultValue));
6363

64-
assert.isDefined(logger.events.find(([level, , msg]) => level === LogLevel.Error && msg.toString().startsWith("Your SDK Key seems to be wrong.")));
64+
assert.isDefined(logger.events.find(([level, , msg]) => level === LogLevel.Error && msg.toString().startsWith("Your SDK Key seems to be wrong:")));
6565
}
6666
finally {
6767
server.remove();

0 commit comments

Comments
 (0)