Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 25, 2025

This PR contains the following updates:

Package Change Age Confidence
@frontify/app-bridge (source) 3.0.0-beta.253.12.2 age confidence

Release Notes

Frontify/brand-sdk (@​frontify/app-bridge)

v3.12.2

Compare Source

Patch Changes

v3.12.1

Compare Source

Patch Changes

v3.12.0

Compare Source

Minor Changes

v3.11.2

Compare Source

Patch Changes

v3.11.1

Compare Source

Patch Changes

v3.11.0

Compare Source

Minor Changes
  • #​1136 6bafe6c Thanks @​ragi96! - refactor(AssetChooserType): remove PatternLibrary as it is sunset
    refactor(DocumentMode): remove PatternLibrary as it is sunset

v3.10.1

Compare Source

Patch Changes

v3.10.0

Compare Source

Minor Changes

v3.9.2

Compare Source

Patch Changes

v3.9.1

Compare Source

Patch Changes

v3.9.0

Compare Source

Minor Changes

v3.8.0

Compare Source

Minor Changes
  • #​909 14b9fdf Thanks @​SamCreasey! - feat(useAfterInsertion): A new hook to execute a callback after a block has been inserted, can be used to focus a specific element for faster editing. The callback is only executed when the third argument is true (default). This hook is only usable with instances of AppBridgeBlock.

    const ExampleBlock = ({ appBridge }: BlockProps) => {
        const buttonRef = useRef < HTMLButtonElement > null;
        const [data, setData] = useState(null);
        const hasData = data !== null;
    
        useEffect(() => {
            getAsyncData().then((data) => setData(data));
        }, []);
    
        useAfterInsertion(appBridge, () => buttonRef.current?.focus(), hasData);
    
        return hasData ? (
            <button ref={buttonRef} onClick={() => console.log('Creating new item...')}>
                Create New Item
            </button>
        ) : (
            <div>Loading...</div>
        );
    };

v3.7.0

Compare Source

Minor Changes
Patch Changes

v3.6.3

Compare Source

Patch Changes

v3.6.2

Compare Source

Patch Changes

v3.6.1

Compare Source

Patch Changes
  • #​882 f6897fb Thanks @​oliverschwendener! - fix(useDocumentNavigation): Fixed an issue that prevented debounced callbacks not to be executed
    fix(usePortalNavigation): Fixed an issue that prevented debounced callbacks not to be executed

v3.6.0

Compare Source

Minor Changes

v3.5.9

Compare Source

Patch Changes

v3.5.8

Compare Source

Patch Changes

v3.5.7

Compare Source

Patch Changes

v3.5.6

Compare Source

Patch Changes

v3.5.5

Compare Source

Patch Changes

v3.5.4

Compare Source

Patch Changes

v3.5.3

Compare Source

Patch Changes

v3.5.2

Compare Source

Patch Changes

v3.5.1

Compare Source

Patch Changes
  • #​818 c25d717 Thanks @​SamCreasey! - fix(useBlockSettings): setBlockSettings has been wrapped in a useCallback so it can be safely used as a dependency in react hooks. The following code will no longer cause unexpected rerenders.

    const Component = () => {
        const [blockSettings, setBlockSettings] = useBlockSettings(appBridge);
    
        useEffect(() => {
            setBlockSettings({ ...blockSettings });
        }, [setBlockSettings]);
    };

v3.5.0

Compare Source

Minor Changes
Patch Changes

v3.4.2

Compare Source

Patch Changes

v3.4.1

Compare Source

Patch Changes

v3.4.0

Compare Source

Minor Changes

v3.3.2

Compare Source

Patch Changes

v3.3.1

Compare Source

Patch Changes

v3.3.0

Compare Source

Minor Changes

v3.2.0

Minor Changes

v3.1.0

Minor Changes
  • #​714 68a9298 Thanks @​SamuelAlev! - Split the testing utilities out of the main bundle, so they don't end up in production builds.
    You will need to update the import paths in your tests:

    - import { AssetDummy, withAppBridgeBlockStubs } from '@&#8203;frontify/app-bridge';
    + import { AssetDummy, withAppBridgeBlockStubs } from '@&#8203;frontify/app-bridge/testing';
    

v3.0.4

Compare Source

Patch Changes

v3.0.3

Compare Source

Patch Changes

v3.0.2

Compare Source

Patch Changes

v3.0.1

Patch Changes

v3.0.0

Major Changes

v3.0.0-beta.100

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.99

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.98

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.97

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.96

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.95

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.94

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.93

Compare Source

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.92

@​frontify/app-bridge

3.0.0-beta.32

Patch Changes

3.0.0-beta.31

Minor Changes
  • Add Brandportal link

v3.0.0-beta.32

Patch Changes

v3.0.0-beta.31

Minor Changes
  • Add Brandportal link

Configuration

📅 Schedule: Branch creation - "after 9pm,before 6am" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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
Copy link
Contributor Author

renovate bot commented May 25, 2025

⚠️ 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 ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: glyphs_preview_block@1.0.0
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR!   react@"^17.0.2" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^18" from @frontify/app-bridge@3.12.2
npm ERR! node_modules/@frontify/app-bridge
npm ERR!   @frontify/app-bridge@"3.12.2" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /runner/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /runner/cache/others/npm/_logs/2026-01-23T20_55_48_843Z-debug-0.log

@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch 8 times, most recently from 9d2fb72 to 5056389 Compare May 30, 2025 03:57
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch from 5056389 to dae21bd Compare June 2, 2025 03:10
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch 3 times, most recently from c34732b to 21bbe4f Compare June 16, 2025 03:49
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch 2 times, most recently from 64da0a0 to 02b8996 Compare June 23, 2025 04:30
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch 2 times, most recently from 06d269b to 6a4fb55 Compare July 7, 2025 03:46
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch 2 times, most recently from ca20d7d to f884344 Compare July 18, 2025 09:07
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch 2 times, most recently from 161e0e9 to 5921fbc Compare July 28, 2025 04:06
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch from 5921fbc to 507886e Compare August 9, 2025 01:55
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch from 507886e to 529a9da Compare September 3, 2025 14:44
@renovate renovate bot changed the title Update dependency @frontify/app-bridge to v3.11.1 Update dependency @frontify/app-bridge to v3.11.2 Sep 3, 2025
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch from 529a9da to 3f838c5 Compare November 27, 2025 19:30
@renovate renovate bot changed the title Update dependency @frontify/app-bridge to v3.11.2 Update dependency @frontify/app-bridge to v3.12.0 Nov 27, 2025
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch from 3f838c5 to 52d18b1 Compare December 4, 2025 16:32
@renovate renovate bot changed the title Update dependency @frontify/app-bridge to v3.12.0 Update dependency @frontify/app-bridge to v3.12.1 Dec 4, 2025
@renovate renovate bot force-pushed the renovate/frontify-app-bridge-3.x branch from 52d18b1 to b5bf333 Compare January 7, 2026 11:10
@renovate renovate bot changed the title Update dependency @frontify/app-bridge to v3.12.1 Update dependency @frontify/app-bridge to v3.12.2 Jan 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant