Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eppo/node-server-sdk",
"version": "3.2.2",
"version": "3.3.0",
"description": "Eppo node server SDK",
"main": "dist/index.js",
"files": [
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"homepage": "https://github.com/Eppo-exp/node-server-sdk#readme",
"dependencies": {
"@eppo/js-client-sdk-common": "4.0.2",
"@eppo/js-client-sdk-common": "4.1.0",
"lru-cache": "^10.0.1"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ export async function init(config: IClientConfig): Promise<EppoClient> {
// we estimate this will use no more than 10 MB of memory
// and should be appropriate for most server-side use cases.
clientInstance.useLRUInMemoryAssignmentCache(50_000);
clientInstance.useLRUInMemoryBanditAssignmentCache(50_000);

// Fetch configurations (which will also start regular polling per requestConfiguration)
await clientInstance.fetchFlagConfigurations();
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -460,10 +460,10 @@
resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==

"@eppo/js-client-sdk-common@4.0.2":
version "4.0.2"
resolved "https://registry.yarnpkg.com/@eppo/js-client-sdk-common/-/js-client-sdk-common-4.0.2.tgz#fb99445ad57d6593d0f9bbc70a2e1327ea962b41"
integrity sha512-S9RUxsrHJEl5ePMx9929aiw1uPlv3AxH82iJIJgsuSpLbi3w1EkEo17J/2B4505EI20G9XYLY3fWM0eOUR4WKw==
"@eppo/js-client-sdk-common@4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@eppo/js-client-sdk-common/-/js-client-sdk-common-4.1.0.tgz#fc1b625ef2997a82cb65c6e8a43fb7894196b205"
integrity sha512-bUA/k9HfhdGkSp7mnmKRg5VJAY+JORGoCV3eSU+Dn39gr0IQARw3VHJ3QIaKSciwoEe51n2Mk8K7/XdiIV6Qiw==
dependencies:
js-base64 "^3.7.7"
md5 "^2.3.0"
Expand Down
Loading