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.1.0
in repository https://gitbox.apache.org/repos/asf/arrow-js.git


 discard 8eae5a5  chore: bump web-streams-polyfill from 3.2.1 to 4.1.0
     add 8905c20  chore: bump @rollup/plugin-node-resolve from 16.0.0 to 16.0.1 
(#39)
     add 5e62c4f  chore: bump @types/jest from 29.5.12 to 29.5.14 (#42)
     add b0e0c44  chore: Migrate ESLint 8 to 9 (#128)
     add 685399d  chore: Run Release Audit Tool in CI (#129)
     add 958dab9  chore: bump @swc/helpers from 0.5.15 to 0.5.17 (#131)
     add c9ee085  chore: bump typescript-eslint from 8.32.1 to 8.33.1 (#132)
     add e8d1428  chore: bump esbuild from 0.25.0 to 0.25.5 (#134)
     add 7defcc9  chore: Add CODE_OF_CONDUCT.md (#141)
     add 9b2638d  chore: bump rollup from 4.41.0 to 4.42.0 (#150)
     add 489c10f  chore: bump eslint from 9.27.0 to 9.28.0 (#151)
     add 061b8c5  chore: bump @swc/core from 1.11.29 to 1.11.31 (#152)
     add c559c25  Prepare release scripts (#137)
     add a745991  chore: Update repository URLs (#146)
     add 3251060  chore: Add CONTRIBUTING.md (#142)
     add 75f5ad1  chore: Remove `lerna` from `package.json` (#144)
     add b2d2bb6  chore: Remove `create:testdata`/`clean:testdata` in 
`package.json` (#148)
     add 289d4b8  chore: bump google-closure-compiler from 20240317.0.0 to 
20250603.0.0 (#149)
     add 91c2221  chore: Remove xml2js dependency (#155)
     add 283608b  chore: bump web-streams-polyfill from 3.2.1 to 4.1.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   (8eae5a5)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/web-streams-polyfill-4.1.0 (283608b)

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:
 .eslintignore                                      |    6 -
 .eslintrc.cjs                                      |  114 --
 .github/workflows/rc.yaml                          |  182 +++
 .github/workflows/release.yaml                     |   58 +
 .github/workflows/test.yaml                        |   39 +-
 .gitignore                                         |    8 +
 .npmrc                                             |   17 +
 ci/scripts/test.sh => .pre-commit-config.yaml      |   27 +-
 CODE_OF_CONDUCT.md                                 |   24 +
 CONTRIBUTING.md                                    |  121 ++
 DEVELOP.md                                         |    6 +-
 README.md                                          |   34 +-
 ci/scripts/test.sh => dev/release/.env.example     |   26 +-
 dev/release/README.md                              |  220 +++
 dev/release/check_rat_report.py                    |   59 +
 .../release/rat_exclude_files.txt                  |    4 +-
 dev/release/release.sh                             |  135 ++
 dev/release/release_rc.sh                          |  177 +++
 dev/release/run_rat.sh                             |   54 +
 dev/release/verify_rc.sh                           |  205 +++
 eslint.config.js                                   |   95 ++
 gulp/closure-task.js                               |    3 +-
 gulp/test-task.js                                  |  107 --
 gulpfile.js                                        |    4 +-
 npm-release.sh                                     |   30 -
 package.json                                       |   40 +-
 src/fb/.eslintrc.cjs                               |   25 -
 src/io/adapters.ts                                 |    9 +-
 src/io/whatwg/iterable.ts                          |    4 +-
 src/ipc/metadata/file.ts                           |    2 -
 src/ipc/metadata/json.ts                           |    2 -
 src/ipc/metadata/message.ts                        |    2 -
 src/util/buffer.ts                                 |    2 +
 src/util/compat.ts                                 |    2 +-
 test/.eslintrc.cjs                                 |   35 -
 test/jest-extensions.ts                            |    6 +-
 test/unit/bn-tests.ts                              |    4 +-
 test/unit/builders/builder-tests.ts                |    6 +-
 test/unit/generated-data-validators.ts             |   12 +-
 test/unit/ipc/helpers.ts                           |    3 +-
 test/unit/vector/numeric-vector-tests.ts           |    6 +-
 test/unit/vector/vector-tests.ts                   |   12 +-
 yarn.lock                                          | 1591 ++++++++++----------
 43 files changed, 2268 insertions(+), 1250 deletions(-)
 delete mode 100644 .eslintignore
 delete mode 100644 .eslintrc.cjs
 create mode 100644 .github/workflows/rc.yaml
 create mode 100644 .github/workflows/release.yaml
 copy ci/scripts/test.sh => .pre-commit-config.yaml (64%)
 mode change 100755 => 100644
 create mode 100644 CODE_OF_CONDUCT.md
 create mode 100644 CONTRIBUTING.md
 copy ci/scripts/test.sh => dev/release/.env.example (62%)
 mode change 100755 => 100644
 create mode 100644 dev/release/README.md
 create mode 100755 dev/release/check_rat_report.py
 copy .github/ISSUE_TEMPLATE/config.yml => dev/release/rat_exclude_files.txt 
(93%)
 create mode 100755 dev/release/release.sh
 create mode 100755 dev/release/release_rc.sh
 create mode 100755 dev/release/run_rat.sh
 create mode 100755 dev/release/verify_rc.sh
 create mode 100644 eslint.config.js
 delete mode 100755 npm-release.sh
 delete mode 100644 src/fb/.eslintrc.cjs
 delete mode 100644 test/.eslintrc.cjs

Reply via email to