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

Rc #2880

Open
wants to merge 154 commits into
base: production
Choose a base branch
from
Open

Rc #2880

wants to merge 154 commits into from

Commits on Sep 8, 2024

  1. Configuration menu
    Copy the full SHA
    3919da3 View commit details
    Browse the repository at this point in the history
  2. feat(di): add inject(), constant(), value() function to inject servic…

    …e or value in injectable property
    
    value defined by Constant and Value decorator are now available on constructor
    injectable services on property are now available in the constructor
    
    BREAKING CHANGE: This change require to set `    "useDefineForClassFields": false` in your tsconfig
    Some DI methods are removed like bindInjectableProperties() which is not necessary.
    Romakita committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    343713d View commit details
    Browse the repository at this point in the history
  3. fix(typegraphql): fix typings since injector isn't compatible with th…

    …e type signature of container typegraphql definition
    Romakita committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    b905d78 View commit details
    Browse the repository at this point in the history
  4. fix(common): remove PlatformBuilder.addComponents() method which isn'…

    …t used method
    
    BREAKING CHANGE: remove PlatformBuilder.addComponents() method which isn't used method
    Romakita committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    5cd2e3c View commit details
    Browse the repository at this point in the history
  5. fix(platform-cache): remove getInterceptorOptions which is directly a…

    …vailable from @tsed/di
    
    BREAKING-CHANGE: getInterceptorOptions must be imported from @tsed/di instead of @tsed/platform-cache
    Romakita committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    956b34b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d6f9fc7 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9a82771 View commit details
    Browse the repository at this point in the history
  8. feat(mikro-orm): add entityManager() and orm() functions to inject re…

    …spectively ORM and EM instance
    Romakita committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    ba68086 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d6be689 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Configuration menu
    Copy the full SHA
    2a66ded View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    761e852 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    722d7b0 View commit details
    Browse the repository at this point in the history
  4. feat(testcontainers-mongo): use mongodb to clean collection instead o…

    …f @tsed/mongoose
    
    The module can be used with mongoose or mikro-orm.
    Romakita committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    2a390dd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d32df47 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Configuration menu
    Copy the full SHA
    c0040c8 View commit details
    Browse the repository at this point in the history
  2. fix: remove @tsed/vite-ssr-plugin

    BREAKING CHANGE: remove @tsed/vite-ssr-plugin use @tsed/vike instead
    Romakita committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    f3414c0 View commit details
    Browse the repository at this point in the history
  3. fix: remove @tsed/testing-mongoose

    BREAKING CHANGE: remove @tsed/testing-mongoose. Use @tsed/testcontainers-mongo instead
    Romakita committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    6111459 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    37adaea View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. refactor(mongoose): remove deprecated MongooseModelOptions.discrimina…

    …torValue
    
    BREAKING CHANGE: remove deprecated MongooseModelOptions.discriminatorValue. Use @DiscriminatorValue instead
    Romakita committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    0e9a3b1 View commit details
    Browse the repository at this point in the history
  2. refactor(common): remove deprecated PlatformLoggerSettings interface

    BREAKING CHANGE: remove deprecated PlatformLoggerSettings interface. Use DILoggerOptions instead
    Romakita committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    59a680b View commit details
    Browse the repository at this point in the history
  3. refactor(platform-cache): remove deprecated PlatformCacheLegacyStoreF…

    …actory interface
    
    BREAKING CHANGE: remove deprecated PlatformCacheLegacyStoreFactory interface. Use FactoryStore instead
    Romakita committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    c8bf779 View commit details
    Browse the repository at this point in the history
  4. refactor(platform-router): remove deprecated OperationMethods constant

    BREAKING CHANGE: remove deprecated OperationMethods constant. Use OperationVerbs instead
    Romakita committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    c859cab View commit details
    Browse the repository at this point in the history
  5. refactor(schema): remove Route alias decorator

    BREAKING CHANGE: remove Route alias decorator. Use Operation instead
    Romakita committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    9c599b1 View commit details
    Browse the repository at this point in the history
  6. refactor(schema): remove deprecated BullMQConfig.defaultJobOptions

    BREAKING CHANGE: remove deprecated BullMQConfig.defaultJobOptions. Use BullMQConfig.defaultQueueOptions instead
    Romakita committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    8f52777 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ea7d48c View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2024

  1. Configuration menu
    Copy the full SHA
    596b261 View commit details
    Browse the repository at this point in the history
  2. feat(apollo): migrate package on Apollo 4

    BREAKING CHANGE: all implementation and configuration of @tsed/apollo have changed.
    Romakita committed Sep 14, 2024
    Configuration menu
    Copy the full SHA
    4e84844 View commit details
    Browse the repository at this point in the history
  3. feat(typegraphql): update code to use typegraphql 2.0.0

    BREAKING CHANGE: @tsed/typegraphql use new @tsed/apollo package and support Apollo v4
    Romakita committed Sep 14, 2024
    Configuration menu
    Copy the full SHA
    af6f2fe View commit details
    Browse the repository at this point in the history
  4. feat(typegraphql): update code to use typegraphql 2.0.0

    BREAKING CHANGE: @tsed/typegraphql use new @tsed/apollo package and support Apollo v4
    Romakita committed Sep 14, 2024
    Configuration menu
    Copy the full SHA
    89e0015 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b7708aa View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. Configuration menu
    Copy the full SHA
    7fea7fa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ebe57c5 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. chore: remove CJS Support and bump AJV dependency

    BREAKING CHANGE: CJS isn't supported anymore. You have to migrate your project on ESM syntax.
    Romakita committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    941e734 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    35d3203 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2024

  1. chore: update eslint to v9

    Romakita committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    78791ff View commit details
    Browse the repository at this point in the history
  2. chore: run linter

    Romakita committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    f2f8290 View commit details
    Browse the repository at this point in the history
  3. chore: fix tests

    Romakita committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    ed54e29 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0e46f0d View commit details
    Browse the repository at this point in the history
  5. chore: reset coverage

    Romakita committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    953c5b1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4e4f4e2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5147c7d View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Configuration menu
    Copy the full SHA
    5ccaf57 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9dc4abb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c74e252 View commit details
    Browse the repository at this point in the history
  4. fix(common): remove platform-log-middleware import in source code

    BREAKING CHANGE: you have to import explicitly @tsed/platform-log-middleware as middleware in the server configuration.
    Romakita committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    6372319 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    67ef878 View commit details
    Browse the repository at this point in the history
  6. fix(common): remove export schema decorator from @tsed/common

    BREAKING CHANGE: AcceptMime, All, Delete, Get, Head, Location, Options, Patch, Post, Put, Redirect, View must be imported from `@tsed/schema`.
    Romakita committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    3e07044 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0ff4b0d View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2024

  1. Configuration menu
    Copy the full SHA
    5b3d2e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c89aa16 View commit details
    Browse the repository at this point in the history
  3. fix(prisma): update prisma to v5

    BREAKING CHANGE: prisma v4 client isn't supported anymore
    Romakita committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    836090e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    44e9c1b View commit details
    Browse the repository at this point in the history
  5. fix: update @swc/core

    Romakita committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    906c6f1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    491fc5c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e84876f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2a419da View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    99ec03a View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2024

  1. Configuration menu
    Copy the full SHA
    163e68e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    688e201 View commit details
    Browse the repository at this point in the history
  3. fix(oidc-provider): remove OIDC_PROVIDER_NODE_MODULE symbol

    BREAKING CHANGE: remove OIDC_PROVIDER_NODE_MODULE symbol. Use import Provider from "oidc-provider" instead
    Romakita committed Oct 6, 2024
    Configuration menu
    Copy the full SHA
    35e1b08 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9417b39 View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/production' into alpha

    # Conflicts:
    #	.github/workflows/build.yml
    #	docs/package.json
    #	lerna.json
    #	package.json
    #	packages/core/package.json
    #	packages/di/package.json
    #	packages/di/src/common/decorators/lazyInject.ts
    #	packages/engines/package.json
    #	packages/graphql/apollo/package.json
    #	packages/graphql/apollo/vitest.config.mts
    #	packages/graphql/graphql-ws/package.json
    #	packages/graphql/typegraphql/package.json
    #	packages/graphql/typegraphql/vitest.config.mts
    #	packages/orm/adapters-redis/package.json
    #	packages/orm/adapters/package.json
    #	packages/orm/adapters/src/adapters/FileSyncAdapter.ts
    #	packages/orm/adapters/src/adapters/LowDbAdapter.ts
    #	packages/orm/adapters/src/adapters/MemoryAdapter.ts
    #	packages/orm/ioredis/package.json
    #	packages/orm/mikro-orm/package.json
    #	packages/orm/mikro-orm/test/integration.spec.ts
    #	packages/orm/mikro-orm/tsconfig.json
    #	packages/orm/mongoose/package.json
    #	packages/orm/mongoose/test/array.integration.spec.ts
    #	packages/orm/mongoose/test/buffer.integration.spec.ts
    #	packages/orm/mongoose/test/circularRef.integration.spec.ts
    #	packages/orm/mongoose/tsconfig.json
    #	packages/orm/objection/package.json
    #	packages/orm/prisma/package.json
    #	packages/orm/testcontainers-mongo/package.json
    #	packages/orm/testcontainers-mongo/src/services/TestContainersMongo.ts
    #	packages/orm/testcontainers-mongo/tsconfig.json
    #	packages/orm/testing-mongoose/package.json
    #	packages/orm/typeorm/package.json
    #	packages/perf/package.json
    #	packages/platform/common/package.json
    #	packages/platform/common/vitest.config.mts
    #	packages/platform/platform-cache/package.json
    #	packages/platform/platform-cache/vitest.config.mts
    #	packages/platform/platform-exceptions/package.json
    #	packages/platform/platform-exceptions/vitest.config.mts
    #	packages/platform/platform-express/package.json
    #	packages/platform/platform-koa/package.json
    #	packages/platform/platform-log-middleware/package.json
    #	packages/platform/platform-log-middleware/vitest.config.mts
    #	packages/platform/platform-log-request/vitest.config.mts
    #	packages/platform/platform-middlewares/package.json
    #	packages/platform/platform-params/package.json
    #	packages/platform/platform-params/vitest.config.mts
    #	packages/platform/platform-response-filter/package.json
    #	packages/platform/platform-response-filter/vitest.config.mts
    #	packages/platform/platform-router/package.json
    #	packages/platform/platform-router/vitest.config.mts
    #	packages/platform/platform-serverless-http/package.json
    #	packages/platform/platform-serverless-testing/package.json
    #	packages/platform/platform-serverless/package.json
    #	packages/platform/platform-serverless/vitest.config.mts
    #	packages/platform/platform-test-sdk/package.json
    #	packages/platform/platform-views/package.json
    #	packages/platform/platform-views/vitest.config.mts
    #	packages/security/jwks/package.json
    #	packages/security/oidc-provider-plugin-wildcard-redirect-uri/package.json
    #	packages/security/oidc-provider-plugin-wildcard-redirect-uri/vitest.config.mts
    #	packages/security/oidc-provider/package.json
    #	packages/security/oidc-provider/src/services/OidcInteractionContext.ts
    #	packages/security/oidc-provider/vitest.config.mts
    #	packages/security/passport/package.json
    #	packages/security/passport/vitest.config.mts
    #	packages/specs/ajv/package.json
    #	packages/specs/exceptions/package.json
    #	packages/specs/json-mapper/package.json
    #	packages/specs/openspec/package.json
    #	packages/specs/schema/package.json
    #	packages/specs/swagger/package.json
    #	packages/third-parties/agenda/package.json
    #	packages/third-parties/agenda/vitest.config.mts
    #	packages/third-parties/bullmq/package.json
    #	packages/third-parties/bullmq/vitest.config.mts
    #	packages/third-parties/components-scan/package.json
    #	packages/third-parties/event-emitter/package.json
    #	packages/third-parties/event-emitter/vitest.config.mts
    #	packages/third-parties/formio-types/package.json
    #	packages/third-parties/formio/package.json
    #	packages/third-parties/formio/vitest.config.mts
    #	packages/third-parties/pulse/package.json
    #	packages/third-parties/pulse/vitest.config.mts
    #	packages/third-parties/schema-formio/package.json
    #	packages/third-parties/socketio-testing/package.json
    #	packages/third-parties/socketio/package.json
    #	packages/third-parties/socketio/vitest.config.mts
    #	packages/third-parties/sse/package.json
    #	packages/third-parties/sse/vitest.config.mts
    #	packages/third-parties/stripe/package.json
    #	packages/third-parties/stripe/vitest.config.mts
    #	packages/third-parties/temporal/package.json
    #	packages/third-parties/temporal/vitest.config.mts
    #	packages/third-parties/terminus/package.json
    #	packages/third-parties/terminus/vitest.config.mts
    #	packages/third-parties/vike/package.json
    #	packages/third-parties/vike/vitest.config.mts
    #	packages/third-parties/vite-ssr-plugin/package.json
    #	packages/utils/normalize-path/package.json
    #	tools/barrels/package.json
    #	tools/github-sponsors/package.json
    #	tools/integration/package.json
    #	tools/typescript/package.json
    #	tools/vitest/package.json
    #	tools/webpack/package.json
    #	yarn.lock
    Romakita committed Oct 6, 2024
    Configuration menu
    Copy the full SHA
    086f3ba View commit details
    Browse the repository at this point in the history
  6. Merge pull request #2854 from tsedio/alpha

    Alpha
    Romakita authored Oct 6, 2024
    Configuration menu
    Copy the full SHA
    b8a7bab View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1a1d31f View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Configuration menu
    Copy the full SHA
    1d10ac5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    35cdff0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c43b1a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c2a779d View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Configuration menu
    Copy the full SHA
    bea2874 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Configuration menu
    Copy the full SHA
    82019db View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2856 from tsedio/feat-injector

    Feat injector
    Romakita authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    732df3a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    84540b1 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2024

  1. feat(di): export injectable,controller,interceptor functions

    BREAKING CHANGE: registerValue and registerController are removed in favor of injectable/controller functions
    Romakita committed Oct 11, 2024
    Configuration menu
    Copy the full SHA
    ef18457 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2857 from tsedio/feat-injectable-function

    Feat injectable function
    Romakita authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    7565189 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3549a2e View commit details
    Browse the repository at this point in the history
  4. refactor: fix all imports

    Romakita committed Oct 11, 2024
    Configuration menu
    Copy the full SHA
    52cec0c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3ebdd83 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2024

  1. chore: reset coverage

    Romakita committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    1851e97 View commit details
    Browse the repository at this point in the history
  2. ci: fix matrix configuration

    Romakita committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    8b6f5ca View commit details
    Browse the repository at this point in the history
  3. fix: merge pull request #2859 from tsedio/fix-remove-reexport-symbol-…

    …common
    
    Fix remove reexport symbol common
    Romakita committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    217e6a5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e9079e8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1096919 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4fcf708 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #2860 from tsedio/feat-move-testing

    Feat move testing
    Romakita authored Oct 12, 2024
    Configuration menu
    Copy the full SHA
    e62bf72 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f26e3a8 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2024

  1. fix(core): remove Configurable, Deprecated,Enumerable, ReadOnly, Writ…

    …able decorators
    
    BREAKING CHANGE: Configurable, Deprecated,Enumerable, ReadOnly, Writable decorators are removed from @tsed/core
    Romakita committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    528c710 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. fix(common): re-export schema decorators from @tsed/common to maintai…

    …n compatibility with v7
    Romakita committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    65507cb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2861 from tsedio/fix-clean-code

    Fix clean code
    Romakita authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    59c5780 View commit details
    Browse the repository at this point in the history
  3. chore: remove legacy package

    Romakita committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    0e7d124 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    04ecad9 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. Configuration menu
    Copy the full SHA
    192fb6b View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2024

  1. Configuration menu
    Copy the full SHA
    3d7fdca View commit details
    Browse the repository at this point in the history
  2. chore: reset coverage

    Romakita committed Oct 20, 2024
    Configuration menu
    Copy the full SHA
    ded0188 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2868 from tsedio/fix-swc-coverage-options

    Fix swc coverage options
    Romakita authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    3004e5a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f689407 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2869 from tsedio/fix-lambda-v3

    Fix lambda v3
    Romakita authored Oct 20, 2024
    Configuration menu
    Copy the full SHA
    dceac3d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5ce75eb View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. Configuration menu
    Copy the full SHA
    acf9cf3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2319073 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d12350 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b5dba0b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8ca63e3 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #2872 from tsedio/feat-install-vitepress

    Feat install vitepress
    Romakita authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    8691750 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f2a2abf View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7e54413 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    56e0b31 View commit details
    Browse the repository at this point in the history
  10. feat(schema): add sortPaths option to sort swagger paths by alphabeti…

    …cal order
    
    (cherry picked from commit 968aff8)
    Romakita committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    2e73e8c View commit details
    Browse the repository at this point in the history
  11. Merge pull request #2874 from tsedio/fix-vitepress-theme-version

    fix: update vitepress theme dependency
    Romakita authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    b90534d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    0dba4e9 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e14c2d8 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    33c7548 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #2875 from tsedio/fix-package-publish-config

    chore: update package.json publish configuration
    Romakita authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    04bd83f View commit details
    Browse the repository at this point in the history
  16. Merge pull request #2873 from tsedio/feat-swagger-sort-path-v8

    Feat swagger sort path v8
    Romakita authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    590b49a View commit details
    Browse the repository at this point in the history
  17. Merge pull request #2865 from tsedio/fix-prisma-circular-esm-ref-v8

    fix(prisma): fix circular reference when column is optional
    Romakita authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    93b47a5 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    cdcae93 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. fix(di): remove unused DIContext.runInContext and emit methods

    BREAKING CHANGE: DIContext.runInContext and DIContext.emit methods are removed. Use runInContext and $emit function instead.
    Romakita committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    19ee58b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    49caea4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cd50824 View commit details
    Browse the repository at this point in the history
  4. docs: fix template issue

    Romakita committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    7453bf0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9799c28 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    381d854 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. docs: update theme version

    Romakita committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    e497cd9 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'beta' into rc

    # Conflicts:
    #	docs/package.json
    #	lerna.json
    #	package.json
    #	packages/core/package.json
    #	packages/di/package.json
    #	packages/engines/package.json
    #	packages/graphql/apollo/package.json
    #	packages/graphql/graphql-ws/package.json
    #	packages/graphql/typegraphql/package.json
    #	packages/orm/adapters-redis/package.json
    #	packages/orm/adapters/package.json
    #	packages/orm/ioredis/package.json
    #	packages/orm/mikro-orm/package.json
    #	packages/orm/mongoose/package.json
    #	packages/orm/objection/package.json
    #	packages/orm/prisma/package.json
    #	packages/orm/prisma/src/generator/transform/transformScalarToType.ts
    #	packages/orm/prisma/src/generator/utils/__snapshots__/generateModels.spec.ts.snap
    #	packages/orm/prisma/test/snapshots/generate_code/enums/index.ts
    #	packages/orm/prisma/test/snapshots/generate_code/interfaces/index.ts
    #	packages/orm/prisma/test/snapshots/generate_code/models/PostModel.ts
    #	packages/orm/prisma/test/snapshots/generate_code/models/UserModel.ts
    #	packages/orm/prisma/test/snapshots/generate_code/models/index.ts
    #	packages/orm/prisma/test/snapshots/generate_code/repositories/PostsRepository.ts
    #	packages/orm/prisma/test/snapshots/generate_code/repositories/UsersRepository.ts
    #	packages/orm/prisma/test/snapshots/generate_code/repositories/index.ts
    #	packages/orm/prisma/test/snapshots/generate_code/services/PrismaService.ts
    #	packages/orm/testcontainers-mongo/package.json
    #	packages/orm/testing-mongoose/package.json
    #	packages/orm/typeorm/package.json
    #	packages/perf/package.json
    #	packages/platform/common/package.json
    #	packages/platform/platform-cache/package.json
    #	packages/platform/platform-exceptions/package.json
    #	packages/platform/platform-express/package.json
    #	packages/platform/platform-koa/package.json
    #	packages/platform/platform-log-middleware/package.json
    #	packages/platform/platform-middlewares/package.json
    #	packages/platform/platform-params/package.json
    #	packages/platform/platform-response-filter/package.json
    #	packages/platform/platform-router/package.json
    #	packages/platform/platform-serverless-http/package.json
    #	packages/platform/platform-serverless-testing/package.json
    #	packages/platform/platform-serverless/package.json
    #	packages/platform/platform-test-sdk/package.json
    #	packages/platform/platform-views/package.json
    #	packages/security/jwks/package.json
    #	packages/security/oidc-provider-plugin-wildcard-redirect-uri/package.json
    #	packages/security/oidc-provider/package.json
    #	packages/security/passport/package.json
    #	packages/specs/ajv/package.json
    #	packages/specs/exceptions/package.json
    #	packages/specs/json-mapper/package.json
    #	packages/specs/openspec/package.json
    #	packages/specs/schema/package.json
    #	packages/specs/schema/src/utils/generateSpec.spec.ts
    #	packages/specs/schema/src/utils/generateSpec.ts
    #	packages/specs/swagger/package.json
    #	packages/specs/swagger/src/services/SwaggerService.ts
    #	packages/third-parties/agenda/package.json
    #	packages/third-parties/bullmq/package.json
    #	packages/third-parties/components-scan/package.json
    #	packages/third-parties/event-emitter/package.json
    #	packages/third-parties/formio-types/package.json
    #	packages/third-parties/formio/package.json
    #	packages/third-parties/pulse/package.json
    #	packages/third-parties/schema-formio/package.json
    #	packages/third-parties/socketio-testing/package.json
    #	packages/third-parties/socketio/package.json
    #	packages/third-parties/sse/package.json
    #	packages/third-parties/stripe/package.json
    #	packages/third-parties/temporal/package.json
    #	packages/third-parties/terminus/package.json
    #	packages/third-parties/vike/package.json
    #	packages/third-parties/vite-ssr-plugin/package.json
    #	packages/utils/normalize-path/package.json
    #	tools/barrels/package.json
    #	tools/github-sponsors/package.json
    #	tools/integration/package.json
    #	tools/typescript/package.json
    #	tools/vitest/package.json
    #	tools/webpack/package.json
    #	yarn.lock
    Romakita committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    85d8c5b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    84d1d85 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    650fbca View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Configuration menu
    Copy the full SHA
    9c11c94 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. fix(platform-serverless): remove di exports from platform-serverless …

    …package
    
    BREAKING CHANGE: import BodyParams, QueryParams, etc. from @tsed/platform-params directly
    Romakita committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    7105341 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a1c8a1e View commit details
    Browse the repository at this point in the history
  3. fix(platform-middlewares): improve inheritance support of UseAuth/Aut…

    …hOptions/Authorize decorator
    Romakita committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    f296328 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    02b15f3 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. Configuration menu
    Copy the full SHA
    f12f56b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6406314 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1d486ea View commit details
    Browse the repository at this point in the history
  4. fix(platform-http): clean createContext constructor options to avoid …

    …ref to injector directly
    Romakita committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    25db0e3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5a1a380 View commit details
    Browse the repository at this point in the history
  6. chore: reset coverage

    Romakita committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    d1b5084 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7efde08 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. Configuration menu
    Copy the full SHA
    20b5bec View commit details
    Browse the repository at this point in the history
  2. chore: reset coverage

    Romakita committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    c1ec58d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee91c21 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f287dab View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    58a016c View commit details
    Browse the repository at this point in the history
  6. fix(core): remove unused importPackage in code base

    BREAKING CHANGE: importPackage is removed from @tsed/core. Use import() instruction instead.
    Romakita committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    e1ea388 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    eb07219 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2129c94 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1dcfb07 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e2b3962 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9543d24 View commit details
    Browse the repository at this point in the history
  12. docs: fix documentation typo

    Romakita committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    696b468 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    09ba9bf View commit details
    Browse the repository at this point in the history
  14. docs: fix build issue on doc

    Romakita committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    3a09f15 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Configuration menu
    Copy the full SHA
    a032aa8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    529ae61 View commit details
    Browse the repository at this point in the history
  3. chore: fix coverage

    Romakita committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    281b368 View commit details
    Browse the repository at this point in the history