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

Version 3 #132

Draft
wants to merge 46 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
bde97c1
feat(#106): removes some default parsing extensions
joelgallant Apr 9, 2021
32ba646
chore: removes v1 compat tests
joelgallant Apr 9, 2021
83eca7b
ci: publish as "next"
joelgallant Apr 9, 2021
4425a4f
chore: release v3.0.0-alpha.1
joelgallant Apr 9, 2021
fdf04de
Merge branch 'master' into v3
joelgallant Apr 9, 2021
44085dc
fix: tag
joelgallant Apr 9, 2021
26fb69f
fix: versions of examples
joelgallant Apr 9, 2021
6c9acbd
chore: removes `$` prefixed options in $substitute
joelgallant Apr 9, 2021
cafaa98
chore: removes some exports from @app-config/main
joelgallant Apr 9, 2021
6304de1
refactor(#129): changes parsing extensions to pass through some hiera…
joelgallant Apr 9, 2021
1e7836c
feat: reads env from parsing context
joelgallant Apr 9, 2021
6285b3d
refactor:environment via parsing extension context
joelgallant Apr 10, 2021
7caed5c
feat(#131): starts test for $extends with env
joelgallant Apr 10, 2021
f46c990
chore: 3.0.0-alpha.2
joelgallant Apr 10, 2021
2a5c956
feat: upgrade to ajv v8
joelgallant Apr 10, 2021
ed5df0e
chore: dependencies
joelgallant Apr 10, 2021
b4e9463
fix: error message from ajv
joelgallant Apr 10, 2021
25b3633
fix: more ajv error messages
joelgallant Apr 10, 2021
9155ebb
chore: v3.0.0-alpha.3
joelgallant Apr 10, 2021
c0995d8
Merge branch 'master' into v3
joelgallant Apr 10, 2021
365a59a
Merge branch 'master' into v3
joelgallant May 6, 2021
0ba4bcf
cleanup: removes deprecation warnings
joelgallant May 6, 2021
ffe46a4
cleanup: removes deprecation options on envVar and substitute
joelgallant May 6, 2021
1819e05
cleanup: removes deprecated FlexibleFileSource constructor
joelgallant May 6, 2021
e790ac6
cleanup: removes deprecated use of currentEnvironment
joelgallant May 6, 2021
8a0d3a8
fix: lints
joelgallant May 6, 2021
cadfbc7
fix: old parentkeys
joelgallant May 6, 2021
1d70bb6
cleanup: old tests
joelgallant May 6, 2021
72132d7
fix: random-package
joelgallant May 6, 2021
de636dd
fix: eval-package
joelgallant May 6, 2021
7d5af9a
cleanup: default-extensions type
joelgallant May 6, 2021
769328e
Merge branch 'master' into v3
joelgallant May 6, 2021
7de7bf5
feat: removes default-extensions
joelgallant May 6, 2021
41ed7c0
chore: release v3.0.0-alpha.4
joelgallant May 6, 2021
852c35d
fix: examples versions
joelgallant May 6, 2021
3a07ce3
Merge branch 'master' into v3
joelgallant Jun 30, 2021
11943d1
chore: removes @lcdev packages
joelgallant Jun 30, 2021
d887cc4
fix: types
joelgallant Jun 30, 2021
d819852
Merge branch 'master' into v3
joelgallant Sep 26, 2021
50a7808
Merge remote-tracking branch 'origin/master' into v3
joelgallant Sep 26, 2021
1a82484
chore: release v3.0.0-alpha.5
joelgallant Sep 26, 2021
b9f68af
fix: test snapshots
joelgallant Sep 26, 2021
272996c
fix: remove default-extensions entirely
joelgallant Sep 26, 2021
467c1e1
chore: lockfile bumps
joelgallant Sep 27, 2021
62e5ba4
chore: release v3.0.0-alpha.6
joelgallant Sep 27, 2021
a3a4e96
chore: examples & test project deps
joelgallant Sep 27, 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
Prev Previous commit
Next Next commit
fix: random-package
joelgallant committed May 6, 2021

Verified

This commit was signed with the committer’s verified signature.
joelgallant Joel Gallant
commit 72132d74998f81e4a637431b8f89e075d5f8fa3e
2 changes: 1 addition & 1 deletion tests/parsing-extensions/random-package/main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = (options) => (value, [[, key]]) => {
module.exports = (options) => (value, [, key]) => {
const rng = require('seedrandom')(options.seed);

if (key === '$random') {