@cocreate/server-autoscaler 1.0.0 → 1.0.2

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.
@@ -3,7 +3,7 @@ name: Automated Workflow
3
3
  on:
4
4
  push:
5
5
  branches:
6
- - master
6
+ - main
7
7
 
8
8
  jobs:
9
9
  about:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.0.2](https://github.com/CoCreate-app/CoCreate-server-autoscaler/compare/v1.0.1...v1.0.2) (2026-07-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * set default branch to main ([e07409f](https://github.com/CoCreate-app/CoCreate-server-autoscaler/commit/e07409f30538c1afcadb4a584a19ad077bda54bd))
7
+
8
+ ## [1.0.1](https://github.com/CoCreate-app/CoCreate-server-autoscaler/compare/v1.0.0...v1.0.1) (2026-07-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump dependencies ([6a262b6](https://github.com/CoCreate-app/CoCreate-server-autoscaler/commit/6a262b6c9483c171f53275f13313fd3aed015653))
14
+
1
15
  # 1.0.0 (2026-07-17)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/server-autoscaler",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A decentralized, cluster-consensus-driven autoscaling and telemetry-orchestration engine built specifically for CoCreate real-time transport servers.",
5
5
  "keywords": [
6
6
  "server-autoscaler",
@@ -16,9 +16,9 @@
16
16
  "access": "public"
17
17
  },
18
18
  "scripts": {
19
- "start": "npx webpack --config webpack.config.js",
20
- "build": "npx webpack --mode=production --config webpack.config.js",
21
- "dev": "npx webpack --config webpack.config.js --watch"
19
+ "start": "webpack --config webpack.config.js",
20
+ "build": "webpack --mode=production --config webpack.config.js",
21
+ "dev": "webpack --config webpack.config.js --watch"
22
22
  },
23
23
  "repository": {
24
24
  "type": "git",
package/release.config.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  dryRun: false,
3
- branches: ["master"],
3
+ branches: ["main"],
4
4
  plugins: [
5
5
  "@semantic-release/commit-analyzer",
6
6
  "@semantic-release/release-notes-generator",