New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ember-cli-deploy-display-revisions

Package Overview
Dependencies
Maintainers
4
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-deploy-display-revisions - npm Package Compare versions

Comparing version 2.1.2 to 3.0.0

.github/workflows/ci.yaml

11

CHANGELOG.md

@@ -0,1 +1,12 @@

## v3.0.0 (2023-06-02)
#### :boom: Breaking Change
* [#71](https://github.com/ember-cli-deploy/ember-cli-deploy-display-revisions/pull/71) [BREAKING] Update dependencies and node.js version requirements ([@lukemelia](https://github.com/lukemelia))
* [#57](https://github.com/ember-cli-deploy/ember-cli-deploy-display-revisions/pull/57) [breaking] Switch to Github Actions for CI ([@jrjohnson](https://github.com/jrjohnson))
#### Committers: 3
- Darin Doria ([@ddoria921](https://github.com/ddoria921))
- Jon Johnson ([@jrjohnson](https://github.com/jrjohnson))
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
## v2.1.2 (2020-10-27)

@@ -2,0 +13,0 @@

2

lib/legacy-table.js

@@ -42,3 +42,3 @@ let { DateTime } = require('luxon');

// ember-cli-deploy-revision-data provides a JS Date object, so fall back to that if not milliseconds
let dt = typeof value === 'number' ? DateTime.fromMillis(value) : DateTime.fromJSDate(value);
let dt = typeof value === 'number' ? DateTime.fromMillis(value) : DateTime.fromJSDate(new Date(value));
value = dt.toFormat("yyyy/MM/dd HH:mm:ss");

@@ -45,0 +45,0 @@ }

@@ -75,3 +75,3 @@ const Table = require('cli-table3');

// ember-cli-deploy-revision-data provides a JS Date object, so fall back to that if not milliseconds
let dt = typeof timestamp === 'number' ? DateTime.fromMillis(timestamp) : DateTime.fromJSDate(timestamp);
let dt = typeof timestamp === 'number' ? DateTime.fromMillis(timestamp) : DateTime.fromJSDate(new Date(timestamp));
let value = dt.toFormat('yyyy/MM/dd HH:mm:ss');

@@ -78,0 +78,0 @@ row.push(value);

{
"name": "ember-cli-deploy-display-revisions",
"version": "2.1.2",
"version": "3.0.0",
"description": "Display a list of deployed revisions using ember-cli-deploy.",

@@ -21,20 +21,20 @@ "keywords": [

"dependencies": {
"cli-table3": "^0.6.0",
"cli-table3": "^0.6.3",
"core-object": "^3.1.5",
"ember-cli-deploy-plugin": "^0.2.3",
"luxon": "^1.25.0",
"ember-cli-deploy-plugin": "^0.2.9",
"luxon": "^3.3.0",
"rsvp": "^4.8.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"ember-cli": "^3.18.0",
"eslint": "^7.0.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"release-it": "^13.6.0",
"release-it-lerna-changelog": "^2.3.0"
"ember-cli": "^3.28.6",
"eslint": "^8.41.0",
"glob": "^10.2.6",
"mocha": "^10.2.0",
"release-it": "14.4.1",
"release-it-lerna-changelog": "^3.1.0"
},
"engines": {
"node": ">= 10"
"node": "14.* || 16.* || 18.* || >= 20"
},

@@ -41,0 +41,0 @@ "publishConfig": {

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