Code Monkey home page Code Monkey logo

Comments (10)

ianzone avatar ianzone commented on May 17, 2024 1

dude, you really need to do the semantic versioning and change the major version when involves breaking changes.

from nestjs-dynamoose.

hardyscc avatar hardyscc commented on May 17, 2024 1

@ianzone I will try my best to keep semantic versioning...

from nestjs-dynamoose.

onurkose avatar onurkose commented on May 17, 2024

After further investigation, even after upgrading the config to the new version, table name settings were not able to read from config service:

import { DynamooseModule } from 'nestjs-dynamoose';
import { UserSchema } from './user.schema';
import { UserService } from './user.service';

@Module({
  imports: [
    ConfigModule.forRoot({ isGlobal: true }),
    DynamooseModule.forFeatureAsync([
      {
        name: 'User',
        useFactory: (_, configService: ConfigService) => {
          return {
            schema: UserSchema,
            options: {
              tableName: configService.get<string>('USER_TABLE_NAME'),  <-- This won't work anymore, table name defaults to User automatically.
            },
          };
        },
        inject: [ConfigService],
      },
    ]),
  ],
  providers: [
    UserService,
    ...
  ],
})
export class UserModule {}

from nestjs-dynamoose.

hardyscc avatar hardyscc commented on May 17, 2024

@onurkose i just tested without any problem, are u using dynamoose version 3.2.0?

from nestjs-dynamoose.

onurkose avatar onurkose commented on May 17, 2024

yes, it's dynamoose 3.2.0
I just downgraded nestjs-dynamoose to 0.5.3 and it works just fine.

from nestjs-dynamoose.

hardyscc avatar hardyscc commented on May 17, 2024

@onurkose I tested using aws-nestjs-starter without any problem, since it won't use the dynamoose auto table create feature, if you are using dynamoose auto table create feature, please report to dynamoose about this bug.

from nestjs-dynamoose.

famence avatar famence commented on May 17, 2024

15a06f2 should only affect a model name, and not a table name.

It would be great if you fork aws-nestjs-starter and reproduce your problem so that i can debug it and contribute a hot fix

from nestjs-dynamoose.

hardyscc avatar hardyscc commented on May 17, 2024

@onurkose I also tested the dynamoose auto create table feature using options.tableName, it also works correctly.

from nestjs-dynamoose.

ianzone avatar ianzone commented on May 17, 2024

I confirm this issue. The "tableName" doesn't work anymore. It created a "tenants" table based on the "name".
image

from nestjs-dynamoose.

ianzone avatar ianzone commented on May 17, 2024

and this works.
image

from nestjs-dynamoose.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.