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

fix: check parent exists during instrumentation: #525

Merged
merged 2 commits into from Jan 6, 2022

Conversation

Asgaroth
Copy link
Contributor

@Asgaroth Asgaroth commented Jan 4, 2022

Which problem is this PR solving?

parent can be null depending on how a module was loaded, see:
nodejs/modules#469

Particularly in nextjs a config file is loaded that causes parent to be null and fail the app from building with:

> Build error occurred
TypeError: Cannot read property 'id' of undefined // if (parent.id.includes(`node_modules/${pkg.name}`) || !enabledInstrumentations.has(loadRequest)) {
    at exports.instrumentLoad (/path/node_modules/honeycomb-beeline/lib/instrumentation.js:74:14)
    at Function._load (/path/node_modules/honeycomb-beeline/lib/instrumentation.js:158:16)
    at ModuleWrap.<anonymous> (internal/modules/esm/translators.js:199:29)
    at ModuleJob.run (internal/modules/esm/module_job.js:183:25)
    at async Loader.import (internal/modules/esm/loader.js:178:24) {
  type: 'TypeError'
}

Short description of the changes

  • Skip instrumentation if parent is not defined for a module

@Asgaroth Asgaroth requested a review from a team as a code owner January 4, 2022 17:11
Copy link
Contributor

@MikeGoldsmith MikeGoldsmith left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, thanks @Asgaroth. I added a test to ensure there isn't a future regression.

@MikeGoldsmith MikeGoldsmith merged commit cdd32ad into honeycombio:main Jan 6, 2022
@MikeGoldsmith
Copy link
Contributor

Hi @Asgaroth - beeline-nodejs v3.2.1 is now available with your fix 👍🏻

@Asgaroth
Copy link
Contributor Author

Asgaroth commented Jan 6, 2022

Thanks a lot!

gabrielgilini added a commit to getoutreach/beeline-nodejs that referenced this pull request Aug 26, 2022
* Remove deprecated APIs (honeycombio#457)

* Adds Stalebot (honeycombio#460)

* Change maintenance badge to maintained (honeycombio#459)

* clean up npm tarball (honeycombio#465)

It's best to have an allow list of things we want in the tarball[1]. This makes
the contents of the published package more explicit.

* NPM always includes readme and license.
* It used to include notice and changelog but now it does not, so we add them
  to the list.

[1] https://blog.npmjs.org/post/165769683050/publishing-what-you-mean-to-publish.html

* Bump jest from 27.2.0 to 27.2.2 (honeycombio#462)

Bumps [jest](https://github.com/facebook/jest) from 27.2.0 to 27.2.2.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](jestjs/jest@v27.2.0...v27.2.2)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump fastify from 3.21.3 to 3.21.6 (honeycombio#461)

Bumps [fastify](https://github.com/fastify/fastify) from 3.21.3 to 3.21.6.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v3.21.3...v3.21.6)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @opentelemetry/core from 0.24.0 to 0.25.0 (honeycombio#464)

Bumps [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js) from 0.24.0 to 0.25.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v0.24.0...v0.25.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @types/node from 16.9.4 to 16.10.2 (honeycombio#466)

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.9.4 to 16.10.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Prepare 3.0.0 major release (honeycombio#473)

* Prepare 3.0.0 major release

* Add details for breaking changes

* Bump jest from 27.2.2 to 27.3.0 (honeycombio#476)

Bumps [jest](https://github.com/facebook/jest) from 27.2.2 to 27.3.0.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](jestjs/jest@v27.2.2...v27.3.0)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump fastify from 3.21.6 to 3.22.1 (honeycombio#479)

Bumps [fastify](https://github.com/fastify/fastify) from 3.21.6 to 3.22.1.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v3.21.6...v3.22.1)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jest from 27.3.0 to 27.3.1 (honeycombio#480)

Bumps [jest](https://github.com/facebook/jest) from 27.3.0 to 27.3.1.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](jestjs/jest@v27.3.0...v27.3.1)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lint-staged from 11.1.2 to 11.2.3 (honeycombio#482)

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 11.1.2 to 11.2.3.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](lint-staged/lint-staged@v11.1.2...v11.2.3)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump husky from 7.0.2 to 7.0.4 (honeycombio#483)

Bumps [husky](https://github.com/typicode/husky) from 7.0.2 to 7.0.4.
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v7.0.2...v7.0.4)

---
updated-dependencies:
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump eslint from 7.32.0 to 8.0.1 (honeycombio#474)

Bumps [eslint](https://github.com/eslint/eslint) from 7.32.0 to 8.0.1.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](eslint/eslint@v7.32.0...v8.0.1)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @opentelemetry/core from 0.25.0 to 1.0.0 (honeycombio#467)

Bumps [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js) from 0.25.0 to 1.0.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v0.25.0...stable/v1.0.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/core"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump libhoney from 2.3.3 to 3.0.0 (honeycombio#478)

Bumps [libhoney](https://github.com/honeycombio/libhoney-js) from 2.3.3 to 3.0.0.
- [Release notes](https://github.com/honeycombio/libhoney-js/releases)
- [Changelog](https://github.com/honeycombio/libhoney-js/blob/main/CHANGELOG.md)
- [Commits](honeycombio/libhoney-js@v2.3.3...v3.0.0)

---
updated-dependencies:
- dependency-name: libhoney
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* ci: add node 17 to test matrix (honeycombio#485)

* remove unnecessary dependency on node types (honeycombio#484)

* Bump eslint from 8.0.1 to 8.1.0 (honeycombio#488)

Bumps [eslint](https://github.com/eslint/eslint) from 8.0.1 to 8.1.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.0.1...v8.1.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lint-staged from 11.2.3 to 11.2.4 (honeycombio#487)

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 11.2.3 to 11.2.4.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](lint-staged/lint-staged@v11.2.3...v11.2.4)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* empower apply-labels action to apply labels (honeycombio#490)

* Migrate and update example from examples repo (honeycombio#494)

* Migrate and update example from examples repo

* Simplify example, fix TraceContext, addSpan

* Bump eslint from 8.1.0 to 8.3.0 (honeycombio#499)

Bumps [eslint](https://github.com/eslint/eslint) from 8.1.0 to 8.3.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.1.0...v8.3.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lint-staged from 11.2.4 to 12.1.1 (honeycombio#498)

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 11.2.4 to 12.1.1.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](lint-staged/lint-staged@v11.2.4...v12.1.1)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @opentelemetry/core from 1.0.0 to 1.0.1 (honeycombio#496)

Bumps [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js) from 1.0.0 to 1.0.1.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/open-telemetry/opentelemetry-js/commits)

---
updated-dependencies:
- dependency-name: "@opentelemetry/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump fastify from 3.22.1 to 3.24.0 (honeycombio#497)

Bumps [fastify](https://github.com/fastify/fastify) from 3.22.1 to 3.24.0.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v3.22.1...v3.24.0)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update dependabot to monthly (honeycombio#500)

* Bump lint-staged from 12.1.1 to 12.1.2 (honeycombio#501)

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 12.1.1 to 12.1.2.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](lint-staged/lint-staged@v12.1.1...v12.1.2)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Expand type definitions to include all libhoney options (honeycombio#502)

The specific one I wanted to use was apiHost, but I figured I'd
add them all while I was here.

* Prepare v3.1.0 release (honeycombio#508)

Co-authored-by: JamieDanielson <jamieedanielson@gmail.com>

* maint: Enable linting for ts files (to lint types file) (honeycombio#510)

* Enable linting for ts files (to lint types file)

* Add separate script for lint-ts

* Bump prettier from 2.4.1 to 2.5.1 (honeycombio#511)

Bumps [prettier](https://github.com/prettier/prettier) from 2.4.1 to 2.5.1.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.4.1...2.5.1)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add npm shield with link to npm package (honeycombio#513)

* Bump fastify from 3.24.0 to 3.24.1 (honeycombio#506)

Bumps [fastify](https://github.com/fastify/fastify) from 3.24.0 to 3.24.1.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v3.24.0...v3.24.1)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jest from 27.3.1 to 27.4.3 (honeycombio#512)

Bumps [jest](https://github.com/facebook/jest) from 27.3.1 to 27.4.3.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](jestjs/jest@v27.3.1...v27.4.3)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump debug from 4.3.2 to 4.3.3 (honeycombio#505)

Bumps [debug](https://github.com/debug-js/debug) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/debug-js/debug/releases)
- [Commits](debug-js/debug@4.3.2...4.3.3)

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Further improvements to typescript types (honeycombio#509)

* Further improvements to typescript types

* expose _apiForTesting
* provide event type to sample/presend hooks
* include the Span type for SpanFn

* add docker-compose config for test-worthy Postgres (honeycombio#515)

This is enough docker and postgres to make the PG instrumentation tests happy(ier).

* feat: accept both w3c and honeycomb propagation headers by default (honeycombio#514)

* attempt to parse incoming header as w3c (even if no hook specified) if w3c header found - unless honeycomb header also found, then default to that. 

Co-authored-by: Robb Kidd <robbkidd@honeycomb.io>

* Prepare v3.2.0 (honeycombio#516)

* gh: add re-triage workflow (honeycombio#517)

* Use beforeEach() and afterEach() in tests (honeycombio#524)

* fix: check parent exists during instrumentation: (honeycombio#525)

Co-authored-by: Mike Goldsmth <goldsmith.mike@gmail.com>

* Bump express from 4.17.1 to 4.17.2 (honeycombio#523)

Bumps [express](https://github.com/expressjs/express) from 4.17.1 to 4.17.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.17.1...4.17.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @opentelemetry/api from 1.0.3 to 1.0.4 (honeycombio#521)

Bumps [@opentelemetry/api](https://github.com/open-telemetry/opentelemetry-js-api) from 1.0.3 to 1.0.4.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-api/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-api/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js-api@v1.0.3...v1.0.4)

---
updated-dependencies:
- dependency-name: "@opentelemetry/api"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump fastify from 3.24.1 to 3.25.3 (honeycombio#522)

Bumps [fastify](https://github.com/fastify/fastify) from 3.24.1 to 3.25.3.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v3.24.1...v3.25.3)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @typescript-eslint/eslint-plugin from 5.6.0 to 5.9.0 (honeycombio#529)

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.6.0 to 5.9.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.9.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lint-staged from 12.1.2 to 12.1.5 (honeycombio#528)

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 12.1.2 to 12.1.5.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](lint-staged/lint-staged@v12.1.2...v12.1.5)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @typescript-eslint/parser from 5.6.0 to 5.9.0 (honeycombio#527)

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.6.0 to 5.9.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.9.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump typescript from 4.5.2 to 4.5.4 (honeycombio#526)

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.5.2 to 4.5.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v4.5.2...v4.5.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Prepare v3.2.1 release (honeycombio#530)

* prepare v3.2.1 release

* update changelog

* Update vulnerable dependencies (honeycombio#532)

* bump vm2 from 3.9.3 to 3.9.5
* update examples dependency

* Fix parser defaults (honeycombio#533)

* docs: add deprecation warnings around trace context parsing
* fix: trace context parsing auto-detection
- do not auto-detect honeycomb or w3c headers if a parser hook is configured

* Prepare 3.2.2 (honeycombio#534)

* docs: add note about ESM (honeycombio#542)

* Bump vm2 from 3.9.5 to 3.9.7 (honeycombio#543)

Bumps [vm2](https://github.com/patriksimek/vm2) from 3.9.5 to 3.9.7.
- [Release notes](https://github.com/patriksimek/vm2/releases)
- [Changelog](https://github.com/patriksimek/vm2/blob/master/CHANGELOG.md)
- [Commits](patriksimek/vm2@3.9.5...3.9.7)

---
updated-dependencies:
- dependency-name: vm2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add Environment & Services support (honeycombio#551)

Co-authored-by: Vera Reynolds <vreynolds@users.noreply.github.com>

* prepare 3.3.0 release (honeycombio#552)

* Bump minimist from 1.2.5 to 1.2.6 (honeycombio#556)

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Make api.addContext work in impl:mock mode (honeycombio#557)

* Bump @typescript-eslint/eslint-plugin from 5.9.0 to 5.17.0 (honeycombio#559)

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.9.0 to 5.17.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.17.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump eslint from 8.3.0 to 8.13.0 (honeycombio#562)

Bumps [eslint](https://github.com/eslint/eslint) from 8.3.0 to 8.13.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.3.0...v8.13.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @typescript-eslint/eslint-plugin from 5.17.0 to 5.18.0 (honeycombio#561)

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.17.0 to 5.18.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.18.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jest from 27.4.3 to 27.5.1 (honeycombio#549)

Bumps [jest](https://github.com/facebook/jest) from 27.4.3 to 27.5.1.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](jestjs/jest@v27.4.3...v27.5.1)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump pg from 8.7.1 to 8.7.3 (honeycombio#565)

Bumps [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) from 8.7.1 to 8.7.3.
- [Release notes](https://github.com/brianc/node-postgres/releases)
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.7.3/packages/pg)

---
updated-dependencies:
- dependency-name: pg
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @typescript-eslint/parser from 5.9.0 to 5.18.0 (honeycombio#564)

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.9.0 to 5.18.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.18.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump supertest from 6.1.6 to 6.2.2 (honeycombio#536)

Bumps [supertest](https://github.com/visionmedia/supertest) from 6.1.6 to 6.2.2.
- [Release notes](https://github.com/visionmedia/supertest/releases)
- [Commits](ladjs/supertest@v6.1.6...v6.2.2)

---
updated-dependencies:
- dependency-name: supertest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump debug from 4.3.3 to 4.3.4 (honeycombio#563)

Bumps [debug](https://github.com/debug-js/debug) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/debug-js/debug/releases)
- [Commits](debug-js/debug@4.3.3...4.3.4)

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump semver from 7.3.5 to 7.3.6 (honeycombio#567)

Bumps [semver](https://github.com/npm/node-semver) from 7.3.5 to 7.3.6.
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.3.5...v7.3.6)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump express from 4.17.2 to 4.17.3 (honeycombio#568)

Bumps [express](https://github.com/expressjs/express) from 4.17.2 to 4.17.3.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.17.2...4.17.3)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump fastify from 3.25.3 to 3.28.0 (honeycombio#569)

Bumps [fastify](https://github.com/fastify/fastify) from 3.25.3 to 3.28.0.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v3.25.3...v3.28.0)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump prettier from 2.5.1 to 2.6.2 (honeycombio#573)

Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 2.6.2.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.5.1...2.6.2)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump pg-query-stream from 4.2.1 to 4.2.3 (honeycombio#572)

Bumps [pg-query-stream](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg-query-stream) from 4.2.1 to 4.2.3.
- [Release notes](https://github.com/brianc/node-postgres/releases)
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg-query-stream@4.2.3/packages/pg-query-stream)

---
updated-dependencies:
- dependency-name: pg-query-stream
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump libhoney from 3.0.0 to 3.1.0 (honeycombio#571)

Bumps [libhoney](https://github.com/honeycombio/libhoney-js) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/honeycombio/libhoney-js/releases)
- [Changelog](https://github.com/honeycombio/libhoney-js/blob/main/CHANGELOG.md)
- [Commits](honeycombio/libhoney-js@v3.0.0...v3.1.0)

---
updated-dependencies:
- dependency-name: libhoney
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump minimist from 1.2.5 to 1.2.6 in /examples/node-tracing (honeycombio#560)

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* maint: remove lint-staged (honeycombio#566)

* Bump typescript from 4.5.4 to 4.6.3 (honeycombio#574)

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.5.4 to 4.6.3.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v4.5.4...v4.6.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add meta.span_type to root/subroot spans (honeycombio#576)

* Bump react and react-dom (honeycombio#570)

Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom). These dependencies needed to be updated together.

Updates `react` from 17.0.2 to 18.0.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.0.0/packages/react)

Updates `react-dom` from 17.0.2 to 18.0.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.0.0/packages/react-dom)

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: react-dom
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @opentelemetry/core from 1.0.1 to 1.2.0 (honeycombio#577)

Bumps [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js) from 1.0.1 to 1.2.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@stable/v1.0.1...v1.2.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @typescript-eslint/parser from 5.18.0 to 5.21.0 (honeycombio#578)

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.18.0 to 5.21.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.21.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump fastify from 3.28.0 to 3.29.0 (honeycombio#579)

Bumps [fastify](https://github.com/fastify/fastify) from 3.28.0 to 3.29.0.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v3.28.0...v3.29.0)

---
updated-dependencies:
- dependency-name: fastify
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump typescript from 4.6.3 to 4.6.4 (honeycombio#581)

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.6.3 to 4.6.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v4.6.3...v4.6.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump supertest from 6.2.2 to 6.2.3 (honeycombio#580)

Bumps [supertest](https://github.com/visionmedia/supertest) from 6.2.2 to 6.2.3.
- [Release notes](https://github.com/visionmedia/supertest/releases)
- [Commits](ladjs/supertest@v6.2.2...v6.2.3)

---
updated-dependencies:
- dependency-name: supertest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @typescript-eslint/parser from 5.18.0 to 5.22.0 (honeycombio#584)

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.18.0 to 5.22.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.22.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump express from 4.17.3 to 4.18.1 (honeycombio#588)

Bumps [express](https://github.com/expressjs/express) from 4.17.3 to 4.18.1.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.17.3...4.18.1)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump libhoney from 3.1.0 to 3.1.1 (honeycombio#585)

Bumps [libhoney](https://github.com/honeycombio/libhoney-js) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/honeycombio/libhoney-js/releases)
- [Changelog](https://github.com/honeycombio/libhoney-js/blob/main/CHANGELOG.md)
- [Commits](honeycombio/libhoney-js@v3.1.0...v3.1.1)

---
updated-dependencies:
- dependency-name: libhoney
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react from 18.0.0 to 18.1.0 (honeycombio#586)

Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) from 18.0.0 to 18.1.0.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.1.0/packages/react)

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-dom from 18.0.0 to 18.1.0 (honeycombio#587)

Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) from 18.0.0 to 18.1.0.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.1.0/packages/react-dom)

---
updated-dependencies:
- dependency-name: react-dom
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump eslint from 8.13.0 to 8.14.0 (honeycombio#589)

Bumps [eslint](https://github.com/eslint/eslint) from 8.13.0 to 8.14.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.13.0...v8.14.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @typescript-eslint/eslint-plugin from 5.18.0 to 5.22.0 (honeycombio#591)

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.18.0 to 5.22.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.22.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @opentelemetry/api from 1.0.4 to 1.1.0 (honeycombio#590)

Bumps [@opentelemetry/api](https://github.com/open-telemetry/opentelemetry-js-api) from 1.0.4 to 1.1.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-js-api/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js-api/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js-api@v1.0.4...v1.1.0)

---
updated-dependencies:
- dependency-name: "@opentelemetry/api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jest from 27.5.1 to 28.0.3 (honeycombio#583)

* Bump jest from 27.5.1 to 28.0.3

Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) from 27.5.1 to 28.0.3.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/commits/v28.0.3/packages/jest)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* remove 10.24 from tested node versions

* move jest config into jest.config

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mike Goldsmth <goldsmith.mike@gmail.com>

* Prepare 3.4.0 release (honeycombio#592)

Co-authored-by: Jamie Danielson <jamieedanielson@gmail.com>

* Update package.json for fork

This commit sets up a private fork of beeline-nodejs.

Note that this GitHub repo is public, so we should avoid internal-only
referances in code and PR discussions.

The intent here is not to hide what we're doing or keep this work to
ourselves.  We're forking because the upstream library is in maintenance
mode, but we'd like to add features to it, and we're not ready to
migrate to the new and improved OpenTelemtry equivalents just yet.

* Add trace-level rollup support (outreach fork)

Updates honeycomb-beeline with a new method, `incrementTraceRollup`,
which can be used to accumulate running counters over the course of a
request, to be reported on the top-level trace span when the request is
finished.

The original, unpatched honeycomb-beeline had some not-well-documented
suport for rollups, but it doesn't work with async spans, and most spans
are async.  This patched version will work with async spans, though it
does assume that even async spans don't outlive their parent trace.
That's generally true for us, but it's also a stronger assumption than
the upstream libraries are willing to make.  Our counts may be lower
than expected if that expectation is violated.

* Fix bad `npm publish`

* Add types for two internal functions (#4)

Adds type declarations for `deterministicSampler` and `getTraceContext`
that we intend to import from our TypeScript wrapper libraries.

* fix pathname in test to reflect our pkg name

Co-authored-by: Vera Reynolds <vreynolds@users.noreply.github.com>
Co-authored-by: JamieDanielson <jamieedanielson@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robb Kidd <robbkidd@honeycomb.io>
Co-authored-by: Glen Mailer <glenjamin@gmail.com>
Co-authored-by: Mike Goldsmith <goldsmith.mike@gmail.com>
Co-authored-by: Glen Mailer <glen@geckoboard.com>
Co-authored-by: Alex Urbano <asgaroth.belem@gmail.com>
Co-authored-by: Richard Larocque <richard.larocque@outreach.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants