Skip to content

Version Packages #841

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

Merged
merged 1 commit into from
Apr 30, 2025
Merged

Version Packages #841

merged 1 commit into from
Apr 30, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Apr 28, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@opennextjs/aws@3.6.0

Minor Changes

  • #843 64ee6845dd38d8b543ecbe1cda807ae1f9a37a16 Thanks @conico974! - Introduce support for the composable cache

    BREAKING CHANGE: The interface for the Incremental cache has changed. The new interface use a Cache type instead of a boolean to distinguish between the different types of caches. It also includes a new Cache type for the composable cache. The new interface is as follows:

    export type CacheEntryType = "cache" | "fetch" | "composable";
    
    export type IncrementalCache = {
      get<CacheType extends CacheEntryType = "cache">(
        key: string,
        cacheType?: CacheType
      ): Promise<WithLastModified<CacheValue<CacheType>> | null>;
      set<CacheType extends CacheEntryType = "cache">(
        key: string,
        value: CacheValue<CacheType>,
        isFetch?: CacheType
      ): Promise<void>;
      delete(key: string): Promise<void>;
      name: string;
    };

    NextModeTagCache also get a new function getLastRevalidated used for the composable cache:

      getLastRevalidated(tags: string[]): Promise<number>;

Patch Changes

app-pages-router@0.1.17

Patch Changes

app-router@0.1.17

Patch Changes

@github-actions github-actions bot force-pushed the changeset-release/main branch 2 times, most recently from 6ca955a to c1d705b Compare April 29, 2025 09:19
@github-actions github-actions bot force-pushed the changeset-release/main branch from c1d705b to 5e7f48e Compare April 30, 2025 09:55
@conico974 conico974 merged commit 8bb7e74 into main Apr 30, 2025
@conico974 conico974 deleted the changeset-release/main branch April 30, 2025 10:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant