Skip to content

Releases: FoalTS/foal

v4.5.1

14 Sep 18:38
Compare
Choose a tag to compare

Features

Some security vulnerabilities were showing up with npm audit. This version updates Foal's dependencies to get rid of them.

Dependencies

v4.5.0

22 Aug 12:16
Compare
Choose a tag to compare

Features

  • [Internal] Upgrade to lerna v8 (PR: #1259)
  • Deprecate use of CLI globally (PR: #1273)
  • Fix foal connect react and support build output dir (PR: #1274)
  • Make logging more suitable for log monitoring softwares (PR: #1275)
  • Allow to run async tasks and catch and log them appropriately on failure (PR: #1276)
  • Improve GoogleProvider types (PR: #1277)
  • Improve social auth for SPA (PR: #1277)
  • Remove the link to the official site from the index.html of new applications to avoid polluting the traffic analytics of foalts.org (PR: #1278)

Dependencies

v4.4.0

25 Apr 06:44
Compare
Choose a tag to compare

Features

This release updates Foal's sub-dependencies, including the express library, which presents a moderate vulnerability in versions prior to 4.19.2.

Dependencies

Contributions

Thanks to Lucho for reporting this vulnerability in the first place!

v4.3.0

16 Apr 12:05
Compare
Choose a tag to compare

Features / improvements / fixes

  • [Internal] Use fs native API with promises (PR: #1243)
  • [Bug] Fix HTTP logger error when the client request is aborted (issue: #1247) (PRs: #1249, #1252)
  • [CLI] Display all errors when the validation of script arguments fails (PR: #1251)

Dependencies

#1250

v4.2.0

29 Oct 19:41
Compare
Choose a tag to compare

Features

  • [Bug] Fix "foal connect angular" to support latest versions of Angular (issue: #1197) (PR: #1236)
  • Allow to disable AJV strict mode (issue: #1206) (PR: #1239)
  • Possibility to pass cacheControl option to static middleware (issue: #1221) (PR: #1241 )
  • Logs added to socket.io controllers (PR: #1240)

v4.1.0

24 Oct 10:01
Compare
Choose a tag to compare

Features

  • Add request ID (PR: #1234)
  • Add Foal logger (PR: #1234)
  • Support XML requests (issue: #1203) (PR: #1231)

Dependencies

Contributors

@paoloevan

v4.0.0

06 Sep 18:29
Compare
Choose a tag to compare

Overview and goals

#1223

Migration guide

  • Run npx foal upgrade.
  • Version 16 of Node is not supported anymore. Upgrade to version 18 or version 20.
  • Support of MariaDB has been dropped.
  • If you use any of these dependencies, upgrade typeorm to v0.3.17, graphql to v16, type-graphql to v2, class-validator to v0.14, mongodb to v5 and @socket.io/redis-adapter to v8.
  • If you use both TypeORM and MongoDBStore, there is no need anymore to maintain two versions of mongodb. You can use version 5 of mongodb dependency.
  • If you use @foal/socket.io with redis, install socket.io-adapter.
  • Support for better-sqlite driver has been dropped. Use the sqlite3 driver instead. In DB configuration, use type: 'sqlite' instead of type: 'better-sqlite3'.
  • In your project dependencies, upgrade @types/node to v18.11.9.
  • If you use TypeORM with MongoDB, for the entities definitions, rename import { ObjectID } from 'typeorm'; to import { ObjectId } from 'typeorm';

Dependencies

v3.3.0

13 Aug 18:31
Compare
Choose a tag to compare

Features

The jsonwebtoken dependency has been upgraded to v9 to address security issues.

Note that RSA key size now must be 2048 bits or greater. Make sure to check the size of your RSA key before upgrading to this version.

Dependencies

Dev dependencies

  • mocha
  • rimraf
  • typescript
  • supertest
  • concurrently
  • ESLint dependencies
  • nyc

v3.2.0

04 Apr 18:10
Compare
Choose a tag to compare

Features

  • Re-add @foal/password (issue: #1195) (PR: 1196)
  • Add ctx.controllerName and ctx.controllerMethodeName (issue: #1183) (PR: #1199)

Contributors

@lcnvdl

v3.1.0

28 Nov 05:38
Compare
Choose a tag to compare

Features

  • Update the max-age attribute of the Strict-Transport-Security header to "industry standard" (issue: #1146) (PR: #1155)
  • [CLI] Disable ESLint rule @typescript-eslint/no-non-null-assertion in generated projects (PR: #1178)
  • [Bug] Support whitespaces around variable names in .env files (issue: #1182) (PR: #1185)
  • Support custom cookie domain in social auth (issue: #1099) (PR: #1187)
  • [CLI] Add foal upgrade command (issue: #1158) (PR: #1186, #1193)
  • Fix: support custom OpenAPI "example" keyword in AJV validation (issue: #1192) (PR: #1194)

Dependencies

#1162

Dependencies

Contributors