@hybrid-compute/remote 0.0.4 → 0.0.5

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/.release-it.json CHANGED
@@ -1,6 +1,13 @@
1
1
  {
2
- "git": false,
3
- "github": false,
2
+ "git": {
3
+ "requireCleanWorkingDir": false,
4
+ "tagName": "@hybrid-compute/remote@${version}",
5
+ "commitMessage": "chore: 🤖 ${name}@${version}"
6
+ },
7
+ "github": {
8
+ "release": true,
9
+ "tokenRef": "GH_TOKEN"
10
+ },
4
11
  "npm": {
5
12
  "publish": true,
6
13
  "skipChecks": true
package/CHANGELOG.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.4](https://github.com/phun-ky/hybrid-compute/compare/0.0.3...0.0.4) (2025-06-01)
3
+ ## 0.0.5 (2025-06-01)
4
4
 
5
5
  ### Tasks
6
6
 
7
+ * 🤖 @hybrid-compute/core@0.0.6 ([e176083](https://github.com/phun-ky/hybrid-compute/commit/e176083729e57dbc3a2cc6bc07d37698b14968f0))
8
+ * 🤖 @hybrid-compute/local@0.0.5 ([3f06027](https://github.com/phun-ky/hybrid-compute/commit/3f060271bf87c763d557f3a54248f6afb1f7ebfe))
7
9
  * 🤖 Add deps ([0a08767](https://github.com/phun-ky/hybrid-compute/commit/0a08767abed76c91ea902363890bb8f99e44a1da))
8
10
  * 🤖 Adjustments before release ([ee23ac6](https://github.com/phun-ky/hybrid-compute/commit/ee23ac627f7d04c3c2b4fdf9b2dc1f826fa21593))
9
11
  * 🤖 Failed build ([7d69f4f](https://github.com/phun-ky/hybrid-compute/commit/7d69f4f093b3e267ef0b6f944e85919d1f83073f))
@@ -29,12 +31,12 @@
29
31
 
30
32
  * 🐛 Do not use repo.repository in template string ([65c4311](https://github.com/phun-ky/hybrid-compute/commit/65c4311b62312db753835d19aba96f4f0bd01889))
31
33
  * 🐛 Remove git/github from release pipeline for packages ([587d1b3](https://github.com/phun-ky/hybrid-compute/commit/587d1b39c131493a789b2c574ab28f1d62e40220))
34
+ * 🐛 Remove release from root ([5b281b7](https://github.com/phun-ky/hybrid-compute/commit/5b281b70b99823c787cc793b23648ecdd9696708))
32
35
  * 🐛 Use correct versions ([afc4cfe](https://github.com/phun-ky/hybrid-compute/commit/afc4cfe98cd1736cbc6f02f9e20b47738c87c0f2))
33
36
 
34
37
  ### Refactoring
35
38
 
36
39
  * 💡 Add a guard to `runTask` for strategy ([e45691a](https://github.com/phun-ky/hybrid-compute/commit/e45691a492b2f1c39f63aa430d4575839302e317))
37
- ## [0.0.3](https://github.com/phun-ky/hybrid-compute/compare/0.0.2...0.0.3) (2025-05-28)
38
40
 
39
41
  ## [0.0.2](https://github.com/phun-ky/hybrid-compute/compare/0.0.1...0.0.2) (2025-06-01)
40
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hybrid-compute/remote",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Remote compute backend using fetch or WebSocket transport for distributed task execution.",
5
5
  "keywords": [
6
6
  "remote",
@@ -36,7 +36,7 @@
36
36
  "test:ci": "glob -c \"node --import tsx --test --no-warnings --experimental-test-coverage --test-reporter=cobertura --test-reporter-destination=coverage/cobertura-coverage.xml --test-reporter=spec --test-reporter-destination=stdout\" \"**/__tests__/**/*.spec.ts\""
37
37
  },
38
38
  "dependencies": {
39
- "@hybrid-compute/core": "0.0.4"
39
+ "@hybrid-compute/core": "0.0.5"
40
40
  },
41
41
  "devDependencies": {
42
42
  "eslint": "^9.27.0",