Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pragmaticivan/nestjs-otel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.1.2
Choose a base ref
...
head repository: pragmaticivan/nestjs-otel
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.2.0
Choose a head ref
  • 5 commits
  • 9 files changed
  • 2 contributors

Commits on Mar 2, 2025

  1. feat(middleware): backward compatibility for nestjs v10 and proper su…

    …pport for v11 middleware
    pragmaticivan committed Mar 2, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    pradyunsg Pradyun Gedam
    Copy the full SHA
    f22d1e5 View commit details
  2. chore: ci with legacy peer deps for v10 test

    pragmaticivan committed Mar 2, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    pradyunsg Pradyun Gedam
    Copy the full SHA
    741549d View commit details
  3. Merge pull request #526 from pragmaticivan/support-v10-and-v11-nest

    feat(middleware): backward compatibility for nestjs v10 and proper support for v11 middleware
    pragmaticivan authored Mar 2, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    pradyunsg Pradyun Gedam
    Copy the full SHA
    cde1480 View commit details
  4. Copy the full SHA
    3154092 View commit details
  5. Merge pull request #527 from pragmaticivan/release-please--branches--…

    …main--components--nestjs-otel
    
    chore(main): release 6.2.0
    pragmaticivan authored Mar 2, 2025
    Copy the full SHA
    9eedfc2 View commit details
Showing with 5,003 additions and 9,217 deletions.
  1. +1 −1 .github/workflows/nodejs.yml
  2. +1 −1 .github/workflows/release-please.yml
  3. +7 −0 CHANGELOG.md
  4. +4,760 −9,191 package-lock.json
  5. +26 −21 package.json
  6. +96 −0 src/feature-detection.utils.spec.ts
  7. +76 −0 src/feature-detection.utils.ts
  8. +28 −0 src/middleware.utils.ts
  9. +8 −3 src/opentelemetry-core.module.ts
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm install --legacy-peer-deps
- run: npm run lint
- run: npm test
- run: npm run build --if-present
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ jobs:
- if: ${{ steps.release.outputs.release_created }}
run: npm install -g npm
- if: ${{ steps.release.outputs.release_created }}
run: npm ci
run: npm ci --legacy-peer-deps
- if: ${{ steps.release.outputs.release_created }}
run: npm run build
- id: publish
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [6.2.0](https://github.com/pragmaticivan/nestjs-otel/compare/v6.1.2...v6.2.0) (2025-03-02)


### Features

* **middleware:** backward compatibility for nestjs v10 and proper support for v11 middleware ([f22d1e5](https://github.com/pragmaticivan/nestjs-otel/commit/f22d1e5b03271c8f5d34831054eb1a6bdcd93682))

## [6.1.2](https://github.com/pragmaticivan/nestjs-otel/compare/v6.1.1...v6.1.2) (2025-01-17)


Loading