podkeeper 0.6.0 → 0.7.0
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
|
@@ -100,3 +100,14 @@ There are also some notable differences in API design philosophy:
|
|
|
100
100
|
- **Process Behavior**: PodKeeper services prevent the Node.js process from exiting, while TestContainers services do not.
|
|
101
101
|
- **Container Pulling**: PodKeeper does not implicitly pull containers, requiring them to be available beforehand, whereas TestContainers lazily pulls containers as needed when launching a service.
|
|
102
102
|
- **Healthchecks**: The services that PodKeeper ships out-of-the-box are pre-configured to use proper healthchecks.
|
|
103
|
+
|
|
104
|
+
## Publishing
|
|
105
|
+
|
|
106
|
+
To publish a new version:
|
|
107
|
+
|
|
108
|
+
```sh
|
|
109
|
+
pnpm version minor -m "chore: mark v%s" # or: pnpm version patch -m "chore: mark v%s"
|
|
110
|
+
git push --tags upstream main
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
The GitHub Actions workflow will automatically build and publish to npm when the tag is pushed.
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "podkeeper",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -11,9 +11,6 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"main": "index.js",
|
|
14
|
-
"scripts": {
|
|
15
|
-
"test": "npx playwright test"
|
|
16
|
-
},
|
|
17
14
|
"repository": {
|
|
18
15
|
"type": "git",
|
|
19
16
|
"url": "https://github.com/flakiness/podkeeper.git"
|
|
@@ -23,12 +20,12 @@
|
|
|
23
20
|
"author": "",
|
|
24
21
|
"license": "MIT",
|
|
25
22
|
"devDependencies": {
|
|
26
|
-
"@playwright/test": "^1.
|
|
23
|
+
"@playwright/test": "^1.58.2",
|
|
27
24
|
"@types/ms": "^0.7.34",
|
|
28
25
|
"@types/node": "^22.8.5",
|
|
29
26
|
"@types/pg": "^8.11.10",
|
|
30
27
|
"@types/ws": "^8.5.12",
|
|
31
|
-
"esbuild": "^0.
|
|
28
|
+
"esbuild": "^0.27.3",
|
|
32
29
|
"kubik": "^0.6.0",
|
|
33
30
|
"pg": "^8.13.1",
|
|
34
31
|
"typescript": "^5.6.3"
|
|
@@ -36,5 +33,8 @@
|
|
|
36
33
|
"dependencies": {
|
|
37
34
|
"ms": "^2.1.3",
|
|
38
35
|
"ws": "^8.18.0"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"test": "npx playwright test"
|
|
39
39
|
}
|
|
40
|
-
}
|
|
40
|
+
}
|