This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/web-streams-polyfill-4.2.0
in repository https://gitbox.apache.org/repos/asf/arrow-js.git
discard a5ddce7 chore: bump web-streams-polyfill from 3.2.1 to 4.2.0
add 42837f6 fix: Fix TypeScript compilation in a Node.js environment
(#256)
add a0e6bc1 feat: Implement IPC RecordBatch body buffer compression (#14)
add 973e252 chore: bump web-streams-polyfill from 3.2.1 to 4.2.0
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 (a5ddce7)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/web-streams-polyfill-4.2.0 (973e252)
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:
package.json | 5 +-
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 | 15 +++
23 files changed, 553 insertions(+), 47 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%)