Skip to content
This repository was archived by the owner on Jul 13, 2023. It is now read-only.

Releases: stoplightio/json-ref-resolver

v3.0.6

24 Dec 00:06
beb48be
Compare
Choose a tag to compare

3.0.6 (2019-12-24)

Bug Fixes

  • correct uriStack for RESOLVE_URI errors (#158) (beb48be)

v3.0.5

25 Nov 22:59
c704289
Compare
Choose a tag to compare

3.0.5 (2019-11-25)

Bug Fixes

  • handle JSON pointer parsing errors - local refs (#147) (c704289)

v3.0.4

23 Nov 16:53
1b2785a
Compare
Choose a tag to compare

3.0.4 (2019-11-23)

Bug Fixes

v3.0.3

16 Nov 01:09
8e3a9cd
Compare
Choose a tag to compare

3.0.3 (2019-11-16)

Bug Fixes

  • handle referencing circular remote refs with JSON pointers (#141) (8e3a9cd)

v3.0.2

14 Nov 23:35
86e67b2
Compare
Choose a tag to compare

3.0.2 (2019-11-14)

Bug Fixes

v3.0.1

14 Oct 15:07
Compare
Choose a tag to compare

3.0.1 (2019-10-14)

Bug Fixes

v3.0.0

12 Oct 18:26
Compare
Choose a tag to compare

3.0.0 (2019-10-12)

Features

  • add ref map to resolver graph node data (733a06c)

BREAKING CHANGES

  • resolver.graph node data is now an object that has data and refMap.
export interface IGraphNodeData {
   /**
   * A map of the refs in this node, and where they point
   *
   * Example:
   *
   * ```json
   * {
   *   "#/users/address": "file:///api.json/#models/address",
   * }
   * ```
   */
  refMap: Dictionary<string>;

  /**
  * This node's resolved data
  */
  data?: any;
}

v2.4.1

11 Oct 15:18
46b5dfc
Compare
Choose a tag to compare

2.4.1 (2019-10-11)

Bug Fixes

v2.4.0

11 Oct 12:20
56a78bb
Compare
Choose a tag to compare

2.4.0 (2019-10-11)

Features

v2.3.1

10 Oct 17:04
96a1ca5
Compare
Choose a tag to compare

2.3.1 (2019-10-10)

Bug Fixes