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

chore(deps-dev): bump @ngrx/store from 16.3.0 to 19.0.0 #3977

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 18, 2024

Bumps @ngrx/store from 16.3.0 to 19.0.0.

Changelog

Sourced from @​ngrx/store's changelog.

19.0.0 (2024-12-17)

19.0.0-rc.0 (2024-12-10)

Bug Fixes

  • eslint-plugin: support ESM modudule syntax (.mjs) (e2f35c8)
  • signals: create deep signals for custom class instances (#4614) (4d34dc4), closes #4604

Features

BREAKING CHANGES

  • signals: - The computed property in SignalStoreFeatureResult type is renamed to props.
  • The EntityComputed and NamedEntityComputed types in the entities plugin are renamed to EntityProps and NamedEntityProps.

BEFORE:

import { computed, Signal } from '@angular/core';
import { signalStoreFeature, SignalStoreFeature, type, withComputed } from '@ngrx/signals';
import { EntityComputed } from '@ngrx/signals/entities';
export function withTotalEntities<Entity>(): SignalStoreFeature<{ state: {}; computed: EntityComputed<Entity>; methods: {} }, { state: {}; computed: { total: Signal<number> }; methods: {} }> {
return signalStoreFeature(
{ computed: type<EntityComputed<Entity>>() },
withComputed(({ entities }) => ({
total: computed(() => entities().length),
}))
);
}

AFTER:

import { computed, Signal } from '@angular/core';
import { signalStoreFeature, SignalStoreFeature, type, withComputed } from '@ngrx/signals';
import { EntityProps } from '@ngrx/signals/entities';
export function withTotalEntities<Entity>(): SignalStoreFeature<{ state: {}; props: EntityProps<Entity>; methods: {} }, { state: {}; props: { total: Signal<number> }; methods: {} }> {
</tr></table>

... (truncated)

Commits
  • 6a717f3 chore: release 19.0.0
  • 5f9c104 docs: remove "Getting Started" link from topbar (#4628)
  • e8fe908 chore: release 19.0.0-rc.0
  • 1b571c3 docs(signals): remove redundant standalone flag (#4624)
  • e2cca61 docs(component): remove redundant standalone flag (#4625)
  • c24cb33 docs(effects): remove redundant standalone flag (#4626)
  • 3850a98 docs: add breaking changes to v19 migration (#4620)
  • 2ac4372 feat(eslint-plugin): add new rule require-super-ondestroy (#4611)
  • 4d34dc4 fix(signals): create deep signals for custom class instances (#4614)
  • a31c2a6 docs(effects): update examples to standalone api (#4522)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@ngrx/store](https://github.com/ngrx/platform) from 16.3.0 to 19.0.0.
- [Changelog](https://github.com/ngrx/platform/blob/main/CHANGELOG.md)
- [Commits](ngrx/platform@16.3.0...19.0.0)

---
updated-dependencies:
- dependency-name: "@ngrx/store"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants