Skip to content

Commit cfc8b03

Browse files
chore: release main
1 parent 5c12f19 commit cfc8b03

6 files changed

Lines changed: 18 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"packages/sdk/browser": "4.9.1",
88
"packages/sdk/cloudflare": "2.7.26",
99
"packages/sdk/combined-browser": "0.1.28",
10-
"packages/sdk/fastly": "0.2.16",
10+
"packages/sdk/fastly": "0.2.17",
1111
"packages/sdk/node-client": "0.4.1",
1212
"packages/sdk/react-native": "10.19.1",
1313
"packages/sdk/server-ai": "1.2.0",

packages/sdk/fastly/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.2.17](https://github.com/launchdarkly/js-core/compare/fastly-server-sdk-v0.2.16...fastly-server-sdk-v0.2.17) (2026-07-08)
4+
5+
6+
### Bug Fixes
7+
8+
* Accept eventsUri option in Fastly SDK init() ([#1791](https://github.com/launchdarkly/js-core/issues/1791)) ([18deecd](https://github.com/launchdarkly/js-core/commit/18deecddc53714850a31a8d796720fb101535af2))
9+
* Do not cache rejected KV loads in Fastly EdgeFeatureStore ([#1796](https://github.com/launchdarkly/js-core/issues/1796)) ([8f51339](https://github.com/launchdarkly/js-core/commit/8f51339c6d09d2ac6f86636f2b61ae4adeb7d16e))
10+
11+
12+
### Performance Improvements
13+
14+
* Import only used crypto-js submodules in Fastly SDK ([#1795](https://github.com/launchdarkly/js-core/issues/1795)) ([5c12f19](https://github.com/launchdarkly/js-core/commit/5c12f19f5c0b6a73ad12b8ca1e1450a38a45f9a0))
15+
316
## [0.2.16](https://github.com/launchdarkly/js-core/compare/fastly-server-sdk-v0.2.15...fastly-server-sdk-v0.2.16) (2026-06-24)
417

518

packages/sdk/fastly/__tests__/createPlatformInfo.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import createPlatformInfo from '../src/createPlatformInfo';
22

3-
const version = '0.2.16'; // x-release-please-version
3+
const version = '0.2.17'; // x-release-please-version
44

55
describe('Fastly Platform Info', () => {
66
it('platformData shows correct information', () => {

packages/sdk/fastly/example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"dependencies": {
1414
"@fastly/js-compute": "^3.30.1",
15-
"@launchdarkly/fastly-server-sdk": "0.2.16"
15+
"@launchdarkly/fastly-server-sdk": "0.2.17"
1616
},
1717
"scripts": {
1818
"clean": "rimraf build && rimraf bin",

packages/sdk/fastly/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/fastly-server-sdk",
3-
"version": "0.2.16",
3+
"version": "0.2.17",
44
"description": "Fastly LaunchDarkly SDK",
55
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/fastly",
66
"repository": {

packages/sdk/fastly/src/createPlatformInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Info, PlatformData, SdkData } from '@launchdarkly/js-server-sdk-common';
22

33
const name = '@launchdarkly/fastly-server-sdk';
4-
const version = '0.2.16'; // x-release-please-version
4+
const version = '0.2.17'; // x-release-please-version
55

66
class FastlyPlatformInfo implements Info {
77
platformData(): PlatformData {

0 commit comments

Comments
 (0)