@repobit/dex-target 1.4.0 → 1.4.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +90 -0
  2. package/package.json +8 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,90 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [1.4.1](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.4.0...@repobit/dex-target@1.4.1) (2025-03-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **DEX-21085:** add files to package json ([d1fa71f](https://github.com/bitdefender/dex-core/commit/d1fa71f4b89812fa306b7ec0104af52505e87491))
12
+
13
+
14
+
15
+ ## [1.4.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.3.0...@repobit/dex-target@1.4.0) (2025-03-26)
16
+
17
+
18
+ ### Features
19
+
20
+ * **DEX-21820:** added syntasa integration ([a2fb875](https://github.com/bitdefender/dex-core/commit/a2fb8756362b6affbf10b0c8affb390749c8a9df))
21
+
22
+
23
+
24
+ ## [1.3.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.2.0...@repobit/dex-target@1.3.0) (2025-03-25)
25
+
26
+
27
+ ### Features
28
+
29
+ * **DEX-22225:** created the data layer and updated target class ([390f327](https://github.com/bitdefender/dex-core/commit/390f327af376e8c70e37d14c5ffd699f60a17275))
30
+
31
+
32
+
33
+ ## [1.2.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.1.3...@repobit/dex-target@1.2.0) (2025-03-25)
34
+
35
+
36
+ ### Features
37
+
38
+ * **DEX-21805:** change jest to vitest ([8219cf8](https://github.com/bitdefender/dex-core/commit/8219cf88cef6c4290783bb80a8142be0195de13e))
39
+
40
+
41
+
42
+ ## [1.1.3](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.1.2...@repobit/dex-target@1.1.3) (2025-03-24)
43
+
44
+
45
+ ### Bug Fixes
46
+
47
+ * **DEX-21805:** add jsdom to jest ([c2d1d0b](https://github.com/bitdefender/dex-core/commit/c2d1d0bb0350df4f09f88cf64d3fec59e6a2815d))
48
+ * **DEX-21805:** move build dependecies to root ([e75bb59](https://github.com/bitdefender/dex-core/commit/e75bb59c6c215b6be8167ca136423e577ef10656))
49
+ * **DEX-21805:** update tsconfig for all packages ([01abd44](https://github.com/bitdefender/dex-core/commit/01abd4449f7c950116c3b5b76c6989299ab99aea))
50
+
51
+
52
+
53
+ ## [1.1.2](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@1.1.0...@repobit/dex-target@1.1.2) (2025-03-21)
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * **DEX-21805:** fix package.json ([487e824](https://github.com/bitdefender/dex-core/commit/487e82449bd5a0e6cd959a509b4f9820952466b6))
59
+
60
+
61
+
62
+ # [1.1.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@0.1.1...@repobit/dex-target@1.1.0) (2025-02-28)
63
+
64
+
65
+ ### Features
66
+
67
+ * **DEX-21820:** bumped up version ([370a920](https://github.com/bitdefender/dex-core/commit/370a920f8e82bb75a71f324b73d841f09b8a942a))
68
+ * **DEX-21820:** changed license in package file ([07a93c4](https://github.com/bitdefender/dex-core/commit/07a93c457a9c2559bf1c3fe60c8ec0e823947370))
69
+
70
+
71
+
72
+
73
+
74
+ ## [0.1.1](https://github.com/bitdefender/dex-core/compare/@repobit/dex-target@0.1.0...@repobit/dex-target@0.1.1) (2025-02-28)
75
+
76
+ **Note:** Version bump only for package @repobit/dex-target
77
+
78
+
79
+
80
+
81
+
82
+ # 0.1.0 (2025-02-28)
83
+
84
+
85
+ ### Features
86
+
87
+ * **DEX-21820:** added abort controller logic to target package ([44429ed](https://github.com/bitdefender/dex-core/commit/44429ede0c102b22a522488328b5cef5c856e878))
88
+ * **DEX-21820:** added correct npm package organisation ([9dd27bf](https://github.com/bitdefender/dex-core/commit/9dd27bfaee52f3396cdd5a8fdefd3c1adbb0aad0))
89
+ * **DEX-21820:** added license ([853e965](https://github.com/bitdefender/dex-core/commit/853e965455613e97ee920694521d88c01f9dcf57))
90
+ * **DEX-21820:** updated the package docs and package-lock ([c70c000](https://github.com/bitdefender/dex-core/commit/c70c000492903242f34a2b5a42fc2699ba6664f6))
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@repobit/dex-target",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Client for Adobe Target",
5
5
  "author": "Constantin Ioan Mihai <iconstantin@bitdefender.com>",
6
6
  "homepage": "https://github.com/bitdefender/dex-core#readme",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/index.js",
9
9
  "files": [
10
- "dist/src"
10
+ "dist/src",
11
+ "README.md",
12
+ "CHANGELOG.md",
13
+ "LICENSE"
11
14
  ],
12
15
  "publishConfig": {
13
16
  "access": "public"
@@ -24,11 +27,11 @@
24
27
  "url": "https://github.com/bitdefender/dex-core/issues"
25
28
  },
26
29
  "dependencies": {
27
- "@repobit/dex-data-layer": "0.2.0",
28
- "@repobit/dex-utils": "0.6.0"
30
+ "@repobit/dex-data-layer": "0.2.1",
31
+ "@repobit/dex-utils": "0.6.1"
29
32
  },
30
33
  "module": "dist/src/index.js",
31
34
  "type": "module",
32
35
  "types": "dist/src/index.d.ts",
33
- "gitHead": "5391b27f1542572bf315961e3aecaa0b45b9b00d"
36
+ "gitHead": "64dd7dca1e451796a1fafe016b7a8d361523754f"
34
37
  }