Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 844 Bytes

ReleaseNotes.md

File metadata and controls

20 lines (13 loc) · 844 Bytes

FoxDates

Release Notes

Version 2021.0

Released 24 April 2021

  1. All functions that accept a date as a parameter now also accept a datetime. This is particularly useful when working with date fields in a cursor created by a SQL Server query.
  • If a date is passed the return value is a date.
  • If a datetime is passed the return value is a datetime.
  • For functions like GetFirstOfMonth() that return the beginning of a period, the time portion of a datetime return value is 00:00:00.
  • For functions like GetLastOfMonth() that return the end of a period, the time portion of a datetime return value is 23:59:59.
  • GetLastMonday() and GetNextMonday() preserve the time portion if a datetime is passed.
  1. Added new function GetLastBOQ().

  2. Added unit tests using datetime parameters.

  3. Added ReleaseNotes.md (this document).