Skip to content

Releases: contentful/contentful.net

Version 2.1.0

19 Apr 12:09
17ab01f
Compare
Choose a tag to compare

This release adds support for the new environments feature.

Version 2.0.3

10 Jan 08:01
a26be21
Compare
Choose a tag to compare
  • Adds support for the links_to_entry and links_to_asset query string parameters.

Version 2.0.2

15 Nov 12:26
6900965
Compare
Choose a tag to compare
  • Fixes an issue where UpdateEntryForLocale did not add fields with null values in Contentful.

Version 2.0.0

06 Nov 19:00
d36f4c4
Compare
Choose a tag to compare

This release introduces a number of breaking changes that are important to be aware of before upgrading.

Breaking changes

  • There is now a new configuration option for your preview API key called PreviewApiKey. If you are using the preview API you need to move the api key from the DeliveryApiKey setting to the PreviewApiKey setting instead.
  • All methods have had the Async suffix removed. For example GetEntriesAsync is now GetEntries. All methods are still async, however.
  • The GetEntries<T> method of the ContentfulClient no longer supports Entry<T> as an argument. Instead you should use your class T directly. If you need SystemProperties you can just add a property directly to your custom class, e.g. public SystemProperties Sys { get; set; }
  • Fixed the faulty capitalization of the Webhook methods. Previously they were all named WebHook. For example GetWebHookAsync is now GetWebhook.

Non breaking changes

  • When using an IContentTypeResolver and serializing collection properties you no longer need to set the TypeNameHandling.All on the SerializerSettings of the IContentfulClient. This is handled automatically.
  • Fixed a bug where in certain circumstances Array types were not deserialized correctly although other generic Enumerables were.

Version 1.5.1

18 Oct 08:39
Compare
Choose a tag to compare
  • Adds a new, easier to use, constructor to the reference class.

Version 1.5.0

17 Oct 13:30
Compare
Choose a tag to compare
  • Adds a new model for reference fields. Useful when you create or update existing entries.

Version 1.4.1

11 Oct 16:17
Compare
Choose a tag to compare
  • Adds a new method to process an asset and wait until processing has completed. Fixing #119

Version 1.4.0

04 Oct 11:33
Compare
Choose a tag to compare
  • Adds a method to create an asset with a randomized id.

Version 1.3.1

29 Sep 15:00
Compare
Choose a tag to compare
  • Fix for issue when self referencing content in certain circumstances resulted in duplicate entry ids.

Version 1.3.0

19 Sep 07:27
Compare
Choose a tag to compare
  • Retargets a lower version of NetStandard (1.4 and 1.6) to increase the level of compatability of the packages.