Skip to content

Releases: kadojs/kado

v4.3.0

12 Mar 20:05
Compare
Choose a tag to compare
  • Fix bug in Format.cookie() !277
  • Use +00:00 for SQL timezone !288
  • Raise cluster default timeouts !284
  • Fix URI Decoding !283
  • Parameters are now sent through JSON first !282
  • Improved query string handling !274
  • Add BigInteger library !271
  • Add PromiseMore library !264
  • Add LogRelay via UDP !261
  • Add logging support !253
  • Continuously build Kado against Node 10, 12, 14 !289
  • Fix static file handling with query args !275
  • Add Cookie Builder !276
  • Add HTTP request logger !256
  • Add Mutlipart processing !244
  • Add foreign key support to schema !222
  • Various other improvements and fixes see %v4.3.0

3.10.3

08 Dec 18:25
Compare
Choose a tag to compare

Released 12/8/2019

  • Update to solve security vulnerabilities
  • bluebird ^3.7.1 → ^3.7.2
  • bootstrap ^4.3.1 → ^4.4.1
  • mysql2 ^2.0.1 → ^2.0.2
  • terser-webpack-plugin ^2.2.1 → ^2.2.2
  • tui-editor ^1.4.8 → ^1.4.9

More information here: https://github.com/KadoOrg/kado/network/alert/package-lock.json/serialize-javascript/open

3.8.2

19 Apr 21:16
Compare
Choose a tag to compare
  • Auto bundling moved to after the interfaces have been started.
  • Dev activation now fully forces Kado dev mode on when using the CLI parameter

3.8.1

19 Apr 05:28
Compare
Choose a tag to compare
  • Fix path selection for bundling in app context.

3.8.0

19 Apr 05:14
Compare
Choose a tag to compare

3.8.0

  • More refined local entry points.
  • Refinement of Webpack integration to solve dependency restrictions and find
    a balance of loading and splitting. The system now creates:
    • main.js - Global elements loaded in the head tag, keep this small.
    • bundle.js - Loaded at the end of the page containing additional deps.
    • deferred.js - Loaded deferred after the bundle, extraneous dep free code.

Routes that need one off scripts will load them deferred, conditional modules
need to be loaded sync and then the enumerating scripts shall be deferred. This
removes the idea of required, extra, module, moduleExtra, local, localExtra and
compresses the build chains. Webpack is compressed into a single config chain
per interface. The bundle system now handles configuring and running Webpack.
Finally, Kado now supports applications overriding the Webpack configuration
in order to make the build chain fully customizable.

3.7.15

19 Apr 00:56
Compare
Choose a tag to compare
  • Adjust Webpack to expose jQuery globally. This is temporary as the build
    chain is refined. There will be a major build system overhaul in 3.8 to address
    the complexity of the build chains and Webpack configuration files.

3.7.14

18 Apr 19:39
Compare
Choose a tag to compare
  • Hot fix: build chain should not use production method unless asked.

3.7.13

18 Apr 19:27
Compare
Choose a tag to compare
  • Automatically sets environment variables using dotenv package, and using
    node app dev will set DEV=kado automatically.
  • When in dev mode Kado will now automatically bundle the local and module
    chains using node app kado bundle -l -m
  • Moves init logging into the debug package under kado*

3.7.12

18 Apr 18:14
Compare
Choose a tag to compare
  • Change bundle system to allow multiple chains at the same time such as
    node app kado bundle -l -s -m which is equivalent of node app kado bundle
  • Latest dependencies.

3.7.11

15 Apr 22:02
Compare
Choose a tag to compare
  • Fix npm complaint about acorn module (for some reason
    acorn-dynamic-import@4.0.0 did not properly pull it as a dep?)
  • Fix npm trying to update babel-loader too far (v8.x.x does not work, but
    apparently satisfies babel-loader@^7.1.5)