@odata2ts/http-client-jquery 0.9.2 → 0.9.3

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 +4 -0
  2. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.9.3](https://github.com/odata2ts/http-client/compare/@odata2ts/http-client-jquery@0.9.2...@odata2ts/http-client-jquery@0.9.3) (2024-08-24)
7
+
8
+ **Note:** Version bump only for package @odata2ts/http-client-jquery
9
+
6
10
  ## [0.9.2](https://github.com/odata2ts/http-client/compare/@odata2ts/http-client-jquery@0.9.1...@odata2ts/http-client-jquery@0.9.2) (2024-08-22)
7
11
 
8
12
  **Note:** Version bump only for package @odata2ts/http-client-jquery
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odata2ts/http-client-jquery",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "JQuery based http client usable by odata2ts",
5
5
  "keywords": [
6
6
  "http client",
@@ -26,12 +26,13 @@
26
26
  "check-circular-deps": "madge ./src --extensions ts --circular",
27
27
  "clean": "rimraf lib coverage",
28
28
  "compile": "tsc",
29
- "int-test": "vitest run int-test/**",
30
- "prepublish": "yarn build",
31
- "test": "vitest run test/**"
29
+ "unit-test": "vitest run --dir test",
30
+ "int-test": "vitest run --dir int-test",
31
+ "test": "vitest run",
32
+ "prepublish": "yarn build"
32
33
  },
33
34
  "dependencies": {
34
- "@odata2ts/http-client-base": "^0.5.2"
35
+ "@odata2ts/http-client-base": "^0.5.3"
35
36
  },
36
37
  "devDependencies": {
37
38
  "@types/jquery": "^3.5.16",
@@ -46,5 +47,5 @@
46
47
  "publishConfig": {
47
48
  "access": "public"
48
49
  },
49
- "gitHead": "20d77b211d6c7a44e7f1d14e9b63be531bb30e87"
50
+ "gitHead": "d74b162906b89826cce7944308bc5950e325389f"
50
51
  }