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 dependency contentful-ui-extensions-sdk to v4 #87

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 11, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
contentful-ui-extensions-sdk (source) ^3.31.0 -> ^4.0.0 age adoption passing confidence

Release Notes

contentful/ui-extensions-sdk (contentful-ui-extensions-sdk)

v4.29.5

Compare Source

Bug Fixes
  • force release to fix type conflicts with old contentful-management (#​2130) (c82b4e1)

v4.29.3

Compare Source

Bug Fixes
  • remove .npmrc at root to fix publish registry [EXT-5905] (#​2064) (b3174ec)

v4.29.2

Compare Source

Bug Fixes

v4.29.1

Compare Source

Bug Fixes
  • upgrade contentful-management to include axios vuln fix (#​2002) (a9d2831)

v4.29.0

Compare Source

Bug Fixes
Features

v4.28.0

Compare Source

Features

v4.27.0

Compare Source

Features

4.26.3 (2024-07-02)

Bug Fixes

4.26.2 (2024-06-28)

Bug Fixes

4.26.1 (2024-06-28)

Bug Fixes

v4.26.3

Compare Source

Bug Fixes

v4.25.0

Compare Source

Features

v4.24.0

Compare Source

Features

4.23.1 (2023-09-26)

Bug Fixes

v4.23.1

Compare Source

Bug Fixes

v4.23.0

Compare Source

Features

4.22.1 (2023-07-10)

Bug Fixes

v4.22.1

Compare Source

Bug Fixes

v4.22.0

Compare Source

Features

v4.21.1

Compare Source

Bug Fixes
Reverts

v4.21.0

Compare Source

Features

v4.20.0

Compare Source

Features

4.19.1 (2023-06-15)

Bug Fixes

v4.19.1

Compare Source

Bug Fixes

v4.19.0

Compare Source

Features

v4.18.0

Compare Source

Features

4.17.2 (2023-05-17)

Bug Fixes

4.17.1 (2023-04-05)

Bug Fixes
  • [] Deprecate XXXExtensionSDK types in favour of XXXAppSDK (#​1505) (a8ee8e7)

v4.17.2

Compare Source

Bug Fixes

v4.17.1

Compare Source

Bug Fixes
  • [] Deprecate XXXExtensionSDK types in favour of XXXAppSDK (#​1505) (a8ee8e7)

v4.17.0

Compare Source

Features
  • Entities: add more supported entities to app sdk's cma [EXT-4359] (#​1501) (43e6c96)

v4.16.0

Compare Source

Features

v4.15.0

Compare Source

Features

4.14.1 (2022-12-29)

Bug Fixes

v4.14.1

Compare Source

Bug Fixes

v4.14.0

Compare Source

Features

v4.13.0

Compare Source

Features

4.12.1 (2022-09-12)

Bug Fixes

v4.12.1

Compare Source

Bug Fixes

v4.12.0

Compare Source

Features

4.11.1 (2022-08-02)

Bug Fixes

v4.11.1

Compare Source

Bug Fixes

v4.11.0

Compare Source

Features

v4.10.0

Compare Source

Features

v4.9.0

Compare Source

Features

4.8.1 (2022-06-28)

Bug Fixes

v4.8.1

Compare Source

Bug Fixes

v4.8.0

Compare Source

Features

v4.7.0

Compare Source

Features
  • added worflowdefinition type to exported entities and to api.types (#​1294) (b2d917f)

v4.6.0

Compare Source

Features
  • add option to include absolute elements in auto resizer (#​901) (0269b00)

v4.5.0

Compare Source

Features

4.4.1 (2022-05-16)

Bug Fixes
  • Use ResizeObserver to track iframe body size changes [EXT-3733] (#​1263) (391b282)

v4.4.1

Compare Source

Bug Fixes
  • Use ResizeObserver to track iframe body size changes [EXT-3733] (#​1263) (391b282)

v4.4.0

Compare Source

Features

4.3.7 (2022-04-13)

Bug Fixes

4.3.6 (2022-04-12)

Bug Fixes

4.3.5 (2022-02-23)

Bug Fixes

4.3.4 (2022-02-21)

Bug Fixes

4.3.3 (2022-02-14)

Bug Fixes

4.3.2 (2022-02-09)

Bug Fixes
  • return same SDK instance when calling init multiple times (#​1173) (8acc077)

4.3.1 (2021-11-10)

Bug Fixes

v4.3.7

Compare Source

Bug Fixes

v4.3.6

Compare Source

Bug Fixes

v4.3.5

Compare Source

Bug Fixes

v4.3.4

Compare Source

Bug Fixes

v4.3.3

Compare Source

Bug Fixes

v4.3.2

Compare Source

Bug Fixes
  • return same SDK instance when calling init multiple times (#​1173) (8acc077)

v4.3.1

Compare Source

Bug Fixes

v4.3.0

Compare Source

Features

4.2.1 (2021-10-07)

Bug Fixes
  • LinkContentTypeValidationError contains a list of content types (#​1021) (64a8c05)

v4.2.1

Compare Source

Bug Fixes
  • LinkContentTypeValidationError contains a list of content types (#​1021) (64a8c05)

v4.2.0

Compare Source

Features

4.1.1 (2021-10-06)

Bug Fixes

v4.1.1

Compare Source

Bug Fixes

v4.1.0

Compare Source

Features

4.0.1 (2021-10-05)

Bug Fixes

v4.0.1

Compare Source

Bug Fixes

v4.0.0

Compare Source

This major release of the Contentful App SDK provides two great features to make app development for Contentful even easier.

Contentful Management API Adapter

You can now use the contentful-management library within apps. This gives you access to a huge load of APIs that were previously not available. Also, you can reuse existing code utilising the contentful-management library which makes it easier to convert your custom Contentful scripts to convenient apps.

After installing the library, a new client can be created using the cmaAdapter which is exposed by the App SDK. There is no need to deal with authentication and tokens.

import { createClient } from 'contentful-management'

const nestedClient = createClient({ apiAdapter: sdk.cmaAdapter })

const cma = createClient(
  { apiAdapter: sdk.cmaAdapter },
  {
    type: 'plain',
    defaults: {
      environmentId: sdk.ids.environment,
      spaceId: sdk.ids.space,
    },
  },
)

Please note that not all methods are available. You can only use methods that access entities within the app’s space environment.

Deprecation of Space API

The Space API (sdk.space) is deprecated and will be removed in a future major update of the App SDK. We recommend using the new CMA Adapters to replace existing Space API functionality.

Typings revamp

In the previous version of the App SDK app developers sometimes struggled with our provided types. For version 4 we took the opportunity to revamp and significantly improve the types of the whole library. These changes are likely to break existing TypeScript apps as we are more specific about each property and also changed the usage of generics on API methods.
The new types of the App SDK now align with the types of the contentful-management library.
To get the best development experience, you need to install contentful-management as a separate dependency.

npm install contentful-management

We do not include this dependency by default to keep your dependency tree clean and ensure small bundle sizes and short build times.


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update 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 October 11, 2021 00:49
@commit-lint
Copy link

commit-lint bot commented Oct 11, 2021

Bug Fixes

  • deps: update dependency contentful-ui-extensions-sdk to v4 (f5311ca)

Contributors

renovate[bot]

Commit-Lint commands

You can trigger Commit-Lint actions by commenting on this PR:

  • @Commit-Lint merge patch will merge dependabot PR on "patch" versions (X.X.Y - Y change)
  • @Commit-Lint merge minor will merge dependabot PR on "minor" versions (X.Y.Y - Y change)
  • @Commit-Lint merge major will merge dependabot PR on "major" versions (Y.Y.Y - Y change)
  • @Commit-Lint merge disable will desactivate merge dependabot PR
  • @Commit-Lint review will approve dependabot PR
  • @Commit-Lint stop review will stop approve dependabot PR

@netlify
Copy link

netlify bot commented Oct 11, 2021

Deploy Preview for imgix-contentful failed.

Name Link
🔨 Latest commit ab22612
🔍 Latest deploy log https://app.netlify.com/sites/imgix-contentful/deploys/62e2bf7247440b00090b3903

@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from a1d50ff to 3339506 Compare October 11, 2021 00:51
@sherwinski sherwinski force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from 3339506 to 65b7e74 Compare October 11, 2021 20:57
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 3 times, most recently from f8b1f16 to 0c26211 Compare October 13, 2021 18:11
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from 0c26211 to f0a6a0e Compare November 1, 2021 01:26
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 2 times, most recently from e781896 to 2a588f5 Compare November 15, 2021 01:29
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from 2a588f5 to ec6b4fe Compare November 15, 2021 22:23
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 2 times, most recently from 3050251 to d6eb7ef Compare November 29, 2021 02:56
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from d6eb7ef to b8e8ded Compare December 6, 2021 01:09
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 2 times, most recently from 7de87b2 to af567d2 Compare December 20, 2021 01:02
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from af567d2 to 3c76e02 Compare December 20, 2021 02:39
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 2 times, most recently from 8fd6025 to 83db685 Compare January 3, 2022 02:56
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 2 times, most recently from 48913ac to 5ac6f25 Compare January 24, 2022 00:28
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 4 times, most recently from 3c707ad to b0b47f3 Compare February 7, 2022 02:44
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from b0b47f3 to ce253ca Compare February 21, 2022 00:22
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch 2 times, most recently from b0e6714 to f46a095 Compare March 7, 2022 00:06
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from f46a095 to 9d4c233 Compare March 7, 2022 02:12
Copy link
Contributor Author

renovate bot commented Sep 16, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @imgix/[email protected]
npm error Found: [email protected]
npm error node_modules/react
npm error   react@"^17.0.1" from the root project
npm error
npm error Could not resolve dependency:
npm error peer react@"^18.0.0 || ^19.0.0" from @testing-library/[email protected]
npm error node_modules/@testing-library/react
npm error   dev @testing-library/react@"16.1.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2025-01-20T09_19_28_702Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2025-01-20T09_19_28_702Z-debug-0.log

@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from 1ca5b14 to 039f79b Compare January 10, 2025 05:00
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from 039f79b to d977100 Compare January 10, 2025 10:42
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from d977100 to f42d291 Compare January 10, 2025 13:50
@renovate renovate bot force-pushed the renovate/contentful-ui-extensions-sdk-4.x branch from f42d291 to 2c71101 Compare January 20, 2025 05:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
on hold Waiting until there’s more bandwidth to tackle issue renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant