podkeeper 0.5.1 → 0.6.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/lib/dockerApi.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import http from "http";
2
- const DOCKER_API_VERSION = "1.41";
2
+ const DOCKER_API_VERSION = "1.44";
3
3
  async function listContainers() {
4
4
  const containers = await getJSON("/containers/json") ?? [];
5
5
  return containers.map((container) => ({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "podkeeper",
3
3
  "type": "module",
4
- "version": "0.5.1",
4
+ "version": "0.6.0",
5
5
  "description": "",
6
6
  "exports": {
7
7
  ".": {