@walkeros/server-source-gcp 4.1.0-next-1778668930820 → 4.1.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 ADDED
@@ -0,0 +1,328 @@
1
+ # @walkeros/server-source-gcp
2
+
3
+ ## 4.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 13aaeaa: `Source.Context` no longer exposes `setIngest` or `setRespond`.
8
+ Server sources handling concurrent inbound requests must call
9
+ `context.withScope(rawScope, respond, body)` to bind per-request ingest and
10
+ respond. Browser and other single-scope sources keep working without changes.
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [e155ff8]
15
+ - Updated dependencies [e800974]
16
+ - Updated dependencies [e155ff8]
17
+ - Updated dependencies [1a8f2d7]
18
+ - Updated dependencies [1a8f2d7]
19
+ - Updated dependencies [b276173]
20
+ - Updated dependencies [dd9f5ad]
21
+ - Updated dependencies [c60ef35]
22
+ - Updated dependencies [adeebea]
23
+ - Updated dependencies [13aaeaa]
24
+ - Updated dependencies [e800974]
25
+ - Updated dependencies [adeebea]
26
+ - Updated dependencies [6cdc362]
27
+ - Updated dependencies [e800974]
28
+ - Updated dependencies [e800974]
29
+ - Updated dependencies [058f7ed]
30
+ - Updated dependencies [28a8ac2]
31
+ - Updated dependencies [fd6076e]
32
+ - @walkeros/core@4.1.0
33
+ - @walkeros/collector@4.1.0
34
+
35
+ ## 4.0.2
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [a6a0ea7]
40
+ - @walkeros/core@4.0.2
41
+ - @walkeros/collector@4.0.2
42
+
43
+ ## 4.0.1
44
+
45
+ ### Patch Changes
46
+
47
+ - 70e4d89: Fix events being silently dropped when posted via
48
+ `navigator.sendBeacon`. The browser forces
49
+ `Content-Type: text/plain;charset=UTF-8` for beacon requests even when the
50
+ payload is JSON, which previously caused the express middleware to skip body
51
+ parsing and the GCP Cloud Functions handler to treat the body as an opaque
52
+ string, both falling through to an empty-event push. Express now accepts
53
+ `text/plain` bodies through `express.json()`, and the Cloud Functions handler
54
+ attempts `JSON.parse` on string bodies before classifying the request.
55
+ - Updated dependencies [cb265eb]
56
+ - Updated dependencies [381dfe7]
57
+ - Updated dependencies [1524275]
58
+ - Updated dependencies [03d7055]
59
+ - @walkeros/collector@4.0.1
60
+ - @walkeros/core@4.0.1
61
+
62
+ ## 4.0.0
63
+
64
+ ### Major Changes
65
+
66
+ - 93ea9c4: Event model v4: breaking changes to the `Event`, `Source`, and
67
+ `Entity` shapes.
68
+ - `event.id` is now a W3C span_id (16 lowercase hex chars), generated by the
69
+ collector. Reference: W3C Trace Context (W3C Recommendation, January 2020).
70
+ - `event.version`, `event.group`, `event.count` are removed.
71
+ - `source.type` is now the source kind (e.g. `browser`, `gtag`, `mcp`, `cli`).
72
+ New `source.platform` holds the runtime (`web` | `server` | `app` | ...).
73
+ - `source.id` and `source.previous_id` are removed.
74
+ - Browser source now sets `source.url` and `source.referrer`.
75
+ - MCP source sets `source.tool` per emission. CLI source sets
76
+ `source.command`.
77
+ - `Entity.nested` and `Entity.context` are now optional. Root `event.nested`
78
+ and `event.context` remain required.
79
+ - Each source self-registers via TypeScript module augmentation of `SourceMap`
80
+ in `@walkeros/core`.
81
+ - App-side coordination (`/workspaces/developer/app`) is a follow-up plan, not
82
+ part of this release. Telemetry from v4 CLI/MCP will not validate against
83
+ the existing app schema until that follow-up ships.
84
+ - `Mapping.Rule.skip` is renamed to `Mapping.Rule.silent`. Customer flow.json
85
+ configs using `skip: true` in mapping rules must rename to `silent: true`.
86
+ Hard cut: no legacy alias, the field is gone.
87
+
88
+ ### Patch Changes
89
+
90
+ - Updated dependencies [93ea9c4]
91
+ - Updated dependencies [465775c]
92
+ - Updated dependencies [942a7fe]
93
+ - Updated dependencies [cfc7469]
94
+ - Updated dependencies [8e06b1f]
95
+ - Updated dependencies [3d50dd6]
96
+ - Updated dependencies [1ef33d9]
97
+ - @walkeros/core@4.0.0
98
+ - @walkeros/collector@4.0.0
99
+
100
+ ## 3.4.2
101
+
102
+ ### Patch Changes
103
+
104
+ - @walkeros/collector@3.4.2
105
+ - @walkeros/core@3.4.2
106
+
107
+ ## 3.4.1
108
+
109
+ ### Patch Changes
110
+
111
+ - Updated dependencies [12adf24]
112
+ - Updated dependencies [75aa26b]
113
+ - @walkeros/core@3.4.1
114
+ - @walkeros/collector@3.4.1
115
+
116
+ ## 3.4.0
117
+
118
+ ### Minor Changes
119
+
120
+ - 724f97e: Migrate every step example in every walkerOS package to the
121
+ standardized `[callable, ...args][]` shape introduced in `@walkeros/core`.
122
+ Every step example's `out` is now an array of effect tuples whose first
123
+ element is the callable's public SDK name (`'gtag'`, `'analytics.track'`,
124
+ `'fbq'`, `'dataLayer.push'`, `'sendServer'`, `'fetch'`, `'trackClient.track'`,
125
+ `'amplitude.track'`, `'fs.writeFile'`, `'producer.send'`, `'client.xadd'`,
126
+ `'client.send'`, `'dataset.table.insert'`, etc.). Source examples use `'elb'`
127
+ as the callable; transformer examples use the reserved `'return'` keyword;
128
+ store examples use store-operation callables (`'get'`, `'set'`). Tests capture
129
+ real calls on each component's spy and assert against `example.out` directly —
130
+ the hardcoded `PACKAGE_CALLS` registry in the app is no longer consulted
131
+ (emptied; plan #3 removes it structurally).
132
+
133
+ ### Patch Changes
134
+
135
+ - Updated dependencies [74940cc]
136
+ - Updated dependencies [525f5d9]
137
+ - @walkeros/core@3.4.0
138
+ - @walkeros/collector@3.4.0
139
+
140
+ ## 3.3.1
141
+
142
+ ### Patch Changes
143
+
144
+ - Updated dependencies [b10144a]
145
+ - Updated dependencies [206185a]
146
+ - Updated dependencies [50e5d09]
147
+ - Updated dependencies [32ff626]
148
+ - @walkeros/collector@3.3.1
149
+ - @walkeros/core@3.3.1
150
+
151
+ ## 3.3.0
152
+
153
+ ### Patch Changes
154
+
155
+ - Updated dependencies [2849acb]
156
+ - Updated dependencies [08c365a]
157
+ - Updated dependencies [08c365a]
158
+ - Updated dependencies [08c365a]
159
+ - Updated dependencies [08c365a]
160
+ - @walkeros/core@3.3.0
161
+ - @walkeros/collector@3.3.0
162
+
163
+ ## 3.2.0
164
+
165
+ ### Minor Changes
166
+
167
+ - f47d251: Accept non-JSON POST bodies in all server sources
168
+
169
+ Server sources no longer reject non-JSON bodies with HTTP 400. Instead, they
170
+ push an empty event `{}` to the collector, enabling `source.before`
171
+ transformers to process raw input via ingest. Raw body is available through
172
+ ingest mapping (e.g., `"rawBody": "body"`).
173
+
174
+ ### Patch Changes
175
+
176
+ - Updated dependencies [eb865e1]
177
+ - Updated dependencies [c0a53f9]
178
+ - Updated dependencies [8cdc0bb]
179
+ - Updated dependencies [f007c9f]
180
+ - Updated dependencies [bf2dc5b]
181
+ - Updated dependencies [da0b640]
182
+ - Updated dependencies [a5d25bc]
183
+ - Updated dependencies [9a99298]
184
+ - Updated dependencies [884527d]
185
+ - @walkeros/core@3.2.0
186
+ - @walkeros/collector@3.2.0
187
+
188
+ ## 3.1.1
189
+
190
+ ### Patch Changes
191
+
192
+ - @walkeros/core@3.1.1
193
+ - @walkeros/collector@3.1.1
194
+
195
+ ## 3.1.0
196
+
197
+ ### Minor Changes
198
+
199
+ - 956c337: Add createTrigger following unified Trigger.CreateFn interface. Step
200
+ examples updated with trigger metadata.
201
+
202
+ ### Patch Changes
203
+
204
+ - Updated dependencies [a9149e4]
205
+ - Updated dependencies [dfc6738]
206
+ - Updated dependencies [966342b]
207
+ - Updated dependencies [bee8ba7]
208
+ - Updated dependencies [966342b]
209
+ - Updated dependencies [df990d4]
210
+ - @walkeros/collector@3.1.0
211
+ - @walkeros/core@3.1.0
212
+
213
+ ## 3.0.2
214
+
215
+ ### Patch Changes
216
+
217
+ - @walkeros/core@3.0.2
218
+
219
+ ## 3.0.1
220
+
221
+ ### Patch Changes
222
+
223
+ - 86c81d1: Add default export to server-transformer-fingerprint and exports
224
+ metadata to multi-service packages for bundler named import support
225
+ - @walkeros/core@3.0.1
226
+
227
+ ## 3.0.0
228
+
229
+ ### Patch Changes
230
+
231
+ - 499e27a: Add sideEffects declarations to all packages for bundler tree-shaking
232
+ support.
233
+ - Updated dependencies [2b259b6]
234
+ - Updated dependencies [2614014]
235
+ - Updated dependencies [6ae0ee3]
236
+ - Updated dependencies [37299a9]
237
+ - Updated dependencies [499e27a]
238
+ - Updated dependencies [0e5eede]
239
+ - Updated dependencies [d11f574]
240
+ - Updated dependencies [d11f574]
241
+ - Updated dependencies [1fe337a]
242
+ - Updated dependencies [5cb84c1]
243
+ - Updated dependencies [23f218a]
244
+ - Updated dependencies [499e27a]
245
+ - Updated dependencies [c83d909]
246
+ - Updated dependencies [b6c8fa8]
247
+ - @walkeros/core@3.0.0
248
+
249
+ ## 2.1.1
250
+
251
+ ### Patch Changes
252
+
253
+ - Updated dependencies [fab477d]
254
+ - @walkeros/core@2.1.1
255
+
256
+ ## 2.1.0
257
+
258
+ ### Minor Changes
259
+
260
+ - 97df0b2: Step examples: upgrade all packages to blueprint pattern with inline
261
+ mapping, no intermediate variables, no `all` export
262
+
263
+ ### Patch Changes
264
+
265
+ - Updated dependencies [7fc4cee]
266
+ - Updated dependencies [7fc4cee]
267
+ - Updated dependencies [cb2da05]
268
+ - Updated dependencies [2bbe8c8]
269
+ - Updated dependencies [3eb6416]
270
+ - Updated dependencies [02a7958]
271
+ - Updated dependencies [97df0b2]
272
+ - Updated dependencies [97df0b2]
273
+ - Updated dependencies [026c412]
274
+ - Updated dependencies [7d38d9d]
275
+ - @walkeros/core@2.1.0
276
+
277
+ ## 2.0.1
278
+
279
+ ## 1.0.5
280
+
281
+ ### Patch Changes
282
+
283
+ - Updated dependencies [a4cc1ea]
284
+ - @walkeros/core@1.3.0
285
+
286
+ ## 1.0.4
287
+
288
+ ### Patch Changes
289
+
290
+ - Updated dependencies [7ad6cfb]
291
+ - @walkeros/core@1.2.2
292
+
293
+ ## 1.0.3
294
+
295
+ ### Patch Changes
296
+
297
+ - Updated dependencies [6256c12]
298
+ - @walkeros/core@1.2.1
299
+
300
+ ## 1.0.2
301
+
302
+ ### Patch Changes
303
+
304
+ - Updated dependencies [f39d9fb]
305
+ - Updated dependencies [888bbdf]
306
+ - @walkeros/core@1.2.0
307
+
308
+ ## 1.0.1
309
+
310
+ ### Patch Changes
311
+
312
+ - Updated dependencies [b65b773]
313
+ - Updated dependencies [20eca6e]
314
+ - @walkeros/core@1.1.0
315
+
316
+ ## 1.0.0
317
+
318
+ ### Major Changes
319
+
320
+ - 67c9e1d: Hello World! walkerOS v1.0.0
321
+
322
+ Open-source event data collection. Collect event data for digital analytics in
323
+ a unified and privacy-centric way.
324
+
325
+ ### Patch Changes
326
+
327
+ - Updated dependencies [67c9e1d]
328
+ - @walkeros/core@1.0.0