web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

152 lines
4.6 KiB

  1. Unreleased
  2. ==================
  3. 3.2.0 / 2020-12-16
  4. ==================
  5. - [New] add support for fragment syntax (`<>`) (#108)
  6. - [Fix] `TSNonNullExpression`: handle `ThisExpression`s (#108)
  7. - [Deps] update `array-includes`, `object.assign`
  8. - [Dev Deps] update `@babel/core`, `@babel/parser`, `eslint`, `eslint-config-airbnb-base`, `object.entries`, `object.fromentries`
  9. 3.1.0 / 2020-10-13
  10. ==================
  11. - [New] add `TSNonNullExpression` (#105)
  12. - [New] add `AssignmentExpression` (#106)
  13. - [Dev Deps] update `eslint`
  14. 3.0.0 / 2020-10-06
  15. ==================
  16. - [Breaking] Don't return node.start & node.end (#100)
  17. - [Breaking] add `ChainExpression`; `CallExpression` now includes arguments (#102)
  18. - [New] add `SequenceExpression` (#101)
  19. - [Deps] update `object.assign`
  20. - [Dev Deps] update `eslint`, `eslint-plugin-import`
  21. - [Dev Deps] update `@babel/core`, `@babel/parser`, `eslint`, `eslint-plugin-import`
  22. - [Tests] use proper `actual, expected` ordering for non-confusing failure messages
  23. 2.4.1 / 2020-06-11
  24. ==================
  25. - [Fix] `expressions/TemplateLiteral`: use `.range[0]` instead of `.start`
  26. 2.4.0 / 2020-06-11
  27. ==================
  28. - [New] Provide both range and start & end property on Node, support eslint v7 (#97)
  29. - [Dev Deps] update `@babel/core`, `@babel/parser`, `eslint`, `eslint-config-airbnb-base`, `eslint-plugin-import`, `flow-parser`
  30. - [meta] remove yarn registry from npmrc, so `npm publish` works
  31. 2.3.0 / 2020-05-24
  32. ==================
  33. - [New] add nullish coalescing (#99)
  34. - [New] add OptionalCallExpression (#99)
  35. - [Deps] update `array-includes`
  36. - [meta] add `safe-publish-latest`
  37. - [Dev Deps] update `@babel/parser`, `babel-eslint`, `coveralls`, `eslint`, `eslint-config-airbnb-base`, `eslint-plugin-import`, `in-publish`, `object.entries`, `object.fromentries`, `rimraf`
  38. - [Tests] on `node` `v14`; test all branches
  39. 2.2.3 / 2019-10-24
  40. ==================
  41. - (fix) Fix crash on spread (#94)
  42. 2.2.2 / 2019-10-24
  43. ==================
  44. - (improvement) Add support for retrieving props from a spread with object expression (#93)
  45. 2.2.1 / 2019-06-30
  46. ==================
  47. - (improvement) Account for TypeCastExpression in the utils
  48. 2.2.0 / 2019-06-25
  49. ==================
  50. - (fix) Fix getLiteralPropValue for TS-specific node types.
  51. - (chore) upgrade dependencies.
  52. - (improvement) Stop throwing errors when unknown AST nodes are encountered.
  53. - (dev) CI changes.
  54. 2.1.0 / 2018-04-19
  55. ==================
  56. - Fix undefined bug for template strings. #45
  57. - Adding support for `objectRestSpread` within props #60
  58. - Accommodate ExperimentalSpreadProperty in prop values #75
  59. - Account for SpreadElement AST Nodes #76
  60. - Support OptionalMemberExpression AST nodes #77
  61. - Add support to Typescript's node types #72
  62. 2.0.1 / 2017-08-31
  63. ==================
  64. - [fix] Add support for BindExpression
  65. 2.0.0 / 2017-07-07
  66. ==================
  67. - [breaking] Remove undefined return from `propName` so it always returns a value.
  68. 1.4.1 / 2017-04-19
  69. ==================
  70. - [fix] - Fixing fatal throw in `getPropValue` for `ArrowFunctionExpression`
  71. 1.4.0 / 2017-02-02
  72. ==================
  73. - [new] Add eventHandlers and eventHandlersByType to API. These are the event names for DOM elements on JSX-using libraries such as React, inferno, and preact.
  74. 1.3.5 / 2016-12-14
  75. ==================
  76. - [fix] Normalize literals "true" and "false" before converting to boolean in Literal prop value extractor.
  77. 1.3.4 / 2016-11-15
  78. ==================
  79. - [fix] Recursively resolve JSXMemberExpression names for elementType. (i.e. `<Component.Render.Me />`). Fixes [#9](https://github.com/evcohen/jsx-ast-utils/issues/9)
  80. 1.3.3 / 2016-10-28
  81. ==================
  82. - [fix] Add support for `ArrayExpression`.
  83. 1.3.2 / 2016-10-11
  84. ==================
  85. - [fix] Add support for `UpdateExpression`.
  86. 1.3.1 / 2016-07-13
  87. ==================
  88. - [fix] Add `JSXElement` to expression types to handle recursively extracting prop value.
  89. 1.3.0 / 2016-07-12
  90. ==================
  91. - [new] Add support for `TaggedTemplateExpression`.
  92. 1.2.1 / 2016-06-15
  93. ==================
  94. - [fix] Point to `lib` instead of `src` for root exports.
  95. 1.2.0 / 2016-06-15
  96. ==================
  97. - [new] Export functions from root so they can be imported like the following: `require('jsx-ast-utils/{function}')`.
  98. 1.1.1 / 2016-06-12
  99. ==================
  100. - [fix] Better support for expressions in `TemplateLiteral` extraction.
  101. 1.1.0 / 2016-06-10
  102. ==================
  103. - [new] Support for namespaced element names.
  104. - [new] Add `propName` to API to get correct name for prop.
  105. 1.0.1 / 2016-06-10
  106. ==================
  107. - [fix] Return actual reserved words instead of string representations of them.
  108. 1.0.0 / 2016-06-09
  109. ==================
  110. - Initial stable release