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 dependencies group across 1 directory with 3 updates #613

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 4, 2024

Bumps the dependencies group with 3 updates in the / directory: redux-mock-store, @reportportal/agent-js-jest and cypress.

Updates redux-mock-store from 1.5.4 to 1.5.5

Release notes

Sourced from redux-mock-store's releases.

v1.5.5 - Deprecation

This patch release deprecates the configureStore method, as this package does not align with the Redux team's recommended testing practices. Instead, we recommend testing with a real store.

Testing with a mock store leads to potentially confusing behaviour, such as state not updating when actions are dispatched. Additionally, it's a lot less useful to assert on the actions dispatched rather than the observable state changes.

You can test the entire combination of action creators, reducers, and selectors in a single test, for example:

it('should add a todo', () => {
  const store = makeStore() // a user defined reusable store factory
store.dispatch(addTodo('Use Redux'))
expect(selectTodos(store.getState())).toEqual([
{ text: 'Use Redux', completed: false }
])
})

This avoids common pitfalls of testing each of these in isolation, such as mocked state shape becoming out of sync with the actual application.

legacy_configureStore

We recognise that for many codebases, migration will be a major effort that some may not be able to allocate time for. The @deprecated tag is just a visual strikethrough, but some tools will add extra warnings when it is used.

We now have a legacy_configureStore export (similar to legacy_createStore in Redux core) which is the same function but without this tag. You can change any imports to use this if the deprecation notice presents significant issues for you.

- import configureStore from "redux-mock-store"
+ import { legacy_configureStore as configureStore } from "redux-mock-store"
// or

import { configureStore } from "redux-mock-store"


import { legacy_configureStore as configureStore } from "redux-mock-store"

Full Changelog: reduxjs/redux-mock-store@v1.5.4...v1.5.5

Commits
Maintainer changes

This version was pushed to npm by eskimojo, a new releaser for redux-mock-store since your current version.


Updates @reportportal/agent-js-jest from 5.0.8 to 5.1.1

Release notes

Sourced from @​reportportal/agent-js-jest's releases.

Release v5.1.1

Fixed

Release v5.1.0

Added

  • ReportingApi with attachment method support. Resolves #122.
  • extendTestDescriptionWithLastError config option to extend test description with last error message. Resolves #136. Thanks to artsiomBandarenka.

Changed

  • Breaking change Drop support of Node.js 10. The version 5.0.8 is the latest that supports it.
  • @reportportal/client-javascript bumped to version 5.1.4.

Security

  • Updated versions of vulnerable packages (braces).

Deprecated

  • Node.js 12 usage. This minor version is the latest that supports Node.js 12.
  • token config option. Use apiKey instead.
Changelog

Sourced from @​reportportal/agent-js-jest's changelog.

[5.1.1] - 2024-11-01

Fixed

[5.1.0] - 2024-07-11

Added

  • ReportingApi with attachment method support. Resolves #122.
  • extendTestDescriptionWithLastError config option to extend test description with last error message. Resolves #136. Thanks to artsiomBandarenka.

Changed

  • Breaking change Drop support of Node.js 10. The version 5.0.8 is the latest that supports it.
  • @reportportal/client-javascript bumped to version 5.1.4.

Security

  • Updated versions of vulnerable packages (braces).

Deprecated

  • Node.js 12 usage. This minor version is the latest that supports Node.js 12.
  • token config option. Use apiKey instead.
Commits
  • 371bcb2 Merge pull request #150 from reportportal/develop
  • 976f0ad Update readme
  • b81cb1d Update changelog
  • 399b4df Update error message for not found temp id
  • 66b71fd fix: remove race condition where many suites run in parallel (#148)
  • 2814469 Update tests config
  • 8557119 Add Copyright notice
  • 8231346 Bump Node.js to 20 in workflow files
  • 3c293a7 5.1.0 -> 5.1.1-SNAPSHOT
  • 50d0ad4 Merge branch 'master' into develop
  • Additional commits viewable in compare view

Updates cypress from 13.10.0 to 13.15.1

Release notes

Sourced from cypress's releases.

v13.15.1

Changelog: https://docs.cypress.io/guides/references/changelog#13-15-1

v13.15.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-15-0

v13.14.2

Changelog: https://docs.cypress.io/guides/references/changelog#13-14-2

v13.14.1

Changelog: https://docs.cypress.io/guides/references/changelog#13-14-1

v13.14.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-14-0

v13.13.3

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-3

v13.13.2

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-2

v13.13.1

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-1

v13.13.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-0

v13.12.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-12-0

v13.11.0

Changelog: https://docs.cypress.io/guides/references/changelog#13-11-0

Commits
  • 199b1cd chore: release 13.15.1 (#30454)
  • c8439b2 chore: disable nx caching and add web extension docs (#30449)
  • cfed01b chore: attempt to not cache electron build (#30446)
  • 63937b6 chore: enable nx cache invalidation via the circle version file (#30444)
  • b335e4b chore: Update Chrome (stable) to 130.0.6723.69 (#30442)
  • eed699e chore: update lerna to 8.1.8 from 6.6.2 (#30436)
  • 0e28a81 chore: fix windows job due to ipv6 issues (#30437)
  • 4ba72c9 fix: ensure that requests to the same resource will be properly intercepted e...
  • aafac6a chore: add graphql schema update and wrap process.kill to swallow esrch error...
  • e0177ff chore: Update Chrome (beta) to 131.0.6778.3 (#30416)
  • 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

…dates

Bumps the dependencies group with 3 updates in the / directory: [redux-mock-store](https://github.com/arnaudbenard/redux-mock-store), [@reportportal/agent-js-jest](https://github.com/reportportal/agent-js-jest) and [cypress](https://github.com/cypress-io/cypress).


Updates `redux-mock-store` from 1.5.4 to 1.5.5
- [Release notes](https://github.com/arnaudbenard/redux-mock-store/releases)
- [Commits](reduxjs/redux-mock-store@v1.5.4...v1.5.5)

Updates `@reportportal/agent-js-jest` from 5.0.8 to 5.1.1
- [Release notes](https://github.com/reportportal/agent-js-jest/releases)
- [Changelog](https://github.com/reportportal/agent-js-jest/blob/develop/CHANGELOG.md)
- [Commits](reportportal/agent-js-jest@v5.0.8...v5.1.1)

Updates `cypress` from 13.10.0 to 13.15.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.10.0...v13.15.1)

---
updated-dependencies:
- dependency-name: redux-mock-store
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@reportportal/agent-js-jest"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner November 4, 2024 11:38
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 4, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 11, 2024

Superseded by #616.

@dependabot dependabot bot closed this Nov 11, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-198c1213a3 branch November 11, 2024 11:51
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants