Skip to content
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

Prepare for alpha (0.1.0) release #5

Merged
merged 19 commits into from
Jul 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
52c7530
Prefer singular unit names in TS types
justingrant Apr 19, 2021
c4d10b4
Switch tests from Node 15 to Node 16
justingrant Jun 3, 2021
10c0b11
Remove workarounds for V8 bugs now fixed in Node14
justingrant Jun 3, 2021
b21ab31
Consolidate NumberIsInteger and ES.IsInteger in polyfill
ptomato Jun 11, 2021
d904b4b
Editorial: Clarify Infinity handling in PlainYearMonth constructor.
Ms2ger Jun 17, 2021
3e6cd50
Editorial: Clarify Infinity handling in PlainMonthDay constructor.
Ms2ger Jun 17, 2021
1c694dd
Editorial: Clarify Infinity handling in PlainDate constructor.
Ms2ger Jun 21, 2021
494f9ce
Editorial: Clarify Infinity handling in PlainDateTime constructor.
Ms2ger Jun 22, 2021
398a95c
Editorial: Clarify Infinity handling in PlainTime constructor.
Ms2ger Jun 22, 2021
be88a9e
Editorial: Reverse loop in DifferenceISODate for clarity.
Ms2ger Jun 28, 2021
36082aa
Editorial: Avoid dividing by zero in ZonedDateTime#round.
Ms2ger Jun 28, 2021
bf7a738
[polyfill] Handle missing argument to withCalendar methods.
Ms2ger Jun 25, 2021
8ed6a69
Editorial: Clarify AddZonedDateTime with missing options.
Ms2ger Jun 28, 2021
32152be
Editorial: Return absolute value of dayLengthNs from NanosecondsToDays.
Ms2ger Jun 29, 2021
b4165d7
[polyfill] Fix Temporal.now methods not to be constructors.
Ms2ger Jun 30, 2021
134987f
Add dateStyle/timeStyle to Intl helpers
katemihalikova Jun 30, 2021
bd35175
Add dayPeriod to Intl amend helpers
katemihalikova Jul 1, 2021
6486fe7
Fix typo in error message
justingrant Jul 8, 2021
55183c8
Prepare for alpha (0.1.0) release
justingrant Jul 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@ on:
branches:
- main
jobs:
test:
test-node16:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: use node.js v15.x
- name: use node.js v16.x
uses: actions/setup-node@v1
with:
node-version: 15.x
node-version: 16.x
- run: npm ci --no-optional
- run: npm test
test-node14:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: use node.js v14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm ci --no-optional
- run: npm test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules/
dist/
.eslintcache
.vscode/
*.tgz
Loading