polarity-integration-utils 2.0.8 → 2.0.9

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/README.md CHANGED
@@ -33,5 +33,25 @@ Documentation for this library can be found at: https://polarityio.github.io/pol
33
33
  npm run docs
34
34
 
35
35
  ### Continuous Integration
36
- All pull-requests run the same **build → lint → test** pipeline in GitHub Actions.
37
- Ensure local runs are green before opening a PR.
36
+
37
+ All pull requests run automated linting and tests (with coverage) via GitHub Actions. Ensure local runs are green before opening a PR.
38
+
39
+ #### PR Checks
40
+
41
+ Pull requests targeting `develop`, `main`, or any `support/*` branch trigger the shared build workflow which runs linting, tests with coverage, and uploads results to Codecov.
42
+
43
+ #### Release (main branch)
44
+
45
+ Pushes to `main` trigger the full release workflow:
46
+
47
+ 1. **Build & test** — runs the shared build pipeline.
48
+ 2. **Release** — creates a GitHub Release tagged with the package version (e.g., `v3.1.6`), marks it as the latest release, and publishes to npm under the `latest` dist-tag.
49
+ 3. **Deploy docs** — after a successful release, builds TypeDoc documentation and deploys to GitHub Pages.
50
+
51
+ #### Release (support branches)
52
+
53
+ Pushes to `support/*` branches (e.g., `support/1.0`, `support/2.0`) trigger the same release workflow with the following differences:
54
+
55
+ - **Docs are not deployed** — only `main` publishes documentation to GitHub Pages.
56
+ - **GitHub Release is not marked as latest** — the release is still created with the full version tag (e.g., `v2.0.9`) but will not appear as the "Latest" release in the GitHub UI.
57
+ - **npm publish uses a version-specific dist-tag** — instead of `latest`, support branches publish under `v{major}-latest` (e.g., `v2-latest`, `v1-latest`). This ensures `npm install polarity-integration-utils` continues to resolve to the current major version while older versions remain installable via their dist-tag (e.g., `npm install polarity-integration-utils@v2-latest`).
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.13"
8
+ "packageVersion": "7.57.6"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polarity-integration-utils",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "A utility library for building Polarity Integrations",
5
5
  "files": [
6
6
  "dist"
@@ -61,31 +61,31 @@
61
61
  "author": "Polarity IO <support@polarity.io>",
62
62
  "license": "MIT",
63
63
  "bugs": {
64
- "url": "https://github.com/polarity-integration-utils/polarity-integration-utils/issues"
64
+ "url": "https://github.com/polarityio/polarity-integration-utils/issues"
65
65
  },
66
- "homepage": "https://github.com/polarity-integration-utils/polarity-integration-utils#readme",
66
+ "homepage": "https://github.com/polarityio/polarity-integration-utils#readme",
67
67
  "devDependencies": {
68
68
  "@eslint/js": "^9.36.0",
69
- "@microsoft/api-extractor": "^7.52.13",
69
+ "@microsoft/api-extractor": "^7.57.6",
70
70
  "@types/jest": "^30.0.0",
71
71
  "@types/lodash": "^4.17.20",
72
72
  "@types/node": "^20.14.8",
73
- "@typescript-eslint/eslint-plugin": "^8.44.0",
74
- "@typescript-eslint/parser": "^8.44.0",
73
+ "@typescript-eslint/eslint-plugin": "^8.56.1",
74
+ "@typescript-eslint/parser": "^8.56.1",
75
75
  "copy-paste": "^2.2.0",
76
- "eslint": "^9.36.0",
76
+ "eslint": "^9.39.4",
77
77
  "eslint-plugin-tsdoc": "^0.4.0",
78
78
  "globals": "^16.4.0",
79
- "jest": "^30.1.3",
80
- "ts-jest": "^29.4.4",
81
- "typedoc": "^0.28.13",
79
+ "jest": "^30.2.0",
80
+ "ts-jest": "^29.4.6",
81
+ "typedoc": "^0.28.17",
82
82
  "typescript": "^5.9.2",
83
- "typescript-eslint": "^8.44.0"
83
+ "typescript-eslint": "^8.56.1"
84
84
  },
85
85
  "dependencies": {
86
86
  "bottleneck": "^2.19.5",
87
- "lodash": "^4.17.21",
88
- "postman-request": "^2.88.1-postman.43"
87
+ "lodash": "^4.17.23",
88
+ "postman-request": "^2.88.1-postman.48"
89
89
  },
90
90
  "sideEffects": false
91
91
  }