@seip/blue-bird 1.1.5 → 1.2.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.
@@ -65,11 +65,11 @@ services:
65
65
  --table-open-cache=200
66
66
  --skip-log-bin
67
67
  healthcheck:
68
- test: [ "CMD", "mysqladmin", "ping", "-h", "localhost", "-u", "root", "-p${DB_PASSWORD:-root}" ]
68
+ test: ["CMD-SHELL", "mysqladmin ping -h 127.0.0.1 -u root -p$$MYSQL_ROOT_PASSWORD"]
69
69
  interval: 10s
70
70
  timeout: 5s
71
- retries: 5
72
- start_period: 30s
71
+ retries: 10
72
+ start_period: 60s
73
73
  networks:
74
74
  - bluebird_net
75
75
 
@@ -55,21 +55,13 @@ services:
55
55
  volumes:
56
56
  - mysql_data:/var/lib/mysql
57
57
  command: >
58
- --default-authentication-plugin=mysql_native_password
59
- --character-set-server=utf8mb4
60
- --collation-server=utf8mb4_unicode_ci
61
- --performance-schema=OFF
62
- --innodb-buffer-pool-size=64M
63
- --innodb-log-buffer-size=8M
64
- --max-connections=50
65
- --table-open-cache=200
66
- --skip-log-bin
58
+ --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --performance-schema=OFF --innodb-buffer-pool-size=64M --innodb-log-buffer-size=8M --max-connections=50 --table-open-cache=200 --skip-log-bin
67
59
  healthcheck:
68
- test: [ "CMD", "mysqladmin", "ping", "-h", "localhost", "-u", "root", "-p${DB_PASSWORD:-root}" ]
60
+ test: [ "CMD-SHELL", "mysqladmin ping -h 127.0.0.1 -u root -p$$MYSQL_ROOT_PASSWORD" ]
69
61
  interval: 10s
70
62
  timeout: 5s
71
- retries: 5
72
- start_period: 30s
63
+ retries: 10
64
+ start_period: 60s
73
65
  networks:
74
66
  - bluebird_net
75
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seip/blue-bird",
3
- "version": "1.1.5",
3
+ "version": "1.2.0",
4
4
  "description": "Express opinionated API framework with built-in JWT auth, validation, and caching",
5
5
  "type": "module",
6
6
  "types": "core/index.d.ts",