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

chore(deps): bump the prod-deps-breaking group with 4 updates #153

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2024

Bumps the prod-deps-breaking group with 4 updates: @golem-sdk/golem-js, chalk, commander and pretty-ms.

Updates @golem-sdk/golem-js from 1.0.3 to 2.0.0-beta.22

Release notes

Sourced from @​golem-sdk/golem-js's releases.

v2.0.0-beta.22

2.0.0-beta.22 (2024-02-01)

Bug Fixes

  • task: fixed retrying and timeout measurement for task (b728835)

v2.0.0-beta.21

2.0.0-beta.21 (2024-02-01)

Bug Fixes

  • errors: fixed bug with repeated message for GolemPlatformError (0d66a99)

v2.0.0-beta.20

2.0.0-beta.20 (2024-01-30)

Bug Fixes

  • payment: fixed payment service termination (socket-hang-up bug) (d59404c)

v2.0.0-beta.19

2.0.0-beta.19 (2024-01-29)

Features

  • errors: new structure and hierarchy of errors thrown by modules (3988086)

v2.0.0-beta.18

2.0.0-beta.18 (2024-01-29)

Code Refactoring

  • removing deprecated methods (b79e770)

BREAKING CHANGES

  • PaymentService.acceptDebitNote is no longer available, use acceptPayments instead.
  • Deprecated isSubprocess TaskExecutor option is now removed.
  • Deprecated TaskExecutor.end is now removed (use TaskExecutor.shutdown instead)
  • Deprecated TaskExecutor.beforeEach is now removed (use TaskExecutor.onActivityReady instead)
  • Deprecated WorkContext.rejectResult method is removed.

... (truncated)

Commits
  • 334014f Merge pull request #786 from golemfactory/bugfix/JST-680/task-timeout
  • f053a0c Merge pull request #787 from golemfactory/bugfix/JST-693/repeatable-error-mes...
  • 4f7cbcb chore: fixed logs assertions in e2e tests
  • 0d66a99 fix(errors): fixed bug with repeated message for GolemPlatformError
  • b728835 fix(task): fixed retrying and timeout measurement for task
  • dd6f412 Merge pull request #777 from golemfactory/bugfix/JST-678/socket-hang-up
  • db59802 Merge pull request #783 from golemfactory/dependabot/npm_and_yarn/beta/dev-de...
  • a599894 refactor: fixed prettier issues
  • 153886a build(deps-dev): bump the dev-deps-regular group with 10 updates
  • b7f267b Merge remote-tracking branch 'origin/master' into beta
  • Additional commits viewable in compare view

Updates chalk from 4.1.2 to 5.3.0

Release notes

Sourced from chalk's releases.

v5.3.0

  • Add sideEffects field to package.json 5aafc0a
  • Add support for Gitea Actions (#603) 29b8569

chalk/chalk@v5.2.0...v5.3.0

v5.2.0

  • Improve Deno compatibility (#579) 7443e9f
  • Detect true-color support for GitHub Actions (#579) 7443e9f
  • Detect true-color support for Kitty terminal (#579) 7443e9f
  • Fix test for Azure DevOps environment (#579) 7443e9f

chalk/chalk@v5.1.2...v5.2.0

v5.1.2

  • Fix exported styles names (#569) a34bcf6

chalk/chalk@v5.1.1...v5.1.2

v5.1.1

  • Improved the names of exports introduced in 5.1.0 (#567) 6e0df05
    • We of course preserved the old names.

chalk/chalk@v5.1.0...v5.1.1

v5.1.0

  • Expose style names (#566) d7d7571

chalk/chalk@v5.0.1...v5.1.0

v5.0.1

  • Add main field to package.json for backwards compatibility with some developer tools 85f7e96

chalk/chalk@v5.0.0...v5.0.1

v5.0.0

Breaking

  • This package is now pure ESM. Please read this.
    • If you use TypeScript, you need to use TypeScript 4.7 or later. Why.
    • If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM.
    • The Chalk issue tracker is not a support channel for your favorite build/bundler tool.
    • It's totally fine to stay on Chalk v4. It's been stable for years.
  • Require Node.js 12.20 fa16f4e
  • Move some properties off the default export to individual named exports:
    • chalk.InstanceChalk
    • chalk.supportsColorsupportsColor
    • chalk.stderrchalkStderr
    • chalk.stderr.supportsColorsupportsColorStderr
  • Remove .keyword(), .hsl(), .hsv(), .hwb(), and .ansi() coloring methods (#433) 4cf2e40

... (truncated)

Commits

Updates commander from 11.1.0 to 12.0.0

Release notes

Sourced from commander's releases.

v12.0.0

Added

  • .addHelpOption() as another way of configuring built-in help option (#2006)
  • .helpCommand() for configuring built-in help command (#2087)

Fixed

  • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal (#2023)
  • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled (#1937)

Changed

  • Breaking: Commander 12 requires Node.js v18 or higher (#2027)
  • Breaking: throw an error if add an option with a flag which is already in use (#2055)
  • Breaking: throw an error if add a command with name or alias which is already in use (#2059)
  • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value (#1928)
  • replace non-standard JSDoc of @api private with documented @private (#1949)
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) (#2087)
  • refactor internal implementation of built-in help option (#2006)
  • refactor internal implementation of built-in help command (#2087)

Deprecated

  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) (#2087)

Removed

  • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) (#2017)

Migration Tips

global program

If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

// const program = require('commander');
const { program } = require('commander');

option and command clashes

A couple of configuration problems now throw an error, which will pick up issues in existing programs:

  • adding an option which uses the same flag as a previous option
  • adding a command which uses the same name or alias as a previous command

v12.0.0-1

Added

... (truncated)

Changelog

Sourced from commander's changelog.

[12.0.0] (2024-02-03)

Added

  • .addHelpOption() as another way of configuring built-in help option (#2006)
  • .helpCommand() for configuring built-in help command (#2087)

Fixed

  • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal (#2023)
  • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled (#1937)

Changed

  • Breaking: Commander 12 requires Node.js v18 or higher (#2027)
  • Breaking: throw an error if add an option with a flag which is already in use (#2055)
  • Breaking: throw an error if add a command with name or alias which is already in use (#2059)
  • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value (#1928)
  • replace non-standard JSDoc of @api private with documented @private (#1949)
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) (#2087)
  • refactor internal implementation of built-in help option (#2006)
  • refactor internal implementation of built-in help command (#2087)

Deprecated

  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) (#2087)

Removed

  • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) (#2017)

Migration Tips

global program

If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

// const program = require('commander');
const { program } = require('commander');

option and command clashes

A couple of configuration problems now throw an error, which will pick up issues in existing programs:

  • adding an option which uses the same flag as a previous option
  • adding a command which uses the same name or alias as a previous command

[12.0.0-1] (2024-01-20)

... (truncated)

Commits
  • 83c3f4e Bump version to 12.0.0
  • e3192a1 Merge pull request #2140 from tj/release/12.x
  • 608eaf0 Update CHANGELOG for v12 (#2133)
  • 3f44d29 Update dependencies preparing for release (#2132)
  • 4d832b2 Merge remote-tracking branch 'origin/develop' into release/12.x
  • b53109b Add links in CHANGELOG
  • 90f3c8a 12.0.0-1
  • eed665d Add 12.0.0-1 changes to CHANGELOG
  • 09244af Refactor help option implementation to hold actual Option (#2006)
  • ff08a02 Refactor help command implementation to hold actual Command (#2087)
  • Additional commits viewable in compare view

Updates pretty-ms from 8.0.0 to 9.0.0

Release notes

Sourced from pretty-ms's releases.

v9.0.0

Breaking

  • Require Node.js 18 (#65) 228dd07

Improvements

  • Support BigInt (#66) 014edf2
  • Improve output for big numbers (#65) 228dd07

sindresorhus/pretty-ms@v8.0.0...v9.0.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the prod-deps-breaking group with 4 updates: [@golem-sdk/golem-js](https://github.com/golemfactory/golem-js), [chalk](https://github.com/chalk/chalk), [commander](https://github.com/tj/commander.js) and [pretty-ms](https://github.com/sindresorhus/pretty-ms).


Updates `@golem-sdk/golem-js` from 1.0.3 to 2.0.0-beta.22
- [Release notes](https://github.com/golemfactory/golem-js/releases)
- [Commits](golemfactory/golem-js@v1.0.3...v2.0.0-beta.22)

Updates `chalk` from 4.1.2 to 5.3.0
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v4.1.2...v5.3.0)

Updates `commander` from 11.1.0 to 12.0.0
- [Release notes](https://github.com/tj/commander.js/releases)
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
- [Commits](tj/commander.js@v11.1.0...v12.0.0)

Updates `pretty-ms` from 8.0.0 to 9.0.0
- [Release notes](https://github.com/sindresorhus/pretty-ms/releases)
- [Commits](sindresorhus/pretty-ms@v8.0.0...v9.0.0)

---
updated-dependencies:
- dependency-name: "@golem-sdk/golem-js"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps-breaking
- dependency-name: chalk
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps-breaking
- dependency-name: commander
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps-breaking
- dependency-name: pretty-ms
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps-breaking
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner February 5, 2024 09:51
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 5, 2024
@grisha87
Copy link
Contributor

grisha87 commented Feb 6, 2024

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 6, 2024

Superseded by #155.

@dependabot dependabot bot closed this Feb 6, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/beta/prod-deps-breaking-3866072bd3 branch February 6, 2024 17:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant