@platformatic/runtime 2.67.0-alpha.1 → 2.67.0-alpha.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.
package/config.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export type HttpsSchemasPlatformaticDevPlatformaticRuntime2670Alpha1Json = {
8
+ export type HttpsSchemasPlatformaticDevPlatformaticRuntime2670Alpha2Json = {
9
9
  [k: string]: unknown;
10
10
  } & {
11
11
  $schema?: string;
package/lib/config.js CHANGED
@@ -251,7 +251,7 @@ platformaticRuntime.configManagerConfig = {
251
251
  upgrade
252
252
  }
253
253
 
254
- async function wrapConfigInRuntimeConfig ({ configManager, args }) {
254
+ async function wrapConfigInRuntimeConfig ({ configManager, args, opts }) {
255
255
  let serviceId = 'main'
256
256
  try {
257
257
  const packageJson = join(configManager.dirname, 'package.json')
@@ -272,7 +272,7 @@ async function wrapConfigInRuntimeConfig ({ configManager, args }) {
272
272
  const wrapperConfig = {
273
273
  $schema: schema.$id,
274
274
  server,
275
- watch: true,
275
+ watch: !args?.production,
276
276
  ...omitProperties(configManager.current.runtime ?? {}, runtimeUnwrappablePropertiesList),
277
277
  entrypoint: serviceId,
278
278
  services: [
@@ -298,7 +298,7 @@ async function wrapConfigInRuntimeConfig ({ configManager, args }) {
298
298
  }
299
299
  })
300
300
 
301
- await cm.parseAndValidate()
301
+ await cm.parseAndValidate(true, [], opts)
302
302
 
303
303
  return cm
304
304
  }
@@ -93,6 +93,29 @@ async function startPrometheusServer (runtime, opts) {
93
93
  onRequestHook = promServer.basicAuth
94
94
  }
95
95
 
96
+ const readinessEndpoint = opts.readiness?.endpoint ?? DEFAULT_READINESS_ENDPOINT
97
+ const livenessEndpoint = opts.liveness?.endpoint ?? DEFAULT_LIVENESS_ENDPOINT
98
+
99
+ promServer.route({
100
+ url: '/',
101
+ method: 'GET',
102
+ logLevel: 'warn',
103
+ handler (req, reply) {
104
+ reply.type('text/plain')
105
+ let response = `Hello from Platformatic Prometheus Server!\nThe metrics are available at ${metricsEndpoint}.`
106
+
107
+ if (opts.readiness !== false) {
108
+ response += `\nThe readiness endpoint is available at ${readinessEndpoint}.`
109
+ }
110
+
111
+ if (opts.liveness !== false) {
112
+ response += `\nThe liveness endpoint is available at ${livenessEndpoint}.`
113
+ }
114
+
115
+ return response
116
+ }
117
+ })
118
+
96
119
  promServer.route({
97
120
  url: metricsEndpoint,
98
121
  method: 'GET',
@@ -112,7 +135,7 @@ async function startPrometheusServer (runtime, opts) {
112
135
  const failBody = opts.readiness?.fail?.body ?? DEFAULT_READINESS_FAIL_BODY
113
136
 
114
137
  promServer.route({
115
- url: opts.readiness?.endpoint ?? DEFAULT_READINESS_ENDPOINT,
138
+ url: readinessEndpoint,
116
139
  method: 'GET',
117
140
  logLevel: 'warn',
118
141
  handler: async (req, reply) => {
@@ -151,7 +174,7 @@ async function startPrometheusServer (runtime, opts) {
151
174
  const failBody = opts.liveness?.fail?.body ?? DEFAULT_LIVENESS_FAIL_BODY
152
175
 
153
176
  promServer.route({
154
- url: opts.liveness?.endpoint ?? DEFAULT_LIVENESS_ENDPOINT,
177
+ url: livenessEndpoint,
155
178
  method: 'GET',
156
179
  logLevel: 'warn',
157
180
  handler: async (req, reply) => {
package/lib/runtime.js CHANGED
@@ -198,17 +198,7 @@ class Runtime extends EventEmitter {
198
198
  await this.closeAndThrow(e)
199
199
  }
200
200
 
201
- const dispatcherOpts = { ...config.undici }
202
- const interceptors = [this.#meshInterceptor]
203
-
204
- if (config.httpCache) {
205
- this.#sharedHttpCache = await createSharedStore(this.#configManager.dirname, config.httpCache)
206
- interceptors.push(
207
- undiciInterceptors.cache({ store: this.#sharedHttpCache, methods: config.httpCache.methods ?? ['GET', 'HEAD'] })
208
- )
209
- }
210
-
211
- this.#dispatcher = new Agent(dispatcherOpts).compose(interceptors)
201
+ await this.#setDispatcher(config.undici)
212
202
 
213
203
  if (config.scheduler) {
214
204
  this.#scheduler = startScheduler(config.scheduler, this.#dispatcher, logger)
@@ -477,6 +467,22 @@ class Runtime extends EventEmitter {
477
467
  }
478
468
  }
479
469
 
470
+ async updateUndiciInterceptors (undiciConfig) {
471
+ this.#configManager.current.undici = undiciConfig
472
+
473
+ const promises = []
474
+ for (const worker of this.#workers.values()) {
475
+ promises.push(sendViaITC(worker, 'updateUndiciInterceptors', undiciConfig))
476
+ }
477
+
478
+ const results = await Promise.allSettled(promises)
479
+ for (const result of results) {
480
+ if (result.status === 'rejected') {
481
+ throw result.reason
482
+ }
483
+ }
484
+ }
485
+
480
486
  startCollectingMetrics () {
481
487
  this.#metrics = []
482
488
  this.#metricsTimeout = setInterval(async () => {
@@ -1041,6 +1047,24 @@ class Runtime extends EventEmitter {
1041
1047
  return super.emit(event, payload)
1042
1048
  }
1043
1049
 
1050
+ async #setDispatcher (undiciConfig) {
1051
+ const config = this.#configManager.current
1052
+
1053
+ const dispatcherOpts = { ...undiciConfig }
1054
+ const interceptors = [this.#meshInterceptor]
1055
+
1056
+ if (config.httpCache) {
1057
+ this.#sharedHttpCache = await createSharedStore(this.#configManager.dirname, config.httpCache)
1058
+ interceptors.push(
1059
+ undiciInterceptors.cache({
1060
+ store: this.#sharedHttpCache,
1061
+ methods: config.httpCache.methods ?? ['GET', 'HEAD']
1062
+ })
1063
+ )
1064
+ }
1065
+ this.#dispatcher = new Agent(dispatcherOpts).compose(interceptors)
1066
+ }
1067
+
1044
1068
  #updateStatus (status, args) {
1045
1069
  this.#status = status
1046
1070
  this.emit(status, args)
@@ -1,19 +1,208 @@
1
1
  'use strict'
2
2
 
3
+ const { join } = require('node:path')
4
+ const { workerData, parentPort } = require('node:worker_threads')
3
5
  const { pathToFileURL } = require('node:url')
6
+ const { createRequire } = require('@platformatic/utils')
7
+ const { setGlobalDispatcher, Client, Pool, Agent } = require('undici')
8
+ const { wire } = require('undici-thread-interceptor')
9
+ const { createTelemetryThreadInterceptorHooks } = require('@platformatic/telemetry')
10
+ const { RemoteCacheStore, httpCacheInterceptor } = require('./http-cache')
11
+ const { kInterceptors } = require('./symbols')
4
12
 
5
- async function loadInterceptor (_require, module, options) {
6
- const url = pathToFileURL(_require.resolve(module))
7
- const interceptor = (await import(url)).default
8
- return interceptor(options)
13
+ async function setDispatcher (runtimeConfig) {
14
+ const threadDispatcher = createThreadInterceptor(runtimeConfig)
15
+ const threadInterceptor = threadDispatcher.interceptor
16
+
17
+ let cacheInterceptor = null
18
+ if (runtimeConfig.httpCache) {
19
+ cacheInterceptor = createHttpCacheInterceptor(runtimeConfig)
20
+ }
21
+
22
+ let userInterceptors = []
23
+ if (Array.isArray(runtimeConfig.undici?.interceptors)) {
24
+ const _require = createRequire(join(workerData.dirname, 'package.json'))
25
+ userInterceptors = await loadInterceptors(_require, runtimeConfig.undici.interceptors)
26
+ }
27
+
28
+ const dispatcherOpts = await getDispatcherOpts(runtimeConfig.undici)
29
+
30
+ setGlobalDispatcher(
31
+ new Agent(dispatcherOpts).compose(
32
+ [
33
+ threadInterceptor,
34
+ ...userInterceptors,
35
+ cacheInterceptor
36
+ ].filter(Boolean)
37
+ )
38
+ )
39
+
40
+ return { threadDispatcher }
41
+ }
42
+
43
+ async function updateUndiciInterceptors (undiciConfig) {
44
+ const updatableInterceptors = globalThis[kInterceptors]
45
+ if (!updatableInterceptors) return
46
+
47
+ if (Array.isArray(undiciConfig?.interceptors)) {
48
+ for (const interceptorConfig of undiciConfig.interceptors) {
49
+ const { module, options } = interceptorConfig
50
+
51
+ const interceptorCtx = updatableInterceptors[module]
52
+ if (!interceptorCtx) continue
53
+
54
+ const { createInterceptor, updateInterceptor } = interceptorCtx
55
+ updateInterceptor(createInterceptor(options))
56
+ }
57
+ } else {
58
+ for (const key of ['Agent', 'Pool', 'Client']) {
59
+ const interceptorConfigs = undiciConfig.interceptors[key]
60
+ if (!interceptorConfigs) continue
61
+
62
+ for (const interceptorConfig of interceptorConfigs) {
63
+ const { module, options } = interceptorConfig
64
+
65
+ const interceptorCtx = updatableInterceptors[key][module]
66
+ if (!interceptorCtx) continue
67
+
68
+ const { createInterceptor, updateInterceptor } = interceptorCtx
69
+ updateInterceptor(createInterceptor(options))
70
+ }
71
+ }
72
+ }
9
73
  }
10
74
 
11
- function loadInterceptors (_require, interceptors) {
75
+ function createUpdatableInterceptor (originInterceptor) {
76
+ let originalDispatcher = null
77
+ let originalDispatch = null
78
+
79
+ function updatableInterceptor (dispatch) {
80
+ originalDispatch = dispatch
81
+ originalDispatcher = originInterceptor(dispatch)
82
+
83
+ return function dispatcher (opts, handler) {
84
+ return originalDispatcher(opts, handler)
85
+ }
86
+ }
87
+
88
+ function updateInterceptor (newInterceptor) {
89
+ originalDispatcher = newInterceptor(originalDispatch)
90
+ }
91
+
92
+ return { updatableInterceptor, updateInterceptor }
93
+ }
94
+
95
+ async function loadInterceptors (_require, interceptorsConfigs, key) {
12
96
  return Promise.all(
13
- interceptors.map(async ({ module, options }) => {
14
- return loadInterceptor(_require, module, options)
97
+ interceptorsConfigs.map(async (interceptorConfig) => {
98
+ return loadInterceptor(_require, interceptorConfig, key)
15
99
  })
16
100
  )
17
101
  }
18
102
 
19
- module.exports = { loadInterceptors }
103
+ async function loadInterceptor (_require, interceptorConfig, key) {
104
+ let updatableInterceptors = globalThis[kInterceptors]
105
+ if (!updatableInterceptors) {
106
+ updatableInterceptors = {}
107
+ globalThis[kInterceptors] = updatableInterceptors
108
+ }
109
+
110
+ const { module, options } = interceptorConfig
111
+
112
+ const url = pathToFileURL(_require.resolve(module))
113
+ const createInterceptor = (await import(url)).default
114
+ const interceptor = createInterceptor(options)
115
+
116
+ const {
117
+ updatableInterceptor,
118
+ updateInterceptor
119
+ } = createUpdatableInterceptor(interceptor)
120
+
121
+ const interceptorCtx = { createInterceptor, updateInterceptor }
122
+
123
+ if (key !== undefined) {
124
+ if (!updatableInterceptors[key]) {
125
+ updatableInterceptors[key] = {}
126
+ }
127
+ updatableInterceptors[key][module] = interceptorCtx
128
+ } else {
129
+ updatableInterceptors[module] = interceptorCtx
130
+ }
131
+
132
+ return updatableInterceptor
133
+ }
134
+
135
+ async function getDispatcherOpts (undiciConfig) {
136
+ const dispatcherOpts = { ...undiciConfig }
137
+
138
+ const interceptorsConfigs = undiciConfig?.interceptors
139
+ if (!interceptorsConfigs || Array.isArray(interceptorsConfigs)) {
140
+ return dispatcherOpts
141
+ }
142
+
143
+ const _require = createRequire(join(workerData.dirname, 'package.json'))
144
+
145
+ const clientInterceptors = []
146
+ const poolInterceptors = []
147
+
148
+ for (const key of ['Agent', 'Pool', 'Client']) {
149
+ const interceptorConfig = undiciConfig.interceptors[key]
150
+ if (!interceptorConfig) continue
151
+
152
+ const interceptors = await loadInterceptors(_require, interceptorConfig, key)
153
+ if (key === 'Agent') {
154
+ clientInterceptors.push(...interceptors)
155
+ poolInterceptors.push(...interceptors)
156
+ }
157
+ if (key === 'Pool') {
158
+ poolInterceptors.push(...interceptors)
159
+ }
160
+ if (key === 'Client') {
161
+ clientInterceptors.push(...interceptors)
162
+ }
163
+ }
164
+
165
+ dispatcherOpts.factory = (origin, opts) => {
166
+ return opts && opts.connections === 1
167
+ ? new Client(origin, opts).compose(clientInterceptors)
168
+ : new Pool(origin, opts).compose(poolInterceptors)
169
+ }
170
+
171
+ return dispatcherOpts
172
+ }
173
+
174
+ function createThreadInterceptor (runtimeConfig) {
175
+ const telemetry = runtimeConfig.telemetry
176
+ const hooks = telemetry ? createTelemetryThreadInterceptorHooks() : {}
177
+ const threadDispatcher = wire({
178
+ // Specifying the domain is critical to avoid flooding the DNS
179
+ // with requests for a domain that's never going to exist.
180
+ domain: '.plt.local',
181
+ port: parentPort,
182
+ timeout: runtimeConfig.serviceTimeout,
183
+ ...hooks
184
+ })
185
+ return threadDispatcher
186
+ }
187
+
188
+ function createHttpCacheInterceptor (runtimeConfig) {
189
+ const cacheInterceptor = httpCacheInterceptor({
190
+ store: new RemoteCacheStore({
191
+ onRequest: opts => {
192
+ globalThis.platformatic?.onHttpCacheRequest?.(opts)
193
+ },
194
+ onCacheHit: opts => {
195
+ globalThis.platformatic?.onHttpCacheHit?.(opts)
196
+ },
197
+ onCacheMiss: opts => {
198
+ globalThis.platformatic?.onHttpCacheMiss?.(opts)
199
+ },
200
+ logger: globalThis.platformatic.logger
201
+ }),
202
+ methods: runtimeConfig.httpCache.methods ?? ['GET', 'HEAD'],
203
+ logger: globalThis.platformatic.logger
204
+ })
205
+ return cacheInterceptor
206
+ }
207
+
208
+ module.exports = { setDispatcher, updateUndiciInterceptors }
package/lib/worker/itc.js CHANGED
@@ -7,6 +7,7 @@ const { ITC } = require('@platformatic/itc')
7
7
  const { Unpromise } = require('@watchable/unpromise')
8
8
 
9
9
  const errors = require('../errors')
10
+ const { updateUndiciInterceptors } = require('./interceptors')
10
11
  const { kITC, kId, kServiceId, kWorkerId } = require('./symbols')
11
12
 
12
13
  async function safeHandleInITC (worker, fn) {
@@ -109,6 +110,10 @@ function setupITC (app, service, dispatcher) {
109
110
  return app.stackable.inject(injectParams)
110
111
  },
111
112
 
113
+ async updateUndiciInterceptors (undiciConfig) {
114
+ await updateUndiciInterceptors(undiciConfig)
115
+ },
116
+
112
117
  getStatus () {
113
118
  return app.getStatus()
114
119
  },
@@ -2,16 +2,14 @@
2
2
 
3
3
  const { EventEmitter } = require('node:events')
4
4
  const { hostname } = require('node:os')
5
- const { join, resolve } = require('node:path')
6
- const { parentPort, workerData, threadId } = require('node:worker_threads')
5
+ const { resolve } = require('node:path')
6
+ const { workerData, threadId } = require('node:worker_threads')
7
7
  const { pathToFileURL } = require('node:url')
8
8
  const inspector = require('node:inspector')
9
9
  const diagnosticChannel = require('node:diagnostics_channel')
10
10
  const { ServerResponse } = require('node:http')
11
11
 
12
- const { createTelemetryThreadInterceptorHooks } = require('@platformatic/telemetry')
13
12
  const {
14
- createRequire,
15
13
  disablePinoDirectWrite,
16
14
  ensureFlushedWorkerStdio,
17
15
  executeWithTimeout,
@@ -22,14 +20,11 @@ const {
22
20
  } = require('@platformatic/utils')
23
21
  const dotenv = require('dotenv')
24
22
  const pino = require('pino')
25
- const { fetch, setGlobalDispatcher, getGlobalDispatcher, Agent } = require('undici')
26
- const { wire } = require('undici-thread-interceptor')
27
- const undici = require('undici')
23
+ const { fetch } = require('undici')
28
24
 
29
- const { RemoteCacheStore, httpCacheInterceptor } = require('./http-cache')
30
25
  const { PlatformaticApp } = require('./app')
31
26
  const { setupITC } = require('./itc')
32
- const { loadInterceptors } = require('./interceptors')
27
+ const { setDispatcher } = require('./interceptors')
33
28
  const { kId, kITC, kStderrMarker } = require('./symbols')
34
29
 
35
30
  function handleUnhandled (app, type, err) {
@@ -138,85 +133,7 @@ async function main () {
138
133
  Object.assign(process.env, service.env)
139
134
  }
140
135
 
141
- // Setup undici
142
- const interceptors = {}
143
- const composedInterceptors = []
144
-
145
- if (config.undici?.interceptors) {
146
- const _require = createRequire(join(workerData.dirname, 'package.json'))
147
- for (const key of ['Agent', 'Pool', 'Client']) {
148
- if (config.undici.interceptors[key]) {
149
- interceptors[key] = await loadInterceptors(_require, config.undici.interceptors[key])
150
- }
151
- }
152
-
153
- if (Array.isArray(config.undici.interceptors)) {
154
- composedInterceptors.push(...(await loadInterceptors(_require, config.undici.interceptors)))
155
- }
156
- }
157
-
158
- const dispatcherOpts = { ...config.undici }
159
-
160
- if (Object.keys(interceptors).length > 0) {
161
- const clientInterceptors = []
162
- const poolInterceptors = []
163
-
164
- if (interceptors.Agent) {
165
- clientInterceptors.push(...interceptors.Agent)
166
- poolInterceptors.push(...interceptors.Agent)
167
- }
168
-
169
- if (interceptors.Pool) {
170
- poolInterceptors.push(...interceptors.Pool)
171
- }
172
-
173
- if (interceptors.Client) {
174
- clientInterceptors.push(...interceptors.Client)
175
- }
176
-
177
- dispatcherOpts.factory = (origin, opts) => {
178
- return opts && opts.connections === 1
179
- ? new undici.Client(origin, opts).compose(clientInterceptors)
180
- : new undici.Pool(origin, opts).compose(poolInterceptors)
181
- }
182
- }
183
-
184
- setGlobalDispatcher(new Agent(dispatcherOpts))
185
-
186
- const { telemetry } = service
187
- const hooks = telemetry ? createTelemetryThreadInterceptorHooks() : {}
188
- // Setup mesh networker
189
- const threadDispatcher = wire({
190
- // Specifying the domain is critical to avoid flooding the DNS
191
- // with requests for a domain that's never going to exist.
192
- domain: '.plt.local',
193
- port: parentPort,
194
- timeout: config.serviceTimeout,
195
- ...hooks
196
- })
197
-
198
- if (config.httpCache) {
199
- const cacheInterceptor = httpCacheInterceptor({
200
- store: new RemoteCacheStore({
201
- onRequest: opts => {
202
- globalThis.platformatic?.onHttpCacheRequest?.(opts)
203
- },
204
- onCacheHit: opts => {
205
- globalThis.platformatic?.onHttpCacheHit?.(opts)
206
- },
207
- onCacheMiss: opts => {
208
- globalThis.platformatic?.onHttpCacheMiss?.(opts)
209
- },
210
- logger: globalThis.platformatic.logger
211
- }),
212
- methods: config.httpCache.methods ?? ['GET', 'HEAD'],
213
- logger: globalThis.platformatic.logger
214
- })
215
- composedInterceptors.push(cacheInterceptor)
216
- }
217
-
218
- const globalDispatcher = getGlobalDispatcher()
219
- setGlobalDispatcher(globalDispatcher.compose(composedInterceptors))
136
+ const { threadDispatcher } = await setDispatcher(config)
220
137
 
221
138
  // If the service is an entrypoint and runtime server config is defined, use it.
222
139
  let serverConfig = null
@@ -8,6 +8,7 @@ const kWorkerId = Symbol.for('plt.runtime.worker.id')
8
8
  const kITC = Symbol.for('plt.runtime.itc')
9
9
  const kHealthCheckTimer = Symbol.for('plt.runtime.worker.healthCheckTimer')
10
10
  const kWorkerStatus = Symbol('plt.runtime.worker.status')
11
+ const kInterceptors = Symbol.for('plt.runtime.worker.interceptors')
11
12
 
12
13
  // This string marker should be safe to use since it belongs to Unicode private area
13
14
  const kStderrMarker = '\ue002'
@@ -21,5 +22,6 @@ module.exports = {
21
22
  kITC,
22
23
  kHealthCheckTimer,
23
24
  kWorkerStatus,
24
- kStderrMarker
25
+ kStderrMarker,
26
+ kInterceptors
25
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/runtime",
3
- "version": "2.67.0-alpha.1",
3
+ "version": "2.67.0-alpha.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -37,12 +37,12 @@
37
37
  "typescript": "^5.5.4",
38
38
  "undici-oidc-interceptor": "^0.5.0",
39
39
  "why-is-node-running": "^2.2.2",
40
- "@platformatic/composer": "2.67.0-alpha.1",
41
- "@platformatic/db": "2.67.0-alpha.1",
42
- "@platformatic/node": "2.67.0-alpha.1",
43
- "@platformatic/service": "2.67.0-alpha.1",
44
- "@platformatic/sql-graphql": "2.67.0-alpha.1",
45
- "@platformatic/sql-mapper": "2.67.0-alpha.1"
40
+ "@platformatic/db": "2.67.0-alpha.2",
41
+ "@platformatic/node": "2.67.0-alpha.2",
42
+ "@platformatic/service": "2.67.0-alpha.2",
43
+ "@platformatic/sql-graphql": "2.67.0-alpha.2",
44
+ "@platformatic/composer": "2.67.0-alpha.2",
45
+ "@platformatic/sql-mapper": "2.67.0-alpha.2"
46
46
  },
47
47
  "dependencies": {
48
48
  "@fastify/accepts": "^5.0.0",
@@ -77,13 +77,13 @@
77
77
  "undici": "^7.0.0",
78
78
  "undici-thread-interceptor": "^0.13.1",
79
79
  "ws": "^8.16.0",
80
- "@platformatic/basic": "2.67.0-alpha.1",
81
- "@platformatic/config": "2.67.0-alpha.1",
82
- "@platformatic/generators": "2.67.0-alpha.1",
83
- "@platformatic/itc": "2.67.0-alpha.1",
84
- "@platformatic/telemetry": "2.67.0-alpha.1",
85
- "@platformatic/ts-compiler": "2.67.0-alpha.1",
86
- "@platformatic/utils": "2.67.0-alpha.1"
80
+ "@platformatic/basic": "2.67.0-alpha.2",
81
+ "@platformatic/config": "2.67.0-alpha.2",
82
+ "@platformatic/generators": "2.67.0-alpha.2",
83
+ "@platformatic/itc": "2.67.0-alpha.2",
84
+ "@platformatic/telemetry": "2.67.0-alpha.2",
85
+ "@platformatic/ts-compiler": "2.67.0-alpha.2",
86
+ "@platformatic/utils": "2.67.0-alpha.2"
87
87
  },
88
88
  "scripts": {
89
89
  "test": "pnpm run lint && borp --concurrency=1 --timeout=300000 && tsd",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/runtime/2.67.0-alpha.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/runtime/2.67.0-alpha.2.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
package/undefined DELETED
@@ -1,5 +0,0 @@
1
- {"level":30,"time":1747909640025,"pid":84550,"hostname":"work","msg":"Starting the service \"service\"..."}
2
- {"level":30,"time":1747909640055,"pid":84550,"hostname":"work","msg":"Started the service \"service\"..."}
3
- {"level":30,"time":1747909640055,"pid":84550,"hostname":"work","msg":"Platformatic is now listening at http://127.0.0.1:41619"}
4
- {"level":30,"time":1747909640066,"pid":84550,"hostname":"work","msg":"Stopping the service \"service\"..."}
5
- {"level":30,"time":1747909640069,"pid":84550,"hostname":"work","msg":"Stopped the service \"service\"..."}