@walkeros/server-source-gcp 4.4.0-next-1785261149472 → 4.4.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/CHANGELOG.md CHANGED
@@ -1,14 +1,22 @@
1
1
  # @walkeros/server-source-gcp
2
2
 
3
- ## 4.4.0-next-1785261149472
3
+ ## 4.4.0
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 034b1de: Events pushed before the collector runs are now held and replayed at
8
+ run instead of being dropped, bounded by `queueMax`. `walker init <element>`
9
+ re-fires load triggers for already-tracked elements, restoring the SPA re-init
10
+ pattern. Queue sources start consuming at run and no longer acknowledge
11
+ messages the pipeline did not accept.
7
12
  - Updated dependencies [393b942]
8
13
  - Updated dependencies [6c89afb]
9
14
  - Updated dependencies [393b942]
10
- - @walkeros/collector@4.4.0-next-1785261149472
11
- - @walkeros/core@4.4.0-next-1785261149472
15
+ - Updated dependencies [35756dd]
16
+ - Updated dependencies [034b1de]
17
+ - Updated dependencies [d00e2bd]
18
+ - @walkeros/collector@4.4.0
19
+ - @walkeros/core@4.4.0
12
20
 
13
21
  ## 4.3.2
14
22
 
package/dist/index.d.mts CHANGED
@@ -268,11 +268,13 @@ declare namespace types$1 {
268
268
  /**
269
269
  * Google Cloud Pub/Sub pull source.
270
270
  *
271
- * Long-running streaming subscriber. `init()` opens the subscription stream
272
- * and forwards each message to the collector via `env.push`. The source's
271
+ * Long-running streaming subscriber. Consumption starts on the collector's
272
+ * run lifecycle (`on('run')`), which opens the subscription stream and
273
+ * forwards each message to the collector via `env.push`. The source's
273
274
  * `push` accepts an optional synthetic message (used by tests / triggers)
274
- * and dispatches it through the same pipeline; called without arguments
275
- * (production) it is a no-op since Pub/Sub is event-driven.
275
+ * and dispatches it through the same pipeline, bypassing the run gate;
276
+ * called without arguments (production) it is a no-op since Pub/Sub is
277
+ * event-driven.
276
278
  *
277
279
  * `destroy()` closes the subscriber gracefully, honoring `shutdownTimeoutMs`.
278
280
  */
package/dist/index.d.ts CHANGED
@@ -268,11 +268,13 @@ declare namespace types$1 {
268
268
  /**
269
269
  * Google Cloud Pub/Sub pull source.
270
270
  *
271
- * Long-running streaming subscriber. `init()` opens the subscription stream
272
- * and forwards each message to the collector via `env.push`. The source's
271
+ * Long-running streaming subscriber. Consumption starts on the collector's
272
+ * run lifecycle (`on('run')`), which opens the subscription stream and
273
+ * forwards each message to the collector via `env.push`. The source's
273
274
  * `push` accepts an optional synthetic message (used by tests / triggers)
274
- * and dispatches it through the same pipeline; called without arguments
275
- * (production) it is a no-op since Pub/Sub is event-driven.
275
+ * and dispatches it through the same pipeline, bypassing the run gate;
276
+ * called without arguments (production) it is a no-op since Pub/Sub is
277
+ * event-driven.
276
278
  *
277
279
  * `destroy()` closes the subscriber gracefully, honoring `shutdownTimeoutMs`.
278
280
  */