-
-
Notifications
You must be signed in to change notification settings - Fork 919
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: datatype.datetime should use static boundaries #343
Conversation
Nice catch and fix! We use |
Oh my god (╯°□°)╯︵ ┻━┻ |
The date module uses either |
This needs to be rebased after #344 is merged. |
1a3e2d1
to
824c251
Compare
Rebased |
824c251
to
6a700ea
Compare
6a700ea
to
4e8f9a7
Compare
Codecov Report
@@ Coverage Diff @@
## main #343 +/- ##
==========================================
- Coverage 99.33% 99.33% -0.01%
==========================================
Files 1923 1923
Lines 176860 176860
Branches 917 915 -2
==========================================
- Hits 175692 175690 -2
- Misses 1112 1114 +2
Partials 56 56
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thats what I mentioned the other day. Cool that you fixed it :)
ee6d496
to
e212e54
Compare
e212e54
to
c653d75
Compare
c653d75
to
e383b38
Compare
e383b38
to
ab59395
Compare
ef583dd
to
5b7abf2
Compare
Fixes #334
new Date().setFullYear(...)
does not return a consistent value, as the actual time is not fixed an thus depends on the execution time + timezone.This PR uses UTC based static values instead.