Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mapbox/cloudfriend

Package Overview
Dependencies
Maintainers
14
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mapbox/cloudfriend - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

3

changelog.md
# Changelog
## v5.0.1
- Improves data type mappings between Glue and Presto when using the `GluePrestoView` shortcut.
## v5.0.0

@@ -4,0 +7,0 @@ - The Lambda shortcuts now use `nodejs12.x` as the default runtime.

@@ -39,3 +39,19 @@ 'use strict';

name: c.Name,
type: c.Type.replace(/string/g, 'varchar')
type: c.Type
.replace(/:string/g, ':varchar')
.replace(/^string/g, 'varchar')
.replace(/<string/g, '(varchar')
.replace(/, ?string/g, ',varchar')
.replace(/:int/g, ':integer')
.replace(/^int/g, 'integer')
.replace(/<int/g, '(integer')
.replace(/, ?int/g, ',integer')
.replace(/:float/g, ':real')
.replace(/^float/g, 'real')
.replace(/<float/g, '(real')
.replace(/, ?float/g, ',real')
.replace(/struct/g, 'row')
.replace(/</g, '(')
.replace(/>/g, ')')
.replace(/:/g, ' ')
}));

@@ -42,0 +58,0 @@

2

package.json
{
"name": "@mapbox/cloudfriend",
"version": "5.0.0",
"version": "5.0.1",
"description": "Helper functions for assembling CloudFormation templates in JavaScript",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc