This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/openpgp/web-stream-tools-0.3.0
in repository https://gitbox.apache.org/repos/asf/arrow-js.git


 discard eecbbcb  chore: bump @openpgp/web-stream-tools from 0.0.13 to 0.3.0
     add c706870  chore: bump actions/checkout from 5.0.0 to 5.0.1 (#338)
     add 973774e  chore: bump glob from 11.0.3 to 12.0.0 (#335)
     add d400dda  chore: Use relative link for LICENSE.txt (#339)
     add 572bc96  feat: Add support for BinaryView and Utf8View types (#320)
     add 75c380f  chore: bump actions/checkout from 5.0.1 to 6.0.0 (#343)
     add 6bb1bb9  chore: bump webpack-bundle-analyzer from 4.10.2 to 5.0.1 
(#342)
     add ed30073  chore: bump webpack from 5.102.1 to 5.103.0 (#345)
     add d4acc92  chore: bump esbuild from 0.25.10 to 0.27.0 (#332)
     add ab2cd9b  chore: bump actions/setup-python from 6.0.0 to 6.1.0 (#347)
     add f426c31  chore: bump actions/setup-node from 6.0.0 to 6.1.0 (#348)
     add 332240f  chore: bump glob from 12.0.0 to 13.0.0 (#350)
     add 6bbc064  chore: bump typescript-eslint from 8.46.1 to 8.49.0 (#351)
     add 6baf26e  chore: bump actions/checkout from 6.0.0 to 6.0.1 (#349)
     add 9ec4fc4  chore: bump actions/cache from 4.3.0 to 5.0.1 (#352)
     add 08c17f1  chore: bump actions/upload-artifact from 5.0.0 to 6.0.0 (#353)
     add c1f214c  chore: bump actions/download-artifact from 6.0.0 to 7.0.0 
(#354)
     add ac672de  chore: bump typescript-eslint from 8.49.0 to 8.50.0 (#355)
     add 124c502  chore: bump @rollup/plugin-alias from 5.1.1 to 6.0.0 (#356)
     add 9abde93  chore: bump @openpgp/web-stream-tools from 0.0.13 to 0.3.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   (eecbbcb)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/openpgp/web-stream-tools-0.3.0 (9abde93)

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:
 .../enable-binaryview-integration-tests.patch      |  22 +-
 .github/workflows/rc.yaml                          |  24 +-
 .github/workflows/release.yaml                     |   2 +-
 .github/workflows/test.yaml                        |  45 +-
 README.md                                          |   2 +-
 package.json                                       |  12 +-
 scripts/update_flatbuffers.sh                      |  75 +++
 src/Arrow.dom.ts                                   |   8 +-
 src/Arrow.ts                                       |   6 +-
 src/builder/binaryview.ts                          | 183 ++++++
 src/builder/{bool.ts => utf8view.ts}               |  19 +-
 src/data.ts                                        |  92 ++-
 src/enum.ts                                        |   2 +
 src/fb/{Schema_generated.ts => File.ts}            |  13 +-
 src/fb/binary-view.ts                              |  47 ++
 src/fb/large-list-view.ts                          |  42 ++
 src/fb/list-view.ts                                |  43 ++
 src/fb/message.ts                                  |   2 +
 src/fb/record-batch.ts                             |  46 +-
 src/fb/schema.ts                                   |  10 +-
 src/fb/type.ts                                     |  34 +-
 src/fb/utf8-view.ts                                |  47 ++
 src/interfaces.ts                                  |   6 +
 src/ipc/message.ts                                 |   2 +
 src/ipc/metadata/json.ts                           |  23 +-
 src/ipc/metadata/message.ts                        |  32 +-
 src/ipc/reader.ts                                  |   9 +-
 src/ipc/writer.ts                                  |  12 +-
 src/type.ts                                        |  52 ++
 src/visitor.ts                                     |   6 +
 src/visitor/builderctor.ts                         |   4 +
 src/visitor/get.ts                                 |  51 +-
 src/visitor/indexof.ts                             |   6 +-
 src/visitor/iterator.ts                            |   6 +-
 src/visitor/jsontypeassembler.ts                   |   6 +
 src/visitor/jsonvectorassembler.ts                 |  56 +-
 src/visitor/set.ts                                 |  62 +-
 src/visitor/typeassembler.ts                       |  10 +
 src/visitor/typecomparator.ts                      |   6 +-
 src/visitor/vectorassembler.ts                     |  22 +-
 src/visitor/vectorloader.ts                        | 147 ++++-
 test/data/tables.ts                                |   2 +-
 test/generate-test-data.ts                         |  28 +-
 test/unit/builders/view-builders-tests.ts          | 258 ++++++++
 test/unit/generated-data-tests.ts                  |   2 +
 test/unit/vector/vector-tests.ts                   |  46 +-
 yarn.lock                                          | 657 +++++++++------------
 47 files changed, 1765 insertions(+), 522 deletions(-)
 copy ci/scripts/test.sh => 
.github/patches/enable-binaryview-integration-tests.patch (59%)
 mode change 100755 => 100644
 create mode 100755 scripts/update_flatbuffers.sh
 create mode 100644 src/builder/binaryview.ts
 copy src/builder/{bool.ts => utf8view.ts} (62%)
 copy src/fb/{Schema_generated.ts => File.ts} (72%)
 create mode 100644 src/fb/binary-view.ts
 create mode 100644 src/fb/large-list-view.ts
 create mode 100644 src/fb/list-view.ts
 create mode 100644 src/fb/utf8-view.ts
 create mode 100644 test/unit/builders/view-builders-tests.ts

Reply via email to