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

Remove deprecated LetModule #4077

Closed
2 tasks
timdeschryver opened this issue Oct 19, 2023 · 0 comments · Fixed by #4087
Closed
2 tasks

Remove deprecated LetModule #4077

timdeschryver opened this issue Oct 19, 2023 · 0 comments · Fixed by #4087

Comments

@timdeschryver
Copy link
Member

timdeschryver commented Oct 19, 2023

Which @ngrx/* package(s) are relevant/related to the feature request?

component

Information

Remove the deprecated LetModule in https://github.com/ngrx/platform/blob/main/modules/component/src/let/let.module.ts

This module got replaced with the standalone API's, and there's already a migration in place.

Describe any alternatives/workarounds you're currently using

No response

I would be willing to submit a PR to fix this issue

  • Yes
  • No
markostanimirovic pushed a commit that referenced this issue Oct 24, 2023
Closes #4077

BREAKING CHANGES:

The LetModule is removed in favor of the standalone LetDirective.

BEFORE:

import { LetModule } from '@ngrx/component';

@NgModule({
  imports: [
    // ... other imports
    LetModule,
  ],
})
export class MyFeatureModule {}

AFTER:

import { LetDirective } from '@ngrx/component';

@NgModule({
  imports: [
    // ... other imports
    LetDirective,
  ],
})
export class MyFeatureModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants