An easy way to discover and manage your cloud like a local filesystem

Overview

cfs

A blue gradient banner image

cloudfs - An easy way to discover and manage your cloud like a local filesystem.

An easy way to discover and manage your cloud like a local filesystem.

The swiss army knife for finding any resource in your AWS account.

npm package version badge GitHub license badge GitHub last commit badge GitHub Actions build badge Snyk known vulnerabilities

install

npm install -g @khalidx/cfs

Also, a native binary is available for Windows, Mac, and Linux.

Need help using this application? Read this.

A screenshot of the help menu for the cfs CLI

introduction

Or, "why do I need this application?".

If you're like me, you spend countless hours working with cloud resources, like S3 buckets and EC2 instances.

Sometimes, you just want to be able to see ALL the resources in your AWS account. Especially when starting a new job or taking inventory of what's in your cloud.

Searching for a specific resource or across resources is usually a sub-par experience in most cloud consoles.

When you are searching for something specific, and would rather have all your resources as files locally, so that you can search through them and process them with other tools, reach for cfs.

cfs exports all your cloud resources as JSON files.

cli

cfs
cfs ls
cfs find
cfs browse
cfs errors
cfs clean
cfs help

Make sure you're logged in to AWS before running the commands above.

discovering resources

cfs

Running the command above outputs all discovered resources to .cfs/ in the current directory.

Optionally, pass --region to limit discovery to a single region, like cfs --region us-east-1.

cfs ls

Running the command above lists the names of all resource files to the console. This is useful for passing the output to other tools, like grep.

For example, for viewing "vpc" resources only (searching file names):

cfs ls | grep vpc

Or, for viewing any resource with "us-east-1" in its configuration file (searching file contents):

cfs ls | xargs grep -l us-east-1

Of course, you could also use the built-in search in your favorite IDE (like VSCode) or open and browse the files directly!

You can also search cloud resource files (their file names and contents) with cfs find, like so:

cfs find "m5.large"

Another cool option is being able to explore all your resources in a web browser, complete with full-text search! The following command starts up a server and opens your web browser so you can start exploring:

cfs browse

The command above opens the following attractive experience for searching your resources. It runs on localhost, and your data stays local and never leaves your device.

A screenshot of the cfs browse command web experience

To remove all downloaded resources from the local filesystem (without affecting anything in your cloud account), run:

cfs clean

This is the same as deleting the .cfs/ directory yourself with rm -rf .cfs/.

updating resources

(coming soon)

troubleshooting

If you encounter any errors while discovering resources using the cfs command, there are three things you can do right off the bat.

  1. Check the .cfs/errors.log file
  2. Run the cfs errors command, which will output the categories of all errors encountered during resource discovery
  3. Submit a GitHub issue (we close issues pretty fast!)

supported resources

The following cloud resources are currently supported:

  • AWS CloudWatch Metric Alarms
  • AWS CloudWatch Composite Alarms
  • AWS API Gateway HTTP APIs
  • AWS API Gateway REST APIs
  • AWS S3 Buckets
  • AWS CloudWatch Synthetics Canaries
  • AWS ACM Certificates
  • AWS CloudFront Distributions
  • AWS Route53 Hosted Zones
  • AWS ELB Classic Load Balancers
  • AWS ELB Application, Gateway, and Network Load Balancers
  • AWS Lambda Functions
  • AWS EC2 Instances
  • AWS SSM Parameters
  • AWS CodePipeline Pipelines
  • AWS SQS Queues
  • AWS Regions
  • AWS CloudFormation Stacks
  • AWS Kinesis Streams
  • AWS DynamoDB Tables
  • AWS SNS Topics
  • AWS VPCs

More resources are coming soon, with the goal of covering all resources listed on the AWS resource and property types reference page.

plugins

(coming soon)

aws credentials

Make sure you're logged in to AWS, and have the corresponding credentials file or environment variables set. Otherwise, cfs won't be able to query your cloud resources.

Here's a quick guide from AWS on configuring your credentials with the AWS CLI.

developers

This section is for developers working on the cfs code. If you are instead looking for usage instructions, see the sections above.

After cloning, run npm link to make the cfs CLI available. You can now edit the TypeScript source files, and whenever you run cfs you'll be working with the latest sources directly, without having to build/compile the TypeScript files.

support

🚀 Over the next week (April 18-25 2022), all GitHub issues submitted will receive an 8-hour turnaround time, for a good beta testing experience!

Comments
  • Bump zod from 3.14.4 to 3.15.1

    Bump zod from 3.14.4 to 3.15.1

    Bumps zod from 3.14.4 to 3.15.1.

    Release notes

    Sourced from zod's releases.

    v3.15.1

    Commits:

    • f814ef21ec3e701ea1cdaefdc69dfb59e8ad62d1 Improve docs
    • c190a84bfe552c3804c0e0e04447b53257194de5 Clean up type signature of ZodFormattedError

    v3.15.0

    Commits:

    • d54ba359eda7e74f7373e612153e8e408904b14a feat: allow ctx.addIssue from transform (#1056)
    • 36f4e88abc92e9513dbdf8d68899a2c3ff127c48 3.15.0

    v3.14.5

    Commits:

    • 21aab2a4b04428d7afe6255e78271db0617d6e61 fix(readme): Use Correct Test Link
    • 753f627504a6801d3637a33efab6ad87b216d4a6 Merge pull request #1054 from FlorianWendelborn/patch-1
    • a6e13ccf9f5656e386bef63e13db3561b692aec9 Remove hanging string expressions (#1073)
    • c7792de989d47ac21872708f7188dc4e6143b172 Add UMD build (#1067)
    • f11ba8fda8aac60abf22d292d9b4f936b9465c7b Standardize ZodError type helpers. Document ZodError.format(). Add mapper support to .format()
    • 5ea9f8731f3ef8f244fd37e06a6fde9e7033ff34 Add Astro (#1076)
    • 5ba2cc34ea39865837a9b06f46859849f89b3ce6 Update sponsors (#1081)
    • cdca0db75a10525eca08696e8a44186cbe20c32a docs: infer Literal from the schema in JSON type example (#1083)
    • f6981f867dc823ca01a09e8399074beff877b38b Small typo in readme (contraining => constraining) (#1096)
    • 7296aae7d5062f60ca73d39adf71a2e62cc3d1d2 Add zod-to-openapi to Ecosystem in the Readme (#1109)
    • 4cf7e7c5cba2ebe36db9d8f75f7866cb4a80bfc4 docs: fix typo on the error handling guide (#1111)
    • fa4eebba089badc7590c6ad7dc3a60c252702282 Improve IDE integration for inferred object properties to support Go To Definition, Rename Symbol, etc. (#1117)
    Commits
    • c190a84 Clean up type signature of ZodFormattedError
    • f814ef2 Improve docs
    • 36f4e88 3.15.0
    • d54ba35 feat: allow ctx.addIssue from transform (#1056)
    • fa4eebb Improve IDE integration for inferred object properties to support Go To Defin...
    • 4cf7e7c docs: fix typo on the error handling guide (#1111)
    • 7296aae Add zod-to-openapi to Ecosystem in the Readme (#1109)
    • f6981f8 Small typo in readme (contraining => constraining) (#1096)
    • cdca0db docs: infer Literal from the schema in JSON type example (#1083)
    • 5ba2cc3 Update sponsors (#1081)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 3
  • Bump express from 4.18.0 to 4.18.1

    Bump express from 4.18.0 to 4.18.1

    Bumps express from 4.18.0 to 4.18.1.

    Release notes

    Sourced from express's releases.

    4.18.1

    • Fix hanging on large stack of sync routes
    Changelog

    Sourced from express's changelog.

    4.18.1 / 2022-04-29

    • Fix hanging on large stack of sync routes
    Commits

    Dependabot compatibility score

    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 will merge this PR once CI passes on it, as requested by @khalidx.


    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 3
  • Bump typescript from 4.6.3 to 4.6.4

    Bump typescript from 4.6.3 to 4.6.4

    Bumps typescript from 4.6.3 to 4.6.4.

    Release notes

    Sourced from typescript's releases.

    TypeScript 4.6.4

    This release includes a bug fix for text formatting on certain ranges, which was impacting Visual Studio users.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    Commits

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 3
  • Bump chalk from 4.1.2 to 5.0.1

    Bump chalk from 4.1.2 to 5.0.1

    Bumps chalk from 4.1.2 to 5.0.1.

    Release notes

    Sourced from chalk's releases.

    v5.0.1

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

    https://github.com/chalk/chalk/compare/v5.0.0...v5.0.1

    v5.0.0

    Breaking

    • This package is now pure ESM. Please read this.
      • If you use TypeScript, you will want to stay on Chalk 4 until TypeScript 4.6 is out. 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
      • These were not commonly used and added a lot of bloat to Chalk. You can achieve the same by using the color-convert package.
    • The tagged template literal support moved into a separate package: chalk-template (#524) c987c61
    -import chalk from 'chalk';
    +import chalkTemplate from 'chalk-template';
    

    -chalk2 + 3 = {bold ${2 + 3}}; +chalkTemplate2 + 3 = {bold ${2 + 3}};

    Improvements

    https://github.com/chalk/chalk/compare/v4.1.0...v5.0.0

    Commits

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 3
  • Bump globby from 11.1.0 to 12.1.0

    Bump globby from 11.1.0 to 12.1.0

    Bumps globby from 11.1.0 to 12.1.0.

    Release notes

    Sourced from globby's releases.

    v12.1.0

    • Support URL for the cwd option (#201) 73c0aca

    https://github.com/sindresorhus/globby/compare/v12.0.2...v12.1.0

    v12.0.2

    • Ensure async method is completely async e167725

    https://github.com/sindresorhus/globby/compare/v12.0.1...v12.0.2

    v12.0.1

    • Internal changes 5a64253

    https://github.com/sindresorhus/globby/compare/v12.0.0...v12.0.1

    v12.0.0

    Breaking

    • Require Node.js 12.20 (#181) 5c32b4a
    • This package is now pure ESM. Please read this.
    • This package now uses named exports instead of a default export
      • globby{globby}
      • globby.sync{globbySync}
      • globby.stream{globbyStream}
      • globby.generateGlobTasks{generateGlobTasks}
      • globby.hasMagic{isDynamicPattern}
      • globby.gitignore{isGitIgnored}
      • globby.gitignore.sync{isGitIgnoredSync}
    -const globby = require('globby');
    +import {globby} from 'globby';
    

    https://github.com/sindresorhus/globby/compare/v11.0.4...v12.0.0

    Commits

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • Bump serialize-error from 8.1.0 to 9.0.0

    Bump serialize-error from 8.1.0 to 9.0.0

    Bumps serialize-error from 8.1.0 to 9.0.0.

    Release notes

    Sourced from serialize-error's releases.

    v9.0.0

    Breaking

    • Require Node.js 12.20 f698ea0
    • This package is now pure ESM. Please read this.

    https://github.com/sindresorhus/serialize-error/compare/v8.1.0...v9.0.0

    Commits

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • Bump @aws-sdk/client-ec2 from 3.82.0 to 3.83.0

    Bump @aws-sdk/client-ec2 from 3.82.0 to 3.83.0

    Bumps @aws-sdk/client-ec2 from 3.82.0 to 3.83.0.

    Release notes

    Sourced from @​aws-sdk/client-ec2's releases.

    v3.83.0

    3.83.0(2022-05-03)

    Documentation Changes
    • client-s3: Documentation only update for doc bug fixes for the S3 API docs. (d3b2e8c5)
    New Features
    • clients: update client endpoints as of 2022-05-03 (4a1e12d0)
    • client-kinesis-video: Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add "GET_IMAGES" to the list of supported API names for the GetDataEndpoint API. (9dfe4185)
    • client-sagemaker: SageMaker Autopilot adds new metrics for all candidate models generated by Autopilot experiments; RStudio on SageMaker now allows users to bring your own development environment in a custom image. (417ad38d)
    • client-kinesis-video-archived-media: Add support for GetImages API for retrieving images from a video stream (a7753942)
    • client-ec2: Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter. (75a68fd0)

    For list of updated packages, view updated-packages.md in assets-3.83.0.zip

    Changelog

    Sourced from @​aws-sdk/client-ec2's changelog.

    3.83.0 (2022-05-03)

    Features

    • client-ec2: Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter. (75a68fd)
    Commits
    • 22870a0 Publish v3.83.0
    • 75a68fd feat(client-ec2): Adds support for allocating Dedicated Hosts on AWS Outpost...
    • See full diff in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • Bump serialize-error from 8.1.0 to 9.1.1

    Bump serialize-error from 8.1.0 to 9.1.1

    Bumps serialize-error from 8.1.0 to 9.1.1.

    Release notes

    Sourced from serialize-error's releases.

    v9.1.1

    • Fix stream check (#60) 4eefe15

    https://github.com/sindresorhus/serialize-error/compare/v9.1.0...v9.1.1

    v9.1.0

    • Handle streams attached to an error by replacing them with '[object Stream]' (#57) b589f8e

    https://github.com/sindresorhus/serialize-error/compare/v9.0.0...v9.1.0

    v9.0.0

    Breaking

    • Require Node.js 12.20 f698ea0
    • This package is now pure ESM. Please read this.

    https://github.com/sindresorhus/serialize-error/compare/v8.1.0...v9.0.0

    Commits

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • Bump globby from 11.1.0 to 12.2.0

    Bump globby from 11.1.0 to 12.2.0

    Bumps globby from 11.1.0 to 12.2.0.

    Release notes

    Sourced from globby's releases.

    v12.2.0

    • Work around TypeScript type problem with URL global (#206) 1224230
    • Accept URL in function returned by isGitIgnored (#207) a9fc794

    https://github.com/sindresorhus/globby/compare/v12.1.0...v12.2.0

    v12.1.0

    • Support URL for the cwd option (#201) 73c0aca

    https://github.com/sindresorhus/globby/compare/v12.0.2...v12.1.0

    v12.0.2

    • Ensure async method is completely async e167725

    https://github.com/sindresorhus/globby/compare/v12.0.1...v12.0.2

    v12.0.1

    • Internal changes 5a64253

    https://github.com/sindresorhus/globby/compare/v12.0.0...v12.0.1

    v12.0.0

    Breaking

    • Require Node.js 12.20 (#181) 5c32b4a
    • This package is now pure ESM. Please read this.
    • This package now uses named exports instead of a default export
      • globby{globby}
      • globby.sync{globbySync}
      • globby.stream{globbyStream}
      • globby.generateGlobTasks{generateGlobTasks}
      • globby.hasMagic{isDynamicPattern}
      • globby.gitignore{isGitIgnored}
      • globby.gitignore.sync{isGitIgnoredSync}
    -const globby = require('globby');
    +import {globby} from 'globby';
    

    https://github.com/sindresorhus/globby/compare/v11.0.4...v12.0.0

    Commits

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • Bump @aws-sdk/client-s3 from 3.82.0 to 3.83.0

    Bump @aws-sdk/client-s3 from 3.82.0 to 3.83.0

    Bumps @aws-sdk/client-s3 from 3.82.0 to 3.83.0.

    Release notes

    Sourced from @​aws-sdk/client-s3's releases.

    v3.83.0

    3.83.0(2022-05-03)

    Documentation Changes
    • client-s3: Documentation only update for doc bug fixes for the S3 API docs. (d3b2e8c5)
    New Features
    • clients: update client endpoints as of 2022-05-03 (4a1e12d0)
    • client-kinesis-video: Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add "GET_IMAGES" to the list of supported API names for the GetDataEndpoint API. (9dfe4185)
    • client-sagemaker: SageMaker Autopilot adds new metrics for all candidate models generated by Autopilot experiments; RStudio on SageMaker now allows users to bring your own development environment in a custom image. (417ad38d)
    • client-kinesis-video-archived-media: Add support for GetImages API for retrieving images from a video stream (a7753942)
    • client-ec2: Adds support for allocating Dedicated Hosts on AWS Outposts. The AllocateHosts API now accepts an OutpostArn request parameter, and the DescribeHosts API now includes an OutpostArn response parameter. (75a68fd0)

    For list of updated packages, view updated-packages.md in assets-3.83.0.zip

    Changelog

    Sourced from @​aws-sdk/client-s3's changelog.

    3.83.0 (2022-05-03)

    Note: Version bump only for package @​aws-sdk/client-s3

    Commits
    • 22870a0 Publish v3.83.0
    • d3b2e8c docs(client-s3): Documentation only update for doc bug fixes for the S3 API d...
    • See full diff in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • Bump globby from 11.1.0 to 13.0.0

    Bump globby from 11.1.0 to 13.0.0

    Bumps globby from 11.1.0 to 13.0.0.

    Release notes

    Sourced from globby's releases.

    v13.0.0

    Breaking

    • Rename generateGlobTasks to generateGlobTasksSync (#221) 51c8f68
    • Remove ignore option for isGitIgnored and isGitIgnoredSync (#225) 2e43cc4
      • This option never worked correctly.

    Improvements

    • Improve performance with mutiple patterns (#222) 04fbd5b
    • Add async generateGlobTasks method (#221) 51c8f68

    Fixes

    • Fix bug with objectMode option (#210) 1852fc5

    https://github.com/sindresorhus/globby/compare/v12.2.0...v13.0.0

    v12.2.0

    • Work around TypeScript type problem with URL global (#206) 1224230
    • Accept URL in function returned by isGitIgnored (#207) a9fc794

    https://github.com/sindresorhus/globby/compare/v12.1.0...v12.2.0

    v12.1.0

    • Support URL for the cwd option (#201) 73c0aca

    https://github.com/sindresorhus/globby/compare/v12.0.2...v12.1.0

    v12.0.2

    • Ensure async method is completely async e167725

    https://github.com/sindresorhus/globby/compare/v12.0.1...v12.0.2

    v12.0.1

    • Internal changes 5a64253

    https://github.com/sindresorhus/globby/compare/v12.0.0...v12.0.1

    v12.0.0

    Breaking

    • Require Node.js 12.20 (#181) 5c32b4a
    • This package is now pure ESM. Please read this.
    • This package now uses named exports instead of a default export
      • globby{globby}
      • globby.sync{globbySync}
      • globby.stream{globbyStream}
      • globby.generateGlobTasks{generateGlobTasks}
      • globby.hasMagic{isDynamicPattern}

    ... (truncated)

    Commits

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • Bump @aws-sdk/client-elastic-load-balancing from 3.85.0 to 3.241.0

    Bump @aws-sdk/client-elastic-load-balancing from 3.85.0 to 3.241.0

    Bumps @aws-sdk/client-elastic-load-balancing from 3.85.0 to 3.241.0.

    Release notes

    Sourced from @​aws-sdk/client-elastic-load-balancing's releases.

    v3.241.0

    3.241.0(2022-12-29)

    Chores
    • util-endpoints: update aws partitions.json (a819ad9f)
    • endpoints: update endpoints model (811e3aaa)
    • models: update API models (620429f7)
    Documentation Changes
    • client-api-gateway: Documentation updates for Amazon API Gateway (79788977)
    New Features
    • client-emr: Added GetClusterSessionCredentials API to allow Amazon SageMaker Studio to connect to EMR on EC2 clusters with runtime roles and AWS Lake Formation-based access control for Apache Spark, Apache Hive, and Presto queries. (200974a9)
    • client-wisdom: This release extends Wisdom CreateContent and StartContentUpload APIs to support PDF and MicrosoftWord docx document uploading. (16bb4847)
    • client-secrets-manager: Added owning service filter, include planned deletion flag, and next rotation date response parameter in ListSecrets. (9a693c73)

    For list of updated packages, view updated-packages.md in assets-3.241.0.zip

    v3.240.0

    3.240.0(2022-12-28)

    New Features
    • client-route53-recovery-control-config: Added support for Python paginators in the route53-recovery-control-config List* APIs. (91839b3e)
    • client-rds: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server. (9468d16c)
    • client-network-firewall: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails. (fcc316c7)
    • client-elasticache: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability. (7c53c4a5)

    For list of updated packages, view updated-packages.md in assets-3.240.0.zip

    v3.239.0

    3.239.0(2022-12-27)

    Chores
    New Features
    • client-transfer: Add additional operations to throw ThrottlingExceptions (4a66ecf4)
    • client-memorydb: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account. (bd423421)

    ... (truncated)

    Changelog

    Sourced from @​aws-sdk/client-elastic-load-balancing's changelog.

    3.241.0 (2022-12-29)

    Note: Version bump only for package @​aws-sdk/client-elastic-load-balancing

    3.238.0 (2022-12-23)

    Note: Version bump only for package @​aws-sdk/client-elastic-load-balancing

    3.236.0 (2022-12-21)

    Note: Version bump only for package @​aws-sdk/client-elastic-load-balancing

    3.235.0 (2022-12-20)

    Note: Version bump only for package @​aws-sdk/client-elastic-load-balancing

    3.234.0 (2022-12-19)

    Note: Version bump only for package @​aws-sdk/client-elastic-load-balancing

    3.231.0 (2022-12-14)

    Note: Version bump only for package @​aws-sdk/client-elastic-load-balancing

    3.229.0 (2022-12-12)

    ... (truncated)

    Commits
    • 12a4fbc Publish v3.241.0
    • e3d8d44 Publish v3.238.0
    • e4b3e04 chore(clients): add pkg.json script to codegen individual clients (#4311)
    • 44e9a49 Publish v3.236.0
    • 6f55277 chore(clients): remove entries from rulesetObject not needed for resolution (...
    • c02ec34 Publish v3.235.0
    • f65f852 chore(endpoint): add codegen changes for endpoint ruleset compression (#4301)
    • b03bc8f Publish v3.234.0
    • 6575aa7 Publish v3.231.0
    • 2ebe2e5 Publish v3.229.0
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump @aws-sdk/client-ec2 from 3.85.0 to 3.241.0

    Bump @aws-sdk/client-ec2 from 3.85.0 to 3.241.0

    Bumps @aws-sdk/client-ec2 from 3.85.0 to 3.241.0.

    Release notes

    Sourced from @​aws-sdk/client-ec2's releases.

    v3.241.0

    3.241.0(2022-12-29)

    Chores
    • util-endpoints: update aws partitions.json (a819ad9f)
    • endpoints: update endpoints model (811e3aaa)
    • models: update API models (620429f7)
    Documentation Changes
    • client-api-gateway: Documentation updates for Amazon API Gateway (79788977)
    New Features
    • client-emr: Added GetClusterSessionCredentials API to allow Amazon SageMaker Studio to connect to EMR on EC2 clusters with runtime roles and AWS Lake Formation-based access control for Apache Spark, Apache Hive, and Presto queries. (200974a9)
    • client-wisdom: This release extends Wisdom CreateContent and StartContentUpload APIs to support PDF and MicrosoftWord docx document uploading. (16bb4847)
    • client-secrets-manager: Added owning service filter, include planned deletion flag, and next rotation date response parameter in ListSecrets. (9a693c73)

    For list of updated packages, view updated-packages.md in assets-3.241.0.zip

    v3.240.0

    3.240.0(2022-12-28)

    New Features
    • client-route53-recovery-control-config: Added support for Python paginators in the route53-recovery-control-config List* APIs. (91839b3e)
    • client-rds: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server. (9468d16c)
    • client-network-firewall: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails. (fcc316c7)
    • client-elasticache: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability. (7c53c4a5)

    For list of updated packages, view updated-packages.md in assets-3.240.0.zip

    v3.239.0

    3.239.0(2022-12-27)

    Chores
    New Features
    • client-transfer: Add additional operations to throw ThrottlingExceptions (4a66ecf4)
    • client-memorydb: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account. (bd423421)

    ... (truncated)

    Changelog

    Sourced from @​aws-sdk/client-ec2's changelog.

    3.241.0 (2022-12-29)

    Note: Version bump only for package @​aws-sdk/client-ec2

    3.238.0 (2022-12-23)

    Note: Version bump only for package @​aws-sdk/client-ec2

    3.236.0 (2022-12-21)

    Note: Version bump only for package @​aws-sdk/client-ec2

    3.235.0 (2022-12-20)

    Features

    • client-ec2: Adds support for pagination in the EC2 DescribeImages API. (a1e5ea8)

    3.234.0 (2022-12-19)

    Note: Version bump only for package @​aws-sdk/client-ec2

    3.231.0 (2022-12-14)

    Note: Version bump only for package @​aws-sdk/client-ec2

    ... (truncated)

    Commits
    • 12a4fbc Publish v3.241.0
    • e3d8d44 Publish v3.238.0
    • e4b3e04 chore(clients): add pkg.json script to codegen individual clients (#4311)
    • 44e9a49 Publish v3.236.0
    • 6f55277 chore(clients): remove entries from rulesetObject not needed for resolution (...
    • c02ec34 Publish v3.235.0
    • a1e5ea8 feat(client-ec2): Adds support for pagination in the EC2 DescribeImages API.
    • f65f852 chore(endpoint): add codegen changes for endpoint ruleset compression (#4301)
    • b03bc8f Publish v3.234.0
    • 6575aa7 Publish v3.231.0
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump @aws-sdk/client-rds from 3.85.0 to 3.241.0

    Bump @aws-sdk/client-rds from 3.85.0 to 3.241.0

    Bumps @aws-sdk/client-rds from 3.85.0 to 3.241.0.

    Release notes

    Sourced from @​aws-sdk/client-rds's releases.

    v3.241.0

    3.241.0(2022-12-29)

    Chores
    • util-endpoints: update aws partitions.json (a819ad9f)
    • endpoints: update endpoints model (811e3aaa)
    • models: update API models (620429f7)
    Documentation Changes
    • client-api-gateway: Documentation updates for Amazon API Gateway (79788977)
    New Features
    • client-emr: Added GetClusterSessionCredentials API to allow Amazon SageMaker Studio to connect to EMR on EC2 clusters with runtime roles and AWS Lake Formation-based access control for Apache Spark, Apache Hive, and Presto queries. (200974a9)
    • client-wisdom: This release extends Wisdom CreateContent and StartContentUpload APIs to support PDF and MicrosoftWord docx document uploading. (16bb4847)
    • client-secrets-manager: Added owning service filter, include planned deletion flag, and next rotation date response parameter in ListSecrets. (9a693c73)

    For list of updated packages, view updated-packages.md in assets-3.241.0.zip

    v3.240.0

    3.240.0(2022-12-28)

    New Features
    • client-route53-recovery-control-config: Added support for Python paginators in the route53-recovery-control-config List* APIs. (91839b3e)
    • client-rds: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server. (9468d16c)
    • client-network-firewall: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails. (fcc316c7)
    • client-elasticache: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability. (7c53c4a5)

    For list of updated packages, view updated-packages.md in assets-3.240.0.zip

    v3.239.0

    3.239.0(2022-12-27)

    Chores
    New Features
    • client-transfer: Add additional operations to throw ThrottlingExceptions (4a66ecf4)
    • client-memorydb: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account. (bd423421)

    ... (truncated)

    Changelog

    Sourced from @​aws-sdk/client-rds's changelog.

    3.241.0 (2022-12-29)

    Note: Version bump only for package @​aws-sdk/client-rds

    3.240.0 (2022-12-28)

    Features

    • client-rds: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server. (9468d16)

    3.238.0 (2022-12-23)

    Note: Version bump only for package @​aws-sdk/client-rds

    3.237.0 (2022-12-22)

    Features

    • client-rds: Add support for managing master user password in AWS Secrets Manager for the DBInstance and DBCluster. (03a5d7b)

    3.236.0 (2022-12-21)

    Note: Version bump only for package @​aws-sdk/client-rds

    3.235.0 (2022-12-20)

    Note: Version bump only for package @​aws-sdk/client-rds

    ... (truncated)

    Commits
    • 12a4fbc Publish v3.241.0
    • d41b8aa Publish v3.240.0
    • 9468d16 feat(client-rds): This release adds support for Custom Engine Version (CEV) o...
    • e3d8d44 Publish v3.238.0
    • e4b3e04 chore(clients): add pkg.json script to codegen individual clients (#4311)
    • 768bc48 Publish v3.237.0
    • 03a5d7b feat(client-rds): Add support for managing master user password in AWS Secret...
    • 44e9a49 Publish v3.236.0
    • 6f55277 chore(clients): remove entries from rulesetObject not needed for resolution (...
    • c02ec34 Publish v3.235.0
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump @aws-sdk/client-s3 from 3.85.0 to 3.241.0

    Bump @aws-sdk/client-s3 from 3.85.0 to 3.241.0

    Bumps @aws-sdk/client-s3 from 3.85.0 to 3.241.0.

    Release notes

    Sourced from @​aws-sdk/client-s3's releases.

    v3.241.0

    3.241.0(2022-12-29)

    Chores
    • util-endpoints: update aws partitions.json (a819ad9f)
    • endpoints: update endpoints model (811e3aaa)
    • models: update API models (620429f7)
    Documentation Changes
    • client-api-gateway: Documentation updates for Amazon API Gateway (79788977)
    New Features
    • client-emr: Added GetClusterSessionCredentials API to allow Amazon SageMaker Studio to connect to EMR on EC2 clusters with runtime roles and AWS Lake Formation-based access control for Apache Spark, Apache Hive, and Presto queries. (200974a9)
    • client-wisdom: This release extends Wisdom CreateContent and StartContentUpload APIs to support PDF and MicrosoftWord docx document uploading. (16bb4847)
    • client-secrets-manager: Added owning service filter, include planned deletion flag, and next rotation date response parameter in ListSecrets. (9a693c73)

    For list of updated packages, view updated-packages.md in assets-3.241.0.zip

    v3.240.0

    3.240.0(2022-12-28)

    New Features
    • client-route53-recovery-control-config: Added support for Python paginators in the route53-recovery-control-config List* APIs. (91839b3e)
    • client-rds: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server. (9468d16c)
    • client-network-firewall: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails. (fcc316c7)
    • client-elasticache: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability. (7c53c4a5)

    For list of updated packages, view updated-packages.md in assets-3.240.0.zip

    v3.239.0

    3.239.0(2022-12-27)

    Chores
    New Features
    • client-transfer: Add additional operations to throw ThrottlingExceptions (4a66ecf4)
    • client-memorydb: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account. (bd423421)

    ... (truncated)

    Changelog

    Sourced from @​aws-sdk/client-s3's changelog.

    3.241.0 (2022-12-29)

    Note: Version bump only for package @​aws-sdk/client-s3

    3.238.0 (2022-12-23)

    Note: Version bump only for package @​aws-sdk/client-s3

    3.236.0 (2022-12-21)

    Note: Version bump only for package @​aws-sdk/client-s3

    3.235.0 (2022-12-20)

    Note: Version bump only for package @​aws-sdk/client-s3

    3.234.0 (2022-12-19)

    Note: Version bump only for package @​aws-sdk/client-s3

    3.231.0 (2022-12-14)

    Bug Fixes

    • client-s3: add staticContextParams in endpoint param instructions (#4285) (d229edd)

    ... (truncated)

    Commits
    • 12a4fbc Publish v3.241.0
    • e3d8d44 Publish v3.238.0
    • e4b3e04 chore(clients): add pkg.json script to codegen individual clients (#4311)
    • 44e9a49 Publish v3.236.0
    • 6f55277 chore(clients): remove entries from rulesetObject not needed for resolution (...
    • c02ec34 Publish v3.235.0
    • f65f852 chore(endpoint): add codegen changes for endpoint ruleset compression (#4301)
    • b03bc8f Publish v3.234.0
    • 6575aa7 Publish v3.231.0
    • d229edd fix(client-s3): add staticContextParams in endpoint param instructions (#4285)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump @aws-sdk/client-cloudwatch from 3.85.0 to 3.241.0

    Bump @aws-sdk/client-cloudwatch from 3.85.0 to 3.241.0

    Bumps @aws-sdk/client-cloudwatch from 3.85.0 to 3.241.0.

    Release notes

    Sourced from @​aws-sdk/client-cloudwatch's releases.

    v3.241.0

    3.241.0(2022-12-29)

    Chores
    • util-endpoints: update aws partitions.json (a819ad9f)
    • endpoints: update endpoints model (811e3aaa)
    • models: update API models (620429f7)
    Documentation Changes
    • client-api-gateway: Documentation updates for Amazon API Gateway (79788977)
    New Features
    • client-emr: Added GetClusterSessionCredentials API to allow Amazon SageMaker Studio to connect to EMR on EC2 clusters with runtime roles and AWS Lake Formation-based access control for Apache Spark, Apache Hive, and Presto queries. (200974a9)
    • client-wisdom: This release extends Wisdom CreateContent and StartContentUpload APIs to support PDF and MicrosoftWord docx document uploading. (16bb4847)
    • client-secrets-manager: Added owning service filter, include planned deletion flag, and next rotation date response parameter in ListSecrets. (9a693c73)

    For list of updated packages, view updated-packages.md in assets-3.241.0.zip

    v3.240.0

    3.240.0(2022-12-28)

    New Features
    • client-route53-recovery-control-config: Added support for Python paginators in the route53-recovery-control-config List* APIs. (91839b3e)
    • client-rds: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server. (9468d16c)
    • client-network-firewall: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails. (fcc316c7)
    • client-elasticache: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability. (7c53c4a5)

    For list of updated packages, view updated-packages.md in assets-3.240.0.zip

    v3.239.0

    3.239.0(2022-12-27)

    Chores
    New Features
    • client-transfer: Add additional operations to throw ThrottlingExceptions (4a66ecf4)
    • client-memorydb: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account. (bd423421)

    ... (truncated)

    Changelog

    Sourced from @​aws-sdk/client-cloudwatch's changelog.

    3.241.0 (2022-12-29)

    Note: Version bump only for package @​aws-sdk/client-cloudwatch

    3.238.0 (2022-12-23)

    Note: Version bump only for package @​aws-sdk/client-cloudwatch

    3.236.0 (2022-12-21)

    Note: Version bump only for package @​aws-sdk/client-cloudwatch

    3.235.0 (2022-12-20)

    Note: Version bump only for package @​aws-sdk/client-cloudwatch

    3.234.0 (2022-12-19)

    Note: Version bump only for package @​aws-sdk/client-cloudwatch

    3.231.0 (2022-12-14)

    Features

    • client-cloudwatch: Adding support for Metrics Insights Alarms (4aa9511)

    ... (truncated)

    Commits
    • 12a4fbc Publish v3.241.0
    • e3d8d44 Publish v3.238.0
    • e4b3e04 chore(clients): add pkg.json script to codegen individual clients (#4311)
    • 44e9a49 Publish v3.236.0
    • 6f55277 chore(clients): remove entries from rulesetObject not needed for resolution (...
    • c02ec34 Publish v3.235.0
    • f65f852 chore(endpoint): add codegen changes for endpoint ruleset compression (#4301)
    • b03bc8f Publish v3.234.0
    • 6575aa7 Publish v3.231.0
    • 4aa9511 feat(client-cloudwatch): Adding support for Metrics Insights Alarms
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump actions/dependency-review-action from 1 to 3

    Bump actions/dependency-review-action from 1 to 3

    Bumps actions/dependency-review-action from 1 to 3.

    Release notes

    Sourced from actions/dependency-review-action's releases.

    3.0.0

    Breaking Changes

    By default the action now expects SPDX-compliant licenses everywhere. If you were previously using license names in the allow or deny lists make sure they're valid!

    What's Changed

    Support for external configuration files

    You can now specify a configuration file external to your repository. This allows organizations to have a single configuration file for all their repos.

    Broader license support

    We've added support for a much broader set of project licenses by using GitHub's Licenses API.

    SPDX Compliance

    All of our license-related code now expects SPDX-compliant licenses or expressions. This allows us to standardize on a license naming scheme that already supports OR/AND expressions.

    Disable individual checks

    You can now use the boolean options license-check and vulnerability-check to disable either one of the checks. More information in our configuration options.

    Thanks

    Contributors for this release include:

    Thanks everyone! Full Changelog: https://github.com/actions/dependency-review-action/compare/v2...v3.0.0

    2.5.1

    Adding some quality-of-life improvements to the local development experience. You can now pass a flag to the scripts/scan_pr script using the -c/--config-file flags to use an external configuration file:

    Example:

      scripts/scan_pr https://github.com/actions/dependency-review-action/pull/294
    

    2.5.0

    Fallback on GitHub Licenses API data for missing Dependency Review API Licenses. This should improve our license coverage.

    2.4.1

    This patch release fixes the bugs below:

    • Display the dependency name instead of the manifest name in the detailed list of dependents.
    • Fix an issue where undefined GHSAs would remove filter out all changes.

    ... (truncated)

    Commits
    • 30d5821 Bumping version number
    • 6e42c33 Remove defaults from the recently added fields.
    • a3074cd Merge pull request #327 from actions/adding-extra-options
    • 51a29d6 Updating action.yml to include *-check config
    • 235a221 Merge pull request #324 from actions/readme-update
    • 9b3a7f6 Minor README tweaks.
    • a476131 Add pull_request to the list of events that don't need refs.
    • 28c7c8c Set the correct default for license-check in README.
    • 9da0fd4 Merge pull request #325 from actions/dependabot/npm_and_yarn/eslint-plugin-je...
    • fe45fd6 Merge pull request #326 from actions/dependabot/npm_and_yarn/esbuild-register...
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 0
Releases(v0.10.0)
  • v0.10.0(May 6, 2022)

    This is the tenth release of this package!

    NPM Package Version: https://www.npmjs.com/package/@khalidx/cfs/v/0.10.0 Full Changelog: https://github.com/khalidx/cfs/compare/v0.9.0...v0.10.0

    What's Changed

    • Bump typescript from 4.6.3 to 4.6.4 by @dependabot in https://github.com/khalidx/cfs/pull/66
    • Bump @types/node from 17.0.29 to 17.0.31 by @dependabot in https://github.com/khalidx/cfs/pull/67
    • Bump express from 4.18.0 to 4.18.1 by @dependabot in https://github.com/khalidx/cfs/pull/70
    Source code(tar.gz)
    Source code(zip)
    cfs-linux(90.03 MB)
    cfs-macos(95.56 MB)
    cfs-win.exe(83.92 MB)
  • v0.9.0(May 3, 2022)

  • v0.8.0(Apr 29, 2022)

    This is the eighth release of this package!

    NPM Package Version: https://www.npmjs.com/package/@khalidx/cfs/v/0.8.0 Full Changelog: https://github.com/khalidx/cfs/compare/v0.7.0...v0.8.0

    What's Changed

    • Bump tslib from 2.3.1 to 2.4.0 by @dependabot in https://github.com/khalidx/cfs/pull/30
    • Bump express from 4.17.3 to 4.18.0 by @dependabot in https://github.com/khalidx/cfs/pull/32
    • Bump @types/node from 17.0.26 to 17.0.27 by @dependabot in https://github.com/khalidx/cfs/pull/34
    Source code(tar.gz)
    Source code(zip)
    cfs-linux(81.38 MB)
    cfs-macos(86.91 MB)
    cfs-win.exe(75.27 MB)
  • v0.7.0(Apr 25, 2022)

    This is the seventh release of this package!

    NPM Package Version: https://www.npmjs.com/package/@khalidx/cfs/v/0.7.0 Full Changelog: https://github.com/khalidx/cfs/compare/v0.6.0...v0.7.0

    What's Changed

    • Bump @aws-sdk/client-synthetics from 3.72.0 to 3.76.0 by @dependabot in https://github.com/khalidx/cfs/pull/15
    • Bump @aws-sdk/client-ssm from 3.72.0 to 3.76.0 by @dependabot in https://github.com/khalidx/cfs/pull/16
    • Bump @types/node from 17.0.25 to 17.0.26 by @dependabot in https://github.com/khalidx/cfs/pull/17
    • Bump @aws-sdk/client-sqs from 3.72.0 to 3.76.0 by @dependabot in https://github.com/khalidx/cfs/pull/19
    Source code(tar.gz)
    Source code(zip)
    cfs-linux(87.04 MB)
    cfs-macos(92.57 MB)
    cfs-win.exe(80.95 MB)
  • v0.6.0(Apr 24, 2022)

    This is the sixth release of this package!

    NPM Package Version: https://www.npmjs.com/package/@khalidx/cfs/v/0.6.0 Full Changelog: https://github.com/khalidx/cfs/compare/v0.5.0...v0.6.0

    What's Changed

    • Bump @types/node from 17.0.24 to 17.0.25 by @dependabot in https://github.com/khalidx/cfs/pull/10
    • Bump @aws-sdk/client-acm from 3.72.0 to 3.76.0 by @dependabot in https://github.com/khalidx/cfs/pull/11
    • Bump @aws-sdk/client-api-gateway from 3.72.0 to 3.76.0 by @dependabot in https://github.com/khalidx/cfs/pull/12
    • Bump @aws-sdk/client-cloudwatch from 3.72.0 to 3.76.0 by @dependabot in https://github.com/khalidx/cfs/pull/13
    • Bump @aws-sdk/client-apigatewayv2 from 3.72.0 to 3.76.0 by @dependabot in https://github.com/khalidx/cfs/pull/14

    New Contributors

    • @dependabot made their first contribution in https://github.com/khalidx/cfs/pull/10
    Source code(tar.gz)
    Source code(zip)
    cfs-linux(87.02 MB)
    cfs-macos(92.55 MB)
    cfs-win.exe(80.93 MB)
  • v0.5.0(Apr 23, 2022)

  • v0.4.0(Apr 23, 2022)

  • v0.3.0(Apr 22, 2022)

  • v0.2.0(Apr 21, 2022)

  • v0.1.0(Apr 18, 2022)

Owner
Khalid Zoabi
Building your company’s cloud ☁️
Khalid Zoabi
An easy and simple way to manage your financial transactions.

MyWallet An easy and simple way to manage your financial transactions. With MyWallet you can track your incomes and expenses and always keep track of

Caroline Oliveira 7 Nov 16, 2022
Catalogist is the easy way to catalog and make your software and (micro)services visible to your organization in a lightweight and developer-friendly way.

catalogist ?? ?? ?? ?? ?? The easy way to catalog and make your software and (micro)services visible to your organization through an API You were a pe

Mikael Vesavuori 11 Dec 13, 2022
Make friends through music. Discover great sound tracks on Solana and play them with your buddies :dancer:.

Acoustic Licious COVID-19 has significantly impacted the mental health of children and adults alike. Globally, the population suffering from lonelines

Devyansh Chawla 4 Oct 28, 2022
A Single place to Discover, Collaborate, and Get your data right

A Single place to Discover, Collaborate, and Get your data right Darkseal Darkseal includes the following: Metadata schemas - Defines core abstraction

GuinsooLab 13 Dec 28, 2022
Run a command, watch the filesystem, stop the process on file change and then run the command again...

hubmon Run a command, watch the filesystem, stop the process on file change and then run the command again... Install You can install this command lin

Hubert SABLONNIÈRE 7 Jul 30, 2022
A blazingly fast Bun.js filesystem router, with an unpleasantly smooth experience!

Oily A blazingly fast Bun.js filesystem router, with an unpleasantly smooth experience! Installation · Usage · Examples · Discord Installation Once yo

Aries 22 Dec 19, 2022
MerLoc is a live AWS Lambda function development and debugging tool. MerLoc allows you to run AWS Lambda functions on your local while they are still part of a flow in the AWS cloud remote.

MerLoc MerLoc is a live AWS Lambda function development and debugging tool. MerLoc allows you to run AWS Lambda functions on your local while they are

Thundra 165 Dec 21, 2022
Big Chief is a website where you find and share everyday cooking inspiration. Discover recipes, cooks, videos, and how-tos based on the food you love.

Big Chief Big Chief is a website where you find and share everyday cooking inspiration. Discover recipes, cooks, videos, and how-tos based on the food

AVLESSI Matchoudi 7 Jun 1, 2022
Discover a vast library of open-source Tailwind CSS components and Mobile UI design elements 🚀

SundarUI ?? Discover a vast library of open-source Tailwind CSS components and Mobile UI design elements ?? What is SundarUI? Sundar UI is a library o

Raj Patel 4 Mar 19, 2023
An app to manage tasks. A user can add, delete and edit a task and mark it as completed, It uses simple GUI and relies on DOM manipulation in pure JS and using local storage.

An app to manage tasks. A user can add, delete and edit a task and mark it as completed, It uses simple GUI and relies on DOM manipulation in pure JS and using local storage.

KHITER Mohamed Achraf 6 Aug 20, 2022
Save time by managing bills & expenses, invoicing & easy reconciliation all in one app. Generate clear dynamic statements and get your reports, the way you like them

expense-manager-app (Opensource Expense Tracking App built with React) ?? Save time by managing bills & expenses, invoicing & easy reconciliation all

Muhammad Awais 3 Oct 12, 2022
This Project is basically provides a cloud based solution for the medical stores so they can manage their inventory, expiry, billbook & credits on a single platform

This Project is basically provides a cloud based solution for the medical stores so they can manage their inventory, expiry, billbook & credits on a single platform

Akshay Shivaji Matre 4 Jul 11, 2022
Atlan is a CLI that helps you to manage local dockerized infrastructure without any needed knowledge on Docker and Docker Compose.

Atlan CLI Atlan is a CLI that helps you to manage local dockerized infrastructure without any needed knowledge on Docker and Docker Compose. What is A

Myastro 10 Aug 17, 2022
This app helps manage a bookstore. It comes in handy when you need to manage a personal book store or library. Entirely built on es6.

Awesome Books A Microverse project on learnong javascript. Additional description about the project and its features. Built With HTML5 CSS3 Javascript

Atugonza ( Billions ) Joel 13 Apr 22, 2022
App to manage maintenance calls. App to manage maintenance calls. This application was created for the purpose of studies.

App to manage maintenance calls. App to manage maintenance calls. This application was created for the purpose of studies.

Rodrigo Gonçalves 112 Dec 26, 2022
🎨 Beautify your github profile with this amazing tool, creating the readme your way in a simple and fast way 🚀 The best profile readme generator you will find ⚡

Demo Profile Readme Generator The best profile readme generator you will find! About | Technologies | Requirements | Starting | Contributing ?? About

Mauro de Souza 476 Jan 1, 2023
LiveTabs is a Javascript library that allows you to create and manage tabs on the fly. This library gives the ability to your application to act like browser tabs, making dynamic tabs.

LiveTabs Table of content Description Goals Technologies Setup Description LiveTabs is a Javascript library that allows you to create and manage tabs

Hossein Khalili 3 May 3, 2022
A work-in-progress HTML sanitizer that strives for: performance like window.Sanitizer, readiness like DOMPurify, and ability to run in a WebWorker like neither of those.

Amuchina A work-in-progress HTML sanitizer that strives for: performance like window.Sanitizer, readiness like DOMPurify, and ability to run in a WebW

Fabio Spampinato 9 Sep 17, 2022
The simplest way to use AWS/GCP/Azure. From code to cloud in a few minutes.

Utopiops Utopiops is the best way for teams of any size to use cloud (AWS/Azure/GCP), with or without prior experience. We provide a platform that hel

utopiops 98 Dec 25, 2022