Releases: sillsdev/scripture
Releases · sillsdev/scripture
v2.0.4
What's Changed
- Bump js-yaml from 3.14.1 to 3.14.2 by @dependabot[bot] in #38
- Bump lodash from 4.17.21 to 4.17.23 by @dependabot[bot] in #39
- update vulnerable deps by @irahopkinson in #40
- Bump rollup from 4.40.1 to 4.59.0 by @dependabot[bot] in #41
- Bump minimatch from 3.1.2 to 3.1.5 by @dependabot[bot] in #43
- update deps by @irahopkinson in #44
- migrate Jest to Vitest by @irahopkinson in #45
- 2.0.4 by @irahopkinson in #46
Full Changelog: v2.0.3...v2.0.4
v2.0.3
What's Changed
- update some dependencies by @irahopkinson in #26
- update dependencies by @irahopkinson in #27
- Bump vite from 6.2.0 to 6.2.3 by @dependabot[bot] in #28
- update dependencies by @irahopkinson in #29
- Bump vite from 6.2.3 to 6.2.4 by @dependabot[bot] in #30
- Bump vite from 6.2.4 to 6.2.5 by @dependabot[bot] in #31
- Bump vite from 6.2.5 to 6.2.6 by @dependabot[bot] in #32
- update dependencies by @irahopkinson in #34
- Bump vite from 6.3.4 to 6.3.6 by @dependabot[bot] in #35
- Bump vite from 6.3.6 to 6.4.1 by @dependabot[bot] in #36
- use npm provenance (OIDC) by @irahopkinson in #37
Full Changelog: v2.0.2...v2.0.3
v2.0.2
What's Changed
- Bump most dependencies by @irahopkinson in #23
- 2.0.2 by @irahopkinson in #24
Full Changelog: v2.0.1...v2.0.2
v2.0.1
What's Changed
- fix .NET deserialization by @irahopkinson in #19
- 2.0.1 by @irahopkinson in #20
Full Changelog: v2.0.0...v2.0.1
v2.0.0
BREAKING CHANGES
-
The output of
JSON.stringifyon aVerseRefhas changed to be more human readable:- before
const vref = new VerseRef(1, 2, 3, ScrVers.Septuagint); console.log(JSON.stringify(vref)); // '{"versification":{"name":"Septuagint","_type":2},"rtlMark":"","_bookNum":1,"_chapterNum":2,"_verseNum":3}'
- after
const vref = new VerseRef(1, 2, 3, ScrVers.Septuagint); console.log(JSON.stringify(vref)); // '{"book":"GEN","chapterNum":2,"verseNum":3,"versificationStr":"Septuagint"}'
- before
-
Removed deprecated static
parsefunction fromVerseRef:- before
const vref = VerseRef.parse('...');
- after
const vref = new VerseRef('...'); // OR const { verseRef } = VerseRef.tryParse('...');
- before
What's Changed
- Bump vite from 4.5.2 to 4.5.3 by @dependabot in #16
- improve JSON.stringify by @irahopkinson in #17
Full Changelog: v1.4.3...v2.0.0
v1.4.3
v1.4.2
What's Changed
- Bump @babel/traverse from 7.22.5 to 7.23.2 by @dependabot in #11
- Improve VerseRef test coverage by @irahopkinson in #12
Full Changelog: v1.4.1...v1.4.2
v1.4.1
What's Changed
- Bump postcss from 8.4.24 to 8.4.31 by @dependabot in #9
- Improve
VerseRef.internalValid()by @irahopkinson in #10
New Contributors
- @dependabot made their first contribution in #9
Full Changelog: v1.4.0...v1.4.1
v1.4.0
What's Changed
- Add bbbcccvvv support to VerseRef constructor by @pmachapman in #7
- Bump version for release by @irahopkinson in #8
New Contributors
- @pmachapman made their first contribution in #7
Full Changelog: v1.3.0...v1.4.0