Skip to content

Commit b18b49d

Browse files
authored
Remove packages (#74)
* chore: remove unused package * chore: regenerate licenses with overrides * chore: documentation on how to add licenses to csv file * v0.1.0-preview.15
1 parent 55dd624 commit b18b49d

13 files changed

Lines changed: 2246 additions & 1264 deletions

.ddla-overrides

Lines changed: 1312 additions & 0 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
77
---
88

9+
## v0.1.0-preview.15
10+
11+
- Internal updates
12+
913
## v0.1.0-preview.14
1014

1115
- Internal updates

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,10 @@ If the automated workflow fails and you need to publish manually:
353353
npm publish --tag alpha # or --tag preview (same as core)
354354
```
355355

356+
## Licensing
357+
358+
Ensure license information for newly added third party packages are included in LICENSE-3rdparty.csv. For Datadog employees, this can be done automatically with `yarn licenses:generate`.
359+
356360
## Code Style
357361

358362
- Use TypeScript for all new code

LICENSE-3rdparty.csv

Lines changed: 878 additions & 878 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,7 @@ const result = await client.getBooleanDetails('premium-feature', false)
104104
console.log(result.value) // Flag value
105105
console.log(result.reason) // Evaluation reason
106106
```
107+
108+
## End-user license agreement
109+
110+
https://www.datadoghq.com/legal/eula

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"npmClient": "yarn",
3-
"version": "0.1.0-preview.14"
3+
"version": "0.1.0-preview.15"
44
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"test:unit:watch": "lerna run test --stream --parallel",
1515
"test:browser-install": "scripts/test-package-install.sh",
1616
"licenses:generate": "scripts/licenses-generate.sh",
17+
"licenses:override": "scripts/licenses-override.sh",
1718
"lint": "biome check . --diagnostic-level=error",
1819
"lint:fix": "biome check --write .",
1920
"typecheck": "lerna run typecheck --stream",
@@ -29,7 +30,6 @@
2930
"glob": "^11.0.3",
3031
"jest": "^30.0.4",
3132
"lerna": "^8.2.3",
32-
"license-report": "6.8.0",
3333
"npm-run-all": "^4.1.5",
3434
"prettier": "^3.6.2",
3535
"rimraf": "^6.0.0",

packages/browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datadog/openfeature-browser",
3-
"version": "0.1.0-preview.14",
3+
"version": "0.1.0-preview.15",
44
"description": "Browser-specific bindings for OpenFeature (wraps @datadog/openfeature-core)",
55
"license": "Apache-2.0",
66
"homepage": "https://github.com/DataDog/openfeature-js-client#readme",
@@ -45,7 +45,7 @@
4545
},
4646
"dependencies": {
4747
"@datadog/browser-core": "^6.19.0",
48-
"@datadog/flagging-core": "0.1.0-preview.14",
48+
"@datadog/flagging-core": "0.1.0-preview.15",
4949
"@types/chrome": "^0.1.18"
5050
},
5151
"peerDependencies": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datadog/flagging-core",
3-
"version": "0.1.0-preview.14",
3+
"version": "0.1.0-preview.15",
44
"description": "Runtime-agnostic flag-evaluation logic for Datadog Flagging",
55
"license": "Apache-2.0",
66
"repository": {

packages/node-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datadog/openfeature-node-server",
3-
"version": "0.1.0-preview.14",
3+
"version": "0.1.0-preview.15",
44
"description": "React Native bindings for OpenFeature (wraps @datadog/flagging-core)",
55
"license": "Apache-2.0",
66
"homepage": "https://github.com/DataDog/openfeature-js-client#readme",
@@ -36,7 +36,7 @@
3636
"typecheck": "tsc --noEmit"
3737
},
3838
"dependencies": {
39-
"@datadog/flagging-core": "0.1.0-preview.14",
39+
"@datadog/flagging-core": "0.1.0-preview.15",
4040
"@openfeature/server-sdk": "~1.18.0"
4141
},
4242
"peerDependencies": {

0 commit comments

Comments
 (0)