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: Update all patch dependencies (v2.x.x) #3876

Open
wants to merge 1 commit into
base: v2.x.x
Choose a base branch
from

Conversation

zowe-robot
Copy link
Contributor

@zowe-robot zowe-robot commented Nov 1, 2024

This PR contains the following updates:

Package Type Update Change
@types/jest (source) dependencies patch 29.5.13 -> 29.5.14
caniuse-lite devDependencies patch 1.0.30001669 -> 1.0.30001678
mini-css-extract-plugin devDependencies patch 2.9.1 -> 2.9.2
redux-mock-store devDependencies patch 1.5.4 -> 1.5.5
org.apache.velocity:velocity-engine-core (source) dependencies patch 2.4 -> 2.4.1
io.swagger.parser.v3:swagger-parser-v3 (source) dependencies patch 2.1.22 -> 2.1.23
com.amazonaws:aws-java-sdk-sts (source) dependencies patch 1.12.774 -> 1.12.777
com.amazonaws:aws-java-sdk-route53 (source) dependencies patch 1.12.774 -> 1.12.777
com.amazonaws:aws-java-sdk-ec2 (source) dependencies patch 1.12.774 -> 1.12.777
com.amazonaws:aws-java-sdk-core (source) dependencies patch 1.12.774 -> 1.12.777
com.amazonaws:aws-java-sdk-autoscaling (source) dependencies patch 1.12.774 -> 1.12.777

Release Notes

browserslist/caniuse-lite (caniuse-lite)

v1.0.30001678

Compare Source

v1.0.30001677

Compare Source

v1.0.30001676

Compare Source

v1.0.30001675

Compare Source

v1.0.30001674

Compare Source

v1.0.30001673

Compare Source

v1.0.30001672

Compare Source

v1.0.30001671

Compare Source

webpack-contrib/mini-css-extract-plugin (mini-css-extract-plugin)

v2.9.2

Compare Source

arnaudbenard/redux-mock-store (redux-mock-store)

v1.5.5: - Deprecation

Compare Source

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

swagger-api/swagger-parser (io.swagger.parser.v3:swagger-parser-v3)

v2.1.23: Swagger-parser 2.1.23 released!

aws/aws-sdk-java (com.amazonaws:aws-java-sdk-sts)

v1.12.777

Compare Source

v1.12.776

Compare Source

v1.12.775

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@zowe-robot zowe-robot added the dependencies Pull requests that update a dependency file label Nov 1, 2024
@pull-request-size pull-request-size bot added size/S and removed size/M labels Nov 4, 2024
@pull-request-size pull-request-size bot added size/M and removed size/S labels Nov 6, 2024
Signed-off-by: Renovate Bot <renovate@whitesourcesoftware.com>
Copy link

sonarcloud bot commented Nov 7, 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 size/M
Projects
Development

Successfully merging this pull request may close these issues.

2 participants