Skip to content

Commit dff389e

Browse files
author
flow-php
committed
1 parent c11d64c commit dff389e

File tree

14 files changed

+18
-14
lines changed

14 files changed

+18
-14
lines changed

changelog/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,13 @@ <h2 class="my-2 text-2xl font-semibold tracking-wide">Loads</h2>
214214
</div>
215215

216216
<section id="changelog" class="py-10 px-2 sm:px-4 mx-auto max-w-screen-xl">
217-
<h2>[Unreleased] - 2025-01-18</h2>
217+
<h2>[Unreleased] - 2025-01-19</h2>
218218
<h3>Added</h3>
219219
<ul>
220+
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/flow-php/flow/pull/1391">#1391</a> - <strong>ScalarFunction - arrayValues</strong> - <a rel="noopener noreferrer" target="_blank" href="https://github.com/norberttech">@norberttech</a></li>
221+
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/flow-php/flow/pull/1391">#1391</a> - <strong>ScalarFunction - arrayKeys</strong> - <a rel="noopener noreferrer" target="_blank" href="https://github.com/norberttech">@norberttech</a></li>
222+
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/flow-php/flow/pull/1391">#1391</a> - <strong>ScalarFunction - arrayKeep</strong> - <a rel="noopener noreferrer" target="_blank" href="https://github.com/norberttech">@norberttech</a></li>
223+
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/flow-php/flow/pull/1391">#1391</a> - <strong>ScalarFunction - arrayFilter</strong> - <a rel="noopener noreferrer" target="_blank" href="https://github.com/norberttech">@norberttech</a></li>
220224
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/flow-php/flow/pull/1389">#1389</a> - <strong>Added String Agg function</strong> - <a rel="noopener noreferrer" target="_blank" href="https://github.com/norberttech">@norberttech</a></li>
221225
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/flow-php/flow/pull/1387">#1387</a> - <strong>Another when function example</strong> - <a rel="noopener noreferrer" target="_blank" href="https://github.com/norberttech">@norberttech</a></li>
222226
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/flow-php/flow/pull/1385">#1385</a> - <strong>concat_ws (with separator) scalar function</strong> - <a rel="noopener noreferrer" target="_blank" href="https://github.com/norberttech">@norberttech</a></li>

data_reading/elasticsearch/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ <h2 class="text-xl mt-5 mb-5">Code</h2><div id="code" class="relative"><button c
380380
]
381381
))
382382
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
383-
-&gt;transform(es_hits_to_rows())
383+
-&gt;with(es_hits_to_rows())
384384
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
385385
-&gt;run();
386386
</code></pre></div> </div>

data_writing/elasticsearch/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ <h2 class="text-xl mt-5 mb-5">Code</h2><div id="code" class="relative"><button c
356356
]
357357
))
358358
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
359-
-&gt;transform(es_hits_to_rows())
359+
-&gt;with(es_hits_to_rows())
360360
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
361361
-&gt;run();
362362
</code></pre></div> </div>

documentation/dsl/elastic_search/entry-id-factory/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ <h4 class="text-bold mt-5 mb-5">Example: <a href="/data_writing/elasticsearch/#e
394394
]
395395
))
396396
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
397-
-&gt;transform(es_hits_to_rows())
397+
-&gt;with(es_hits_to_rows())
398398
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
399399
-&gt;run();
400400
</code></pre> </article>

documentation/dsl/elastic_search/es-hits-to-rows/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ <h4 class="text-bold mt-5 mb-5">Example: <a href="/data_writing/elasticsearch/#e
399399
]
400400
))
401401
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
402-
-&gt;transform(es_hits_to_rows())
402+
-&gt;with(es_hits_to_rows())
403403
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
404404
-&gt;run();
405405
</code></pre> </article>

documentation/dsl/elastic_search/from-es/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ <h4 class="text-bold mt-5 mb-5">Example: <a href="/data_reading/elasticsearch/#e
416416
]
417417
))
418418
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
419-
-&gt;transform(es_hits_to_rows())
419+
-&gt;with(es_hits_to_rows())
420420
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
421421
-&gt;run();
422422
</code></pre> </article>

documentation/dsl/elastic_search/to-es-bulk-index/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ <h4 class="text-bold mt-5 mb-5">Example: <a href="/data_writing/elasticsearch/#e
414414
]
415415
))
416416
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
417-
-&gt;transform(es_hits_to_rows())
417+
-&gt;with(es_hits_to_rows())
418418
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
419419
-&gt;run();
420420
</code></pre> </article>

documentation/example/data_reading/elasticsearch/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ <h2 class="text-xl mt-5 mb-5">Code</h2><div id="code" class="relative"><button c
438438
]
439439
))
440440
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
441-
-&gt;transform(es_hits_to_rows())
441+
-&gt;with(es_hits_to_rows())
442442
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
443443
-&gt;run();
444444
</code></pre></div> </div>

documentation/example/data_writing/elasticsearch/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ <h2 class="text-xl mt-5 mb-5">Code</h2><div id="code" class="relative"><button c
438438
]
439439
))
440440
-&gt;write(to_stream(__DIR__ . &#039;/output.raw.txt&#039;, truncate: false))
441-
-&gt;transform(es_hits_to_rows())
441+
-&gt;with(es_hits_to_rows())
442442
-&gt;write(to_stream(__DIR__ . &#039;/output.txt&#039;, truncate: false))
443443
-&gt;run();
444444
</code></pre></div> </div>

sitemap.blog.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" ><url><loc>https://flow-php.com/blog/2024-08-08/scalar-functions</loc><lastmod>2025-01-19T14:19:07+00:00</lastmod><changefreq>weekly</changefreq><priority>1.0</priority></url><url><loc>https://flow-php.com/blog/2024-04-04/building-custom-extractor-google-analytics</loc><lastmod>2025-01-19T14:19:07+00:00</lastmod><changefreq>weekly</changefreq><priority>1.0</priority></url></urlset>
1+
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" ><url><loc>https://flow-php.com/blog/2024-08-08/scalar-functions</loc><lastmod>2025-01-19T14:31:00+00:00</lastmod><changefreq>weekly</changefreq><priority>1.0</priority></url><url><loc>https://flow-php.com/blog/2024-04-04/building-custom-extractor-google-analytics</loc><lastmod>2025-01-19T14:31:00+00:00</lastmod><changefreq>weekly</changefreq><priority>1.0</priority></url></urlset>

0 commit comments

Comments
 (0)