Skip to content

Releases: contentful/contentful-batch-libs

v10.1.1

08 Nov 16:31
c007efd
Compare
Choose a tag to compare

10.1.1 (2023-11-08)

Bug Fixes

  • get entity name function optional param [NONE] (#257) (c007efd)

v10.1.0

08 Nov 09:23
d90896d
Compare
Choose a tag to compare

10.1.0 (2023-11-08)

Features

  • Improve 'setupLogging' to instantiate a log array if none is provided (#244) (d90896d)

v10.0.0

01 Nov 10:48
f389bf5
Compare
Choose a tag to compare

10.0.0 (2023-11-01)

Refactor

BREAKING CHANGES


  • Replace type definitions defined in types.d.ts with generated type defs with entrypoint dist/index.d.ts.
  • Changed addSequenceHeader and getEntityName from default exports to named exports (listed in the todos).

Other notable (and less breaking?) changes:

  • Added a whole bunch of extra object reference checks. I have extracted the more complex checks, to the ✨new./type-guards.ts file.

  • Replaced lodash.cloneDeep with the structuredClone global function.

  • Modified the return structure of the proxyObjectToString function from:

    type proxyObjectToStringReturnType = |
      { host: number; port: number; isHttps: boolean; } | 
      { host: number; port: number; isHttps: boolean; auth: { username: string; password: string }; };

    to:

    type proxyObjectToStringReturnType = { 
      host: number; 
      port: number; 
      isHttps: boolean; 
      auth?: { username: string; password: string }; };

    The changes are subtle, but it is important to call out the change in behaviour here.

v9.7.0

24 Oct 08:03
236fc60
Compare
Choose a tag to compare

9.7.0 (2023-10-24)

Features

v9.6.0

23 Oct 12:46
30fafdd
Compare
Choose a tag to compare

9.6.0 (2023-10-23)

Features

v9.5.1

11 Oct 08:39
9a6a0f4
Compare
Choose a tag to compare

9.5.1 (2023-10-11)

Bug Fixes

  • https-proxy-agent usage after version bump [NONE] (#206) (9a6a0f4)

v9.5.0

05 May 15:12
2cb00b7
Compare
Choose a tag to compare

9.5.0 (2023-05-05)

Features

v9.4.2

12 Jul 06:01
eac5511
Compare
Choose a tag to compare

9.4.2 (2022-07-12)

Bug Fixes

  • logging: fix reported errors count (cb8636a)

v9.4.1

07 Jun 09:24
691948c
Compare
Choose a tag to compare

9.4.1 (2022-06-07)

Bug Fixes

  • date-fns: fix invalid time error (ea6f0d1)

v9.4.0

03 Jun 09:53
507162e
Compare
Choose a tag to compare

9.4.0 (2022-06-03)

Features

  • lint: modernise linting rules (ed756dd)