strongpauly
strongpauly
Does the [EKS addon](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Container-Insights-setup-EKS-addon.html) do what you want? Could that be added to any existing EKS IaC?
I've tried this fix, but it doesnt appear to fix VirtualColumns on relations. Can this be included in this fix?
In your unit tests, if you had a Role entity, for example: ```typescript @Entity() export class Role { @PrimaryGeneratedColumn() id: number @OneToMany(_type => User, user => user.roles, { onDelete: 'CASCADE',...
My use case was slightly different to your test @macleysousa. I can replicate it by passing a `select` that only contains fields from the base table, not the relations. In...
Apologies all. You are correct @v4ssi404 there was an error in my example test case and the `randomVirtualColumn` should not appear on the `User`s returned if it doesnt appear in...
I've seen this too after upgrading. A possible workaround is to pass a select which includes the virtual column, but this isn't great as you then have to pass *all*...
I've seen this in multiple repos, seemingly after upgrading to prettier 3.0.x. A workaround is to run `chmod +x ./node_modules/.bin/prettier` as OP suggests.
I've found that an artificial uuid, like `00000000-0000-0000-0000-000000000000` doesn't pass the validation for version 4. I wonder if that's what the OP was seeing?
Can this be attributed to the fact that `eslint-plugin-unused-imports` now requires eslint v9.x ?
I've worked around this by doing something like this when the `DataSource` gets created: ```typescript const extensions = ['tablefunc']; // Whatever extensions you want to install const dataSource = new...