@adobe/spacecat-shared-launchdarkly-client 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.releaserc.cjs CHANGED
@@ -1,8 +1,12 @@
1
1
  module.exports = {
2
2
  extends: "semantic-release-monorepo",
3
3
  plugins: [
4
- "@semantic-release/commit-analyzer",
5
- "@semantic-release/release-notes-generator",
4
+ ["@semantic-release/commit-analyzer", {
5
+ "preset": "conventionalcommits",
6
+ }],
7
+ ["@semantic-release/release-notes-generator", {
8
+ "preset": "conventionalcommits",
9
+ }],
6
10
  ["@semantic-release/changelog", {
7
11
  "changelogFile": "CHANGELOG.md",
8
12
  }],
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [@adobe/spacecat-shared-launchdarkly-client-v1.0.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-launchdarkly-client-v1.0.1...@adobe/spacecat-shared-launchdarkly-client-v1.0.2) (2026-03-02)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update external fixes ([#1223](https://github.com/adobe/spacecat-shared/issues/1223)) ([7ee8461](https://github.com/adobe/spacecat-shared/commit/7ee8461c99223d07a2f47bd6838b6942fcb30f28))
6
+
7
+ # [@adobe/spacecat-shared-launchdarkly-client-v1.0.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-launchdarkly-client-v1.0.0...@adobe/spacecat-shared-launchdarkly-client-v1.0.1) (2026-02-05)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * release ld package ([#1322](https://github.com/adobe/spacecat-shared/issues/1322)) ([84d3b84](https://github.com/adobe/spacecat-shared/commit/84d3b84950e1730875233b70ba3d11051e5898b9))
13
+
1
14
  # @adobe/spacecat-shared-launchdarkly-client-v1.0.0 (2026-02-04)
2
15
 
3
16
 
package/README.md CHANGED
@@ -19,7 +19,7 @@ import { LaunchDarklyClient } from '@adobe/spacecat-shared-launchdarkly-client';
19
19
  const ldClient = LaunchDarklyClient.createFrom(context);
20
20
 
21
21
  // Check if flag is enabled for an IMS organization
22
- const imsOrgId = '855422996904EB9F0A495F9A@AdobeOrg';
22
+ const imsOrgId = '855422996904EB9F0A495F9B@AdobeOrg';
23
23
  const isEnabled = await ldClient.isFlagEnabledForIMSOrg('FT_LLMO-2817', imsOrgId);
24
24
 
25
25
  if (isEnabled) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-launchdarkly-client",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Shared modules of the Spacecat Services - LaunchDarkly Client",
5
5
  "type": "module",
6
6
  "engines": {
@@ -38,11 +38,11 @@
38
38
  "@launchdarkly/node-server-sdk": "^9.9.7"
39
39
  },
40
40
  "devDependencies": {
41
- "chai": "6.2.1",
41
+ "chai": "6.2.2",
42
42
  "chai-as-promised": "8.0.2",
43
43
  "esmock": "2.7.3",
44
- "nock": "14.0.10",
45
- "sinon": "21.0.0",
44
+ "nock": "14.0.11",
45
+ "sinon": "21.0.1",
46
46
  "sinon-chai": "4.0.1",
47
47
  "typescript": "5.9.3"
48
48
  }