Skip to content

Commit 94d581a

Browse files
authored
Merge pull request #92 from amplify-education/feature/AT-14520-release-8.0.0
AT-14520: Release 8.0.0
2 parents 86b8a36 + 783f3ab commit 94d581a

11 files changed

Lines changed: 2026 additions & 4926 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [ 18.x, 20.x, 22.x, 24.x ]
13+
node-version: [ 20.x, 22.x, 24.x ]
1414
steps:
1515
- name: Checkout repository
1616
uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [8.0.0] - 2026-02-24
9+
10+
### Changed
11+
12+
- Dropped Node 20.x support
13+
- Updated packages
14+
15+
816
## [7.0.0] - 2026-02-18
917

1018
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# serverless-vpc-discovery
22

3-
[![serverless](http://public.serverless.com/badges/v3.svg)](http://www.serverless.com)
3+
[![serverless](https://assets.serverless-extras.com/website/general/icon-serverless-framework.svg)](http://www.serverless.com)
44
[![Build Status](https://travis-ci.org/amplify-education/serverless-vpc-discovery.svg?branch=master)](https://travis-ci.org/amplify-education/serverless-vpc-discovery)
55
[![npm version](https://badge.fury.io/js/serverless-vpc-discovery.svg)](https://badge.fury.io/js/serverless-vpc-discovery)
66
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/amplify-education/serverless-vpc-discovery/master/LICENSE)

eslint.config.mjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import js from "@eslint/js";
22
import tseslint from "typescript-eslint";
3-
import neostandard from "neostandard";
43

54
export default [
65
{
76
ignores: ["node_modules/", "dist/"],
87
},
98
js.configs.recommended,
109
...tseslint.configs.recommended,
11-
...neostandard({ ts: true }),
1210
{
1311
files: ["src/**/*.ts"],
1412
rules: {
@@ -19,9 +17,6 @@ export default [
1917
"guard-for-in": "error",
2018
"@typescript-eslint/no-explicit-any": "off",
2119
"@typescript-eslint/no-empty-object-type": "off",
22-
"@stylistic/semi": "off",
23-
"@stylistic/quotes": "off",
24-
"@stylistic/comma-dangle": "off",
2520
},
2621
},
2722
];

0 commit comments

Comments
 (0)