contentfully icon indicating copy to clipboard operation
contentfully copied to clipboard

A simple but performant REST client for Contentful.

Results 19 contentfully issues
Sort by recently updated
recently updated
newest added

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.5 to 1.15.6. Commits 35a517c Release version 1.15.6 of the npm package. c4f847f Drop Proxy-Authorization across hosts. 8526b4a Use GitHub for disclosure. See full diff in compare...

dependencies

Bumps [axios](https://github.com/axios/axios) to 1.6.5 and updates ancestor dependency [contentful-management](https://github.com/contentful/contentful-management.js). These dependencies need to be updated together. Updates `axios` from 0.21.4 to 1.6.5 Release notes Sourced from axios's releases. Release v1.6.5...

dependencies

Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.18.9 to 7.23.9. Release notes Sourced from @​babel/traverse's releases. v7.23.9 (2024-01-25) :bug: Bug Fix babel-helper-transform-fixture-test-runner, babel-plugin-transform-function-name, babel-plugin-transform-modules-systemjs, babel-preset-env #16225 fix: systemjs re-traverses helpers (@​liuxingbaoyu) babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators #16226...

dependencies

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...

dependencies

Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.5 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...

dependencies

While building a Nuxt3 app, noticed that the parsed output of _parseRichTextValue and friends restructure the rich text object output. This restructuring breaks compatibility with Contentful's Rich Text rendering tools....

Seems that there's no `_metadata` or `_tags` properties, so there doesn't seem to be a way to get the "tags" of an entry at the moment.

enhancement

ContentfulClient is written to have a hard-coded fallback to node-fetch: https://github.com/nascentdigital/contentfully/blob/cfa6759e122f126b714f41ee69b840fda46bee57/src/contentful/ContentfulClient.ts#L113 This breaks react-native builds, failing a [brwoserlist](https://www.npmjs.com/package/browserlist) requirement. Browserlist is not packaged (for obvious reasons) with Expo or the...

bug

If you're parsing an `Asset` that is missing required fields (e.g. file), then Contenfully will throw when it tries to transform the Asset to a `Media` object. The specific issue...

bug

Added the ability to HTML renderer for the Contentful rich text field type. you can enable as follows: ```javascript const data = await contentfully.getEntries(query, { renderRichtext: true }); ``` so...