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): Bump the ngrx-dependencies group with 6 updates #3395

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 the ngrx-dependencies group with 6 updates:

Package From To
@ngrx/effects 18.1.1 19.0.0
@ngrx/entity 18.1.1 19.0.0
@ngrx/operators 18.1.1 19.0.0
@ngrx/router-store 18.1.1 19.0.0
@ngrx/store 18.1.1 19.0.0
@ngrx/store-devtools 18.1.1 19.0.0

Updates @ngrx/effects from 18.1.1 to 19.0.0

Changelog

Sourced from @​ngrx/effects'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

Updates @ngrx/entity from 18.1.1 to 19.0.0

Changelog

Sourced from @​ngrx/entity'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

Updates @ngrx/operators from 18.1.1 to 19.0.0

Changelog

Sourced from @​ngrx/operators'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

Updates @ngrx/router-store from 18.1.1 to 19.0.0

Changelog

Sourced from @​ngrx/router-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

Updates @ngrx/store from 18.1.1 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

Updates @ngrx/store-devtools from 18.1.1 to 19.0.0

Changelog

Sourced from @​ngrx/store-devtools'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 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 18, 2024
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ngrx-dependencies-505ed0b2a8 branch 2 times, most recently from 5a3b047 to c0c26cf Compare December 30, 2024 15:28
Bumps the ngrx-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@ngrx/effects](https://github.com/ngrx/platform) | `18.1.1` | `19.0.0` |
| [@ngrx/entity](https://github.com/ngrx/platform) | `18.1.1` | `19.0.0` |
| [@ngrx/operators](https://github.com/ngrx/platform) | `18.1.1` | `19.0.0` |
| [@ngrx/router-store](https://github.com/ngrx/platform) | `18.1.1` | `19.0.0` |
| [@ngrx/store](https://github.com/ngrx/platform) | `18.1.1` | `19.0.0` |
| [@ngrx/store-devtools](https://github.com/ngrx/platform) | `18.1.1` | `19.0.0` |


Updates `@ngrx/effects` from 18.1.1 to 19.0.0
- [Changelog](https://github.com/ngrx/platform/blob/main/CHANGELOG.md)
- [Commits](ngrx/platform@18.1.1...19.0.0)

Updates `@ngrx/entity` from 18.1.1 to 19.0.0
- [Changelog](https://github.com/ngrx/platform/blob/main/CHANGELOG.md)
- [Commits](ngrx/platform@18.1.1...19.0.0)

Updates `@ngrx/operators` from 18.1.1 to 19.0.0
- [Changelog](https://github.com/ngrx/platform/blob/main/CHANGELOG.md)
- [Commits](ngrx/platform@18.1.1...19.0.0)

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

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

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

---
updated-dependencies:
- dependency-name: "@ngrx/effects"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ngrx-dependencies
- dependency-name: "@ngrx/entity"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ngrx-dependencies
- dependency-name: "@ngrx/operators"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ngrx-dependencies
- dependency-name: "@ngrx/router-store"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ngrx-dependencies
- dependency-name: "@ngrx/store"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ngrx-dependencies
- dependency-name: "@ngrx/store-devtools"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: ngrx-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ngrx-dependencies-505ed0b2a8 branch from c0c26cf to c324a3a Compare January 3, 2025 23:16
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