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

Commits on Apr 15, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    09ab008 View commit details

Commits on Apr 16, 2020

  1. Merge branch 'master' into bugfix/grpc-options

    # Conflicts:
    #	packages/microservices/client/client-grpc.ts
    sjkummer committed Apr 16, 2020
    Copy the full SHA
    653cc9a View commit details
  2. Copy the full SHA
    b0dc39e View commit details

Commits on Apr 28, 2020

  1. Copy the full SHA
    10bd87c View commit details
  2. Copy the full SHA
    a11da77 View commit details

Commits on May 9, 2020

  1. Copy the full SHA
    0845dab View commit details

Commits on May 13, 2020

  1. Copy the full SHA
    b236e30 View commit details

Commits on May 15, 2020

  1. Copy the full SHA
    19b4083 View commit details

Commits on May 16, 2020

  1. feat(microservices): move getTransportId functions to public variable…

    … transportId and make it optional
    alex committed May 16, 2020
    Copy the full SHA
    e2c8f74 View commit details
  2. Copy the full SHA
    0432284 View commit details
  3. Copy the full SHA
    07237f5 View commit details

Commits on May 17, 2020

  1. Copy the full SHA
    d562bc0 View commit details

Commits on May 20, 2020

  1. Copy the full SHA
    edadbb1 View commit details
  2. make channelOptions optional

    sjkummer committed May 20, 2020
    Copy the full SHA
    2dcff08 View commit details

Commits on May 23, 2020

  1. Merge pull request #4808 from nestjs/renovate/ts-jest-26.x

    chore(deps): update dependency ts-jest to v26
    kamilmysliwiec authored May 23, 2020
    Copy the full SHA
    de54172 View commit details
  2. Merge pull request #4817 from Jekiwijaya/fix/grpc-client/option-value

    fix(microservices): enable grpc option value to accept 0
    kamilmysliwiec authored May 23, 2020
    Copy the full SHA
    55032c1 View commit details
  3. Merge pull request #4827 from soyuka/fix/axios-config-mutation

     fix(http): remove axios config mutation #4803
    kamilmysliwiec authored May 23, 2020
    Copy the full SHA
    2aa0881 View commit details
  4. Merge pull request #4802 from nestjs/renovate/tslib-2.x

    fix(deps): update dependency tslib to v2
    kamilmysliwiec authored May 23, 2020
    Copy the full SHA
    3fae1c2 View commit details
  5. Copy the full SHA
    5388ffb View commit details
  6. Copy the full SHA
    d768b5d View commit details
  7. Copy the full SHA
    5ba0164 View commit details
  8. Copy the full SHA
    3f68b08 View commit details
  9. Copy the full SHA
    09fea2b View commit details
  10. Merge pull request #4834 from nestjs/renovate/major-typescript-eslint…

    …-monorepo
    
    chore(deps): update typescript-eslint monorepo to v3 (major)
    kamilmysliwiec authored May 23, 2020
    Copy the full SHA
    7970c29 View commit details

Commits on May 24, 2020

  1. Merge pull request #4831 from nestjs/renovate/graphql-tools-6.x

    fix(deps): update dependency graphql-tools to v6
    kamilmysliwiec authored May 24, 2020
    Copy the full SHA
    a09e77a View commit details
  2. Merge branch 'feature/message-pattern-bind-to-transport' of https://g…

    …ithub.com/barbarosh/nest into barbarosh-feature/message-pattern-bind-to-transport
    kamilmysliwiec committed May 24, 2020
    Copy the full SHA
    3e4f8bc View commit details
  3. Copy the full SHA
    d1816a3 View commit details
  4. Copy the full SHA
    a683a54 View commit details
  5. Merge branch 'fix/hybrid-configuration' of https://github.com/2Kable/…

    …nest into 2Kable-fix/hybrid-configuration
    kamilmysliwiec committed May 24, 2020
    Copy the full SHA
    28b1784 View commit details
  6. Copy the full SHA
    34f7456 View commit details
  7. Copy the full SHA
    0d6ae6f View commit details
  8. Merge branch 'bugfix/grpc-options' of https://github.com/sjkummer/nest

    …into sjkummer-bugfix/grpc-options
    kamilmysliwiec committed May 24, 2020
    Copy the full SHA
    b397cec View commit details
  9. Copy the full SHA
    f315ca2 View commit details
  10. Copy the full SHA
    fa10ab7 View commit details
  11. Copy the full SHA
    07cb5a8 View commit details
  12. Copy the full SHA
    eee8faf View commit details
Showing with 4,720 additions and 1,576 deletions.
  1. +2 −0 .eslintrc.js
  2. +0 −1 integration/hello-world/e2e/middleware-fastify.spec.ts
  3. +0 −1 integration/hello-world/e2e/middleware.spec.ts
  4. +1 −1 lerna.json
  5. +1,689 −62 package-lock.json
  6. +4 −4 package.json
  7. +1 −2 packages/common/cache/interceptors/cache.interceptor.ts
  8. +1 −1 packages/common/http/http.service.ts
  9. +1 −0 packages/common/index.ts
  10. +1 −0 packages/common/interfaces/index.ts
  11. +3 −0 packages/common/interfaces/microservices/nest-hybrid-application-options.interface.ts
  12. +11 −2 packages/common/interfaces/nest-application.interface.ts
  13. +2 −2 packages/common/package.json
  14. +4 −4 packages/common/test/decorators/use-guards.decorator.spec.ts
  15. +2 −2 packages/common/test/decorators/use-interceptors.decorator.spec.ts
  16. +2 −2 packages/common/test/decorators/use-pipes.decorator.spec.ts
  17. +18 −0 packages/common/test/http/http.service.spec.ts
  18. +1 −1 packages/common/test/pipes/default-value.pipe.spec.ts
  19. +1 −1 packages/core/injector/container.ts
  20. +1 −6 packages/core/injector/module.ts
  21. +10 −3 packages/core/nest-application.ts
  22. +3 −3 packages/core/package.json
  23. +49 −0 packages/core/test/hooks/before-app-shutdown.hook.spec.ts
  24. +47 −0 packages/core/test/hooks/on-app-bootstrap.hook.spec.ts
  25. +47 −0 packages/core/test/hooks/on-app-shutdown.hook.spec.ts
  26. +47 −0 packages/core/test/hooks/on-module-destroy.hook.spec.ts
  27. +47 −0 packages/core/test/hooks/on-module-init.hook.spec.ts
  28. +4 −4 packages/core/test/injector/injector.spec.ts
  29. +2 −2 packages/core/test/injector/module.spec.ts
  30. +2 −2 packages/core/test/middleware/container.spec.ts
  31. +4 −4 packages/core/test/middleware/middleware-module.spec.ts
  32. +54 −0 packages/core/test/nest-application.spec.ts
  33. +2 −1 packages/microservices/client/client-grpc.ts
  34. +0 −2 packages/microservices/client/client-redis.ts
  35. +1 −0 packages/microservices/constants.ts
  36. +11 −2 packages/microservices/decorators/event-pattern.decorator.ts
  37. +11 −4 packages/microservices/decorators/message-pattern.decorator.ts
  38. +16 −0 packages/microservices/external/grpc-options.interface.ts
  39. +0 −1 packages/microservices/external/redis.interface.ts
  40. +3 −0 packages/microservices/interfaces/custom-transport-strategy.interface.ts
  41. +2 −0 packages/microservices/interfaces/microservice-configuration.interface.ts
  42. +5 −0 packages/microservices/listener-metadata-explorer.ts
  43. +29 −21 packages/microservices/listeners-controller.ts
  44. +4 −4 packages/microservices/package.json
  45. +4 −3 packages/microservices/server/server-grpc.ts
  46. +3 −1 packages/microservices/server/server-kafka.ts
  47. +3 −0 packages/microservices/server/server-mqtt.ts
  48. +3 −0 packages/microservices/server/server-nats.ts
  49. +3 −2 packages/microservices/server/server-redis.ts
  50. +3 −0 packages/microservices/server/server-rmq.ts
  51. +3 −1 packages/microservices/server/server-tcp.ts
  52. +0 −1 packages/microservices/test/client/client-redis.spec.ts
  53. +49 −0 packages/microservices/test/listeners-controller.spec.ts
  54. +1 −0 packages/microservices/test/listeners-metadata-explorer.spec.ts
  55. +0 −1 packages/microservices/test/server/server-redis.spec.ts
  56. +4 −4 packages/platform-express/package.json
  57. +2 −2 packages/platform-fastify/package.json
  58. +2 −2 packages/platform-socket.io/package.json
  59. +2 −2 packages/platform-ws/package.json
  60. +2 −2 packages/testing/package.json
  61. +1 −1 packages/websockets/context/ws-context-creator.ts
  62. +4 −4 packages/websockets/package.json
  63. +1 −1 packages/websockets/socket-server-provider.ts
  64. +3 −3 packages/websockets/web-sockets-controller.ts
  65. +8 −5 sample/01-cats-app/e2e/cats/cats.e2e-spec.ts
  66. +39 −33 sample/01-cats-app/package-lock.json
  67. +3 −3 sample/01-cats-app/package.json
  68. +3 −3 sample/01-cats-app/src/cats/cats.controller.spec.ts
  69. +39 −33 sample/02-gateways/package-lock.json
  70. +3 −3 sample/02-gateways/package.json
  71. +39 −33 sample/03-microservices/package-lock.json
  72. +3 −3 sample/03-microservices/package.json
  73. +39 −33 sample/04-grpc/package-lock.json
  74. +3 −3 sample/04-grpc/package.json
  75. +39 −33 sample/05-sql-typeorm/package-lock.json
  76. +3 −3 sample/05-sql-typeorm/package.json
  77. +39 −33 sample/06-mongoose/package-lock.json
  78. +3 −3 sample/06-mongoose/package.json
  79. +42 −30 sample/07-sequelize/package-lock.json
  80. +3 −3 sample/07-sequelize/package.json
  81. +25 −25 sample/08-webpack/package-lock.json
  82. +2 −2 sample/08-webpack/package.json
  83. +42 −30 sample/10-fastify/package-lock.json
  84. +3 −3 sample/10-fastify/package.json
  85. +39 −33 sample/11-swagger/package-lock.json
  86. +3 −3 sample/11-swagger/package.json
  87. +42 −30 sample/12-graphql-schema-first/package-lock.json
  88. +3 −3 sample/12-graphql-schema-first/package.json
  89. +39 −33 sample/13-mongo-typeorm/package-lock.json
  90. +3 −3 sample/13-mongo-typeorm/package.json
  91. +39 −33 sample/14-mongoose-base/package-lock.json
  92. +3 −3 sample/14-mongoose-base/package.json
  93. +39 −33 sample/15-mvc/package-lock.json
  94. +3 −3 sample/15-mvc/package.json
  95. +39 −33 sample/16-gateways-ws/package-lock.json
  96. +3 −3 sample/16-gateways-ws/package.json
  97. +39 −33 sample/17-mvc-fastify/package-lock.json
  98. +3 −3 sample/17-mvc-fastify/package.json
  99. +39 −33 sample/18-context/package-lock.json
  100. +3 −3 sample/18-context/package.json
  101. +39 −33 sample/19-auth-jwt/package-lock.json
  102. +3 −3 sample/19-auth-jwt/package.json
  103. +2 −2 sample/19-auth-jwt/src/auth/auth.service.spec.ts
  104. +2 −2 sample/19-auth-jwt/src/users/users.service.spec.ts
  105. +39 −33 sample/20-cache/package-lock.json
  106. +3 −3 sample/20-cache/package.json
  107. +39 −33 sample/21-serializer/package-lock.json
  108. +3 −3 sample/21-serializer/package.json
  109. +1,410 −483 sample/22-graphql-prisma/package-lock.json
  110. +4 −4 sample/22-graphql-prisma/package.json
  111. +2 −2 sample/22-graphql-prisma/src/prisma/prisma.binding.ts
  112. +36 −40 sample/23-graphql-code-first/package-lock.json
  113. +3 −3 sample/23-graphql-code-first/package.json
  114. +39 −33 sample/24-serve-static/package-lock.json
  115. +3 −3 sample/24-serve-static/package.json
  116. +39 −33 sample/25-dynamic-modules/package-lock.json
  117. +3 −3 sample/25-dynamic-modules/package.json
  118. +4 −5 sample/25-dynamic-modules/src/config/config.service.spec.ts
  119. +39 −33 sample/26-queues/package-lock.json
  120. +3 −3 sample/26-queues/package.json
  121. +3 −3 sample/26-queues/src/app.controller.spec.ts
  122. +39 −33 sample/27-scheduling/package-lock.json
  123. +3 −3 sample/27-scheduling/package.json
  124. +3 −3 sample/27-scheduling/src/app.controller.spec.ts
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -19,6 +19,8 @@ module.exports = {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/ban-types': 'off',
},
};
1 change: 0 additions & 1 deletion integration/hello-world/e2e/middleware-fastify.spec.ts
Original file line number Diff line number Diff line change
@@ -19,7 +19,6 @@ class TestController {
}

@Get('tests/wildcard_nested')
// eslint-disable-next-line @typescript-eslint/camelcase
wildcard_nested() {
return RETURN_VALUE;
}
1 change: 0 additions & 1 deletion integration/hello-world/e2e/middleware.spec.ts
Original file line number Diff line number Diff line change
@@ -21,7 +21,6 @@ class TestController {
}

@Get('tests/wildcard_nested')
// eslint-disable-next-line @typescript-eslint/camelcase
wildcard_nested() {
return RETURN_VALUE;
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "7.0.13"
"version": "7.1.0"
}
Loading