Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

CHANGES.md 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. # CHANGES for `@es-joy/jsdoccomment`
  2. ## 0.10.8
  3. ### User-impacting
  4. - npm: Liberalize `engines` as per `comment-parser` change
  5. - npm: Bump `comment-parser`
  6. ### Dev-impacting
  7. - Linting: As per latest ash-nazg
  8. - npm: Update devDeps.
  9. ## 0.10.7
  10. - npm: Update comment-parser with CJS fix and re-exports
  11. - npm: Update devDeps.
  12. ## 0.10.6
  13. - Fix: Ensure copying latest build of `comment-parser`'s ESM utils
  14. ## 0.10.5
  15. - npm: Bump fixed `jsdoc-type-pratt-parser` and devDeps.
  16. ## 0.10.4
  17. - Fix: Bundle `comment-parser` nested imports so that IDEs (like Atom)
  18. bundling older Node versions can still work. Still mirroring the
  19. stricter `comment-parser` `engines` for now, however.
  20. ## 0.10.3
  21. - npm: Avoid exporting nested subpaths for sake of older Node versions
  22. ## 0.10.2
  23. - npm: Specify exact supported range: `^12.20 || ^14.14.0 || ^16`
  24. ## 0.10.1
  25. - npm: Apply patch version of `comment-parser`
  26. ## 0.10.0
  27. - npm: Point to stable `comment-parser`
  28. ## 0.9.0-alpha.6
  29. ### User-impacting
  30. - Update: For `comment-parser` update, add `lineEnd`
  31. ## 0.9.0-alpha.5
  32. ### User-impacting
  33. - npm: Bump `comment-parser` (for true ESM)
  34. - Update: Remove extensions for packages for native ESM in `comment-parser` fix
  35. ### Dev-impacting
  36. - npm: Update devDeps.
  37. ## 0.9.0-alpha.4
  38. - Docs: Update repo info in `package.json`
  39. ## 0.9.0-alpha.3
  40. - Fix: Due to `comment-parser` still needing changes, revert for now to alpha.1
  41. ## 0.9.0-alpha.2
  42. ### User-impacting
  43. - npm: Bump `comment-parser` (for true ESM)
  44. - Update: Remove extensions for packages for native ESM in `comment-parser` fix
  45. ### Dev-impacting
  46. - npm: Update devDeps.
  47. ## 0.9.0-alpha.1
  48. ### User-impacting
  49. - Breaking change: Indicate minimum for `engines` as Node >= 12
  50. - npm: Bump `comment-parser`
  51. ### Dev-impacting
  52. - npm: Lint cjs files
  53. - npm: Fix eslint script
  54. - npm: Update devDeps.
  55. ## 0.8.0
  56. ### User-impacting
  57. - npm: Update `jsdoc-type-pratt-parser` (prerelease to stable patch)
  58. ### Dev-impacting
  59. - npm: Update devDeps.
  60. ## 0.8.0-alpha.2
  61. - Fix: Avoid erring with missing `typeLines`
  62. ## 0.8.0-alpha.1
  63. - Breaking change: Export globally as `JsdocComment`
  64. - Breaking change: Change `JSDoc` prefixes of all node types to `Jsdoc`
  65. - Breaking change: Drop `jsdoctypeparserToESTree`
  66. - Breaking enhancement: Switch to `jsdoc-type-pratt-parser` (toward greater
  67. TypeScript expressivity and compatibility/support with catharsis)
  68. - Enhancement: Export `jsdocTypeVisitorKeys` (from `jsdoc-type-pratt-parser`)
  69. ## 0.7.2
  70. - Fix: Add `@description` to `noNames`
  71. ## 0.7.1
  72. - Fix: Add `@summary` to `noNames`
  73. ## 0.7.0
  74. - Enhancement: Allow specifying `noNames` and `noTypes` on `parseComment`
  75. to override (or add to) tags which should have no names or types.
  76. - Enhancement: Export `hasSeeWithLink` utility and `defaultNoTypes` and
  77. `defaultNoNames`.
  78. ## 0.6.0
  79. - Change `comment-parser` `tag` AST to avoid initial `@`
  80. ## 0.5.1
  81. - Fix: Avoid setting `variation` name (just the description) (including in
  82. dist)
  83. - npm: Add `prepublishOnly` script
  84. ## 0.5.0
  85. - Fix: Avoid setting `variation` name (just the description)
  86. ## 0.4.4
  87. - Fix: Avoid setting `name` and `description` for simple `@template SomeName`
  88. ## 0.4.3
  89. - npm: Ignores Github file
  90. ## 0.4.2
  91. - Fix: Ensure replacement of camel-casing (used in `jsdoctypeparser` nodes and
  92. visitor keys is global. The practical effect is that
  93. `JSDocTypeNamed_parameter` -> `JSDocTypeNamedParameter`,
  94. `JSDocTypeRecord_entry` -> `JSDocTypeRecordEntry`
  95. `JSDocTypeNot_nullable` -> `JSDocTypeNotNullable`
  96. `JSDocTypeInner_member` -> `JSDocTypeInnerMember`
  97. `JSDocTypeInstance_member` -> `JSDocTypeInstanceMember`
  98. `JSDocTypeString_value` -> `JSDocTypeStringValue`
  99. `JSDocTypeNumber_value` -> `JSDocTypeNumberValue`
  100. `JSDocTypeFile_path` -> `JSDocTypeFilePath`
  101. `JSDocTypeType_query` -> `JSDocTypeTypeQuery`
  102. `JSDocTypeKey_query` -> `JSDocTypeKeyQuery`
  103. - Fix: Add missing `JSDocTypeLine` to visitor keys
  104. - Docs: Explain AST structure/differences
  105. ## 0.4.1
  106. - Docs: Indicate available methods with brief summary on README
  107. ## 0.4.0
  108. - Enhancement: Expose `parseComment` and `getTokenizers`.
  109. ## 0.3.0
  110. - Enhancement: Expose `toCamelCase` as new method rather than within a
  111. utility file.
  112. ## 0.2.0
  113. - Enhancement: Exposes new methods: `commentHandler`,
  114. `commentParserToESTree`, `jsdocVisitorKeys`, `jsdoctypeparserToESTree`,
  115. `jsdocTypeVisitorKeys`,
  116. ## 0.1.1
  117. - Build: Add Babel to work with earlier Node
  118. ## 0.1.0
  119. - Initial version