data-restructor 3.4.2 → 3.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/codeql-analysis.yml +4 -4
- package/.github/workflows/continuous-integration.yaml +15 -11
- package/CHANGELOG.md +38 -1
- package/coverage/coverage-summary.json +4 -4
- package/coverage/datarestructor.js.html +135 -135
- package/coverage/describedfield.js.html +45 -45
- package/coverage/index.html +6 -6
- package/coverage/templateResolver.js.html +26 -26
- package/devdist/datarestructor-ie.js +15 -15
- package/devdist/datarestructor.js +6 -6
- package/devdist/describedfield-ie.js +4 -4
- package/devdist/describedfield.js +3 -3
- package/devdist/templateResolver-ie.js +8 -8
- package/devdist/templateResolver.js +4 -4
- package/dist/datarestructor-ie.js +1 -693
- package/dist/datarestructor-ie.js.map +1 -1
- package/dist/datarestructor.js +1 -687
- package/dist/datarestructor.js.map +1 -1
- package/dist/describedfield-ie.js +1 -142
- package/dist/describedfield-ie.js.map +1 -1
- package/dist/describedfield.js +1 -142
- package/dist/describedfield.js.map +1 -1
- package/dist/templateResolver-ie.js +1 -82
- package/dist/templateResolver-ie.js.map +1 -1
- package/dist/templateResolver.js +1 -76
- package/dist/templateResolver.js.map +1 -1
- package/docs/datarestructor.js.html +1 -1
- package/docs/describedfield.js.html +1 -1
- package/docs/index.html +1 -1
- package/docs/module-datarestructor.DescribedEntryCreator.html +1 -1
- package/docs/module-datarestructor.PropertyStructureDescriptionBuilder.html +1 -1
- package/docs/module-datarestructor.Restructor.html +1 -1
- package/docs/module-datarestructor.Transform.html +1 -1
- package/docs/module-datarestructor.html +1 -1
- package/docs/module-described_field.DescribedDataFieldBuilder.html +1 -1
- package/docs/module-described_field.DescribedDataFieldGroup.html +1 -1
- package/docs/module-described_field.html +1 -1
- package/docs/module-template_resolver.Resolver.html +1 -1
- package/docs/module-template_resolver.html +1 -1
- package/docs/templateResolver.js.html +1 -1
- package/eslint.config.js +15 -0
- package/package.json +13 -12
- package/.eslintrc.json +0 -13
|
@@ -39,11 +39,11 @@ jobs:
|
|
|
39
39
|
|
|
40
40
|
steps:
|
|
41
41
|
- name: Checkout repository
|
|
42
|
-
uses: actions/checkout@
|
|
42
|
+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
43
43
|
|
|
44
44
|
# Initializes the CodeQL tools for scanning.
|
|
45
45
|
- name: Initialize CodeQL
|
|
46
|
-
uses: github/codeql-action/init@
|
|
46
|
+
uses: github/codeql-action/init@v3
|
|
47
47
|
with:
|
|
48
48
|
languages: ${{ matrix.language }}
|
|
49
49
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
@@ -54,7 +54,7 @@ jobs:
|
|
|
54
54
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
55
55
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
56
56
|
- name: Autobuild
|
|
57
|
-
uses: github/codeql-action/autobuild@
|
|
57
|
+
uses: github/codeql-action/autobuild@v3
|
|
58
58
|
|
|
59
59
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
60
60
|
# 📚 https://git.io/JvXDl
|
|
@@ -68,4 +68,4 @@ jobs:
|
|
|
68
68
|
# make release
|
|
69
69
|
|
|
70
70
|
- name: Perform CodeQL Analysis
|
|
71
|
-
uses: github/codeql-action/analyze@
|
|
71
|
+
uses: github/codeql-action/analyze@v3
|
|
@@ -23,16 +23,16 @@ jobs:
|
|
|
23
23
|
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts
|
|
24
24
|
CI_COMMIT_AUTHOR: ${{ github.event.repository.name }} Continuous Integration
|
|
25
25
|
steps:
|
|
26
|
-
- uses: actions/checkout@
|
|
26
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
27
27
|
with:
|
|
28
28
|
token: ${{ secrets.WORKFLOW_GIT_ACCESS_TOKEN }}
|
|
29
29
|
- name: Get GIT tags for auto-changelog generation (startingVersion config option)
|
|
30
30
|
run: git fetch --tags origin
|
|
31
31
|
|
|
32
32
|
# Build
|
|
33
|
-
- uses: actions/setup-node@
|
|
33
|
+
- uses: actions/setup-node@v4
|
|
34
34
|
with:
|
|
35
|
-
node-version: '
|
|
35
|
+
node-version: '20'
|
|
36
36
|
- name: Install node packages
|
|
37
37
|
run: npm ci
|
|
38
38
|
- name: Build package (lint, test, build, package, merge)
|
|
@@ -40,35 +40,35 @@ jobs:
|
|
|
40
40
|
|
|
41
41
|
# Archive generated or updated files
|
|
42
42
|
- name: Archive code coverage results
|
|
43
|
-
uses: actions/upload-artifact@
|
|
43
|
+
uses: actions/upload-artifact@v4
|
|
44
44
|
with:
|
|
45
45
|
name: test-code-coverage-report
|
|
46
46
|
path: coverage
|
|
47
47
|
retention-days: 14
|
|
48
48
|
if-no-files-found: error
|
|
49
49
|
- name: Archive documentation
|
|
50
|
-
uses: actions/upload-artifact@
|
|
50
|
+
uses: actions/upload-artifact@v4
|
|
51
51
|
with:
|
|
52
52
|
name: documentation
|
|
53
53
|
path: docs
|
|
54
54
|
retention-days: 14
|
|
55
55
|
if-no-files-found: error
|
|
56
56
|
- name: Archive CHANGELOG.md
|
|
57
|
-
uses: actions/upload-artifact@
|
|
57
|
+
uses: actions/upload-artifact@v4
|
|
58
58
|
with:
|
|
59
59
|
name: changelog
|
|
60
60
|
path: CHANGELOG.md
|
|
61
61
|
retention-days: 14
|
|
62
62
|
if-no-files-found: error
|
|
63
63
|
- name: Archive build artifacts
|
|
64
|
-
uses: actions/upload-artifact@
|
|
64
|
+
uses: actions/upload-artifact@v4
|
|
65
65
|
with:
|
|
66
66
|
name: distribution-production
|
|
67
67
|
path: dist
|
|
68
68
|
retention-days: 14
|
|
69
69
|
if-no-files-found: error
|
|
70
70
|
- name: Archive build artifacts
|
|
71
|
-
uses: actions/upload-artifact@
|
|
71
|
+
uses: actions/upload-artifact@v4
|
|
72
72
|
with:
|
|
73
73
|
name: distribution-development
|
|
74
74
|
path: devdist
|
|
@@ -86,8 +86,12 @@ jobs:
|
|
|
86
86
|
if: github.event_name == 'push'
|
|
87
87
|
run: |
|
|
88
88
|
git config --global user.name '${{ env.CI_COMMIT_AUTHOR }}'
|
|
89
|
-
git config --global user.email
|
|
90
|
-
git
|
|
89
|
+
git config --global user.email "7671054+JohT@users.noreply.github.com"
|
|
90
|
+
git fetch origin
|
|
91
|
+
git status
|
|
91
92
|
git add coverage devdist dist docs *.md
|
|
92
93
|
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
|
|
93
|
-
git
|
|
94
|
+
git status
|
|
95
|
+
git rebase --strategy-option=theirs origin/master --verbose
|
|
96
|
+
git status
|
|
97
|
+
git push --verbose
|
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,44 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
- [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
|
9
9
|
- [`auto-changelog`](https://github.com/CookPete/auto-changelog)
|
|
10
10
|
|
|
11
|
-
## [v3.4.
|
|
11
|
+
## [v3.4.4](https://github.com/JohT/data-restructor-js/compare/v3.4.3...master) (upcoming)
|
|
12
|
+
|
|
13
|
+
## [v3.4.3](https://github.com/JohT/data-restructor-js/compare/v3.4.2...v3.4.3) (15 June 2024)
|
|
14
|
+
|
|
15
|
+
### Changes
|
|
16
|
+
|
|
17
|
+
- Pin dependency @eslint/js to 9.1.1 [`#221`](https://github.com/JohT/data-restructor-js/pull/221)
|
|
18
|
+
|
|
19
|
+
### Dependency Updates
|
|
20
|
+
|
|
21
|
+
- Update actions/checkout digest to 692973e [`#243`](https://github.com/JohT/data-restructor-js/pull/243)
|
|
22
|
+
- Update dependency lmdb to v3.0.12 [`#242`](https://github.com/JohT/data-restructor-js/pull/242)
|
|
23
|
+
- Update dependency lmdb to v3.0.10 [`#237`](https://github.com/JohT/data-restructor-js/pull/237)
|
|
24
|
+
- Update dependency lmdb to v3.0.9 [`#236`](https://github.com/JohT/data-restructor-js/pull/236)
|
|
25
|
+
- Update eslint monorepo to v9.3.0 (minor) [`#234`](https://github.com/JohT/data-restructor-js/pull/234)
|
|
26
|
+
- Update dependency inquirer to v9.2.21 [`#232`](https://github.com/JohT/data-restructor-js/pull/232)
|
|
27
|
+
- Update actions/checkout digest to 0ad4b8f [`#231`](https://github.com/JohT/data-restructor-js/pull/231)
|
|
28
|
+
- Update dependency istanbul-badges-readme to v1.9.0 [`#229`](https://github.com/JohT/data-restructor-js/pull/229)
|
|
29
|
+
- Update dependency jsdoc to v4.0.3 [`#226`](https://github.com/JohT/data-restructor-js/pull/226)
|
|
30
|
+
- Update dependency lmdb to v3.0.8 [`#225`](https://github.com/JohT/data-restructor-js/pull/225)
|
|
31
|
+
- Update dependency inquirer to v9.2.20 [`#223`](https://github.com/JohT/data-restructor-js/pull/223)
|
|
32
|
+
- Update actions/checkout digest to 0ad4b8f [`#222`](https://github.com/JohT/data-restructor-js/pull/222)
|
|
33
|
+
- Update dependency eslint to v9 [`#214`](https://github.com/JohT/data-restructor-js/pull/214)
|
|
34
|
+
- Update dependency lmdb to v3.0.6 [`#218`](https://github.com/JohT/data-restructor-js/pull/218)
|
|
35
|
+
- Update dependency lmdb to v3 [`#209`](https://github.com/JohT/data-restructor-js/pull/209)
|
|
36
|
+
- Update dependency lmdb to v2.9.4 [`#207`](https://github.com/JohT/data-restructor-js/pull/207)
|
|
37
|
+
- Update dependency parcel to v2.12.0 [`#206`](https://github.com/JohT/data-restructor-js/pull/206)
|
|
38
|
+
- Update dependency inquirer to v9.2.15 [`#204`](https://github.com/JohT/data-restructor-js/pull/204)
|
|
39
|
+
- Update dependency parcel to v2.11.0 [`#201`](https://github.com/JohT/data-restructor-js/pull/201)
|
|
40
|
+
- Update actions/upload-artifact action to v4 [`#199`](https://github.com/JohT/data-restructor-js/pull/199)
|
|
41
|
+
- Update github/codeql-action action to v3 [`#198`](https://github.com/JohT/data-restructor-js/pull/198)
|
|
42
|
+
- Update Node.js to v20 [`#188`](https://github.com/JohT/data-restructor-js/pull/188)
|
|
43
|
+
- Update dependency lmdb to v2.9.2 [`#197`](https://github.com/JohT/data-restructor-js/pull/197)
|
|
44
|
+
- Update dependency parcel to v2.10.3 [`#193`](https://github.com/JohT/data-restructor-js/pull/193)
|
|
45
|
+
- Update dependency parcel to v2.10.2 [`#190`](https://github.com/JohT/data-restructor-js/pull/190)
|
|
46
|
+
- Update actions/setup-node action to v4 [`#187`](https://github.com/JohT/data-restructor-js/pull/187)
|
|
47
|
+
|
|
48
|
+
## [v3.4.2](https://github.com/JohT/data-restructor-js/compare/v3.4.1...v3.4.2) (20 October 2023)
|
|
12
49
|
|
|
13
50
|
### Changes
|
|
14
51
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{"total": {"lines":{"total":461,"covered":455,"skipped":0,"pct":98.
|
|
2
|
-
,"/
|
|
3
|
-
,"/
|
|
4
|
-
,"/
|
|
1
|
+
{"total": {"lines":{"total":461,"covered":455,"skipped":0,"pct":98.69},"statements":{"total":470,"covered":462,"skipped":0,"pct":98.29},"functions":{"total":108,"covered":106,"skipped":0,"pct":98.14},"branches":{"total":167,"covered":158,"skipped":0,"pct":94.61},"branchesTrue":{"total":0,"covered":0,"skipped":0,"pct":"Unknown"}}
|
|
2
|
+
,"/home/runner/work/data-restructor-js/data-restructor-js/src/js/datarestructor.js": {"lines":{"total":340,"covered":335,"skipped":0,"pct":98.52},"functions":{"total":76,"covered":75,"skipped":0,"pct":98.68},"statements":{"total":349,"covered":342,"skipped":0,"pct":97.99},"branches":{"total":128,"covered":119,"skipped":0,"pct":92.96}}
|
|
3
|
+
,"/home/runner/work/data-restructor-js/data-restructor-js/src/js/describedfield.js": {"lines":{"total":70,"covered":69,"skipped":0,"pct":98.57},"functions":{"total":22,"covered":21,"skipped":0,"pct":95.45},"statements":{"total":70,"covered":69,"skipped":0,"pct":98.57},"branches":{"total":21,"covered":21,"skipped":0,"pct":100}}
|
|
4
|
+
,"/home/runner/work/data-restructor-js/data-restructor-js/src/js/templateResolver.js": {"lines":{"total":51,"covered":51,"skipped":0,"pct":100},"functions":{"total":10,"covered":10,"skipped":0,"pct":100},"statements":{"total":51,"covered":51,"skipped":0,"pct":100},"branches":{"total":18,"covered":18,"skipped":0,"pct":100}}
|
|
5
5
|
}
|