gina 0.2.1-alpha.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (505) hide show
  1. package/CHANGELOG.md +74 -0
  2. package/CONTRIBUTING.md +11 -2
  3. package/CONVENTIONS.md +564 -0
  4. package/README.md +35 -611
  5. package/ROADMAP.md +90 -47
  6. package/bin/cli +24 -0
  7. package/bin/gina-container +23 -0
  8. package/framework/v0.3.0/VERSION +1 -0
  9. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/beemaster/beemaster.css +493 -0
  10. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/beemaster/beemaster.js +513 -0
  11. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/beemaster/index.html +108 -0
  12. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/html/statusbar.html +152 -0
  13. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/html/statusbar.html.br +0 -0
  14. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/html/statusbar.html.gz +0 -0
  15. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/plugin/dist/vendor/gina/html/toolbar.html +0 -2
  16. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/html/toolbar.html.br +0 -0
  17. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/html/toolbar.html.gz +0 -0
  18. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/inspector/index.html +269 -0
  19. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/inspector/inspector.css +3442 -0
  20. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/inspector/inspector.js +4186 -0
  21. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/inspector/logo.svg +1 -0
  22. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/plugin/dist/vendor/gina/js/gina.js +5005 -6592
  23. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/js/gina.min.js +21544 -0
  24. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/js/gina.min.js.br +0 -0
  25. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/js/gina.min.js.gz +0 -0
  26. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js +286 -0
  27. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.br +0 -0
  28. package/framework/v0.3.0/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.gz +0 -0
  29. package/framework/v0.3.0/core/connectors/ai/index.js +183 -0
  30. package/framework/v0.3.0/core/connectors/ai/lib/connector.js +186 -0
  31. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/index.js +241 -21
  32. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/session-store.v3.js +8 -4
  33. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/session-store.v4.js +18 -7
  34. package/framework/v0.3.0/core/connectors/mysql/index.js +355 -0
  35. package/framework/v0.3.0/core/connectors/mysql/lib/connector.js +115 -0
  36. package/framework/v0.3.0/core/connectors/postgresql/index.js +356 -0
  37. package/framework/v0.3.0/core/connectors/postgresql/lib/connector.js +123 -0
  38. package/framework/v0.3.0/core/connectors/sql-parser.js +152 -0
  39. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/sqlite/index.js +53 -6
  40. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/controller/controller.js +437 -59
  41. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/controller/controller.render-json.js +67 -0
  42. package/framework/v0.3.0/core/controller/controller.render-stream.js +142 -0
  43. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/controller/controller.render-swig.js +251 -24
  44. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/controller/controller.render-v1.js +47 -7
  45. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/gna.js +36 -9
  46. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/model/entity.js +74 -54
  47. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/storage/src/main.js +1 -1
  48. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/validator/src/main.js +1 -1
  49. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/router.js +63 -8
  50. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/server.express.js +7 -0
  51. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/server.isaac.js +260 -16
  52. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/server.js +436 -18
  53. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/status.codes +1 -1
  54. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/config/settings.server.json +16 -0
  55. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/conf/env.json +5 -5
  56. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/conf/manifest.json +1 -0
  57. package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/conf/settings.json +12 -3
  58. package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/context.js +1 -1
  59. package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/path.js +28 -0
  60. package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/prototypes.js +1 -7
  61. package/framework/v0.3.0/lib/async/package.json +20 -0
  62. package/framework/v0.3.0/lib/async/src/main.js +70 -0
  63. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cache/src/main.js +1 -1
  64. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/add.js +7 -6
  65. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/arguments.json +2 -1
  66. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/help.txt +18 -0
  67. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/start.js +26 -1
  68. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/help.txt +23 -0
  69. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/gina.1.md +8 -0
  70. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/helper.js +68 -9
  71. package/framework/v0.3.0/lib/cmd/port/help.txt +60 -0
  72. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/port/inc/scan.js +8 -1
  73. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/help.txt +5 -5
  74. package/framework/v0.3.0/lib/cmd/project/restart.js +82 -0
  75. package/framework/v0.3.0/lib/cmd/project/start.js +82 -0
  76. package/framework/v0.3.0/lib/cmd/project/stop.js +63 -0
  77. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/protocol/help.txt +2 -2
  78. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/help.txt +11 -0
  79. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/collection/src/main.js +1 -1
  80. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/index.js +3 -0
  81. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/proc.js +5 -1
  82. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/routing/src/main.js +60 -0
  83. package/framework/v0.3.0/lib/routing/src/radix.js +114 -0
  84. package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/swig-filters/src/main.js +54 -0
  85. package/framework/{v0.2.1-alpha.1 → v0.3.0}/package.json +1 -1
  86. package/llms.txt +388 -28
  87. package/package.json +17 -7
  88. package/resources/home/framework/project.json +1 -1
  89. package/resources/img/logo.svg +1 -0
  90. package/schema/manifest.json +103 -0
  91. package/script/post_install.js +24 -0
  92. package/utils/helper.js +1 -1
  93. package/framework/v0.2.1-alpha.1/VERSION +0 -1
  94. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/html/toolbar.html.br +0 -0
  95. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/html/toolbar.html.gz +0 -0
  96. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.min.js +0 -791
  97. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.min.js.br +0 -0
  98. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.min.js.gz +0 -0
  99. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js +0 -9
  100. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.br +0 -0
  101. package/framework/v0.2.1-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.gz +0 -0
  102. package/framework/v0.2.1-alpha.1/core/asset/plugin/uuid.json +0 -23
  103. package/framework/v0.2.1-alpha.1/lib/cmd/port/help.txt +0 -31
  104. package/framework/v0.2.1-alpha.1/lib/cmd/project/restart.js +0 -0
  105. package/framework/v0.2.1-alpha.1/lib/cmd/project/start.js +0 -0
  106. package/framework/v0.2.1-alpha.1/lib/cmd/project/stop.js +0 -0
  107. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/AUTHORS +0 -0
  108. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/LICENSE +0 -0
  109. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/html/nolayout.html +0 -0
  110. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/html/static.html +0 -0
  111. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/img/android-chrome-192x192.png +0 -0
  112. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/img/android-chrome-512x512.png +0 -0
  113. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/img/apple-touch-icon.png +0 -0
  114. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/img/favicon-16x16.png +0 -0
  115. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/img/favicon-32x32.png +0 -0
  116. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/img/favicon.ico +0 -0
  117. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/plugin/README.md +0 -0
  118. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/plugin/dist/vendor/gina/css/gina.min.css +0 -0
  119. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/plugin/dist/vendor/gina/css/gina.min.css.br +0 -0
  120. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/asset/plugin/dist/vendor/gina/css/gina.min.css.gz +0 -0
  121. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/config.js +0 -0
  122. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/connector.js +0 -0
  123. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/connector.v2.js +0 -0
  124. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/connector.v3.js +0 -0
  125. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/connector.v4.js +0 -0
  126. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/n1ql.js +0 -0
  127. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/session-store.js +0 -0
  128. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/couchbase/lib/session-store.v2.js +0 -0
  129. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/redis/index.js +0 -0
  130. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/redis/lib/session-store.js +0 -0
  131. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/sqlite/lib/connector.js +0 -0
  132. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/connectors/sqlite/lib/session-store.js +0 -0
  133. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/content.encoding +0 -0
  134. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/controller/controller.framework.js +0 -0
  135. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/controller/index.js +0 -0
  136. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/busboy-1.6.0/LICENSE +0 -0
  137. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/busboy-1.6.0/README.md +0 -0
  138. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/busboy-1.6.0/lib/index.js +0 -0
  139. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/busboy-1.6.0/lib/types/multipart.js +0 -0
  140. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/busboy-1.6.0/lib/types/urlencoded.js +0 -0
  141. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/busboy-1.6.0/lib/utils.js +0 -0
  142. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/busboy-1.6.0/package.json +0 -0
  143. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/optimist-0.6.1/LICENSE +0 -0
  144. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/optimist-0.6.1/index.js +0 -0
  145. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/optimist-0.6.1/package.json +0 -0
  146. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/optimist-0.6.1/readme.markdown +0 -0
  147. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/CONTRIBUTING.md +0 -0
  148. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/HISTORY.md +0 -0
  149. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/LICENSE +0 -0
  150. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/Makefile +0 -0
  151. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/README.md +0 -0
  152. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/bin/swig.js +0 -0
  153. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/browser/comments.js +0 -0
  154. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/browser/index.js +0 -0
  155. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/api.html +0 -0
  156. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/browser.html +0 -0
  157. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/cli.html +0 -0
  158. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/extending.html +0 -0
  159. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/filters.html +0 -0
  160. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/includes/TYPES.html +0 -0
  161. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/includes/macros.html +0 -0
  162. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/index.html +0 -0
  163. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/layout.html +0 -0
  164. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/loaders.html +0 -0
  165. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/previous.html +0 -0
  166. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs/tags.html +0 -0
  167. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/docs.json +0 -0
  168. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/index.html +0 -0
  169. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/index.json +0 -0
  170. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/js/lib/rainbow.min.js +0 -0
  171. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/js/master.js +0 -0
  172. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/layouts/html5.html +0 -0
  173. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/layouts/master.html +0 -0
  174. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/button.less +0 -0
  175. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/fork.less +0 -0
  176. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/header.less +0 -0
  177. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/layout.less +0 -0
  178. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/mixins.less +0 -0
  179. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/rainbow.less +0 -0
  180. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/reset.less +0 -0
  181. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/sidenav.less +0 -0
  182. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/swig.less +0 -0
  183. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/docs/less/variables.less +0 -0
  184. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/index.js +0 -0
  185. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/dateformatter.js +0 -0
  186. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/filters.js +0 -0
  187. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/lexer.js +0 -0
  188. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/loaders/filesystem.js +0 -0
  189. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/loaders/index.js +0 -0
  190. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/loaders/memory.js +0 -0
  191. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/parser.js +0 -0
  192. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/swig.js +0 -0
  193. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/autoescape.js +0 -0
  194. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/block.js +0 -0
  195. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/else.js +0 -0
  196. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/elseif.js +0 -0
  197. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/extends.js +0 -0
  198. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/filter.js +0 -0
  199. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/for.js +0 -0
  200. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/if.js +0 -0
  201. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/import.js +0 -0
  202. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/include.js +0 -0
  203. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/index.js +0 -0
  204. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/macro.js +0 -0
  205. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/parent.js +0 -0
  206. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/raw.js +0 -0
  207. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/set.js +0 -0
  208. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/tags/spaceless.js +0 -0
  209. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/lib/utils.js +0 -0
  210. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/package.json +0 -0
  211. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/scripts/config-lint.js +0 -0
  212. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/scripts/githooks/post-merge +0 -0
  213. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/scripts/githooks/pre-commit +0 -0
  214. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/basic.test.js +0 -0
  215. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/bin.filters.js +0 -0
  216. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/bin.locals.js +0 -0
  217. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/bin.locals.json +0 -0
  218. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/bin.tags.js +0 -0
  219. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/bin.test.js +0 -0
  220. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/custom_filter.bin.html +0 -0
  221. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/custom_tag.bin.html +0 -0
  222. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/custom_tagControls.bin.html +0 -0
  223. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/custom_varControls.bin.html +0 -0
  224. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/bin/options.js +0 -0
  225. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_1.expectation.html +0 -0
  226. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_1.test.html +0 -0
  227. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_2.expectation.html +0 -0
  228. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_2.test.html +0 -0
  229. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_base.html +0 -0
  230. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_layouts/extends_4.base.html +0 -0
  231. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_layouts/extends_4.middle.html +0 -0
  232. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_layouts/extends_bare.html +0 -0
  233. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_layouts/extends_base.html +0 -0
  234. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_layouts/extends_include.html +0 -0
  235. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_layouts/extends_real_base.html +0 -0
  236. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_set.expectation.html +0 -0
  237. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_set.test.html +0 -0
  238. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_tests/extends_3.expectation.html +0 -0
  239. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_tests/extends_3.test.html +0 -0
  240. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_tests/extends_4.expectation.html +0 -0
  241. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/extends_tests/extends_4.test.html +0 -0
  242. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/import.expectation.html +0 -0
  243. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/import.test.html +0 -0
  244. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/include.expectation.html +0 -0
  245. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/include.test.html +0 -0
  246. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/include_bar.html +0 -0
  247. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/include_extends.expectation.html +0 -0
  248. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/include_extends.test.html +0 -0
  249. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/includes.html +0 -0
  250. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/macros.expectation.html +0 -0
  251. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/macros.html +0 -0
  252. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/macros.test.html +0 -0
  253. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/nested_blocks.expectation.html +0 -0
  254. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/nested_blocks.test.html +0 -0
  255. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/nested_blocks_parent.html +0 -0
  256. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/parent-parent.expectation.html +0 -0
  257. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/parent-parent.test.html +0 -0
  258. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/parent.expectation.html +0 -0
  259. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/parent.test.html +0 -0
  260. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/set.expectation.html +0 -0
  261. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases/set.test.html +0 -0
  262. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases-error/circular.test.html +0 -0
  263. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases-error/circular_parent.html +0 -0
  264. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases-error/extends-non-existent.test.html +0 -0
  265. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases-error/report-filename-partial.html +0 -0
  266. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/cases-error/report-filename.test.html +0 -0
  267. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/comments.test.js +0 -0
  268. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/filters.test.js +0 -0
  269. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/loaders.test.js +0 -0
  270. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/regressions.test.js +0 -0
  271. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/autoescape.test.js +0 -0
  272. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/else.test.js +0 -0
  273. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/extend.test.js +0 -0
  274. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/filter.test.js +0 -0
  275. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/for.test.js +0 -0
  276. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/if.test.js +0 -0
  277. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/import.test.js +0 -0
  278. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/include.test.js +0 -0
  279. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/macro.test.js +0 -0
  280. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/parent.test.js +0 -0
  281. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/raw.test.js +0 -0
  282. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/set.test.js +0 -0
  283. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags/spaceless.test.js +0 -0
  284. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/tags.test.js +0 -0
  285. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/templates.test.js +0 -0
  286. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/variables.test.js +0 -0
  287. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-1.4.2/tests/whitespace.test.js +0 -0
  288. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-client/swig-2.0.0.min.js +0 -0
  289. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/deps/swig-client/swig.js +0 -0
  290. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/dev/index.js +0 -0
  291. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/dev/lib/class.js +0 -0
  292. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/dev/lib/factory.js +0 -0
  293. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/dev/lib/tools.js +0 -0
  294. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/locales/README.md +0 -0
  295. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/locales/currency.json +0 -0
  296. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/locales/dist/language/en.json +0 -0
  297. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/locales/dist/language/fr.json +0 -0
  298. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/locales/dist/region/en.json +0 -0
  299. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/locales/dist/region/fr.json +0 -0
  300. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/locales/index.js +0 -0
  301. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/mime.types +0 -0
  302. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/model/index.js +0 -0
  303. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/model/template/entityFactory.js +0 -0
  304. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/model/template/index.js +0 -0
  305. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/README.md +0 -0
  306. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/index.js +0 -0
  307. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/file/README.md +0 -0
  308. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/file/build.json +0 -0
  309. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/file/package.json +0 -0
  310. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/intl/README.md +0 -0
  311. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/intl/build.json +0 -0
  312. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/intl/package.json +0 -0
  313. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/intl/src/main.js +0 -0
  314. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/storage/README.md +0 -0
  315. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/storage/build.json +0 -0
  316. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/storage/package.json +0 -0
  317. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/validator/README.md +0 -0
  318. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/validator/build.json +0 -0
  319. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/validator/package.json +0 -0
  320. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/plugins/lib/validator/src/form-validator.js +0 -0
  321. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/_gitignore +0 -0
  322. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/config/app.json +0 -0
  323. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/config/connectors.json +0 -0
  324. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/config/routing.json +0 -0
  325. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/config/settings.json +0 -0
  326. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/config/templates.json +0 -0
  327. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/config/watchers.json +0 -0
  328. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/controllers/controller.content.js +0 -0
  329. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/controllers/controller.js +0 -0
  330. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/controllers/setup.js +0 -0
  331. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle/index.js +0 -0
  332. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_namespace/controllers/controller.js +0 -0
  333. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_public/css/default.css +0 -0
  334. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_public/css/home.css +0 -0
  335. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_public/css/vendor/readme.md +0 -0
  336. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_public/favicon.ico +0 -0
  337. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_public/js/vendor/readme.md +0 -0
  338. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_public/readme.md +0 -0
  339. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_templates/handlers/main.js +0 -0
  340. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_templates/html/content/homepage.html +0 -0
  341. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_templates/html/includes/error-msg-noscript.html +0 -0
  342. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_templates/html/includes/error-msg-outdated-browser.html +0 -0
  343. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/boilerplate/bundle_templates/html/layouts/main.html +0 -0
  344. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/command/gina.bat.tpl +0 -0
  345. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/command/gina.tpl +0 -0
  346. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/conf/package.json +0 -0
  347. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/conf/statics.json +0 -0
  348. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/conf/templates.json +0 -0
  349. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/error/client/json/401.json +0 -0
  350. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/error/client/json/403.json +0 -0
  351. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/error/client/json/404.json +0 -0
  352. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/error/server/html/50x.html +0 -0
  353. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/error/server/json/500.json +0 -0
  354. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/error/server/json/503.json +0 -0
  355. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/core/template/extensions/logger/config.json +0 -0
  356. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/console.js +0 -0
  357. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/data/LICENSE +0 -0
  358. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/data/README.md +0 -0
  359. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/data/package.json +0 -0
  360. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/data/src/main.js +0 -0
  361. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/dateFormat.js +0 -0
  362. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/index.js +0 -0
  363. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/json/LICENSE +0 -0
  364. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/json/README.md +0 -0
  365. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/json/package.json +0 -0
  366. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/json/src/main.js +0 -0
  367. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/plugins/README.md +0 -0
  368. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/plugins/package.json +0 -0
  369. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/plugins/src/api-error.js +0 -0
  370. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/plugins/src/main.js +0 -0
  371. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/task.js +0 -0
  372. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/helpers/text.js +0 -0
  373. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/archiver/README.md +0 -0
  374. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/archiver/build.json +0 -0
  375. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/archiver/package.json +0 -0
  376. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/archiver/src/dep/jszip.min.js +0 -0
  377. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/archiver/src/main.js +0 -0
  378. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cache/README.md +0 -0
  379. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cache/build.json +0 -0
  380. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cache/package.json +0 -0
  381. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/aliases.json +0 -0
  382. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/build.js +0 -0
  383. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/copy.js +0 -0
  384. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/cp.js +0 -0
  385. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/help.js +0 -0
  386. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/list.js +0 -0
  387. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/remove.js +0 -0
  388. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/rename.js +0 -0
  389. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/restart.js +0 -0
  390. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/rm.js +0 -0
  391. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/status.js +0 -0
  392. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/bundle/stop.js +0 -0
  393. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/cache/stats.js +0 -0
  394. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/add.js +0 -0
  395. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/get.js +0 -0
  396. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/help.js +0 -0
  397. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/link-dev.js +0 -0
  398. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/list.js +0 -0
  399. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/remove.js +0 -0
  400. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/rm.js +0 -0
  401. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/set.js +0 -0
  402. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/unset.js +0 -0
  403. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/env/use.js +0 -0
  404. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/arguments.json +0 -0
  405. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/build.js +0 -0
  406. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/dot.js +0 -0
  407. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/get.js +0 -0
  408. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/help.js +0 -0
  409. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/help.txt +0 -0
  410. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/init.js +0 -0
  411. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/link-node-modules.js +0 -0
  412. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/link.js +0 -0
  413. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/msg.json +0 -0
  414. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/open.js +0 -0
  415. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/restart.js +0 -0
  416. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/set.js +0 -0
  417. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/start.js +0 -0
  418. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/status.js +0 -0
  419. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/stop.js +0 -0
  420. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/tail.js +0 -0
  421. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/update.js +0 -0
  422. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/framework/version.js +0 -0
  423. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/gina-dev.1.md +0 -0
  424. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/gina-framework.1.md +0 -0
  425. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/index.js +0 -0
  426. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/minion/help.js +0 -0
  427. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/minion/help.txt +0 -0
  428. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/msg.json +0 -0
  429. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/port/help.js +0 -0
  430. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/port/list.js +0 -0
  431. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/port/reset.js +0 -0
  432. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/port/set.js +0 -0
  433. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/add.js +0 -0
  434. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/arguments.json +0 -0
  435. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/build.js +0 -0
  436. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/help.js +0 -0
  437. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/import.js +0 -0
  438. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/list.js +0 -0
  439. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/move.js +0 -0
  440. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/remove.js +0 -0
  441. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/rename.js +0 -0
  442. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/rm.js +0 -0
  443. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/project/status.js +0 -0
  444. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/protocol/help.js +0 -0
  445. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/protocol/list.js +0 -0
  446. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/protocol/set.js +0 -0
  447. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/add.js +0 -0
  448. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/help.js +0 -0
  449. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/link-local.js +0 -0
  450. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/link-production.js +0 -0
  451. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/list.js +0 -0
  452. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/remove.js +0 -0
  453. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/rm.js +0 -0
  454. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/scope/use.js +0 -0
  455. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cmd/view/add.js +0 -0
  456. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/collection/README.md +0 -0
  457. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/collection/build.json +0 -0
  458. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/collection/package.json +0 -0
  459. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/config.js +0 -0
  460. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cron/README.md +0 -0
  461. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cron/package.json +0 -0
  462. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/cron/src/main.js +0 -0
  463. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/LICENSE +0 -0
  464. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/README.md +0 -0
  465. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/dist/2025-03-14_13-41-20_UTC.dat +0 -0
  466. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/dist/public_suffix_list.dat +0 -0
  467. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/dist/public_suffix_list.dat.br +0 -0
  468. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/dist/public_suffix_list.dat.gz +0 -0
  469. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/package.json +0 -0
  470. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/domain/src/main.js +0 -0
  471. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/generator/index.js +0 -0
  472. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/inherits/LICENSE +0 -0
  473. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/inherits/README.md +0 -0
  474. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/inherits/package.json +0 -0
  475. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/inherits/src/main.js +0 -0
  476. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/README.md +0 -0
  477. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/package.json +0 -0
  478. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/containers/default/index.js +0 -0
  479. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/containers/file/index.js +0 -0
  480. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/containers/file/lib/logrotator/README.md +0 -0
  481. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/containers/file/lib/logrotator/index.js +0 -0
  482. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/containers/mq/index.js +0 -0
  483. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/containers/mq/listener.js +0 -0
  484. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/containers/mq/speaker.js +0 -0
  485. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/helper.js +0 -0
  486. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/logger/src/main.js +0 -0
  487. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/math/index.js +0 -0
  488. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/merge/README.md +0 -0
  489. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/merge/package.json +0 -0
  490. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/merge/src/main.js +0 -0
  491. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/model.js +0 -0
  492. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/routing/README.md +0 -0
  493. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/routing/build.json +0 -0
  494. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/routing/package.json +0 -0
  495. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/session-store.js +0 -0
  496. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/shell.js +0 -0
  497. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/state.js +0 -0
  498. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/swig-filters/README.md +0 -0
  499. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/swig-filters/package.json +0 -0
  500. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/url/README.md +0 -0
  501. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/url/index.js +0 -0
  502. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/url/routing.json +0 -0
  503. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/validator.js +0 -0
  504. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/watcher/package.json +0 -0
  505. /package/framework/{v0.2.1-alpha.1 → v0.3.0}/lib/watcher/src/main.js +0 -0
package/CHANGELOG.md CHANGED
@@ -6,6 +6,80 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
6
6
  and is generated by [Changie](https://github.com/miniscruff/changie).
7
7
 
8
8
 
9
+ ## 0.3.0 - 2026-04-06
10
+ ### Added
11
+ * HTTP/2 client resilience: retry with backoff (up to 2 retries with 500ms delay), pre-flight PING validation on cached sessions, and session freshness tracking via _lastPongAt. Protects against OrbStack silent TCP drops and stale HTTP/2 sessions.
12
+ * Inspector UX: drag-to-select log rows, copy badge fade-out, left accent selection styling, logo watermark on content panes, window geometry and env panel height persistence
13
+ * Inspector View tab performance anomaly alerts: pulsing dot indicator on tab label, badge border override, and tooltip for metrics exceeding thresholds (load time, transfer size, FCP, query duration, query count)
14
+ * Inspector Query tab: index badges per query card showing which database indexes are used (green for secondary, amber for primary scan, red for no index, grey N/A for unsupported connectors)
15
+ * Inspector Query tab: per-card result size color-coding using the same weight thresholds as the total badge
16
+ * Inspector Query tab: search input debounce (200ms), filter persistence in localStorage, and pagination (20 cards default with Show all button)
17
+ * Couchbase connector: extractIndexes() helper and profile timings query option in dev mode for index reporting in the Inspector
18
+ * Inspector: manual connect form on the 'No source' overlay — type a bundle URL to connect without editing the address bar
19
+ * Inspector: tab layout presets (Balanced / Backend / Frontend / Custom) in settings panel — reorder tabs for different developer audiences, or drag to create a custom order
20
+ * Docker Compose starter: `docker compose up` in gina-starter sets up a Gina app container + Couchbase Community 7.6.4 with pre-seeded cluster, bucket, application user, and sample documents — zero local install required
21
+ ### Changed
22
+ * Renamed legacy Inspector parameter and marker names across the render pipeline: `displayToolbar` → `displayInspector` (server.js, controller.js, render-swig.js, render-v1.js), `{# Gina Toolbar #}` → `{# Gina Inspector #}` comment markers and guard regexes, "Beemaster" → "Inspector" in server.isaac.js and scan.js comments. `render-v1.js` now includes `statusbar.html` instead of `toolbar.html`, completing the migration of all render paths to the modern Inspector statusbar.
23
+ ### Fixed
24
+ * Fixed error page displaying `[object Object]` when upstream returned an error object instead of a string — render-swig now normalises error and message fields to strings before building the error response (#Q2)
25
+ * Couchbase session store v3/v4: touch() and destroy() passed MutationResult as error to express-session callback, causing defer(next, MutationResult) and a 500 response with the Couchbase CAS token as body on every authenticated read-only request (#CB-BUG-4)
26
+ * Static file server now sends ETag and Last-Modified headers in production, enabling conditional GET (304 Not Modified) responses for all static types on both HTTP/1.x and HTTP/2 paths
27
+ * Fixed method-based routing on shared URLs — the router now continues scanning after a URL match with a wrong method instead of immediately throwing 405. GET /notes and POST /notes can coexist as separate routing rules; a 405 is only emitted after the full scan finds no method match.
28
+ * Fixed crash in fitsWithRequirements when a URL param route has no requirements block — router now accepts any non-empty segment value and correctly binds it to req.params / req[method] instead of throwing TypeError.
29
+ * Fixed throwError(res, code, stringMsg) silently overriding an explicit 3-digit HTTP status code with res.status || 500 — throwError(res, 404, "Not found") now correctly sends 404 instead of 500.
30
+ * Removed dead buffer consumption code from entity.js Option B path (_arguments[trigger] was unreachable for both connector-generated and custom entity methods). Added defensive unconditional clear at Option B entry point to prevent stale buffer leakage across calls (#M5).
31
+ * Inspector Query tab: durationClass variable shadowing in renderQueryContent
32
+
33
+ ## 0.3.0-alpha.1 - 2026-04-02
34
+ ### Added
35
+ * `project:start` / `project:stop` / `project:restart` — start, stop, or restart all bundles in a project with one command. Delegates to `bundle:start/stop/restart @<project>` (bulk mode). Flags forwarded.
36
+ * Inspector Phase 2 — Inspector dev SPA embedded at `/_gina/inspector/` (engine-agnostic — works with both Isaac and Express). See CHANGELOG.md for the complete breakdown.
37
+ * Thin in-page status bar — `statusbar.html` (new file in `dist/vendor/gina/html/`) is included instead of `toolbar.html`. A 36-line vanilla JS IIFE creates a Shadow DOM host (`#__gina-statusbar`) fixed at bottom-right: status dot (green = ok, red = `data.error` set), `bundle@env` label, and an "Inspector" link to `/_gina/inspector/`. No RequireJS, no jQuery, no SASS. Shadow DOM isolates styles from the app. `gina.js` toolbar module silently skips init when `#gina-toolbar` is absent (`!$toolbar.length` guard at line 17752).
38
+ * Gina infrastructure port range 4100–4199 — reserved exclusively for Gina infrastructure; never assigned to bundle HTTP servers by `gina port:scan` (range skipped automatically). Layout: `4100` = socket server (future migration from 8124), `4101` = reserved, `4102` = engine.io internal transport, `4103–4199` = reserved for future Gina infrastructure. `settings.json` `engine.io.port` corrected from `8888` (conflicts with Jupyter Notebook) to `4102`. Port range documented in `framework/v0.3.0-alpha.1/lib/cmd/port/help.txt`.
39
+ * `window.__ginaData` — replaces the two `<pre id="gina-toolbar-*-json">` DOM nodes with a single `<script>window.__ginaData = { gina: {...}, user: {...} };</script>` tag injected before `</body>` in dev mode. Data is built in Node.js (`controller.render-swig.js`) with the same field masking as before (`view.assets = {}`, `view.scripts/stylesheets = "ignored-by-toolbar"`); `</script>` and `<!--` sequences are escaped before serialization. Toolbar JS (`gina.js` dist + `main.js` src) updated to read from `window.__ginaData` directly instead of scraping DOM text nodes; mock file-upload writes back to `window.__ginaData.user`/`.gina`. The Inspector will access this object via `window.opener` or `postMessage` when it opens as a separate tab. No change to the data structure or toolbar panel rendering logic.
40
+ * PATCH method support — `req.patch` is now populated with the parsed request body (JSON or form-encoded). Body parsing mirrors POST. `req.body` aliases `req.patch` for method-agnostic actions. URI params are merged into `req.patch` the same way as PUT. Use PATCH for partial updates (only the sent fields change); use PUT for full resource replacement. `case 'patch':` added to `getParams()` and `getParam()` in `controller.js`. `"method": "PATCH"` is now valid in `routing.json`.
41
+ * HEAD method support — `req.head` is populated with query-string and URI params (same semantics as GET). The framework runs the full controller action so all response headers are set correctly, then suppresses the body before writing to the wire. Both `render()` (Swig) and `renderJSON()` honour HEAD. Routes declared as `GET` automatically accept HEAD requests — no separate routing rule needed. Useful for cache validation, existence checks, and CDN probing without downloading a response body.
42
+ * Async controller actions — controller actions can be declared `async`. The router captures the return value of `controller[action]()` at both dispatch sites (with and without middleware) and attaches `.catch()` if the value is thenable. Rejections are routed to `throwError(response, 500, err.stack || err.message || String(err))`. Existing sync actions are unaffected.
43
+ * `onCompleteCall(emitter)` global helper — wraps any EventEmitter that exposes `.onComplete(cb)` into a native Promise. Enables `await onCompleteCall(_(path).mkdir())` and similar patterns for PathObject file operations (`mkdir`, `cp`, `mv`, `rm`) and `Shell` commands from async controller actions.
44
+ * Fixed empty `unhandledRejection` handler in `gna.js` — now logs `[ FRAMEWORK ] Unhandled promise rejection:` with the full stack so stray rejections are visible in framework logs instead of being silently swallowed.
45
+ * 13 new unit tests covering the async dispatch guard source structure and pure `dispatchAction` logic (test/core/router.test.js suites 06–07).
46
+ * `renderStream(asyncIterable, contentType)` on SuperController — streams any `AsyncIterable` as a chunked HTTP response without buffering. `contentType` defaults to `text/event-stream` (SSE); each yielded string/Buffer becomes `data: {chunk}\n\n`. For other content types, chunks are written raw. HTTP/2: `stream.respond()` + `stream.write()` + `stream.end()`. HTTP/1.1: automatic chunked transfer-encoding via `response.write()`. `x-accel-buffering: no` set automatically for SSE. Upstream response headers (CORS etc.) merged into the initial headers frame. Required for LLM token streaming with `ai.client` + `stream: true`. 32 unit tests (test/core/render-stream.test.js).
47
+ * Route radix trie (#R1) — `lib/routing/src/radix.js` builds a segment-level radix trie from `routing.json` once at startup. `Routing.buildTrie(routing, bundle)` is called in `onRoutesLoaded()`; `Routing.lookupTrie(pathname, bundle)` returns candidate route names in O(m) time (m = path segment count). On a cache miss, `handle()` builds a `Set` from the trie candidates and uses `Set.has()` to skip non-matching routes in the `for…in` loop — turning the worst-case O(n×m) scan into O(m) candidate selection + O(k×m) validation (k = candidates). Falls back transparently to the full scan when the trie is unavailable. Internal change — no user-facing API change. 46 unit tests (test/lib/radix.test.js).
48
+ * HTTP/2 configurable settings (#H3) — `maxConcurrentStreams` and `initialWindowSize` are now read from `settings.json` `http2Options` instead of being hardcoded. Defaults: `maxConcurrentStreams: 256`, `initialWindowSize: 655350` (10× TCP default). Security-critical settings (`maxHeaderListSize: 65536`, `enablePush: false`, `maxSessionRejectedStreams: 100`, `maxSessionInvalidFrames: 1000`) remain hardcoded and are not user-overridable. 16 unit tests in test/core/server.isaac.test.js (suites 03–03b).
49
+ * HTTP/2 session metrics (#H3) — `server._h2Metrics` counter object (`activeSessions`, `totalStreams`, `goawayCount`, `rstCount`) is instrumented via `server.on('session', …)` event handlers and exposed under the `"http2"` key in the `/_gina/info` JSON response. 18 unit tests in test/core/server.isaac.test.js (suites 04–04b).
50
+ * Security & CVE compliance docs page — `docs/security.md` lists all known HTTP/2 CVEs addressed by Gina: CVE-2023-44487 (Rapid Reset), CVE-2024-27316 / CVE-2024-27983 (CONTINUATION flood), CVE-2019-9514 (RST flood), HPACK bomb, and server push abuse. Each section includes attack description, Gina mitigation code snippet, and the Node.js version required. Docs only — no code changes.
51
+ * AI connector — declare any LLM provider in `connectors.json` via a named protocol (`anthropic://`, `openai://`, `deepseek://`, `qwen://`, `groq://`, `mistral://`, `gemini://`, `xai://`, `perplexity://`, `ollama://`). All OpenAI-compatible providers share the `openai` npm package; `baseURL` overrides let any endpoint work including Ollama (MiMo, Llama, Phi…) and self-hosted vLLM. Unified `.infer(messages, options)` normaliser returns `{ content, model, usage, raw }` across providers; raw SDK client exposed on `.client` for streaming and function-calling. No tokens spent at startup. 70 unit tests (test/core/ai-connector.test.js).
52
+ * `peerDependencies` for AI SDK clients — `openai` (>=4.0.0) and `@anthropic-ai/sdk` (>=0.27.0) added as optional peer dependencies alongside the existing database connector peers (`ioredis`, `mysql2`, `pg`, `mongodb`, `@scylladb/scylla-driver`, `couchbase`). npm/yarn will surface a compatibility warning when a user pins an untested client version. All clients remain loaded from the project's `node_modules` — zero framework runtime dependency.
53
+ * MySQL ORM connector — entity wiring + SQL method generation from `sql/` files, `?` positional placeholders, `mysql2` pool (loaded from project `node_modules` — zero framework dependency), native Promise + `.onComplete()` shim, `@param`/`@return` annotation support. Install `mysql2` in your project to activate. 68 unit tests (test/core/mysql-connector.test.js).
54
+ * PostgreSQL ORM connector — same entity/SQL architecture as MySQL; uses `$1`, `$2`, … placeholders, `pg.Pool` with idle-client error guard, `pool.query()` execution. Install `pg` in your project to activate. 72 unit tests (test/core/postgresql-connector.test.js).
55
+ * Per-bundle framework version pinning — declare `"gina_version": "<version>"` on any bundle entry in `manifest.json` to run that bundle under a specific installed gina version. The socket server keeps running its own version; only the spawned bundle process uses the declared version. Validated against the tracked version registry in `~/.gina/main.json` before start.
56
+ * `--gina-version=<version>` flag for `bundle:start` — CLI override that takes priority over `manifest.json`. Passes the version down to the spawned process via an isolated context clone so concurrent bundle starts do not interfere.
57
+ * `bundle:add` now writes `"gina_version"` to the new bundle entry in `manifest.json` — records the current framework version at scaffold time so the pin is explicit from day one.
58
+ * 33 new unit tests covering the resolution logic, validation, context isolation, and source structure (test/lib/bundle-gina-version.test.js).
59
+ * Auto-sync `def_framework` in `~/.gina/main.json` on `bundle|project start|restart` (`bin/cli`) and on `gina-container` startup — keeps the active framework version aligned with `package.json` automatically after a version bump or worktree branch switch, with no manual `main.json` edit required.
60
+ * Added `def_framework` sync in `post_install.js` — `main.json` is updated at install time so the CLI, cmd handlers, and `framework:init` all agree on the active version immediately after install.
61
+ * New unit tests for `def_framework` sync logic in `test/bin/cli.test.js` (9 tests) and `test/bin/gina-container.test.js` section 05 (10 tests).
62
+ * Hot-reload (#M6) — in dev mode `WatcherService` now starts automatically and registers watchers for `controller.js`, `controller.render-swig.js`, and the bundle's `controllers/` directory. `require.cache` is evicted only when a watched file has actually changed, eliminating per-request eviction overhead. Falls back transparently to per-request eviction when the watcher is not available (production, non-dev env). 15 new unit tests covering source-structure guards and pure dirty-flag logic (test/core/router.test.js suites 08–09).
63
+ * GOAWAY logging (#H5) ��� `client.on('goaway')` handler in `controller.js` now logs `errorCode`, `lastStreamID`, and session key via `console.warn`. Distinguishes clean server restarts (errorCode 0) from protocol errors. 2 tests in `http2-client.test.js` section 09.
64
+ * HTTP/2 session-level guards now configurable (#H7) — `maxSessionRejectedStreams` and `maxSessionInvalidFrames` are now read from `settings.json` `http2Options` (defaults 100 and 1000). Previously hardcoded. Bundle boilerplate `settings.server.json` documents all four `http2Options` keys. 4 new tests in `server.isaac.test.js`.
65
+ * `onCompleteCall` formalized as `lib/async` module (#M4) — the Promise adapter previously lived only as an implicit global in `helpers/path.js`. Now a proper library at `lib/async/src/main.js`, registered in `lib/index.js` as `lib.async`. Input validation throws `TypeError` for missing/invalid emitters. Global injection delegates to the lib module. 16 tests in `test/lib/async.test.js`.
66
+ ### Fixed
67
+ * Fixed method-based routing on shared URLs — the router now continues scanning after a URL match with a wrong method instead of immediately throwing 405. GET `/notes` and POST `/notes` can coexist as separate routing rules; a 405 is only emitted after the full scan finds no method match. (`core/server.js`)
68
+ * Fixed crash in `fitsWithRequirements` when a URL param route has no `requirements` block — router now accepts any non-empty segment value and correctly binds it to `req.params` / `req[method]` instead of throwing `TypeError`. (`lib/routing/src/main.js`)
69
+ * Fixed `throwError(res, code, stringMsg)` silently overriding an explicit 3-digit HTTP status code with `res.status || 500` — `throwError(res, 404, 'Not found')` now correctly sends 404 instead of 500. (`core/controller/controller.js`)
70
+ * Fixed port scanner `opt.end` hardcoded window — `scan.js` previously used a fixed `start + 899` ceiling regardless of `limit`, so a `port:reset` scan requesting many ports could exhaust the window before finding them all. Window is now `Math.min(start + Math.max(899, limit + 99), maxEnd)`, giving at least 899 ports of headroom for small limits and scaling proportionally for large ones (e.g. `protocol:set` passes `protocols × schemes × envs × bundles`). Unit tests added in `test/unit/port-scan.test.js`.
71
+ * Fixed `query()` forwarding errors directly to `throwError()` on non-2xx upstream responses — the callback now receives the error object so controllers can implement graceful degradation instead of always surfacing a hard error. (#Q1)
72
+ * Fixed `throwError()` logging empty for plain-object errors from `query()` — `err.stack || err.message` was undefined; now serializes `errorObject.error` and captures the callsite stack when no stack is present. (#Q1)
73
+ * Fixed `controller.render-swig.js` error field priority — `statusCodes[status]` was evaluated first, burying the actual upstream error reason; `data.page.data.error` and `data.page.data.message` now take priority, `statusCodes[status]` is the fallback. Added `console.error` log before `throwError` so the upstream reason appears in bundle logs. (#Q1)
74
+ * Fixed `whisper()` error log showing `{key}` instead of `${key}` for missing dictionary keys.
75
+ * Fixed `bundle:start` (socket-server path) not initialising `ctx.envVars` — `gna.js defineDefault()` could not create GINA_* globals when the key was absent.
76
+ * Fixed `env.json` placeholder substitution — `${bundlesPath}`, `${homedir}`, `${cachePath}`, `${projectName}`, `${projectVersion}`, `${projectVersionMajor}` were missing from the `reps` dict in `CmdHelper`; whisper left them unresolved.
77
+ * Fixed `package.json` `"main"` field still pointing to `framework/v0.2.1-alpha.3/core/gna` after version bump — now `framework/v0.3.0-alpha.1/core/gna`.
78
+ * Fixed error page displaying `[object Object]` when upstream returned an error object instead of a string — `render-swig` now normalises `error` and `message` fields to strings before building the error response. (#Q2)
79
+
80
+ ## 0.2.1-alpha.3 - 2026-03-29
81
+ Internal version bump — no user-facing changes. Repository URLs updated from Rhinostone to gina-io.
82
+
9
83
  ## 0.2.0 - 2026-03-29
10
84
  ### Added
11
85
  * NODE_COMPILE_CACHE (#P1): set at startup in gna.js to ~/.gina/cache/v8 — Node.js >= 22.8 caches V8 bytecode to disk, reducing cold-start time by 30–60% on subsequent runs. No-op on older Node versions.
package/CONTRIBUTING.md CHANGED
@@ -11,6 +11,7 @@ Gina follows a BDFL governance model — see [GOVERNANCE.md](./GOVERNANCE.md) fo
11
11
  - [Running the tests](#running-the-tests)
12
12
  - [Development environment](#development-environment)
13
13
  - [Debugging](#debugging)
14
+ - [Coding conventions](#coding-conventions)
14
15
  - [Branch model](#branch-model)
15
16
  - [Commit style](#commit-style)
16
17
  - [Changelog](#changelog)
@@ -47,7 +48,7 @@ The default is `/usr/local` (system) or `~/.npm-global` (user). The target direc
47
48
 
48
49
  ```bash
49
50
  cd $(npm config get prefix)/lib/node_modules
50
- git clone https://github.com/Rhinostone/gina.git gina
51
+ git clone https://github.com/gina-io/gina.git gina
51
52
  cd gina && git checkout develop
52
53
  ```
53
54
 
@@ -124,6 +125,14 @@ gina bundle:restart <bundle_name> @<project_name> --inspect=<port_number>
124
125
 
125
126
  ---
126
127
 
128
+ ## Coding conventions
129
+
130
+ All coding conventions — variable declarations, function style, constructor patterns, error handling, async patterns, naming, JSDoc, EventEmitter usage, path handling, logging, and test conventions — are documented in [CONVENTIONS.md](./CONVENTIONS.md).
131
+
132
+ Please read it before submitting your first pull request.
133
+
134
+ ---
135
+
127
136
  ## Branch model
128
137
 
129
138
  | Branch | Purpose |
@@ -176,7 +185,7 @@ Before opening a PR against `develop`:
176
185
 
177
186
  ## Reporting bugs
178
187
 
179
- Open a [GitHub issue](https://github.com/Rhinostone/gina/issues) and include:
188
+ Open a [GitHub issue](https://github.com/gina-io/gina/issues) and include:
180
189
 
181
190
  - Node.js version (`node --version`)
182
191
  - Gina version (`gina --version`)