Skip to content

Latest commit

 

History

History
77 lines (48 loc) · 2.75 KB

CHANGELOG.md

File metadata and controls

77 lines (48 loc) · 2.75 KB

@keystonejs/oembed-adapters

5.0.1

Patch Changes

5.0.0

Major Changes

  • 7b4ed362 #1821 Thanks @jesstelford! - Release @keystonejs/* packages (つ^ ◡ ^)つ

    • This is the first release of @keystonejs/* packages (previously @keystone-alpha/*).
    • All packages in the @keystone-alpha namespace are now available in the @keystonejs namespace, starting at version 5.0.0.
    • To upgrade your project you must update any @keystone-alpha/* dependencies in package.json to point to "@keystonejs/*": "^5.0.0" and update any require/import statements in your code.

Patch Changes

  • Updated dependencies [7b4ed362]:
    • @keystonejs/build-field-types@5.0.0

@keystone-alpha/oembed-adapters

1.1.2

Patch Changes

1.1.1

Patch Changes

  • 73976672:

    Build package with @keystone-alpha/build-field-types so it works when published

1.1.0

Minor Changes

  • 91fffa1e:

    Add oEmbed Content Block with adapter-specific renderers.

1.0.0

Major Changes

  • 5c28c142:

    • Add IFramely OEmbed adapter:

      const { Keystone } = require('@keystone-alpha/keystone');
      const { OEmbed } = require('@keystone-alpha/fields');
      const { IframelyOEmbedAdapter } = require('@keystone-alpha/oembed-adapters');
      
      const keystone = new Keystone(/* ... */);
      
      const iframelyAdapter = new IframelyOEmbedAdapter({
        apiKey: '...', // Get one from https://iframely.com
      });
      
      keystone.createList('User', {
        fields: {
          portfolio: {
            type: OEmbed,
            adapter: iframelyAdapter,
          },
        },
      });