Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the development-dependencies group with 3 updates #39

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 22, 2024

Bumps the development-dependencies group with 3 updates: @babel/preset-env, @koopjs/koop-core and bson.

Updates @babel/preset-env from 7.23.9 to 7.24.4

Release notes

Sourced from @​babel/preset-env's releases.

v7.24.4 (2024-04-03)

Thanks @​Dunqing, @​luiscubal, and @​samualtnorman for your first PRs!

👓 Spec Compliance

  • babel-parser
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

🐛 Bug Fix

  • babel-generator
  • babel-compat-data, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-transform-block-scoping
  • babel-core, babel-plugin-transform-block-scoped-functions, babel-plugin-transform-block-scoping

Committers: 7

v7.24.3 (2024-03-20)

Thanks @​ota-meshi for your first PR!

🐛 Bug Fix

  • babel-helper-module-imports

Committers: 2

v7.24.2 (2024-03-19)

🐛 Bug Fix

  • babel-code-frame, babel-highlight

... (truncated)

Changelog

Sourced from @​babel/preset-env's changelog.

v7.24.4 (2024-04-03)

👓 Spec Compliance

  • babel-parser
  • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

🐛 Bug Fix

  • babel-generator
  • babel-compat-data, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-transform-block-scoping
  • babel-core, babel-plugin-transform-block-scoped-functions, babel-plugin-transform-block-scoping

v7.24.3 (2024-03-20)

🐛 Bug Fix

  • babel-helper-module-imports

v7.24.2 (2024-03-19)

🐛 Bug Fix

v7.24.1 (2024-03-19)

🐛 Bug Fix

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-proposal-decorators, babel-plugin-proposal-json-modules, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties
  • babel-helper-create-class-features-plugin, babel-helper-replace-supers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties

📝 Documentation

🏠 Internal

  • babel-code-frame, babel-highlight

... (truncated)

Commits

Updates @koopjs/koop-core from 10.3.2 to 10.4.5

Release notes

Sourced from @​koopjs/koop-core's releases.

@​koopjs/koop-core@​10.4.5

10.4.5

Patch Changes

  • auth error code can be set from provider but defaults to 401
  • Updated dependencies [90228e9]
    • @​koopjs/output-geoservices@​8.1.14

@​koopjs/koop-core@​10.4.4

10.4.4

Patch Changes

  • @​koopjs/output-geoservices@​8.1.13

@​koopjs/koop-core@​10.4.3

10.4.3

Patch Changes

  • @​koopjs/output-geoservices@​8.1.12

@​koopjs/koop-core@​10.4.2

10.4.2

Patch Changes

  • @​koopjs/output-geoservices@​8.1.11

@​koopjs/koop-core@​10.4.1

10.4.1

Patch Changes

  • @​koopjs/output-geoservices@​8.1.10

@​koopjs/koop-core@​10.4.0

10.4.0

Minor Changes

allow exceededTransferLimit in GeoServices output-plugin to be set by provider metadata

Patch Changes

  • @​koopjs/output-geoservices@​8.1.9

@​koopjs/koop-core@​10.3.8

10.3.8

Patch Changes

  • @​koopjs/output-geoservices@​8.1.8

@​koopjs/koop-core@​10.3.7

10.3.7

Patch Changes

  • @​koopjs/output-geoservices@​8.1.7

@​koopjs/koop-core@​10.3.6

10.3.6

Patch Changes

  • @​koopjs/output-geoservices@​8.1.6

@​koopjs/koop-core@​10.3.5

... (truncated)

Commits
  • fc9017e chore: version and changelog
  • 90228e9 fix: two auth bugs (#980)
  • 5cb4c20 Merge pull request #973 from koopjs/dependabot/npm_and_yarn/master/developmen...
  • cd3ce4f chore(deps-dev): bump the development-dependencies group with 3 updates
  • 451a7e9 Merge pull request #972 from koopjs/dependabot/npm_and_yarn/master/production...
  • c81ad77 chore(deps): bump ejs in the production-dependencies group
  • e215a22 chore: increase max line length (#970)
  • 9a0ebda fix: handle new files in cov report (#968)
  • 5543f19 chore: update package-lock post-npm release
  • 06c26cd chore: version and changelog
  • Additional commits viewable in compare view

Updates bson from 6.3.0 to 6.6.0

Release notes

Sourced from bson's releases.

v6.6.0

6.6.0 (2024-04-01)

The MongoDB Node.js team is pleased to announce version 6.6.0 of the bson package!

Release Notes

Binary.toString and Binary.toJSON align with BSON serialization

When BSON serializes a Binary instance it uses the bytes between 0 and binary.position since Binary supports pre-allocating empty space and writing segments of data using .put()/.write(). Erroneously, the toString() and toJSON() methods did not use the position property to limit how much of the underlying buffer to transform into the final value, potentially returning more string than relates to the actual data of the Binary instance.

In general, you may not encounter this bug if Binary instances are created from a data source (new Binary(someBuffer)) or are returned by the database because in both of these cases binary.position is equal to the length of the underlying buffer.

Fixed example creating an empty Binary:

new BSON.Binary().toString();
// old output: '\x00\x00\x00\x00...' (256 zeros)
// new output: '' 

Experimental APIs

This release contains experimental APIs that are not suitable for production use. As a reminder, anything marked @experimental is not a part of the stable semantically versioned API and is subject to change in any subsequent release.

Bug Fixes

  • NODE-6042: Binary.toString output with respect to position (#663) (d7898f9)

Documentation

We invite you to try the bson library immediately, and report any issues to the NODE project.

v6.5.0

6.5.0 (2024-03-12)

The MongoDB Node.js team is pleased to announce version 6.5.0 of the bson package!

Release Notes

Fixed float byte-wise handling on big-endian systems

[!CAUTION] Among the platforms BSON and the MongoDB driver support this issue impacts s390x big-endian systems. x86, ARM, and other little-endian systems are not affected. Existing versions of the driver can be upgraded to this release.

A recent change to the BSON library started parsing and serializing floats using a Float64Array. When reading the bytes from this array the ordering is dependent on the platform it is running on and we now properly account for that ordering.

Add SUBTYPE_SENSITIVE on Binary class

... (truncated)

Changelog

Sourced from bson's changelog.

6.6.0 (2024-04-01)

Features

  • NODE-5958: add BSON iterating API (#656) (269df91)
  • NODE-5959: make byte parsing utils available on onDemand library (#662) (efab49a)

Bug Fixes

  • NODE-6042: Binary.toString output with respect to position (#663) (d7898f9)
  • NODE-6059: clean up experimental APIs (#665) (3289184)

6.5.0 (2024-03-12)

Features

Bug Fixes

  • NODE-6016: flip byte order depending on system endianness (#659) (6a7ef5d)

6.4.0 (2024-02-29)

Features

  • NODE-5909: optimize writing basic latin strings (#645) (ec51256)

Bug Fixes

  • NODE-5873: objectId symbol property not defined on instances from cross cjs and mjs (#643) (4d9884d)

Performance Improvements

  • NODE-5557: move DataView and Set allocation used for double parsing and utf8 validation to nested path (#611) (9a150e1)
  • NODE-5910: optimize small byte copies (#651) (24d035e)
  • NODE-5934: replace DataView uses with bit math (#649) (6d343ab)
  • NODE-5955: use pooled memory when possible (#653) (78c4264)
Commits
  • eeab1e8 chore(main): release 6.6.0 [skip-ci] (#661)
  • 3289184 fix(NODE-6059): clean up experimental APIs (#665)
  • d7898f9 fix(NODE-6042): Binary.toString output with respect to position (#663)
  • efab49a feat(NODE-5959): make byte parsing utils available on onDemand library (#662)
  • 269df91 feat(NODE-5958): add BSON iterating API (#656)
  • 2f0effb chore(main): release 6.5.0 [skip-ci] (#655)
  • c910db1 test(NODE-6017): add an s390x big endian test (#660)
  • 6a7ef5d fix(NODE-6016): flip byte order depending on system endianness (#659)
  • 748ca60 feat(NODE-5506): add Binary subtype sensitive (#657)
  • 2ac17ec feat(NODE-5957): add BSON indexing API (#654)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the development-dependencies group with 3 updates: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env), [@koopjs/koop-core](https://github.com/koopjs/koop) and [bson](https://github.com/mongodb/js-bson).


Updates `@babel/preset-env` from 7.23.9 to 7.24.4
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.24.4/packages/babel-preset-env)

Updates `@koopjs/koop-core` from 10.3.2 to 10.4.5
- [Release notes](https://github.com/koopjs/koop/releases)
- [Changelog](https://github.com/koopjs/koop/blob/master/changeset-to-changelog.js)
- [Commits](https://github.com/koopjs/koop/compare/@koopjs/[email protected]...@koopjs/[email protected])

Updates `bson` from 6.3.0 to 6.6.0
- [Release notes](https://github.com/mongodb/js-bson/releases)
- [Changelog](https://github.com/mongodb/js-bson/blob/main/HISTORY.md)
- [Commits](mongodb/js-bson@v6.3.0...v6.6.0)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@koopjs/koop-core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: bson
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 22, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 6, 2024

Superseded by #41.

@dependabot dependabot bot closed this May 6, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/master/development-dependencies-17e47457de branch May 6, 2024 13:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants