This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/eslint-plugin-unicorn-61.0.2
in repository https://gitbox.apache.org/repos/asf/arrow-js.git
discard 833761e chore: bump eslint-plugin-unicorn from 59.0.1 to 61.0.2
add 42837f6 fix: Fix TypeScript compilation in a Node.js environment
(#256)
add a0e6bc1 feat: Implement IPC RecordBatch body buffer compression (#14)
add 484517c chore: bump rollup from 4.48.1 to 4.50.2 (#278)
add e84c7a3 chore: bump memfs from 4.38.1 to 4.39.0 (#279)
add 28f6508 chore: bump typedoc from 0.28.12 to 0.28.13 (#282)
add 40fdf96 chore: bump esbuild from 0.25.9 to 0.25.10 (#286)
add 8cf3d82 chore: bump @types/node from 24.3.0 to 24.5.2 (#287)
add 2c753fc chore: bump webpack from 5.101.3 to 5.102.0 (#292)
add 3b2c73d chore: bump actions/cache from 4.2.4 to 4.3.0 (#290)
add 88f7c68 chore: bump eslint-plugin-unicorn from 59.0.1 to 61.0.2
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (833761e)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/eslint-plugin-unicorn-61.0.2 (88f7c68)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/test.yaml | 10 +-
package.json | 15 +-
src/Arrow.dom.ts | 2 +
src/Arrow.ts | 3 +
src/io/adapters.ts | 1 +
src/io/interfaces.ts | 1 +
index.mjs => src/ipc/compression/constants.ts | 3 +-
src/ipc/compression/registry.ts | 46 ++
src/ipc/compression/validators.ts | 92 ++++
src/ipc/metadata/json.ts | 3 +-
src/ipc/metadata/message.ts | 68 ++-
src/ipc/reader.ts | 94 +++-
src/ipc/serialization.ts | 8 +-
src/ipc/writer.ts | 129 ++++-
src/util/buffer.ts | 1 +
src/util/compat.ts | 1 +
src/util/utf8.ts | 2 +-
src/visitor/vectorloader.ts | 13 +-
test/tsconfig.json | 1 +
index.ts => test/types/zstd-codec.d.ts | 6 +-
test/unit/ipc/writer/file-writer-tests.ts | 57 +-
test/unit/ipc/writer/stream-writer-tests.ts | 47 ++
tsconfig/tsconfig.base.json | 2 +-
yarn.lock | 717 +++++++++++++-------------
24 files changed, 910 insertions(+), 412 deletions(-)
copy index.mjs => src/ipc/compression/constants.ts (90%)
create mode 100644 src/ipc/compression/registry.ts
create mode 100644 src/ipc/compression/validators.ts
copy index.ts => test/types/zstd-codec.d.ts (87%)