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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency kpo to ^0.5.0 (development) - autoclosed #5

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 4, 2019

This PR contains the following updates:

Package Type Update Change References
kpo devDependencies minor ^0.0.4 -> ^0.5.0 source

Release Notes

rafamel/kpo

v0.5.0

Compare Source

Bug Fixes
  • bin: filters empty values for comma separated flags (33c67dd)
  • fixes logging level restore; initializes on reset (48da81b)
  • deps: updates dependencies (b5bd7df)
  • utils/env-manager: fixes environment variables setting and restoring when undefined (db4dda5)
  • utils/logger: ensures methodFactory is used immediately after it is set (2bace5a)
Features
  • uses SilentError to fail silently; logs it as warning (f9d8ad3)
  • commands/raise, bin/raise: adds purge option (626ead1)
  • public/fs: adds read (41b3118)
  • utils/errors: adds SilentError (c72844d)
  • utils/logger: exits messages are logged w/ the same level as kpo's ones (c4333be)

v0.4.0

Bug Fixes
  • core: uses cache relative to options.id for children and tasks (dc9e645)
  • core/options: fixes setters; doesn't call initialize on set on get; rolls back to using object (05b6308)
  • deps: moves slimconf to devDependencies (5e3c765)
  • public/exec: fixes stream commands to match current globals management (5600b8e)
  • utils/terminate-children: replaces ps-manager w/ terminate-children; actually sents kill signal (30dac3a)
Code Refactoring
  • public, commands: removes internal kpo commands from public, moves them to commands (7acaea6)
Features
  • bin: adds exits hook to manage child processes termination (85b4ef8)
  • bin: strips out -- fromk logged command when no arguments are passed after it (3df0061)
  • bin, core: explicitly calls initialize: ensures initialization has always happened -at least o (b887980)
  • bin, utils/exec: uses exits to control spawned processes; exits w/ code 1 for signals (572f5fe)
  • core, utils: uses globals to manage core and options state; removes unused utils (f2674d9)
  • core/scope: uses only children names to identify childre; removes matcher from IChild (685d023)
  • globals: adds globals (b1e8f44)
  • globals: doesn't pollute global when process is not kpo owned (de56134)
  • globals; utils: globals manages environment variables; places version range validation in utils (ba9d3d2)
  • public: removes public options; kpo file, when js, should also export an options and scripts o (1508fc4)
  • utils: adds guardian (5b5e698)
  • utils/cache: allows for getId to be null or return string or number types (fad3fd6)
  • utils/env-manager: adds environment variables manager (442029b)
  • utils/env-manager: adds get, set, and default methods (b83c138)
  • utils/env-manager: adds purePaths; updates initial; exports initialized manager as default (4c27842)
  • utils/errors: uses source as message when it's a string (bbf86d2)
  • utils/exec: doesn't reset paths; doesn't add paths unless options.cwd exists (fe9da49)
  • duck types errors to avoid issues w/ different instances; removes redundant error normalizatio (97f2f8e)
  • errors out on tasks, core, and spawned processes calls if exit has already been triggered (201dc7a)
  • utils/exec, core/exec: uses child_process spawn and fork in order to manage child processes in (19467fa)
  • utils/logger: prefixes messages w/ level and app name (05fce07)
  • utils/paths: adds getPaths (eda621b)
  • utils/ps-manager: adds child processes manager (c90f121)
  • utils/ps-manager: can kill processes for all children of a process (1157ff3)
BREAKING CHANGES
  • public, commands: run, list, raise, and stream are no longer exported
  • public: doesn't further export options(); kpo file should have a scripts and options key
    containing an object, even when a js file; kpo file can't export a default function

v0.3.0

Bug Fixes
  • core: uses cache relative to options.id for children and tasks (dc9e645)
  • core/options: fixes setters; doesn't call initialize on set on get; rolls back to using object (05b6308)
  • deps: moves slimconf to devDependencies (5e3c765)
  • public/exec: fixes stream commands to match current globals management (5600b8e)
  • utils/terminate-children: replaces ps-manager w/ terminate-children; actually sents kill signal (30dac3a)
Code Refactoring
  • public, commands: removes internal kpo commands from public, moves them to commands (7acaea6)
Features
  • bin: adds exits hook to manage child processes termination (85b4ef8)
  • bin: strips out -- fromk logged command when no arguments are passed after it (3df0061)
  • bin, core: explicitly calls initialize: ensures initialization has always happened -at least o (b887980)
  • bin, utils/exec: uses exits to control spawned processes; exits w/ code 1 for signals (572f5fe)
  • core, utils: uses globals to manage core and options state; removes unused utils (f2674d9)
  • core/scope: uses only children names to identify childre; removes matcher from IChild (685d023)
  • globals: adds globals (b1e8f44)
  • globals: doesn't pollute global when process is not kpo owned (de56134)
  • globals; utils: globals manages environment variables; places version range validation in utils (ba9d3d2)
  • public: removes public options; kpo file, when js, should also export an options and scripts o (1508fc4)
  • utils: adds guardian (5b5e698)
  • utils/cache: allows for getId to be null or return string or number types (fad3fd6)
  • utils/env-manager: adds environment variables manager (442029b)
  • utils/env-manager: adds get, set, and default methods (b83c138)
  • utils/env-manager: adds purePaths; updates initial; exports initialized manager as default (4c27842)
  • utils/errors: uses source as message when it's a string (bbf86d2)
  • utils/exec: doesn't reset paths; doesn't add paths unless options.cwd exists (fe9da49)
  • duck types errors to avoid issues w/ different instances; removes redundant error normalizatio (97f2f8e)
  • errors out on tasks, core, and spawned processes calls if exit has already been triggered (201dc7a)
  • utils/exec, core/exec: uses child_process spawn and fork in order to manage child processes in (19467fa)
  • utils/logger: prefixes messages w/ level and app name (05fce07)
  • utils/paths: adds getPaths (eda621b)
  • utils/ps-manager: adds child processes manager (c90f121)
  • utils/ps-manager: can kill processes for all children of a process (1157ff3)
BREAKING CHANGES
  • public, commands: run, list, raise, and stream are no longer exported
  • public: doesn't further export options(); kpo file should have a scripts and options key
    containing an object, even when a js file; kpo file can't export a default function

v0.2.0

Bug Fixes
  • core: doesn't preserve state when cwd has changed (2d4d9be)
  • public/exec: stream arguments get passed to command (0e96323)
Features
  • public/exec: allows for arguments to be passed in options; arguments in options overwrite glob (1c341ef)
  • public/kpo: adds -- to kpo commands on raise so they can take arguments out of the box (ef05508)
  • utils/version-range: returns boolean instead of throwing for mismatches (09e9ef6)

v0.1.0

Bug Fixes
  • core/tasks: fails on tasks starting with "_" (2439812)
  • utils/cache: saves only last result, otherwise side effects (options changes) won't be register (0073f48)
Features
  • properly passes state between kpo instances and processes via KPO_STATE env var (4cb9957)
  • core/scope: checks for children name conflicts when inferred from directory name (0cf24eb)

Renovate configuration

馃搮 Schedule: "before 3am on the first day of the year" (UTC).

馃殾 Automerge: Disabled by config. Please merge this manually once you are satisfied.

鈾伙笍 Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

馃敃 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-dev-minor-patch branch from 4d30d68 to 55dc3d5 Compare May 4, 2019 04:37
@renovate renovate bot changed the title chore(deps): update dependency kpo to ^0.1.0 (development) chore(deps): update dependency kpo to ^0.2.0 (development) May 4, 2019
@coveralls
Copy link

Coverage Status

Coverage remained the same at 99.174% when pulling 55dc3d5 on renovate/all-dev-minor-patch into c1076b6 on master.

@renovate renovate bot force-pushed the renovate/all-dev-minor-patch branch from 55dc3d5 to 0750a04 Compare May 5, 2019 04:26
@renovate renovate bot changed the title chore(deps): update dependency kpo to ^0.2.0 (development) chore(deps): update dependency kpo to ^0.3.0 (development) May 5, 2019
@renovate renovate bot changed the title chore(deps): update dependency kpo to ^0.3.0 (development) chore(deps): update dependency kpo to ^0.4.0 (development) May 8, 2019
@renovate renovate bot force-pushed the renovate/all-dev-minor-patch branch from 0750a04 to 844d7e9 Compare May 8, 2019 13:33
@renovate renovate bot changed the title chore(deps): update dependency kpo to ^0.4.0 (development) chore(deps): update dependency kpo to ^0.5.0 (development) May 11, 2019
@renovate renovate bot force-pushed the renovate/all-dev-minor-patch branch from 844d7e9 to 1e93054 Compare May 11, 2019 16:53
@renovate renovate bot changed the title chore(deps): update dependency kpo to ^0.5.0 (development) chore(deps): update dependency kpo to ^0.5.0 (development) - autoclosed May 11, 2019
@renovate renovate bot closed this May 11, 2019
@renovate renovate bot deleted the renovate/all-dev-minor-patch branch May 11, 2019 17:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants