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

fix(deps): update all test-data packages to v10 (major) #3583

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 7, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commercetools-test-data/channel (source) 8.5.0 -> 10.8.1 age adoption passing confidence
@commercetools-test-data/commons (source) 8.5.0 -> 10.8.1 age adoption passing confidence
@commercetools-test-data/core (source) 8.5.0 -> 10.8.1 age adoption passing confidence
@commercetools-test-data/custom-view (source) ^8.0.0 -> ^10.0.0 age adoption passing confidence

Release Notes

commercetools/test-data (@​commercetools-test-data/channel)

v10.8.1

Compare Source

Patch Changes

v10.8.0

Compare Source

Minor Changes
  • #​688 6bdcbe6 Thanks @​CarlosCortizasCT! - The main change is about the core package where we are introducing support for writing test data models using new implementation patterns which makes the process simpler. Also, the resulting code will be more maintainable.

    You can head over here for updated documentation about those new patterns.

Patch Changes

v10.7.1

Compare Source

Patch Changes

v10.7.0

Compare Source

Patch Changes

v10.6.1

Compare Source

Patch Changes

v10.6.0

Compare Source

Patch Changes

v10.5.2

Compare Source

Patch Changes

v10.5.1

Compare Source

Patch Changes

v10.5.0

Compare Source

Patch Changes

v10.4.0

Compare Source

Patch Changes

v10.3.0

Patch Changes

v10.2.0

Patch Changes

v10.1.4

Compare Source

Patch Changes

v10.1.3

Compare Source

Patch Changes

v10.1.2

Compare Source

Patch Changes

v10.1.1

Compare Source

Patch Changes

v10.1.0

Compare Source

Patch Changes

v10.0.0

Compare Source

Major Changes
  • #​628 5e4d863 Thanks @​stephsprinkle! - Renamed GoodStore dataset to B2C Lifestyle to support Foundry.

    This breaking change updates the export method for GoodStore, now B2C Lifestyle, presets. Presets that use this dataset are also updated.

    Updating this package will require changes in your codebase. To migrate:

    • Replace any instance of <Entity>.presets.sampleDataGoodStore.<preset-name>() with <Entity>.presets.sampleDataB2CLifestyle.<preset-name>()
Patch Changes

v9.0.7

Patch Changes

v9.0.6

Patch Changes

v9.0.5

Compare Source

Patch Changes

v9.0.4

Compare Source

Patch Changes

v9.0.3

Compare Source

Patch Changes

v9.0.2

Compare Source

Patch Changes

v9.0.1

Compare Source

Patch Changes

v9.0.0

Compare Source

Patch Changes
commercetools/test-data (@​commercetools-test-data/commons)

v10.8.1

Compare Source

Patch Changes

v10.8.0

Compare Source

Minor Changes
  • #​688 6bdcbe6 Thanks @​CarlosCortizasCT! - The main change is about the core package where we are introducing support for writing test data models using new implementation patterns which makes the process simpler. Also, the resulting code will be more maintainable.

    You can head over here for updated documentation about those new patterns.

Patch Changes

v10.7.1

Compare Source

Patch Changes

v10.7.0

Compare Source

Patch Changes

v10.6.1

Compare Source

Patch Changes

v10.6.0

Compare Source

Patch Changes

v10.5.2

Compare Source

Patch Changes

v10.5.1

Compare Source

Patch Changes

v10.5.0

Compare Source

Patch Changes

v10.4.0

Compare Source

Patch Changes

v10.3.0

Patch Changes

v10.2.0

Patch Changes

v10.1.4

Compare Source

Patch Changes

v10.1.3

Compare Source

Patch Changes

v10.1.2

Compare Source

Patch Changes

v10.1.1

Compare Source

Patch Changes

v10.1.0

Compare Source

Patch Changes

v10.0.0

Compare Source

Major Changes
  • #​628 5e4d863 Thanks @​stephsprinkle! - Renamed GoodStore dataset to B2C Lifestyle to support Foundry.

    This breaking change updates the export method for GoodStore, now B2C Lifestyle, presets. Presets that use this dataset are also updated.

    Updating this package will require changes in your codebase. To migrate:

    • Replace any instance of <Entity>.presets.sampleDataGoodStore.<preset-name>() with <Entity>.presets.sampleDataB2CLifestyle.<preset-name>()
Minor Changes
  • #​629 a4e8796 Thanks @​CarlosCortizasCT! - Added a new helper in the LocalizedString model which allows to get the default locale value out of all configured ones.

    The default value has been configured to be en.

    In case the model does not have that one configured, the helper will return the first one configured.

Patch Changes

v9.0.7

Patch Changes

v9.0.6

Patch Changes

v9.0.5

Compare Source

Patch Changes

v9.0.4

Compare Source

Patch Changes

v9.0.3

Compare Source

Patch Changes

v9.0.2

Compare Source

Patch Changes

v9.0.1

Compare Source

Patch Changes

v9.0.0

Compare Source

Major Changes
  • #​601 42e42c3 Thanks @​tylermorrisford! - This breaking change updates the export method for Reference and ReferenceDraft presets to simplify the call syntax. Models that use these presets in their generators or transformers are also updated.

    Updating this package will require changes in your codebase. To migrate:

    • Replace any instance of Reference.presets.<preset-name>.<preset-name>() with Reference.presets.<preset-name>()
    • Replace any instance of ReferenceDraft.presets.<preset-name>.<preset-name>() with ReferenceDraft.presets.<preset-name>()
Patch Changes
commercetools/test-data (@​commercetools-test-data/core)

v10.8.1

Compare Source

Patch Changes
  • #​693 4599846 Thanks @​CarlosCortizasCT! - When creating Transformers, you can provide a buildFields property with the list of names of the nested models fields that should be transformed.

    In our latest version, we updated that behaviour so that, if you don't provide that property, the Transformer will automatically detect the nested models and build them.

    There were a few models where transformers where not providing the buildFields properties but they meant they didn't want any nested model to be build.
    In order to cover this use case, we modified the buildFields property to also accept false as a value, which was used as a signal to not build nested models and we updated those few models accordingly.

    However, we discovered one of our internal packages which relies on this one had many more models with the same use case and it's difficult to update all of them accordingly so we're updating the buildFields behaviour again to leave it as it was before.

    So now:

    • If the transformer configuration specifies a list of nested models, only those will be built
    • In the transformer configuration does not provide the buildFields property, no nested model will be built
    • [NEW] In the transformer configuration contains the buildFields property with the string value all, every nested model will be built (this is used in the new data models patterns)

v10.8.0

Compare Source

Minor Changes
  • #​688 6bdcbe6 Thanks @​CarlosCortizasCT! - The main change is about the core package where we are introducing support for writing test data models using new implementation patterns which makes the process simpler. Also, the resulting code will be more maintainable.

    You can head over here for updated documentation about those new patterns.

Patch Changes

v10.7.1

Compare Source

v10.7.0

Compare Source

v10.6.1

Compare Source

v10.6.0

Compare Source

v10.5.2

Compare Source

v10.5.1

Compare Source

v10.5.0

Compare Source

v10.4.0

Compare Source

v10.3.0

Compare Source

v10.2.0

Compare Source

v10.1.4

Compare Source

v10.1.3

Compare Source

v10.1.2

Compare Source

v10.1.1

Compare Source

v10.1.0

Compare Source

v10.0.0

Compare Source

v9.0.7

v9.0.6

v9.0.5

Compare Source

v9.0.4

Compare Source

v9.0.3

Compare Source

v9.0.2

Compare Source

v9.0.1

Compare Source

v9.0.0

Compare Source

commercetools/test-data (@​commercetools-test-data/custom-view)

v10.8.1

Compare Source

Patch Changes

v10.8.0

Compare Source

Patch Changes

v10.7.1

[Compare Source](https://redirect.github.com/commercetools


Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 8am every weekday" (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner August 7, 2024 07:52
@renovate renovate bot added the 🤖 Type: Dependencies Dependency updates or something similar label Aug 7, 2024
Copy link

vercel bot commented Aug 7, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
mc-app-kit-playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 15, 2024 10:49am
merchant-center-application-kit-components-playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 15, 2024 10:49am

Copy link

changeset-bot bot commented Aug 7, 2024

⚠️ No Changeset found

Latest commit: 2ae0e8c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 72f247c to 64372d5 Compare August 7, 2024 08:10
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 64372d5 to 4acd20f Compare August 9, 2024 13:23
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 4acd20f to a087649 Compare August 13, 2024 08:51
@renovate renovate bot changed the title fix(deps): update all test-data packages to v9 (major) fix(deps): update all test-data packages to v10 (major) Aug 13, 2024
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from a087649 to 418ae01 Compare August 16, 2024 11:41
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 418ae01 to 75048c3 Compare August 16, 2024 16:57
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 75048c3 to 6217d6c Compare August 20, 2024 09:25
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 6217d6c to 07ea2ec Compare August 20, 2024 13:34
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 07ea2ec to faaa481 Compare August 20, 2024 21:25
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from fd731e3 to 1c5ed0f Compare September 25, 2024 09:10
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 1c5ed0f to a823f93 Compare September 25, 2024 15:48
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from a823f93 to 993009b Compare October 8, 2024 15:14
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 993009b to 40dcd83 Compare October 10, 2024 08:20
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 40dcd83 to 0fb461b Compare October 10, 2024 12:19
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from 0fb461b to de82e55 Compare October 10, 2024 12:58
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from de82e55 to d892318 Compare October 14, 2024 11:04
@renovate renovate bot force-pushed the renovate/major-all-test-data-packages branch from d892318 to 3008219 Compare October 14, 2024 14:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🤖 Type: Dependencies Dependency updates or something similar
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants