Skip to content

Commit 5454d95

Browse files
committed
Merge branch 'main' into typedoc
2 parents c33db59 + a30c3dc commit 5454d95

27 files changed

+11819
-577
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ steps:
66
env:
77
NODE_VERSION: "{{ matrix.nodejs }}"
88
TEST_SUITE: "{{ matrix.suite }}"
9-
STACK_VERSION: 8.15.0
9+
STACK_VERSION: 8.16.0
1010
matrix:
1111
setup:
1212
suite:

.github/workflows/nodejs.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
node-version: [18.x, 20.x, 22.x]
35+
node-version: [18.x, 20.x, 22.x, 23.x]
3636
os: [ubuntu-latest, windows-latest, macOS-latest]
3737

3838
steps:
@@ -57,6 +57,10 @@ jobs:
5757
run: |
5858
npm run test:unit
5959
60+
- name: ECMAScript module test
61+
run: |
62+
npm run test:esm
63+
6064
license:
6165
name: License check
6266
runs-on: ubuntu-latest
@@ -110,3 +114,7 @@ jobs:
110114
- name: Unit test
111115
run: |
112116
bun run test:unit-bun
117+
118+
- name: ECMAScript module test
119+
run: |
120+
bun run test:esm

.github/workflows/serverless-patch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Apply patch from stack to serverless
4343
id: apply-patch
4444
run: $GITHUB_WORKSPACE/stack/.github/workflows/serverless-patch.sh
45-
- uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6
45+
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7
4646
with:
4747
token: ${{ secrets.GH_TOKEN }}
4848
path: serverless

catalog-info.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ spec:
4242
main:
4343
branch: "main"
4444
cronline: "@daily"
45+
8_x:
46+
branch: "8.x"
47+
cronline: "@daily"
4548
8_14:
46-
branch: "8.14"
49+
branch: "8.16"
4750
cronline: "@daily"

docs/changelog.asciidoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
[[changelog-client]]
22
== Release notes
33

4+
[discrete]
5+
=== 8.16.1
6+
7+
[discrete]
8+
==== Fixes
9+
10+
[discrete]
11+
===== Fix ECMAScript imports
12+
13+
Fixed package configuration to correctly support native ECMAScript `import` syntax.
14+
415
[discrete]
516
=== 8.16.0
617

docs/doc_examples/19d60e4890cc57151d596326484d9076.asciidoc

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/doc_examples/3fab530a2e43807929c0ef3ebf7d268c.asciidoc renamed to docs/doc_examples/216e24f05cbb82c1718713fbab8623d2.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
----
66
const response = await client.ingest.putPipeline({
77
id: "geoip",
8-
description: "Add geoip info",
8+
description: "Add ip geolocation info",
99
processors: [
1010
{
1111
geoip: {

docs/doc_examples/d3a558ef226e9dccc1c7c61e1167547f.asciidoc renamed to docs/doc_examples/334811cfceb6858aeec5b3461717dd63.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
----
66
const response = await client.ingest.putPipeline({
77
id: "geoip",
8-
description: "Add geoip info",
8+
description: "Add ip geolocation info",
99
processors: [
1010
{
1111
geoip: {

docs/doc_examples/3b6718257421b5419bf4cd6a7303c57e.asciidoc

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/doc_examples/533087d787b48878a0bf3fa8d0851b64.asciidoc

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)