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: nestjs/swagger
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.1.16
Choose a base ref
...
head repository: nestjs/swagger
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.1.17
Choose a head ref

Commits on Nov 15, 2023

  1. Copy the full SHA
    b3889bf View commit details

Commits on Nov 16, 2023

  1. Copy the full SHA
    8720da4 View commit details

Commits on Nov 17, 2023

  1. Copy the full SHA
    75c2ccb View commit details
  2. Copy the full SHA
    e0cb95f View commit details

Commits on Nov 18, 2023

  1. Copy the full SHA
    349ed57 View commit details

Commits on Nov 19, 2023

  1. Copy the full SHA
    5f23b26 View commit details

Commits on Nov 20, 2023

  1. Copy the full SHA
    54f9d19 View commit details
  2. Copy the full SHA
    75a1b3c View commit details

Commits on Nov 21, 2023

  1. Copy the full SHA
    5323960 View commit details
  2. Copy the full SHA
    a083490 View commit details
  3. Copy the full SHA
    de653eb View commit details
  4. Copy the full SHA
    3d0d4ab View commit details

Commits on Nov 22, 2023

  1. Copy the full SHA
    c065fd7 View commit details
  2. Copy the full SHA
    2d33f16 View commit details
  3. Copy the full SHA
    bd5c2df View commit details

Commits on Nov 24, 2023

  1. Copy the full SHA
    9ea844b View commit details
  2. Copy the full SHA
    5a0538a View commit details

Commits on Nov 27, 2023

  1. Copy the full SHA
    c9ff6a3 View commit details

Commits on Nov 28, 2023

  1. chore(deps): update typescript-eslint monorepo to v6.13.1 (#2730)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Nov 28, 2023
    Copy the full SHA
    6612674 View commit details

Commits on Nov 30, 2023

  1. Copy the full SHA
    ce4a386 View commit details

Commits on Dec 2, 2023

  1. Copy the full SHA
    3ae9068 View commit details
  2. Copy the full SHA
    499b87f View commit details
  3. Copy the full SHA
    c03f42e View commit details

Commits on Dec 3, 2023

  1. Copy the full SHA
    0e1ca3c View commit details

Commits on Dec 4, 2023

  1. Copy the full SHA
    8e97b4a View commit details
  2. Copy the full SHA
    b1f8173 View commit details

Commits on Dec 5, 2023

  1. Copy the full SHA
    08f42df View commit details

Commits on Dec 6, 2023

  1. Copy the full SHA
    546f7a8 View commit details

Commits on Dec 7, 2023

  1. Copy the full SHA
    33bec34 View commit details

Commits on Dec 8, 2023

  1. Copy the full SHA
    d38fa1a View commit details
  2. Copy the full SHA
    aeee317 View commit details

Commits on Dec 11, 2023

  1. Copy the full SHA
    f183ef7 View commit details

Commits on Dec 14, 2023

  1. Merge pull request #2708 from nestjs/renovate/nestjs-mapped-types-2.x

    fix(deps): update dependency @nestjs/mapped-types to v2.0.4
    kamilmysliwiec authored Dec 14, 2023
    Copy the full SHA
    5d5cae7 View commit details
  2. Merge pull request #2709 from nestjs/renovate/cimg-node-21.x

    chore(deps): update node.js to v21.4
    kamilmysliwiec authored Dec 14, 2023
    Copy the full SHA
    49db8fc View commit details
  3. Merge pull request #2697 from nestjs/renovate/swagger-ui-dist-5.x

    fix(deps): update dependency swagger-ui-dist to v5.10.3
    kamilmysliwiec authored Dec 14, 2023
    Copy the full SHA
    a14b96a View commit details
  4. Copy the full SHA
    677c361 View commit details
Showing with 743 additions and 501 deletions.
  1. +3 −3 .circleci/config.yml
  2. +721 −479 package-lock.json
  3. +19 −19 package.json
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:21.1
- image: cimg/node:21.4
steps:
- checkout
- run:
@@ -47,7 +47,7 @@ jobs:
unit_tests:
working_directory: ~/nest
docker:
- image: cimg/node:21.1
- image: cimg/node:21.4
steps:
- checkout
- *restore-cache
@@ -58,7 +58,7 @@ jobs:
e2e_tests:
working_directory: ~/nest
docker:
- image: cimg/node:21.1
- image: cimg/node:21.4
steps:
- checkout
- *restore-cache
Loading