mozilla / ensemble-transposer

A Node task which reformats and adds metadata to raw data :musical_score: :pen:
https://ensemble-transposer.herokuapp.com/
Mozilla Public License 2.0
11 stars 7 forks source link

Update all dependencies #172

Closed renovate[bot] closed 4 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Type Update Change
aws-sdk dependencies minor 2.644.0 -> 2.648.0
eslint-plugin-node devDependencies minor 11.0.0 -> 11.1.0

Release Notes

aws/aws-sdk-js ### [`v2.648.0`](https://togithub.com/aws/aws-sdk-js/blob/master/CHANGELOG.md#​26480) [Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.647.0...v2.648.0) - feature: GlobalAccelerator: This update adds an event history to the ListByoipCidr API call. This enables you to see the changes that you've made for an IP address range that you bring to AWS Global Accelerator through bring your own IP address (BYOIP). - feature: Kendra: The Amazon Kendra Microsoft SharePoint data source now supports include and exclude regular expressions and change log features. Include and exclude regular expressions enable you to provide a list of regular expressions to match the display URL of SharePoint documents to either include or exclude documents respectively. When you enable the changelog feature it enables Amazon Kendra to use the SharePoint change log to determine which documents to update in the index. - feature: ServiceCatalog: Added "LocalRoleName" as an acceptable Parameter for Launch type in CreateConstraint and UpdateConstraint APIs ### [`v2.647.0`](https://togithub.com/aws/aws-sdk-js/blob/master/CHANGELOG.md#​26470) [Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.646.0...v2.647.0) - feature: FSx: This release includes two changes: a new lower-cost, storage type called HDD (Hard Disk Drive), and a new generation of the Single-AZ deployment type called Single AZ 2. The HDD storage type can be selected on Multi AZ 1 and Single AZ 2 deployment types. - feature: SageMaker: This release updates Amazon Augmented AI CreateFlowDefinition API and DescribeFlowDefinition response. - feature: SecurityHub: Security Hub has now made it easier to opt out of default standards when you enable Security Hub. We added a new Boolean parameter to EnableSecurityHub called EnableDefaultStandards. If that parameter is true, Security Hub's default standards are enabled. A new Boolean parameter for standards, EnabledByDefault, indicates whether a standard is a default standard. Today, the only default standard is CIS AWS Foundations Benchmark v1.2. Additional default standards will be added in the future.To learn more, visit our documentation on the EnableSecurityHub API action. ### [`v2.646.0`](https://togithub.com/aws/aws-sdk-js/blob/master/CHANGELOG.md#​26460) [Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.645.0...v2.646.0) - feature: ApplicationInsights: Amazon CloudWatch Application Insights for .NET and SQL Server now integrates with Amazon CloudWatch Events (AWS CodeDeploy, AWS Health and Amazon EC2 state changes). This feature enables customers to view events related to problems detected by CloudWatch Application Insights, and reduce mean-time-to-resolution (MTTR). - feature: CostExplorer: Customers can now receive Savings Plans recommendations at the member (linked) account level. - feature: Detective: The new ACCEPTED_BUT_DISABLED member account status indicates that a member account that accepted the invitation is blocked from contributing data to the behavior graph. The reason is provided in the new DISABLED_REASON property. The new StartMonitoringMember operation enables a blocked member account. - feature: ES: Adding support for customer packages (dictionary files) to Amazon Elasticsearch Service - feature: ManagedBlockchain: Amazon Managed Blockchain now has support to publish Hyperledger Fabric peer node, chaincode, and certificate authority (CA) logs to Amazon CloudWatch Logs. - feature: XRay: GetTraceSummaries - Now provides additional root cause attribute ClientImpacting which indicates whether root cause impacted trace client. ### [`v2.645.0`](https://togithub.com/aws/aws-sdk-js/blob/master/CHANGELOG.md#​26450) [Compare Source](https://togithub.com/aws/aws-sdk-js/compare/v2.644.0...v2.645.0) - feature: EKS: Adding new error codes: Ec2SubnetInvalidConfiguration and NodeCreationFailure for Nodegroups in EKS - feature: Organizations: Introduces actions for giving a member account administrative Organizations permissions for an AWS service. You can run this action only for AWS services that support this feature.
mysticatea/eslint-plugin-node ### [`v11.1.0`](https://togithub.com/mysticatea/eslint-plugin-node/releases/v11.1.0) [Compare Source](https://togithub.com/mysticatea/eslint-plugin-node/compare/v11.0.0...v11.1.0) The many rules for Node.js in the ESLint core will be deprecated in ESLint 7.0.0. This release includes the clone of those core rules. #### ✨ Enhancements - [`8788a11`](https://togithub.com/mysticatea/eslint-plugin-node/commit/8788a11e01904f394b6c438dcb218704d449c09c) added ten rules from the ESLint core: - [node/callback-return] rule that corresponds to [callback-return] rule. - [node/global-require] rule that corresponds to [global-require] rule. - [node/handle-callback-err] rule that corresponds to [handle-callback-err] rule. - [node/no-mixed-requires] rule that corresponds to [no-mixed-requires] rule. - [node/no-new-require] rule that corresponds to [no-new-require] rule. - [node/no-path-concat] rule that corresponds to [no-path-concat] rule, plus this recognizes template literals as well. - [node/no-process-env] rule that corresponds to [no-process-env] rule. - [node/no-process-exit] rule that corresponds to [no-process-exit] rule. - [node/no-restricted-require] rule that corresponds to [no-restricted-modules] rule, but this has simplified options. - [node/no-sync] rule that corresponds to [no-sync] rule. - [`ade0b59`](https://togithub.com/mysticatea/eslint-plugin-node/commit/ade0b59b3bdb8671196eb5b51fdab28acc87800b) added [node/no-restricted-import] rule that is ES modules version of [node/no-restricted-require] rule. [callback-return]: https://eslint.org/docs/rules/callback-return [global-require]: https://eslint.org/docs/rules/global-require [handle-callback-err]: https://eslint.org/docs/rules/handle-callback-err [no-mixed-requires]: https://eslint.org/docs/rules/no-mixed-requires [no-new-require]: https://eslint.org/docs/rules/no-new-require [no-path-concat]: https://eslint.org/docs/rules/no-path-concat [no-process-env]: https://eslint.org/docs/rules/no-process-env [no-process-exit]: https://eslint.org/docs/rules/no-process-exit [no-restricted-modules]: https://eslint.org/docs/rules/no-restricted-modules [no-sync]: https://eslint.org/docs/rules/no-sync [node/callback-return]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/callback-return.md [node/global-require]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/global-require.md [node/handle-callback-err]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/handle-callback-err.md [node/no-mixed-requires]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-mixed-requires.md [node/no-new-require]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-new-require.md [node/no-path-concat]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-path-concat.md [node/no-process-env]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-process-env.md [node/no-process-exit]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-process-exit.md [node/no-restricted-import]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-restricted-import.md [node/no-restricted-require]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-restricted-require.md [node/no-sync]: https://togithub.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-sync.md

Renovate configuration

:date: Schedule: "before 3am on Monday" (UTC).

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

:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

:ghost: Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



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